diff --git a/grammar.js b/grammar.js index 1907a3a3..3cb2a8e2 100644 --- a/grammar.js +++ b/grammar.js @@ -280,6 +280,7 @@ module.exports = grammar({ foreign_mod_item: $ => seq( optional($.visibility_modifier), + optional($._item_modifiers), $.extern_modifier, choice( ';', @@ -404,6 +405,7 @@ module.exports = grammar({ static_item: $ => seq( optional($.visibility_modifier), + optional(choice('unsafe', 'safe')), 'static', // Not actual rust syntax, but made popular by the lazy_static crate. @@ -456,12 +458,21 @@ module.exports = grammar({ ';', ), - function_modifiers: $ => repeat1(choice( + function_modifiers: $ => choice( + $._item_modifiers, + $.extern_modifier, + seq( + $._item_modifiers, + $.extern_modifier, + ), + ), + + _item_modifiers: _ => repeat1(choice( 'async', 'default', 'const', 'unsafe', - $.extern_modifier, + 'safe', )), where_clause: $ => prec.right(seq( diff --git a/queries/highlights.scm b/queries/highlights.scm index 48c7284e..ef65600a 100644 --- a/queries/highlights.scm +++ b/queries/highlights.scm @@ -124,6 +124,7 @@ "raw" @keyword "ref" @keyword "return" @keyword +"safe" @keyword "static" @keyword "struct" @keyword "trait" @keyword diff --git a/src/grammar.json b/src/grammar.json index b5cf2b16..fe91f8f5 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -1307,6 +1307,18 @@ } ] }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_item_modifiers" + }, + { + "type": "BLANK" + } + ] + }, { "type": "SYMBOL", "name": "extern_modifier" @@ -2125,6 +2137,27 @@ } ] }, + { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "unsafe" + }, + { + "type": "STRING", + "value": "safe" + } + ] + }, + { + "type": "BLANK" + } + ] + }, { "type": "STRING", "value": "static" @@ -2524,6 +2557,32 @@ ] }, "function_modifiers": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_item_modifiers" + }, + { + "type": "SYMBOL", + "name": "extern_modifier" + }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_item_modifiers" + }, + { + "type": "SYMBOL", + "name": "extern_modifier" + } + ] + } + ] + }, + "_item_modifiers": { "type": "REPEAT1", "content": { "type": "CHOICE", @@ -2545,8 +2604,8 @@ "value": "unsafe" }, { - "type": "SYMBOL", - "name": "extern_modifier" + "type": "STRING", + "value": "safe" } ] } diff --git a/src/node-types.json b/src/node-types.json index 60a98952..a26ea2d4 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -2097,7 +2097,7 @@ "named": true, "fields": {}, "children": { - "multiple": true, + "multiple": false, "required": false, "types": [ { @@ -5443,6 +5443,10 @@ "type": "return", "named": false }, + { + "type": "safe", + "named": false + }, { "type": "self", "named": true diff --git a/src/parser.c b/src/parser.c index 9f87b27a..561cf313 100644 --- a/src/parser.c +++ b/src/parser.c @@ -1,4 +1,4 @@ -/* Automatically generated by tree-sitter v0.25.3 */ +/* Automatically generated by tree-sitter v0.25.3 (2a835ee029dca1c325e6f1c01dbce40396f6123e) */ #include "tree_sitter/parser.h" @@ -7,16 +7,16 @@ #endif #define LANGUAGE_VERSION 15 -#define STATE_COUNT 3823 -#define LARGE_STATE_COUNT 1063 -#define SYMBOL_COUNT 351 +#define STATE_COUNT 3861 +#define LARGE_STATE_COUNT 1071 +#define SYMBOL_COUNT 352 #define ALIAS_COUNT 4 -#define TOKEN_COUNT 157 +#define TOKEN_COUNT 158 #define EXTERNAL_TOKEN_COUNT 10 #define FIELD_COUNT 31 -#define MAX_ALIAS_SEQUENCE_LENGTH 10 +#define MAX_ALIAS_SEQUENCE_LENGTH 11 #define MAX_RESERVED_WORD_SET_SIZE 0 -#define PRODUCTION_ID_COUNT 295 +#define PRODUCTION_ID_COUNT 297 #define SUPERTYPE_COUNT 5 enum ts_symbol_identifiers { @@ -136,244 +136,245 @@ enum ts_symbol_identifiers { anon_sym_where = 114, anon_sym_while = 115, anon_sym_extern = 116, - anon_sym_ref = 117, - anon_sym_else = 118, - anon_sym_in = 119, - anon_sym_LT2 = 120, - anon_sym_dyn = 121, - sym_mutable_specifier = 122, - anon_sym_raw = 123, - anon_sym_yield = 124, - anon_sym_move = 125, - anon_sym_try = 126, - sym_integer_literal = 127, - aux_sym_string_literal_token1 = 128, - anon_sym_DQUOTE = 129, - sym_char_literal = 130, - sym_escape_sequence = 131, - anon_sym_true = 132, - anon_sym_false = 133, - anon_sym_SLASH_SLASH = 134, - aux_sym_line_comment_token1 = 135, - aux_sym_line_comment_token2 = 136, - aux_sym_line_comment_token3 = 137, - anon_sym_BANG2 = 138, - anon_sym_SLASH2 = 139, - anon_sym_SLASH_STAR = 140, - anon_sym_STAR_SLASH = 141, - sym_shebang = 142, - sym_self = 143, - sym_super = 144, - sym_crate = 145, - sym_metavariable = 146, - sym_string_content = 147, - sym__raw_string_literal_start = 148, - sym_raw_string_literal_content = 149, - sym__raw_string_literal_end = 150, - sym_float_literal = 151, - sym__outer_block_doc_comment_marker = 152, - sym__inner_block_doc_comment_marker = 153, - sym__block_comment_content = 154, - sym__line_doc_content = 155, - sym__error_sentinel = 156, - sym_source_file = 157, - sym__statement = 158, - sym_empty_statement = 159, - sym_expression_statement = 160, - sym_macro_definition = 161, - sym_macro_rule = 162, - sym__token_pattern = 163, - sym_token_tree_pattern = 164, - sym_token_binding_pattern = 165, - sym_token_repetition_pattern = 166, - sym_fragment_specifier = 167, - sym_token_tree = 168, - sym_token_repetition = 169, - sym_attribute_item = 170, - sym_inner_attribute_item = 171, - sym_attribute = 172, - sym_mod_item = 173, - sym_foreign_mod_item = 174, - sym_declaration_list = 175, - sym_struct_item = 176, - sym_union_item = 177, - sym_enum_item = 178, - sym_enum_variant_list = 179, - sym_enum_variant = 180, - sym_field_declaration_list = 181, - sym_field_declaration = 182, - sym_ordered_field_declaration_list = 183, - sym_extern_crate_declaration = 184, - sym_const_item = 185, - sym_static_item = 186, - sym_type_item = 187, - sym_function_item = 188, - sym_function_signature_item = 189, - sym_function_modifiers = 190, - sym_where_clause = 191, - sym_where_predicate = 192, - sym_impl_item = 193, - sym_trait_item = 194, - sym_associated_type = 195, - sym_trait_bounds = 196, - sym_higher_ranked_trait_bound = 197, - sym_removed_trait_bound = 198, - sym_type_parameters = 199, - sym_const_parameter = 200, - sym_type_parameter = 201, - sym_lifetime_parameter = 202, - sym_let_declaration = 203, - sym_use_declaration = 204, - sym__use_clause = 205, - sym_scoped_use_list = 206, - sym_use_list = 207, - sym_use_as_clause = 208, - sym_use_wildcard = 209, - sym_parameters = 210, - sym_self_parameter = 211, - sym_variadic_parameter = 212, - sym_parameter = 213, - sym_extern_modifier = 214, - sym_visibility_modifier = 215, - sym__type = 216, - sym_bracketed_type = 217, - sym_qualified_type = 218, - sym_lifetime = 219, - sym_array_type = 220, - sym_for_lifetimes = 221, - sym_function_type = 222, - sym_tuple_type = 223, - sym_unit_type = 224, - sym_generic_function = 225, - sym_generic_type = 226, - sym_generic_type_with_turbofish = 227, - sym_bounded_type = 228, - sym_use_bounds = 229, - sym_type_arguments = 230, - sym_type_binding = 231, - sym_reference_type = 232, - sym_pointer_type = 233, - sym_never_type = 234, - sym_abstract_type = 235, - sym_dynamic_type = 236, - sym__expression_except_range = 237, - sym__expression = 238, - sym_macro_invocation = 239, - sym_delim_token_tree = 240, - sym__delim_tokens = 241, - sym__non_delim_token = 242, - sym_scoped_identifier = 243, - sym_scoped_type_identifier_in_expression_position = 244, - sym_scoped_type_identifier = 245, - sym_range_expression = 246, - sym_unary_expression = 247, - sym_try_expression = 248, - sym_reference_expression = 249, - sym_binary_expression = 250, - sym_assignment_expression = 251, - sym_compound_assignment_expr = 252, - sym_type_cast_expression = 253, - sym_return_expression = 254, - sym_yield_expression = 255, - sym_call_expression = 256, - sym_arguments = 257, - sym_array_expression = 258, - sym_parenthesized_expression = 259, - sym_tuple_expression = 260, - sym_unit_expression = 261, - sym_struct_expression = 262, - sym_field_initializer_list = 263, - sym_shorthand_field_initializer = 264, - sym_field_initializer = 265, - sym_base_field_initializer = 266, - sym_if_expression = 267, - sym_let_condition = 268, - sym__let_chain = 269, - sym__condition = 270, - sym_else_clause = 271, - sym_match_expression = 272, - sym_match_block = 273, - sym_match_arm = 274, - sym_last_match_arm = 275, - sym_match_pattern = 276, - sym_while_expression = 277, - sym_loop_expression = 278, - sym_for_expression = 279, - sym_const_block = 280, - sym_closure_expression = 281, - sym_closure_parameters = 282, - sym_label = 283, - sym_break_expression = 284, - sym_continue_expression = 285, - sym_index_expression = 286, - sym_await_expression = 287, - sym_field_expression = 288, - sym_unsafe_block = 289, - sym_async_block = 290, - sym_gen_block = 291, - sym_try_block = 292, - sym_block = 293, - sym__pattern = 294, - sym_generic_pattern = 295, - sym_tuple_pattern = 296, - sym_slice_pattern = 297, - sym_tuple_struct_pattern = 298, - sym_struct_pattern = 299, - sym_field_pattern = 300, - sym_remaining_field_pattern = 301, - sym_mut_pattern = 302, - sym_range_pattern = 303, - sym_ref_pattern = 304, - sym_captured_pattern = 305, - sym_reference_pattern = 306, - sym_or_pattern = 307, - sym__literal = 308, - sym__literal_pattern = 309, - sym_negative_literal = 310, - sym_string_literal = 311, - sym_raw_string_literal = 312, - sym_boolean_literal = 313, - sym_line_comment = 314, - sym__line_doc_comment_marker = 315, - sym__inner_line_doc_comment_marker = 316, - sym__outer_line_doc_comment_marker = 317, - sym_block_comment = 318, - sym__block_doc_comment_marker = 319, - aux_sym_source_file_repeat1 = 320, - aux_sym_macro_definition_repeat1 = 321, - aux_sym_token_tree_pattern_repeat1 = 322, - aux_sym_token_tree_repeat1 = 323, - aux_sym__non_special_token_repeat1 = 324, - aux_sym_declaration_list_repeat1 = 325, - aux_sym_enum_variant_list_repeat1 = 326, - aux_sym_enum_variant_list_repeat2 = 327, - aux_sym_field_declaration_list_repeat1 = 328, - aux_sym_ordered_field_declaration_list_repeat1 = 329, - aux_sym_function_modifiers_repeat1 = 330, - aux_sym_where_clause_repeat1 = 331, - aux_sym_trait_bounds_repeat1 = 332, - aux_sym_type_parameters_repeat1 = 333, - aux_sym_use_list_repeat1 = 334, - aux_sym_parameters_repeat1 = 335, - aux_sym_for_lifetimes_repeat1 = 336, - aux_sym_tuple_type_repeat1 = 337, - aux_sym_use_bounds_repeat1 = 338, - aux_sym_type_arguments_repeat1 = 339, - aux_sym_delim_token_tree_repeat1 = 340, - aux_sym_arguments_repeat1 = 341, - aux_sym_tuple_expression_repeat1 = 342, - aux_sym_field_initializer_list_repeat1 = 343, - aux_sym_match_block_repeat1 = 344, - aux_sym_match_arm_repeat1 = 345, - aux_sym_closure_parameters_repeat1 = 346, - aux_sym_tuple_pattern_repeat1 = 347, - aux_sym_slice_pattern_repeat1 = 348, - aux_sym_struct_pattern_repeat1 = 349, - aux_sym_string_literal_repeat1 = 350, - alias_sym_field_identifier = 351, - alias_sym_let_chain = 352, - alias_sym_shorthand_field_identifier = 353, - alias_sym_type_identifier = 354, + anon_sym_safe = 117, + anon_sym_ref = 118, + anon_sym_else = 119, + anon_sym_in = 120, + anon_sym_LT2 = 121, + anon_sym_dyn = 122, + sym_mutable_specifier = 123, + anon_sym_raw = 124, + anon_sym_yield = 125, + anon_sym_move = 126, + anon_sym_try = 127, + sym_integer_literal = 128, + aux_sym_string_literal_token1 = 129, + anon_sym_DQUOTE = 130, + sym_char_literal = 131, + sym_escape_sequence = 132, + anon_sym_true = 133, + anon_sym_false = 134, + anon_sym_SLASH_SLASH = 135, + aux_sym_line_comment_token1 = 136, + aux_sym_line_comment_token2 = 137, + aux_sym_line_comment_token3 = 138, + anon_sym_BANG2 = 139, + anon_sym_SLASH2 = 140, + anon_sym_SLASH_STAR = 141, + anon_sym_STAR_SLASH = 142, + sym_shebang = 143, + sym_self = 144, + sym_super = 145, + sym_crate = 146, + sym_metavariable = 147, + sym_string_content = 148, + sym__raw_string_literal_start = 149, + sym_raw_string_literal_content = 150, + sym__raw_string_literal_end = 151, + sym_float_literal = 152, + sym__outer_block_doc_comment_marker = 153, + sym__inner_block_doc_comment_marker = 154, + sym__block_comment_content = 155, + sym__line_doc_content = 156, + sym__error_sentinel = 157, + sym_source_file = 158, + sym__statement = 159, + sym_empty_statement = 160, + sym_expression_statement = 161, + sym_macro_definition = 162, + sym_macro_rule = 163, + sym__token_pattern = 164, + sym_token_tree_pattern = 165, + sym_token_binding_pattern = 166, + sym_token_repetition_pattern = 167, + sym_fragment_specifier = 168, + sym_token_tree = 169, + sym_token_repetition = 170, + sym_attribute_item = 171, + sym_inner_attribute_item = 172, + sym_attribute = 173, + sym_mod_item = 174, + sym_foreign_mod_item = 175, + sym_declaration_list = 176, + sym_struct_item = 177, + sym_union_item = 178, + sym_enum_item = 179, + sym_enum_variant_list = 180, + sym_enum_variant = 181, + sym_field_declaration_list = 182, + sym_field_declaration = 183, + sym_ordered_field_declaration_list = 184, + sym_extern_crate_declaration = 185, + sym_const_item = 186, + sym_static_item = 187, + sym_type_item = 188, + sym_function_item = 189, + sym_function_signature_item = 190, + sym_function_modifiers = 191, + aux_sym__item_modifiers = 192, + sym_where_clause = 193, + sym_where_predicate = 194, + sym_impl_item = 195, + sym_trait_item = 196, + sym_associated_type = 197, + sym_trait_bounds = 198, + sym_higher_ranked_trait_bound = 199, + sym_removed_trait_bound = 200, + sym_type_parameters = 201, + sym_const_parameter = 202, + sym_type_parameter = 203, + sym_lifetime_parameter = 204, + sym_let_declaration = 205, + sym_use_declaration = 206, + sym__use_clause = 207, + sym_scoped_use_list = 208, + sym_use_list = 209, + sym_use_as_clause = 210, + sym_use_wildcard = 211, + sym_parameters = 212, + sym_self_parameter = 213, + sym_variadic_parameter = 214, + sym_parameter = 215, + sym_extern_modifier = 216, + sym_visibility_modifier = 217, + sym__type = 218, + sym_bracketed_type = 219, + sym_qualified_type = 220, + sym_lifetime = 221, + sym_array_type = 222, + sym_for_lifetimes = 223, + sym_function_type = 224, + sym_tuple_type = 225, + sym_unit_type = 226, + sym_generic_function = 227, + sym_generic_type = 228, + sym_generic_type_with_turbofish = 229, + sym_bounded_type = 230, + sym_use_bounds = 231, + sym_type_arguments = 232, + sym_type_binding = 233, + sym_reference_type = 234, + sym_pointer_type = 235, + sym_never_type = 236, + sym_abstract_type = 237, + sym_dynamic_type = 238, + sym__expression_except_range = 239, + sym__expression = 240, + sym_macro_invocation = 241, + sym_delim_token_tree = 242, + sym__delim_tokens = 243, + sym__non_delim_token = 244, + sym_scoped_identifier = 245, + sym_scoped_type_identifier_in_expression_position = 246, + sym_scoped_type_identifier = 247, + sym_range_expression = 248, + sym_unary_expression = 249, + sym_try_expression = 250, + sym_reference_expression = 251, + sym_binary_expression = 252, + sym_assignment_expression = 253, + sym_compound_assignment_expr = 254, + sym_type_cast_expression = 255, + sym_return_expression = 256, + sym_yield_expression = 257, + sym_call_expression = 258, + sym_arguments = 259, + sym_array_expression = 260, + sym_parenthesized_expression = 261, + sym_tuple_expression = 262, + sym_unit_expression = 263, + sym_struct_expression = 264, + sym_field_initializer_list = 265, + sym_shorthand_field_initializer = 266, + sym_field_initializer = 267, + sym_base_field_initializer = 268, + sym_if_expression = 269, + sym_let_condition = 270, + sym__let_chain = 271, + sym__condition = 272, + sym_else_clause = 273, + sym_match_expression = 274, + sym_match_block = 275, + sym_match_arm = 276, + sym_last_match_arm = 277, + sym_match_pattern = 278, + sym_while_expression = 279, + sym_loop_expression = 280, + sym_for_expression = 281, + sym_const_block = 282, + sym_closure_expression = 283, + sym_closure_parameters = 284, + sym_label = 285, + sym_break_expression = 286, + sym_continue_expression = 287, + sym_index_expression = 288, + sym_await_expression = 289, + sym_field_expression = 290, + sym_unsafe_block = 291, + sym_async_block = 292, + sym_gen_block = 293, + sym_try_block = 294, + sym_block = 295, + sym__pattern = 296, + sym_generic_pattern = 297, + sym_tuple_pattern = 298, + sym_slice_pattern = 299, + sym_tuple_struct_pattern = 300, + sym_struct_pattern = 301, + sym_field_pattern = 302, + sym_remaining_field_pattern = 303, + sym_mut_pattern = 304, + sym_range_pattern = 305, + sym_ref_pattern = 306, + sym_captured_pattern = 307, + sym_reference_pattern = 308, + sym_or_pattern = 309, + sym__literal = 310, + sym__literal_pattern = 311, + sym_negative_literal = 312, + sym_string_literal = 313, + sym_raw_string_literal = 314, + sym_boolean_literal = 315, + sym_line_comment = 316, + sym__line_doc_comment_marker = 317, + sym__inner_line_doc_comment_marker = 318, + sym__outer_line_doc_comment_marker = 319, + sym_block_comment = 320, + sym__block_doc_comment_marker = 321, + aux_sym_source_file_repeat1 = 322, + aux_sym_macro_definition_repeat1 = 323, + aux_sym_token_tree_pattern_repeat1 = 324, + aux_sym_token_tree_repeat1 = 325, + aux_sym__non_special_token_repeat1 = 326, + aux_sym_declaration_list_repeat1 = 327, + aux_sym_enum_variant_list_repeat1 = 328, + aux_sym_enum_variant_list_repeat2 = 329, + aux_sym_field_declaration_list_repeat1 = 330, + aux_sym_ordered_field_declaration_list_repeat1 = 331, + aux_sym_where_clause_repeat1 = 332, + aux_sym_trait_bounds_repeat1 = 333, + aux_sym_type_parameters_repeat1 = 334, + aux_sym_use_list_repeat1 = 335, + aux_sym_parameters_repeat1 = 336, + aux_sym_for_lifetimes_repeat1 = 337, + aux_sym_tuple_type_repeat1 = 338, + aux_sym_use_bounds_repeat1 = 339, + aux_sym_type_arguments_repeat1 = 340, + aux_sym_delim_token_tree_repeat1 = 341, + aux_sym_arguments_repeat1 = 342, + aux_sym_tuple_expression_repeat1 = 343, + aux_sym_field_initializer_list_repeat1 = 344, + aux_sym_match_block_repeat1 = 345, + aux_sym_match_arm_repeat1 = 346, + aux_sym_closure_parameters_repeat1 = 347, + aux_sym_tuple_pattern_repeat1 = 348, + aux_sym_slice_pattern_repeat1 = 349, + aux_sym_struct_pattern_repeat1 = 350, + aux_sym_string_literal_repeat1 = 351, + alias_sym_field_identifier = 352, + alias_sym_let_chain = 353, + alias_sym_shorthand_field_identifier = 354, + alias_sym_type_identifier = 355, }; static const char * const ts_symbol_names[] = { @@ -494,6 +495,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", @@ -568,6 +570,7 @@ static const char * const ts_symbol_names[] = { [sym_function_item] = "function_item", [sym_function_signature_item] = "function_signature_item", [sym_function_modifiers] = "function_modifiers", + [aux_sym__item_modifiers] = "_item_modifiers", [sym_where_clause] = "where_clause", [sym_where_predicate] = "where_predicate", [sym_impl_item] = "impl_item", @@ -707,7 +710,6 @@ static const char * const ts_symbol_names[] = { [aux_sym_enum_variant_list_repeat2] = "enum_variant_list_repeat2", [aux_sym_field_declaration_list_repeat1] = "field_declaration_list_repeat1", [aux_sym_ordered_field_declaration_list_repeat1] = "ordered_field_declaration_list_repeat1", - [aux_sym_function_modifiers_repeat1] = "function_modifiers_repeat1", [aux_sym_where_clause_repeat1] = "where_clause_repeat1", [aux_sym_trait_bounds_repeat1] = "trait_bounds_repeat1", [aux_sym_type_parameters_repeat1] = "type_parameters_repeat1", @@ -852,6 +854,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, @@ -926,6 +929,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_function_item] = sym_function_item, [sym_function_signature_item] = sym_function_signature_item, [sym_function_modifiers] = sym_function_modifiers, + [aux_sym__item_modifiers] = aux_sym__item_modifiers, [sym_where_clause] = sym_where_clause, [sym_where_predicate] = sym_where_predicate, [sym_impl_item] = sym_impl_item, @@ -1065,7 +1069,6 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym_enum_variant_list_repeat2] = aux_sym_enum_variant_list_repeat2, [aux_sym_field_declaration_list_repeat1] = aux_sym_field_declaration_list_repeat1, [aux_sym_ordered_field_declaration_list_repeat1] = aux_sym_ordered_field_declaration_list_repeat1, - [aux_sym_function_modifiers_repeat1] = aux_sym_function_modifiers_repeat1, [aux_sym_where_clause_repeat1] = aux_sym_where_clause_repeat1, [aux_sym_trait_bounds_repeat1] = aux_sym_trait_bounds_repeat1, [aux_sym_type_parameters_repeat1] = aux_sym_type_parameters_repeat1, @@ -1561,6 +1564,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, @@ -1857,6 +1864,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [aux_sym__item_modifiers] = { + .visible = false, + .named = false, + }, [sym_where_clause] = { .visible = true, .named = true, @@ -2418,10 +2429,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, - [aux_sym_function_modifiers_repeat1] = { - .visible = false, - .named = false, - }, [aux_sym_where_clause_repeat1] = { .visible = false, .named = false, @@ -2690,8 +2697,8 @@ static const TSMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [101] = {.index = 106, .length = 2}, [102] = {.index = 112, .length = 1}, [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}, @@ -2858,10 +2865,10 @@ static const TSMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [272] = {.index = 470, .length = 4}, [273] = {.index = 474, .length = 4}, [274] = {.index = 474, .length = 4}, - [275] = {.index = 478, .length = 4}, - [276] = {.index = 482, .length = 5}, - [277] = {.index = 487, .length = 4}, - [278] = {.index = 491, .length = 2}, + [275] = {.index = 478, .length = 2}, + [276] = {.index = 480, .length = 4}, + [277] = {.index = 484, .length = 5}, + [278] = {.index = 489, .length = 4}, [279] = {.index = 493, .length = 3}, [280] = {.index = 496, .length = 4}, [281] = {.index = 500, .length = 4}, @@ -2872,12 +2879,14 @@ static const TSMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [286] = {.index = 518, .length = 4}, [287] = {.index = 518, .length = 4}, [288] = {.index = 522, .length = 5}, - [289] = {.index = 527, .length = 4}, - [290] = {.index = 531, .length = 5}, - [291] = {.index = 536, .length = 4}, - [292] = {.index = 540, .length = 4}, - [293] = {.index = 544, .length = 3}, - [294] = {.index = 547, .length = 5}, + [289] = {.index = 527, .length = 2}, + [290] = {.index = 529, .length = 4}, + [291] = {.index = 533, .length = 5}, + [292] = {.index = 538, .length = 4}, + [293] = {.index = 542, .length = 4}, + [294] = {.index = 546, .length = 3}, + [295] = {.index = 549, .length = 5}, + [296] = {.index = 554, .length = 3}, }; static const TSFieldMapEntry ts_field_map_entries[] = { @@ -3064,10 +3073,10 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_argument, 2}, [114] = {field_body, 3}, + [115] = + {field_body, 3}, {field_parameters, 0}, {field_return_type, 2}, - [117] = - {field_body, 3}, [118] = {field_length, 3}, [119] = @@ -3561,24 +3570,24 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_type, 5}, {field_type_parameters, 2}, [478] = + {field_name, 4}, + {field_type, 6}, + [480] = {field_name, 2}, {field_parameters, 4}, {field_return_type, 6}, {field_type_parameters, 3}, - [482] = + [484] = {field_body, 7}, {field_name, 2}, {field_parameters, 4}, {field_return_type, 6}, {field_type_parameters, 3}, - [487] = + [489] = {field_body, 7}, {field_name, 2}, {field_parameters, 3}, {field_return_type, 5}, - [491] = - {field_name, 4}, - {field_type, 6}, [493] = {field_name, 2}, {field_type, 6}, @@ -3623,36 +3632,43 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_return_type, 6}, {field_type_parameters, 3}, [527] = + {field_name, 5}, + {field_type, 7}, + [529] = {field_name, 3}, {field_parameters, 5}, {field_return_type, 7}, {field_type_parameters, 4}, - [531] = + [533] = {field_body, 8}, {field_name, 3}, {field_parameters, 5}, {field_return_type, 7}, {field_type_parameters, 4}, - [536] = + [538] = {field_body, 8}, {field_name, 3}, {field_parameters, 4}, {field_return_type, 6}, - [540] = + [542] = {field_alternative, 8}, {field_pattern, 2}, {field_type, 4}, {field_value, 6}, - [544] = + [546] = {field_name, 4}, {field_type, 6}, {field_value, 8}, - [547] = + [549] = {field_body, 9}, {field_name, 3}, {field_parameters, 5}, {field_return_type, 7}, {field_type_parameters, 4}, + [554] = + {field_name, 5}, + {field_type, 7}, + {field_value, 9}, }; static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE_LENGTH] = { @@ -4018,142 +4034,142 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [6] = 6, [7] = 7, [8] = 8, - [9] = 9, - [10] = 5, - [11] = 4, + [9] = 3, + [10] = 10, + [11] = 5, [12] = 7, [13] = 8, - [14] = 9, - [15] = 5, - [16] = 4, - [17] = 9, - [18] = 9, - [19] = 5, - [20] = 4, + [14] = 3, + [15] = 10, + [16] = 5, + [17] = 8, + [18] = 3, + [19] = 10, + [20] = 5, [21] = 8, - [22] = 9, - [23] = 5, - [24] = 4, + [22] = 3, + [23] = 10, + [24] = 5, [25] = 8, - [26] = 9, - [27] = 5, - [28] = 4, + [26] = 3, + [27] = 10, + [28] = 5, [29] = 8, - [30] = 9, - [31] = 5, - [32] = 4, + [30] = 3, + [31] = 10, + [32] = 5, [33] = 8, - [34] = 8, + [34] = 10, [35] = 35, [36] = 36, [37] = 37, [38] = 38, - [39] = 39, + [39] = 37, [40] = 40, - [41] = 38, - [42] = 39, + [41] = 40, + [42] = 42, [43] = 35, - [44] = 36, - [45] = 39, - [46] = 40, - [47] = 37, - [48] = 38, - [49] = 38, - [50] = 39, + [44] = 35, + [45] = 38, + [46] = 36, + [47] = 42, + [48] = 40, + [49] = 37, + [50] = 40, [51] = 35, - [52] = 35, - [53] = 39, - [54] = 38, - [55] = 38, - [56] = 38, - [57] = 39, - [58] = 39, - [59] = 39, - [60] = 36, + [52] = 37, + [53] = 38, + [54] = 40, + [55] = 37, + [56] = 40, + [57] = 36, + [58] = 37, + [59] = 40, + [60] = 42, [61] = 40, [62] = 37, [63] = 36, - [64] = 38, - [65] = 40, - [66] = 37, + [64] = 37, + [65] = 42, + [66] = 38, [67] = 67, [68] = 68, [69] = 69, - [70] = 70, - [71] = 71, + [70] = 68, + [71] = 69, [72] = 72, - [73] = 70, + [73] = 73, [74] = 74, - [75] = 74, - [76] = 76, - [77] = 77, - [78] = 78, - [79] = 72, - [80] = 76, - [81] = 77, - [82] = 78, + [75] = 75, + [76] = 75, + [77] = 72, + [78] = 73, + [79] = 74, + [80] = 80, + [81] = 81, + [82] = 82, [83] = 83, [84] = 84, [85] = 85, [86] = 86, - [87] = 87, - [88] = 88, + [87] = 84, + [88] = 85, [89] = 89, - [90] = 90, - [91] = 84, + [90] = 89, + [91] = 91, [92] = 92, - [93] = 87, - [94] = 88, - [95] = 89, - [96] = 90, - [97] = 84, - [98] = 92, - [99] = 99, + [93] = 91, + [94] = 92, + [95] = 95, + [96] = 96, + [97] = 86, + [98] = 84, + [99] = 85, [100] = 100, - [101] = 101, - [102] = 102, - [103] = 103, + [101] = 95, + [102] = 96, + [103] = 100, [104] = 104, - [105] = 87, - [106] = 88, - [107] = 89, - [108] = 104, - [109] = 84, - [110] = 92, - [111] = 87, - [112] = 88, - [113] = 89, - [114] = 90, - [115] = 84, + [105] = 105, + [106] = 106, + [107] = 91, + [108] = 92, + [109] = 86, + [110] = 84, + [111] = 85, + [112] = 104, + [113] = 105, + [114] = 89, + [115] = 91, [116] = 92, - [117] = 99, - [118] = 100, - [119] = 87, - [120] = 88, - [121] = 89, - [122] = 101, - [123] = 90, - [124] = 84, - [125] = 92, - [126] = 87, - [127] = 88, - [128] = 89, - [129] = 90, - [130] = 92, - [131] = 102, - [132] = 103, - [133] = 90, + [117] = 106, + [118] = 86, + [119] = 84, + [120] = 85, + [121] = 121, + [122] = 89, + [123] = 91, + [124] = 92, + [125] = 86, + [126] = 84, + [127] = 85, + [128] = 128, + [129] = 89, + [130] = 91, + [131] = 92, + [132] = 86, + [133] = 89, [134] = 134, [135] = 135, - [136] = 134, + [136] = 136, [137] = 137, [138] = 138, - [139] = 138, - [140] = 140, - [141] = 137, - [142] = 142, - [143] = 135, - [144] = 144, + [139] = 139, + [140] = 138, + [141] = 141, + [142] = 139, + [143] = 137, + [144] = 136, [145] = 145, [146] = 146, [147] = 147, @@ -4163,8 +4179,8 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [151] = 151, [152] = 152, [153] = 153, - [154] = 154, - [155] = 155, + [154] = 147, + [155] = 148, [156] = 156, [157] = 157, [158] = 158, @@ -4173,112 +4189,112 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [161] = 161, [162] = 162, [163] = 163, - [164] = 151, + [164] = 164, [165] = 165, - [166] = 165, - [167] = 167, - [168] = 168, + [166] = 166, + [167] = 149, + [168] = 134, [169] = 169, - [170] = 142, + [170] = 170, [171] = 171, [172] = 172, - [173] = 167, - [174] = 174, + [173] = 150, + [174] = 164, [175] = 175, [176] = 176, - [177] = 157, + [177] = 177, [178] = 178, - [179] = 146, + [179] = 179, [180] = 180, - [181] = 168, - [182] = 145, + [181] = 169, + [182] = 182, [183] = 183, - [184] = 153, + [184] = 184, [185] = 185, [186] = 186, - [187] = 187, - [188] = 178, - [189] = 152, - [190] = 146, - [191] = 178, - [192] = 152, - [193] = 162, - [194] = 146, - [195] = 178, - [196] = 152, - [197] = 197, - [198] = 197, - [199] = 199, - [200] = 200, + [187] = 172, + [188] = 151, + [189] = 146, + [190] = 145, + [191] = 172, + [192] = 151, + [193] = 145, + [194] = 172, + [195] = 151, + [196] = 145, + [197] = 182, + [198] = 161, + [199] = 185, + [200] = 162, [201] = 201, - [202] = 183, - [203] = 169, + [202] = 202, + [203] = 203, [204] = 204, - [205] = 160, - [206] = 161, - [207] = 180, + [205] = 205, + [206] = 206, + [207] = 207, [208] = 208, - [209] = 209, - [210] = 210, + [209] = 207, + [210] = 207, [211] = 211, - [212] = 212, - [213] = 201, - [214] = 199, - [215] = 215, + [212] = 202, + [213] = 213, + [214] = 152, + [215] = 204, [216] = 216, - [217] = 217, - [218] = 218, - [219] = 219, - [220] = 215, + [217] = 204, + [218] = 157, + [219] = 184, + [220] = 205, [221] = 221, [222] = 222, - [223] = 216, - [224] = 215, - [225] = 216, - [226] = 217, - [227] = 216, - [228] = 217, - [229] = 229, - [230] = 221, + [223] = 223, + [224] = 224, + [225] = 225, + [226] = 221, + [227] = 222, + [228] = 228, + [229] = 223, + [230] = 224, [231] = 231, - [232] = 219, - [233] = 215, - [234] = 219, - [235] = 229, - [236] = 236, - [237] = 231, - [238] = 218, + [232] = 232, + [233] = 233, + [234] = 234, + [235] = 225, + [236] = 231, + [237] = 221, + [238] = 233, [239] = 239, - [240] = 222, - [241] = 241, - [242] = 231, - [243] = 236, - [244] = 236, - [245] = 217, - [246] = 241, - [247] = 236, - [248] = 219, - [249] = 236, - [250] = 250, - [251] = 229, - [252] = 250, + [240] = 240, + [241] = 232, + [242] = 224, + [243] = 228, + [244] = 221, + [245] = 222, + [246] = 234, + [247] = 232, + [248] = 240, + [249] = 228, + [250] = 234, + [251] = 222, + [252] = 223, [253] = 253, - [254] = 217, - [255] = 215, - [256] = 219, - [257] = 253, + [254] = 254, + [255] = 224, + [256] = 223, + [257] = 232, [258] = 258, - [259] = 259, - [260] = 260, - [261] = 258, - [262] = 259, - [263] = 260, - [264] = 260, - [265] = 259, - [266] = 258, + [259] = 239, + [260] = 253, + [261] = 240, + [262] = 221, + [263] = 222, + [264] = 254, + [265] = 223, + [266] = 224, [267] = 267, - [268] = 268, - [269] = 269, + [268] = 267, + [269] = 267, [270] = 270, [271] = 271, [272] = 272, @@ -4287,138 +4303,138 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [275] = 275, [276] = 276, [277] = 277, - [278] = 278, + [278] = 272, [279] = 279, [280] = 280, [281] = 281, - [282] = 282, + [282] = 277, [283] = 283, [284] = 284, - [285] = 285, - [286] = 268, - [287] = 269, + [285] = 272, + [286] = 286, + [287] = 283, [288] = 288, - [289] = 270, + [289] = 289, [290] = 290, - [291] = 291, + [291] = 286, [292] = 292, [293] = 293, [294] = 294, [295] = 295, - [296] = 269, + [296] = 296, [297] = 297, - [298] = 269, - [299] = 269, - [300] = 269, + [298] = 298, + [299] = 299, + [300] = 300, [301] = 301, [302] = 302, - [303] = 301, + [303] = 303, [304] = 304, [305] = 305, [306] = 306, - [307] = 307, + [307] = 295, [308] = 308, - [309] = 267, - [310] = 276, - [311] = 277, - [312] = 278, - [313] = 279, - [314] = 280, - [315] = 281, - [316] = 282, - [317] = 317, - [318] = 318, - [319] = 319, - [320] = 320, - [321] = 321, - [322] = 322, + [309] = 302, + [310] = 295, + [311] = 299, + [312] = 284, + [313] = 302, + [314] = 284, + [315] = 293, + [316] = 297, + [317] = 300, + [318] = 304, + [319] = 286, + [320] = 273, + [321] = 274, + [322] = 277, [323] = 323, - [324] = 318, - [325] = 285, - [326] = 326, + [324] = 293, + [325] = 283, + [326] = 297, [327] = 327, [328] = 328, - [329] = 283, - [330] = 301, - [331] = 284, - [332] = 285, - [333] = 268, - [334] = 301, - [335] = 274, - [336] = 269, - [337] = 274, - [338] = 318, - [339] = 276, - [340] = 277, - [341] = 278, - [342] = 279, - [343] = 280, - [344] = 281, - [345] = 282, - [346] = 283, - [347] = 284, - [348] = 285, - [349] = 268, - [350] = 350, - [351] = 269, - [352] = 270, - [353] = 353, - [354] = 350, - [355] = 355, - [356] = 356, - [357] = 357, - [358] = 358, - [359] = 270, + [329] = 286, + [330] = 294, + [331] = 286, + [332] = 332, + [333] = 333, + [334] = 334, + [335] = 298, + [336] = 286, + [337] = 294, + [338] = 299, + [339] = 339, + [340] = 340, + [341] = 341, + [342] = 342, + [343] = 286, + [344] = 344, + [345] = 345, + [346] = 346, + [347] = 273, + [348] = 299, + [349] = 295, + [350] = 304, + [351] = 274, + [352] = 352, + [353] = 302, + [354] = 284, + [355] = 293, + [356] = 297, + [357] = 300, + [358] = 304, + [359] = 273, [360] = 274, - [361] = 358, - [362] = 355, - [363] = 271, - [364] = 294, - [365] = 276, - [366] = 277, - [367] = 317, - [368] = 323, - [369] = 353, - [370] = 272, - [371] = 275, - [372] = 291, - [373] = 295, - [374] = 305, - [375] = 307, - [376] = 308, - [377] = 322, - [378] = 326, - [379] = 278, - [380] = 358, - [381] = 279, - [382] = 280, - [383] = 271, - [384] = 281, - [385] = 323, - [386] = 295, - [387] = 282, - [388] = 358, - [389] = 283, - [390] = 271, - [391] = 284, - [392] = 295, - [393] = 393, - [394] = 394, + [361] = 277, + [362] = 272, + [363] = 340, + [364] = 283, + [365] = 342, + [366] = 296, + [367] = 367, + [368] = 345, + [369] = 369, + [370] = 286, + [371] = 369, + [372] = 294, + [373] = 367, + [374] = 374, + [375] = 301, + [376] = 352, + [377] = 377, + [378] = 378, + [379] = 308, + [380] = 332, + [381] = 339, + [382] = 341, + [383] = 281, + [384] = 289, + [385] = 292, + [386] = 386, + [387] = 340, + [388] = 388, + [389] = 345, + [390] = 374, + [391] = 374, + [392] = 308, + [393] = 377, + [394] = 340, [395] = 395, - [396] = 396, + [396] = 345, [397] = 397, - [398] = 398, - [399] = 399, - [400] = 400, + [398] = 308, + [399] = 378, + [400] = 300, [401] = 401, [402] = 402, [403] = 403, [404] = 404, - [405] = 405, + [405] = 402, [406] = 406, [407] = 407, [408] = 408, - [409] = 409, + [409] = 203, [410] = 410, [411] = 411, [412] = 412, @@ -4426,92 +4442,92 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [414] = 414, [415] = 415, [416] = 416, - [417] = 400, + [417] = 417, [418] = 418, - [419] = 419, + [419] = 216, [420] = 420, - [421] = 204, + [421] = 421, [422] = 422, [423] = 423, [424] = 424, [425] = 425, - [426] = 400, - [427] = 212, - [428] = 399, - [429] = 429, - [430] = 430, + [426] = 426, + [427] = 427, + [428] = 428, + [429] = 402, + [430] = 406, [431] = 431, [432] = 432, - [433] = 433, - [434] = 433, - [435] = 431, - [436] = 432, - [437] = 430, - [438] = 432, - [439] = 431, - [440] = 440, - [441] = 440, + [433] = 432, + [434] = 434, + [435] = 435, + [436] = 435, + [437] = 432, + [438] = 438, + [439] = 434, + [440] = 438, + [441] = 438, [442] = 442, - [443] = 443, + [443] = 442, [444] = 444, [445] = 445, - [446] = 444, - [447] = 447, - [448] = 447, - [449] = 444, - [450] = 444, - [451] = 445, - [452] = 447, - [453] = 445, - [454] = 445, - [455] = 447, - [456] = 456, - [457] = 457, - [458] = 456, - [459] = 456, - [460] = 456, - [461] = 461, - [462] = 461, - [463] = 290, - [464] = 461, - [465] = 461, - [466] = 466, - [467] = 466, - [468] = 398, - [469] = 466, - [470] = 396, - [471] = 394, - [472] = 395, - [473] = 466, - [474] = 397, - [475] = 475, - [476] = 475, - [477] = 403, - [478] = 423, - [479] = 479, - [480] = 401, - [481] = 481, - [482] = 411, - [483] = 408, - [484] = 409, - [485] = 404, - [486] = 413, - [487] = 414, - [488] = 418, - [489] = 407, - [490] = 415, - [491] = 416, + [446] = 446, + [447] = 446, + [448] = 448, + [449] = 449, + [450] = 446, + [451] = 449, + [452] = 448, + [453] = 446, + [454] = 449, + [455] = 448, + [456] = 449, + [457] = 448, + [458] = 458, + [459] = 459, + [460] = 459, + [461] = 459, + [462] = 459, + [463] = 270, + [464] = 464, + [465] = 464, + [466] = 464, + [467] = 464, + [468] = 468, + [469] = 290, + [470] = 334, + [471] = 468, + [472] = 386, + [473] = 306, + [474] = 468, + [475] = 346, + [476] = 468, + [477] = 416, + [478] = 478, + [479] = 414, + [480] = 480, + [481] = 423, + [482] = 401, + [483] = 410, + [484] = 425, + [485] = 407, + [486] = 412, + [487] = 411, + [488] = 422, + [489] = 489, + [490] = 413, + [491] = 420, [492] = 424, - [493] = 425, - [494] = 410, - [495] = 412, - [496] = 406, - [497] = 497, - [498] = 422, + [493] = 428, + [494] = 403, + [495] = 404, + [496] = 418, + [497] = 478, + [498] = 415, [499] = 499, - [500] = 500, - [501] = 499, - [502] = 500, + [500] = 421, + [501] = 306, + [502] = 502, [503] = 503, [504] = 504, [505] = 505, @@ -4609,7 +4625,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [597] = 597, [598] = 598, [599] = 599, - [600] = 395, + [600] = 600, [601] = 601, [602] = 602, [603] = 603, @@ -4619,28 +4635,28 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [607] = 607, [608] = 608, [609] = 609, - [610] = 610, + [610] = 290, [611] = 611, - [612] = 397, + [612] = 612, [613] = 613, - [614] = 398, + [614] = 614, [615] = 615, - [616] = 394, - [617] = 396, + [616] = 616, + [617] = 617, [618] = 618, [619] = 619, [620] = 620, [621] = 621, - [622] = 622, + [622] = 334, [623] = 623, [624] = 624, [625] = 625, - [626] = 626, + [626] = 386, [627] = 627, [628] = 628, [629] = 629, [630] = 630, - [631] = 631, + [631] = 346, [632] = 632, [633] = 633, [634] = 634, @@ -4654,18 +4670,18 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [642] = 642, [643] = 643, [644] = 644, - [645] = 550, + [645] = 645, [646] = 646, [647] = 647, [648] = 648, [649] = 649, [650] = 650, - [651] = 545, + [651] = 651, [652] = 652, [653] = 653, [654] = 654, [655] = 655, - [656] = 656, + [656] = 619, [657] = 657, [658] = 658, [659] = 659, @@ -4681,7 +4697,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [669] = 669, [670] = 670, [671] = 671, - [672] = 672, + [672] = 578, [673] = 673, [674] = 674, [675] = 675, @@ -4693,7 +4709,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [681] = 681, [682] = 682, [683] = 683, - [684] = 684, + [684] = 611, [685] = 685, [686] = 686, [687] = 687, @@ -4751,7 +4767,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [739] = 739, [740] = 740, [741] = 741, - [742] = 742, + [742] = 664, [743] = 743, [744] = 744, [745] = 745, @@ -4808,99 +4824,99 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [796] = 796, [797] = 797, [798] = 798, - [799] = 798, + [799] = 799, [800] = 800, - [801] = 796, + [801] = 801, [802] = 802, [803] = 803, - [804] = 803, + [804] = 804, [805] = 805, [806] = 806, - [807] = 807, + [807] = 806, [808] = 808, - [809] = 809, - [810] = 810, - [811] = 809, - [812] = 806, - [813] = 805, + [809] = 805, + [810] = 808, + [811] = 811, + [812] = 812, + [813] = 813, [814] = 814, - [815] = 815, - [816] = 807, - [817] = 808, + [815] = 811, + [816] = 816, + [817] = 813, [818] = 818, [819] = 819, - [820] = 819, - [821] = 821, + [820] = 820, + [821] = 816, [822] = 822, [823] = 823, - [824] = 822, - [825] = 823, - [826] = 826, - [827] = 826, + [824] = 823, + [825] = 818, + [826] = 819, + [827] = 827, [828] = 828, [829] = 829, - [830] = 828, - [831] = 831, + [830] = 830, + [831] = 829, [832] = 832, - [833] = 833, + [833] = 828, [834] = 834, - [835] = 831, - [836] = 832, + [835] = 835, + [836] = 836, [837] = 837, - [838] = 838, - [839] = 839, + [838] = 836, + [839] = 837, [840] = 840, [841] = 840, [842] = 842, - [843] = 821, - [844] = 844, - [845] = 829, + [843] = 843, + [844] = 834, + [845] = 834, [846] = 846, - [847] = 837, - [848] = 839, - [849] = 822, - [850] = 837, - [851] = 822, - [852] = 837, - [853] = 833, + [847] = 830, + [848] = 848, + [849] = 849, + [850] = 850, + [851] = 851, + [852] = 849, + [853] = 853, [854] = 854, - [855] = 855, - [856] = 855, - [857] = 855, - [858] = 855, - [859] = 855, - [860] = 860, - [861] = 861, - [862] = 862, - [863] = 863, - [864] = 864, - [865] = 861, + [855] = 834, + [856] = 851, + [857] = 832, + [858] = 835, + [859] = 854, + [860] = 846, + [861] = 849, + [862] = 846, + [863] = 849, + [864] = 846, + [865] = 834, [866] = 866, [867] = 867, - [868] = 861, - [869] = 860, + [868] = 868, + [869] = 868, [870] = 870, [871] = 871, - [872] = 866, - [873] = 861, - [874] = 874, - [875] = 866, + [872] = 872, + [873] = 873, + [874] = 866, + [875] = 868, [876] = 876, - [877] = 864, - [878] = 860, - [879] = 862, - [880] = 862, - [881] = 862, - [882] = 862, - [883] = 861, + [877] = 866, + [878] = 870, + [879] = 873, + [880] = 880, + [881] = 872, + [882] = 882, + [883] = 883, [884] = 884, - [885] = 884, - [886] = 886, - [887] = 887, - [888] = 888, - [889] = 889, - [890] = 890, - [891] = 891, + [885] = 866, + [886] = 868, + [887] = 868, + [888] = 873, + [889] = 880, + [890] = 872, + [891] = 866, [892] = 892, [893] = 893, [894] = 894, @@ -4921,192 +4937,192 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [909] = 909, [910] = 910, [911] = 911, - [912] = 912, + [912] = 895, [913] = 913, [914] = 914, [915] = 915, [916] = 916, [917] = 917, - [918] = 888, - [919] = 889, - [920] = 890, - [921] = 921, - [922] = 893, - [923] = 923, + [918] = 918, + [919] = 919, + [920] = 920, + [921] = 900, + [922] = 901, + [923] = 902, [924] = 924, [925] = 925, - [926] = 886, + [926] = 911, [927] = 927, [928] = 928, - [929] = 929, - [930] = 893, + [929] = 892, + [930] = 930, [931] = 931, - [932] = 907, - [933] = 908, + [932] = 932, + [933] = 933, [934] = 934, [935] = 935, - [936] = 910, - [937] = 937, - [938] = 938, - [939] = 939, - [940] = 913, - [941] = 941, - [942] = 942, - [943] = 914, - [944] = 944, - [945] = 888, - [946] = 889, - [947] = 890, + [936] = 936, + [937] = 910, + [938] = 911, + [939] = 895, + [940] = 916, + [941] = 917, + [942] = 918, + [943] = 919, + [944] = 920, + [945] = 900, + [946] = 901, + [947] = 902, [948] = 948, - [949] = 949, - [950] = 915, - [951] = 916, - [952] = 917, - [953] = 931, + [949] = 925, + [950] = 950, + [951] = 951, + [952] = 952, + [953] = 953, [954] = 954, - [955] = 934, + [955] = 925, [956] = 956, [957] = 957, [958] = 958, - [959] = 959, - [960] = 908, - [961] = 935, - [962] = 910, + [959] = 910, + [960] = 911, + [961] = 894, + [962] = 895, [963] = 963, - [964] = 964, + [964] = 916, [965] = 965, - [966] = 966, + [966] = 918, [967] = 967, - [968] = 913, - [969] = 949, - [970] = 915, + [968] = 968, + [969] = 916, + [970] = 970, [971] = 971, - [972] = 972, + [972] = 958, [973] = 973, [974] = 974, - [975] = 975, - [976] = 976, - [977] = 957, - [978] = 978, - [979] = 979, - [980] = 980, - [981] = 981, + [975] = 917, + [976] = 965, + [977] = 918, + [978] = 919, + [979] = 956, + [980] = 957, + [981] = 894, [982] = 982, - [983] = 931, - [984] = 934, - [985] = 985, - [986] = 935, - [987] = 907, - [988] = 908, - [989] = 949, - [990] = 910, + [983] = 920, + [984] = 984, + [985] = 965, + [986] = 986, + [987] = 987, + [988] = 988, + [989] = 956, + [990] = 990, [991] = 991, [992] = 992, - [993] = 913, - [994] = 914, - [995] = 915, - [996] = 916, - [997] = 886, - [998] = 959, - [999] = 980, - [1000] = 917, - [1001] = 1001, - [1002] = 907, - [1003] = 908, - [1004] = 941, - [1005] = 942, - [1006] = 974, - [1007] = 976, - [1008] = 979, - [1009] = 892, - [1010] = 902, - [1011] = 903, - [1012] = 1012, - [1013] = 913, - [1014] = 914, - [1015] = 949, - [1016] = 915, - [1017] = 916, - [1018] = 917, - [1019] = 958, - [1020] = 978, - [1021] = 981, - [1022] = 982, - [1023] = 1001, - [1024] = 891, - [1025] = 894, - [1026] = 899, - [1027] = 906, - [1028] = 909, - [1029] = 921, - [1030] = 924, - [1031] = 888, - [1032] = 889, - [1033] = 890, - [1034] = 963, - [1035] = 972, - [1036] = 973, - [1037] = 985, - [1038] = 991, - [1039] = 895, - [1040] = 896, - [1041] = 897, - [1042] = 898, - [1043] = 901, - [1044] = 905, - [1045] = 911, - [1046] = 912, - [1047] = 893, - [1048] = 954, - [1049] = 956, - [1050] = 964, - [1051] = 966, - [1052] = 971, - [1053] = 975, - [1054] = 923, - [1055] = 931, - [1056] = 934, - [1057] = 907, - [1058] = 1058, - [1059] = 1059, - [1060] = 608, - [1061] = 1061, - [1062] = 1062, - [1063] = 1063, - [1064] = 608, - [1065] = 1065, + [993] = 993, + [994] = 994, + [995] = 995, + [996] = 987, + [997] = 909, + [998] = 974, + [999] = 910, + [1000] = 911, + [1001] = 897, + [1002] = 898, + [1003] = 903, + [1004] = 904, + [1005] = 906, + [1006] = 915, + [1007] = 924, + [1008] = 1008, + [1009] = 1009, + [1010] = 916, + [1011] = 1011, + [1012] = 917, + [1013] = 965, + [1014] = 918, + [1015] = 919, + [1016] = 920, + [1017] = 986, + [1018] = 988, + [1019] = 990, + [1020] = 991, + [1021] = 993, + [1022] = 994, + [1023] = 995, + [1024] = 1008, + [1025] = 1025, + [1026] = 1026, + [1027] = 1027, + [1028] = 893, + [1029] = 900, + [1030] = 901, + [1031] = 902, + [1032] = 905, + [1033] = 913, + [1034] = 914, + [1035] = 927, + [1036] = 928, + [1037] = 932, + [1038] = 933, + [1039] = 934, + [1040] = 935, + [1041] = 936, + [1042] = 948, + [1043] = 950, + [1044] = 951, + [1045] = 925, + [1046] = 970, + [1047] = 971, + [1048] = 1048, + [1049] = 973, + [1050] = 982, + [1051] = 984, + [1052] = 957, + [1053] = 1053, + [1054] = 1054, + [1055] = 1025, + [1056] = 1026, + [1057] = 1057, + [1058] = 987, + [1059] = 1053, + [1060] = 1054, + [1061] = 910, + [1062] = 956, + [1063] = 957, + [1064] = 1027, + [1065] = 1048, [1066] = 1066, - [1067] = 1067, + [1067] = 527, [1068] = 1068, [1069] = 1069, [1070] = 1070, [1071] = 1071, - [1072] = 1072, - [1073] = 402, - [1074] = 398, - [1075] = 394, - [1076] = 396, - [1077] = 1077, - [1078] = 204, - [1079] = 1079, - [1080] = 419, - [1081] = 212, - [1082] = 395, - [1083] = 397, - [1084] = 1084, - [1085] = 574, + [1072] = 527, + [1073] = 1073, + [1074] = 1074, + [1075] = 1075, + [1076] = 1076, + [1077] = 427, + [1078] = 1078, + [1079] = 203, + [1080] = 290, + [1081] = 334, + [1082] = 216, + [1083] = 386, + [1084] = 306, + [1085] = 346, [1086] = 1086, - [1087] = 648, - [1088] = 1088, + [1087] = 1087, + [1088] = 417, [1089] = 1089, - [1090] = 765, - [1091] = 1091, - [1092] = 1092, - [1093] = 1058, - [1094] = 1094, - [1095] = 1095, - [1096] = 686, - [1097] = 720, + [1090] = 1090, + [1091] = 654, + [1092] = 745, + [1093] = 553, + [1094] = 591, + [1095] = 710, + [1096] = 1096, + [1097] = 1066, [1098] = 1098, [1099] = 1099, [1100] = 1100, @@ -5122,341 +5138,341 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1110] = 1110, [1111] = 1111, [1112] = 1112, - [1113] = 538, - [1114] = 503, - [1115] = 779, - [1116] = 780, - [1117] = 781, - [1118] = 782, - [1119] = 783, - [1120] = 785, - [1121] = 786, - [1122] = 504, - [1123] = 505, - [1124] = 506, - [1125] = 507, - [1126] = 508, - [1127] = 509, - [1128] = 512, - [1129] = 513, - [1130] = 514, - [1131] = 515, - [1132] = 516, - [1133] = 517, - [1134] = 518, - [1135] = 519, - [1136] = 520, - [1137] = 521, - [1138] = 522, - [1139] = 787, - [1140] = 524, - [1141] = 526, - [1142] = 527, - [1143] = 528, - [1144] = 529, - [1145] = 1145, - [1146] = 1146, - [1147] = 553, - [1148] = 1070, - [1149] = 554, - [1150] = 1150, - [1151] = 556, - [1152] = 557, - [1153] = 558, - [1154] = 559, - [1155] = 560, - [1156] = 1156, - [1157] = 561, - [1158] = 1158, - [1159] = 563, - [1160] = 564, - [1161] = 1161, - [1162] = 565, - [1163] = 566, - [1164] = 567, - [1165] = 568, - [1166] = 569, - [1167] = 570, - [1168] = 571, - [1169] = 572, - [1170] = 1170, - [1171] = 1171, - [1172] = 575, - [1173] = 576, - [1174] = 577, - [1175] = 578, - [1176] = 579, - [1177] = 580, - [1178] = 581, - [1179] = 582, - [1180] = 608, - [1181] = 1181, - [1182] = 583, - [1183] = 584, - [1184] = 585, - [1185] = 586, - [1186] = 553, - [1187] = 587, - [1188] = 588, - [1189] = 1189, - [1190] = 1190, - [1191] = 589, - [1192] = 590, - [1193] = 591, - [1194] = 592, - [1195] = 594, - [1196] = 595, - [1197] = 596, - [1198] = 597, - [1199] = 598, - [1200] = 599, - [1201] = 601, - [1202] = 602, - [1203] = 603, - [1204] = 604, - [1205] = 605, - [1206] = 606, - [1207] = 608, - [1208] = 609, - [1209] = 610, - [1210] = 1210, - [1211] = 1211, - [1212] = 1212, - [1213] = 1213, - [1214] = 621, - [1215] = 608, - [1216] = 623, - [1217] = 624, - [1218] = 625, - [1219] = 626, - [1220] = 627, - [1221] = 628, - [1222] = 629, - [1223] = 630, - [1224] = 1224, - [1225] = 631, - [1226] = 632, - [1227] = 633, - [1228] = 634, - [1229] = 635, - [1230] = 636, - [1231] = 637, - [1232] = 638, - [1233] = 639, - [1234] = 641, - [1235] = 642, - [1236] = 646, - [1237] = 1212, - [1238] = 440, - [1239] = 649, - [1240] = 1240, - [1241] = 650, - [1242] = 652, - [1243] = 653, - [1244] = 654, - [1245] = 655, - [1246] = 656, - [1247] = 523, - [1248] = 657, - [1249] = 658, - [1250] = 659, - [1251] = 1251, - [1252] = 660, - [1253] = 661, - [1254] = 1059, - [1255] = 662, - [1256] = 663, - [1257] = 1068, - [1258] = 664, - [1259] = 665, - [1260] = 778, - [1261] = 668, - [1262] = 1262, - [1263] = 669, - [1264] = 1264, - [1265] = 1265, - [1266] = 670, - [1267] = 1267, - [1268] = 671, - [1269] = 672, - [1270] = 673, - [1271] = 549, - [1272] = 551, - [1273] = 674, - [1274] = 675, - [1275] = 676, - [1276] = 677, - [1277] = 678, - [1278] = 687, - [1279] = 688, - [1280] = 1280, - [1281] = 1281, - [1282] = 1067, - [1283] = 1070, - [1284] = 1284, - [1285] = 1212, - [1286] = 693, - [1287] = 1066, - [1288] = 1288, - [1289] = 1289, - [1290] = 694, - [1291] = 696, - [1292] = 697, - [1293] = 1065, - [1294] = 1294, - [1295] = 698, - [1296] = 1296, - [1297] = 699, - [1298] = 700, - [1299] = 1299, - [1300] = 701, - [1301] = 1301, - [1302] = 702, - [1303] = 1303, - [1304] = 607, - [1305] = 703, - [1306] = 704, - [1307] = 290, - [1308] = 613, - [1309] = 615, - [1310] = 618, - [1311] = 682, - [1312] = 683, - [1313] = 685, - [1314] = 525, - [1315] = 539, - [1316] = 540, - [1317] = 541, - [1318] = 542, - [1319] = 544, - [1320] = 547, - [1321] = 548, - [1322] = 552, - [1323] = 555, - [1324] = 1324, - [1325] = 705, - [1326] = 1326, - [1327] = 706, - [1328] = 707, - [1329] = 708, - [1330] = 709, - [1331] = 710, - [1332] = 711, - [1333] = 1333, - [1334] = 712, - [1335] = 1335, - [1336] = 1336, - [1337] = 713, - [1338] = 714, - [1339] = 717, - [1340] = 719, - [1341] = 721, - [1342] = 722, - [1343] = 723, - [1344] = 619, - [1345] = 724, - [1346] = 725, - [1347] = 726, - [1348] = 620, - [1349] = 727, - [1350] = 728, - [1351] = 729, - [1352] = 622, - [1353] = 640, - [1354] = 643, - [1355] = 730, - [1356] = 731, - [1357] = 732, - [1358] = 733, - [1359] = 734, - [1360] = 735, - [1361] = 736, - [1362] = 737, - [1363] = 738, - [1364] = 739, - [1365] = 740, - [1366] = 741, - [1367] = 742, - [1368] = 743, - [1369] = 647, - [1370] = 667, - [1371] = 744, - [1372] = 745, - [1373] = 746, - [1374] = 747, - [1375] = 748, - [1376] = 1376, - [1377] = 679, - [1378] = 1378, - [1379] = 753, - [1380] = 754, - [1381] = 680, - [1382] = 755, - [1383] = 756, - [1384] = 681, - [1385] = 757, - [1386] = 758, - [1387] = 759, - [1388] = 760, - [1389] = 761, - [1390] = 762, - [1391] = 764, - [1392] = 1392, - [1393] = 766, - [1394] = 767, - [1395] = 768, - [1396] = 769, - [1397] = 770, - [1398] = 689, - [1399] = 771, - [1400] = 772, - [1401] = 773, - [1402] = 690, - [1403] = 774, - [1404] = 691, - [1405] = 692, - [1406] = 695, - [1407] = 715, - [1408] = 716, - [1409] = 718, - [1410] = 749, - [1411] = 750, - [1412] = 751, - [1413] = 752, - [1414] = 763, - [1415] = 784, - [1416] = 510, - [1417] = 511, - [1418] = 530, - [1419] = 532, - [1420] = 533, - [1421] = 534, - [1422] = 535, - [1423] = 536, - [1424] = 537, - [1425] = 775, - [1426] = 776, - [1427] = 777, - [1428] = 1212, - [1429] = 543, - [1430] = 546, + [1113] = 1113, + [1114] = 686, + [1115] = 655, + [1116] = 657, + [1117] = 658, + [1118] = 659, + [1119] = 660, + [1120] = 661, + [1121] = 662, + [1122] = 665, + [1123] = 666, + [1124] = 667, + [1125] = 668, + [1126] = 669, + [1127] = 670, + [1128] = 671, + [1129] = 673, + [1130] = 674, + [1131] = 675, + [1132] = 676, + [1133] = 679, + [1134] = 680, + [1135] = 681, + [1136] = 682, + [1137] = 683, + [1138] = 687, + [1139] = 688, + [1140] = 689, + [1141] = 690, + [1142] = 692, + [1143] = 693, + [1144] = 701, + [1145] = 705, + [1146] = 714, + [1147] = 716, + [1148] = 717, + [1149] = 718, + [1150] = 719, + [1151] = 721, + [1152] = 722, + [1153] = 723, + [1154] = 724, + [1155] = 725, + [1156] = 729, + [1157] = 730, + [1158] = 731, + [1159] = 732, + [1160] = 733, + [1161] = 734, + [1162] = 735, + [1163] = 736, + [1164] = 738, + [1165] = 739, + [1166] = 743, + [1167] = 616, + [1168] = 746, + [1169] = 747, + [1170] = 748, + [1171] = 749, + [1172] = 750, + [1173] = 751, + [1174] = 752, + [1175] = 753, + [1176] = 754, + [1177] = 756, + [1178] = 757, + [1179] = 758, + [1180] = 759, + [1181] = 760, + [1182] = 761, + [1183] = 762, + [1184] = 764, + [1185] = 766, + [1186] = 767, + [1187] = 768, + [1188] = 769, + [1189] = 770, + [1190] = 771, + [1191] = 772, + [1192] = 773, + [1193] = 774, + [1194] = 775, + [1195] = 776, + [1196] = 787, + [1197] = 788, + [1198] = 708, + [1199] = 784, + [1200] = 521, + [1201] = 526, + [1202] = 532, + [1203] = 534, + [1204] = 535, + [1205] = 536, + [1206] = 537, + [1207] = 539, + [1208] = 544, + [1209] = 545, + [1210] = 551, + [1211] = 552, + [1212] = 555, + [1213] = 560, + [1214] = 561, + [1215] = 564, + [1216] = 574, + [1217] = 575, + [1218] = 577, + [1219] = 579, + [1220] = 590, + [1221] = 648, + [1222] = 592, + [1223] = 593, + [1224] = 594, + [1225] = 595, + [1226] = 596, + [1227] = 598, + [1228] = 599, + [1229] = 600, + [1230] = 601, + [1231] = 602, + [1232] = 603, + [1233] = 604, + [1234] = 605, + [1235] = 606, + [1236] = 609, + [1237] = 612, + [1238] = 613, + [1239] = 614, + [1240] = 615, + [1241] = 621, + [1242] = 634, + [1243] = 635, + [1244] = 636, + [1245] = 638, + [1246] = 640, + [1247] = 642, + [1248] = 643, + [1249] = 651, + [1250] = 663, + [1251] = 685, + [1252] = 694, + [1253] = 695, + [1254] = 697, + [1255] = 699, + [1256] = 704, + [1257] = 706, + [1258] = 707, + [1259] = 709, + [1260] = 1260, + [1261] = 711, + [1262] = 713, + [1263] = 720, + [1264] = 726, + [1265] = 727, + [1266] = 728, + [1267] = 740, + [1268] = 741, + [1269] = 755, + [1270] = 763, + [1271] = 765, + [1272] = 777, + [1273] = 779, + [1274] = 780, + [1275] = 785, + [1276] = 786, + [1277] = 789, + [1278] = 523, + [1279] = 502, + [1280] = 503, + [1281] = 504, + [1282] = 505, + [1283] = 506, + [1284] = 507, + [1285] = 508, + [1286] = 509, + [1287] = 510, + [1288] = 511, + [1289] = 512, + [1290] = 513, + [1291] = 514, + [1292] = 515, + [1293] = 516, + [1294] = 517, + [1295] = 518, + [1296] = 519, + [1297] = 520, + [1298] = 522, + [1299] = 790, + [1300] = 524, + [1301] = 525, + [1302] = 528, + [1303] = 529, + [1304] = 530, + [1305] = 531, + [1306] = 533, + [1307] = 1307, + [1308] = 1308, + [1309] = 1309, + [1310] = 630, + [1311] = 1311, + [1312] = 527, + [1313] = 527, + [1314] = 1068, + [1315] = 608, + [1316] = 620, + [1317] = 623, + [1318] = 625, + [1319] = 653, + [1320] = 677, + [1321] = 678, + [1322] = 1322, + [1323] = 696, + [1324] = 698, + [1325] = 700, + [1326] = 702, + [1327] = 703, + [1328] = 712, + [1329] = 715, + [1330] = 737, + [1331] = 782, + [1332] = 783, + [1333] = 1322, + [1334] = 538, + [1335] = 540, + [1336] = 541, + [1337] = 542, + [1338] = 543, + [1339] = 1339, + [1340] = 546, + [1341] = 547, + [1342] = 548, + [1343] = 549, + [1344] = 550, + [1345] = 554, + [1346] = 1346, + [1347] = 556, + [1348] = 557, + [1349] = 558, + [1350] = 1350, + [1351] = 559, + [1352] = 562, + [1353] = 563, + [1354] = 565, + [1355] = 566, + [1356] = 567, + [1357] = 568, + [1358] = 569, + [1359] = 570, + [1360] = 571, + [1361] = 572, + [1362] = 573, + [1363] = 576, + [1364] = 581, + [1365] = 582, + [1366] = 583, + [1367] = 584, + [1368] = 585, + [1369] = 586, + [1370] = 587, + [1371] = 588, + [1372] = 589, + [1373] = 597, + [1374] = 607, + [1375] = 617, + [1376] = 618, + [1377] = 624, + [1378] = 627, + [1379] = 628, + [1380] = 629, + [1381] = 632, + [1382] = 633, + [1383] = 637, + [1384] = 639, + [1385] = 641, + [1386] = 644, + [1387] = 645, + [1388] = 646, + [1389] = 647, + [1390] = 1322, + [1391] = 649, + [1392] = 650, + [1393] = 652, + [1394] = 1322, + [1395] = 691, + [1396] = 1396, + [1397] = 1397, + [1398] = 527, + [1399] = 270, + [1400] = 1400, + [1401] = 1401, + [1402] = 1402, + [1403] = 1403, + [1404] = 1404, + [1405] = 1405, + [1406] = 1406, + [1407] = 1407, + [1408] = 1075, + [1409] = 1409, + [1410] = 1410, + [1411] = 1086, + [1412] = 1412, + [1413] = 1413, + [1414] = 1414, + [1415] = 1415, + [1416] = 1416, + [1417] = 442, + [1418] = 1418, + [1419] = 1419, + [1420] = 1420, + [1421] = 157, + [1422] = 1422, + [1423] = 1423, + [1424] = 1424, + [1425] = 1086, + [1426] = 1074, + [1427] = 1427, + [1428] = 1428, + [1429] = 1076, + [1430] = 1430, [1431] = 1431, - [1432] = 666, - [1433] = 1433, + [1432] = 1432, + [1433] = 1073, [1434] = 1434, [1435] = 1435, [1436] = 1436, [1437] = 1437, [1438] = 1438, - [1439] = 161, - [1440] = 395, - [1441] = 404, - [1442] = 1442, + [1439] = 1439, + [1440] = 1440, + [1441] = 1441, + [1442] = 617, [1443] = 1443, [1444] = 1444, [1445] = 1445, - [1446] = 1446, - [1447] = 1447, + [1446] = 162, + [1447] = 184, [1448] = 1448, [1449] = 1449, [1450] = 1450, @@ -5468,129 +5484,129 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1456] = 1456, [1457] = 1457, [1458] = 1458, - [1459] = 212, + [1459] = 428, [1460] = 1460, [1461] = 1461, - [1462] = 1462, - [1463] = 409, + [1462] = 203, + [1463] = 1463, [1464] = 1464, - [1465] = 411, - [1466] = 180, - [1467] = 1467, - [1468] = 413, - [1469] = 414, - [1470] = 416, - [1471] = 424, - [1472] = 160, + [1465] = 1465, + [1466] = 1466, + [1467] = 161, + [1468] = 1468, + [1469] = 1469, + [1470] = 1470, + [1471] = 1471, + [1472] = 1472, [1473] = 1473, [1474] = 1474, - [1475] = 407, - [1476] = 1476, + [1475] = 1475, + [1476] = 423, [1477] = 1477, [1478] = 1478, [1479] = 1479, - [1480] = 1480, + [1480] = 412, [1481] = 1481, - [1482] = 396, + [1482] = 1482, [1483] = 1483, [1484] = 1484, [1485] = 1485, - [1486] = 1486, - [1487] = 1070, - [1488] = 397, + [1486] = 411, + [1487] = 1487, + [1488] = 1488, [1489] = 1489, [1490] = 1490, [1491] = 1491, [1492] = 1492, [1493] = 1493, - [1494] = 422, - [1495] = 398, - [1496] = 1496, + [1494] = 403, + [1495] = 1495, + [1496] = 401, [1497] = 1497, - [1498] = 1498, + [1498] = 334, [1499] = 1499, - [1500] = 169, + [1500] = 346, [1501] = 1501, [1502] = 1502, [1503] = 1503, [1504] = 1504, [1505] = 1505, [1506] = 1506, - [1507] = 1507, + [1507] = 425, [1508] = 1508, [1509] = 1509, - [1510] = 1510, + [1510] = 427, [1511] = 1511, - [1512] = 408, + [1512] = 424, [1513] = 1513, [1514] = 1514, - [1515] = 1515, - [1516] = 1516, + [1515] = 417, + [1516] = 416, [1517] = 1517, - [1518] = 1518, + [1518] = 306, [1519] = 1519, - [1520] = 406, + [1520] = 413, [1521] = 1521, - [1522] = 204, + [1522] = 1522, [1523] = 1523, [1524] = 1524, [1525] = 1525, - [1526] = 412, - [1527] = 419, - [1528] = 401, + [1526] = 1526, + [1527] = 1527, + [1528] = 1528, [1529] = 1529, - [1530] = 418, + [1530] = 1530, [1531] = 1531, - [1532] = 1532, + [1532] = 407, [1533] = 1533, [1534] = 1534, [1535] = 1535, - [1536] = 1536, - [1537] = 403, + [1536] = 410, + [1537] = 386, [1538] = 1538, - [1539] = 1539, + [1539] = 404, [1540] = 1540, [1541] = 1541, [1542] = 1542, - [1543] = 394, - [1544] = 425, - [1545] = 183, - [1546] = 423, - [1547] = 410, - [1548] = 402, - [1549] = 1549, - [1550] = 415, - [1551] = 1551, - [1552] = 1552, + [1543] = 415, + [1544] = 1544, + [1545] = 216, + [1546] = 1546, + [1547] = 1547, + [1548] = 1548, + [1549] = 1086, + [1550] = 420, + [1551] = 421, + [1552] = 290, [1553] = 1553, - [1554] = 1554, + [1554] = 418, [1555] = 1555, [1556] = 1556, [1557] = 1557, - [1558] = 1070, - [1559] = 1070, + [1558] = 1558, + [1559] = 1559, [1560] = 1560, [1561] = 1561, [1562] = 1562, - [1563] = 1563, + [1563] = 422, [1564] = 1564, - [1565] = 1565, + [1565] = 152, [1566] = 1566, - [1567] = 1567, + [1567] = 414, [1568] = 1568, - [1569] = 1108, + [1569] = 1086, [1570] = 1570, [1571] = 1571, - [1572] = 1562, - [1573] = 1564, - [1574] = 1565, - [1575] = 1575, - [1576] = 1071, + [1572] = 1572, + [1573] = 1573, + [1574] = 1574, + [1575] = 1086, + [1576] = 1576, [1577] = 1577, [1578] = 1578, - [1579] = 1069, - [1580] = 1072, - [1581] = 1581, + [1579] = 1579, + [1580] = 1580, + [1581] = 1087, [1582] = 1582, [1583] = 1583, [1584] = 1584, @@ -5600,939 +5616,939 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1588] = 1588, [1589] = 1589, [1590] = 1590, - [1591] = 1591, + [1591] = 1346, [1592] = 1592, - [1593] = 1593, + [1593] = 1577, [1594] = 1594, - [1595] = 1108, - [1596] = 1596, - [1597] = 1108, - [1598] = 1079, - [1599] = 1158, - [1600] = 1095, - [1601] = 1088, - [1602] = 1099, - [1603] = 1158, - [1604] = 1445, - [1605] = 1501, - [1606] = 1213, - [1607] = 1445, - [1608] = 1161, - [1609] = 1091, - [1610] = 1181, - [1611] = 1092, - [1612] = 1161, - [1613] = 1181, - [1614] = 1084, - [1615] = 1089, - [1616] = 1213, + [1595] = 1595, + [1596] = 1578, + [1597] = 1597, + [1598] = 1598, + [1599] = 1599, + [1600] = 1600, + [1601] = 1601, + [1602] = 1598, + [1603] = 1603, + [1604] = 1604, + [1605] = 1089, + [1606] = 1078, + [1607] = 1090, + [1608] = 1346, + [1609] = 1609, + [1610] = 1346, + [1611] = 1113, + [1612] = 1110, + [1613] = 1099, + [1614] = 1100, + [1615] = 1101, + [1616] = 1428, [1617] = 1098, - [1618] = 1516, - [1619] = 1619, - [1620] = 1516, - [1621] = 1109, - [1622] = 1501, - [1623] = 1103, - [1624] = 1107, - [1625] = 1625, - [1626] = 1110, - [1627] = 1498, - [1628] = 1431, - [1629] = 1210, - [1630] = 1280, - [1631] = 1376, - [1632] = 1625, - [1633] = 290, - [1634] = 1445, - [1635] = 1498, - [1636] = 1619, - [1637] = 1637, - [1638] = 1251, - [1639] = 1639, - [1640] = 1640, - [1641] = 1639, - [1642] = 1640, - [1643] = 1639, - [1644] = 1640, - [1645] = 1557, - [1646] = 1556, - [1647] = 1625, - [1648] = 1640, - [1649] = 1637, - [1650] = 1639, - [1651] = 1251, - [1652] = 1625, - [1653] = 396, - [1654] = 1171, - [1655] = 1591, - [1656] = 1150, - [1657] = 1592, - [1658] = 1392, - [1659] = 1284, - [1660] = 1211, - [1661] = 1288, - [1662] = 1281, - [1663] = 1289, - [1664] = 1378, - [1665] = 1294, - [1666] = 1585, - [1667] = 1189, - [1668] = 1296, - [1669] = 395, - [1670] = 397, - [1671] = 398, - [1672] = 394, - [1673] = 1673, - [1674] = 1190, - [1675] = 1593, - [1676] = 1586, - [1677] = 1557, - [1678] = 1587, - [1679] = 1581, - [1680] = 1582, - [1681] = 1262, - [1682] = 1560, - [1683] = 1299, + [1618] = 1618, + [1619] = 1107, + [1620] = 1422, + [1621] = 1428, + [1622] = 1454, + [1623] = 1618, + [1624] = 1618, + [1625] = 1106, + [1626] = 1422, + [1627] = 1418, + [1628] = 1404, + [1629] = 1404, + [1630] = 1491, + [1631] = 1491, + [1632] = 1618, + [1633] = 1418, + [1634] = 1634, + [1635] = 1635, + [1636] = 1489, + [1637] = 1634, + [1638] = 1638, + [1639] = 1635, + [1640] = 1405, + [1641] = 1638, + [1642] = 1489, + [1643] = 1638, + [1644] = 1570, + [1645] = 1576, + [1646] = 1401, + [1647] = 1309, + [1648] = 1402, + [1649] = 1558, + [1650] = 1401, + [1651] = 1558, + [1652] = 270, + [1653] = 1635, + [1654] = 1491, + [1655] = 1339, + [1656] = 1397, + [1657] = 1260, + [1658] = 1454, + [1659] = 1659, + [1660] = 1307, + [1661] = 1659, + [1662] = 1435, + [1663] = 1638, + [1664] = 1635, + [1665] = 1419, + [1666] = 1440, + [1667] = 1403, + [1668] = 1444, + [1669] = 1600, + [1670] = 1670, + [1671] = 290, + [1672] = 1672, + [1673] = 334, + [1674] = 386, + [1675] = 306, + [1676] = 346, + [1677] = 1407, + [1678] = 1678, + [1679] = 1595, + [1680] = 1592, + [1681] = 1594, + [1682] = 1604, + [1683] = 1409, [1684] = 1684, - [1685] = 1588, - [1686] = 1563, - [1687] = 1687, - [1688] = 1301, - [1689] = 1689, - [1690] = 1303, - [1691] = 1589, - [1692] = 1265, - [1693] = 1156, - [1694] = 1590, - [1695] = 1583, - [1696] = 1584, + [1685] = 1672, + [1686] = 1570, + [1687] = 1678, + [1688] = 1413, + [1689] = 1414, + [1690] = 1415, + [1691] = 1597, + [1692] = 1599, + [1693] = 1443, + [1694] = 1441, + [1695] = 1438, + [1696] = 1420, [1697] = 1697, - [1698] = 1324, - [1699] = 1326, - [1700] = 1684, - [1701] = 1567, - [1702] = 1333, - [1703] = 1687, - [1704] = 1556, - [1705] = 1594, - [1706] = 1267, - [1707] = 1689, - [1708] = 1335, - [1709] = 1709, - [1710] = 1577, - [1711] = 1578, - [1712] = 1336, - [1713] = 1264, - [1714] = 1561, - [1715] = 1585, + [1698] = 1684, + [1699] = 1603, + [1700] = 1436, + [1701] = 1437, + [1702] = 1579, + [1703] = 1439, + [1704] = 1580, + [1705] = 1582, + [1706] = 1583, + [1707] = 1584, + [1708] = 1585, + [1709] = 1434, + [1710] = 1586, + [1711] = 1587, + [1712] = 1588, + [1713] = 1589, + [1714] = 1445, + [1715] = 1590, [1716] = 1716, - [1717] = 1717, - [1718] = 1485, - [1719] = 1492, - [1720] = 1444, - [1721] = 1509, - [1722] = 1531, - [1723] = 1723, - [1724] = 1551, - [1725] = 1542, - [1726] = 1524, - [1727] = 1727, - [1728] = 1489, - [1729] = 1490, - [1730] = 1493, - [1731] = 1467, - [1732] = 1532, - [1733] = 1540, - [1734] = 1477, - [1735] = 1478, - [1736] = 1525, - [1737] = 1529, - [1738] = 1521, - [1739] = 1739, - [1740] = 1491, - [1741] = 1741, - [1742] = 1742, - [1743] = 1581, - [1744] = 1452, - [1745] = 1456, - [1746] = 1582, - [1747] = 1496, - [1748] = 1561, - [1749] = 1560, - [1750] = 1567, - [1751] = 1481, - [1752] = 1535, - [1753] = 1552, - [1754] = 1517, - [1755] = 1503, - [1756] = 1505, - [1757] = 1065, - [1758] = 1483, - [1759] = 1515, - [1760] = 1514, - [1761] = 1484, - [1762] = 1519, - [1763] = 1536, - [1764] = 1764, - [1765] = 1502, - [1766] = 1577, - [1767] = 1578, - [1768] = 1768, + [1717] = 1410, + [1718] = 1400, + [1719] = 1412, + [1720] = 1416, + [1721] = 1406, + [1722] = 1601, + [1723] = 1427, + [1724] = 1430, + [1725] = 1431, + [1726] = 1576, + [1727] = 1595, + [1728] = 422, + [1729] = 1603, + [1730] = 424, + [1731] = 428, + [1732] = 403, + [1733] = 184, + [1734] = 152, + [1735] = 410, + [1736] = 157, + [1737] = 1580, + [1738] = 1600, + [1739] = 161, + [1740] = 1597, + [1741] = 417, + [1742] = 162, + [1743] = 427, + [1744] = 1587, + [1745] = 1601, + [1746] = 1603, + [1747] = 1495, + [1748] = 1463, + [1749] = 1749, + [1750] = 1750, + [1751] = 1582, + [1752] = 442, + [1753] = 1456, + [1754] = 203, + [1755] = 216, + [1756] = 407, + [1757] = 1448, + [1758] = 1588, + [1759] = 1589, + [1760] = 1590, + [1761] = 1594, + [1762] = 1604, + [1763] = 404, + [1764] = 1541, + [1765] = 415, + [1766] = 1542, + [1767] = 1487, + [1768] = 1529, [1769] = 1769, - [1770] = 1583, - [1771] = 1584, - [1772] = 1585, - [1773] = 1586, - [1774] = 1587, - [1775] = 1588, - [1776] = 1589, - [1777] = 1590, - [1778] = 1591, - [1779] = 1592, - [1780] = 1593, - [1781] = 1781, - [1782] = 1434, - [1783] = 1435, - [1784] = 1474, - [1785] = 1442, - [1786] = 1450, - [1787] = 1480, - [1788] = 1563, - [1789] = 1789, - [1790] = 1553, - [1791] = 1457, - [1792] = 1511, + [1770] = 1544, + [1771] = 1771, + [1772] = 1772, + [1773] = 1773, + [1774] = 1502, + [1775] = 1771, + [1776] = 416, + [1777] = 401, + [1778] = 1778, + [1779] = 1779, + [1780] = 1465, + [1781] = 1773, + [1782] = 1782, + [1783] = 1450, + [1784] = 1579, + [1785] = 1785, + [1786] = 1786, + [1787] = 1460, + [1788] = 1788, + [1789] = 1583, + [1790] = 1490, + [1791] = 1791, + [1792] = 1472, [1793] = 1793, - [1794] = 1454, - [1795] = 1464, - [1796] = 1523, - [1797] = 1506, - [1798] = 1594, - [1799] = 1448, - [1800] = 1451, - [1801] = 1479, - [1802] = 1458, - [1803] = 1460, - [1804] = 1461, - [1805] = 1462, - [1806] = 1473, - [1807] = 1555, - [1808] = 1497, - [1809] = 1499, - [1810] = 440, - [1811] = 409, - [1812] = 413, - [1813] = 414, - [1814] = 416, - [1815] = 424, - [1816] = 1816, - [1817] = 1567, - [1818] = 1508, - [1819] = 412, - [1820] = 1577, - [1821] = 1578, - [1822] = 418, - [1823] = 403, - [1824] = 423, - [1825] = 1825, - [1826] = 1443, - [1827] = 1583, - [1828] = 1584, - [1829] = 1586, - [1830] = 1587, - [1831] = 1588, - [1832] = 1589, - [1833] = 1590, - [1834] = 1591, - [1835] = 1592, - [1836] = 1593, - [1837] = 1436, - [1838] = 1437, - [1839] = 1563, - [1840] = 407, - [1841] = 408, - [1842] = 410, - [1843] = 1554, - [1844] = 1538, - [1845] = 401, - [1846] = 404, - [1847] = 415, - [1848] = 1594, - [1849] = 1510, - [1850] = 406, - [1851] = 422, - [1852] = 183, - [1853] = 169, - [1854] = 411, - [1855] = 160, - [1856] = 1567, - [1857] = 161, - [1858] = 1577, - [1859] = 419, - [1860] = 180, - [1861] = 402, - [1862] = 1563, - [1863] = 1594, - [1864] = 1455, - [1865] = 212, - [1866] = 204, - [1867] = 1867, - [1868] = 1789, - [1869] = 1869, - [1870] = 1476, - [1871] = 1871, - [1872] = 1486, - [1873] = 1717, - [1874] = 1874, - [1875] = 1518, - [1876] = 1867, - [1877] = 1541, - [1878] = 1549, - [1879] = 1449, - [1880] = 1793, - [1881] = 1723, - [1882] = 1727, - [1883] = 1741, - [1884] = 1816, - [1885] = 1825, - [1886] = 1886, - [1887] = 1886, - [1888] = 1888, - [1889] = 1889, - [1890] = 1869, - [1891] = 1581, - [1892] = 1582, - [1893] = 1871, - [1894] = 1561, - [1895] = 1560, - [1896] = 1717, - [1897] = 1723, - [1898] = 1816, - [1899] = 1869, - [1900] = 1871, - [1901] = 1717, - [1902] = 1869, - [1903] = 1723, - [1904] = 1816, - [1905] = 1869, - [1906] = 1717, - [1907] = 1907, - [1908] = 1723, - [1909] = 1816, - [1910] = 1869, - [1911] = 1717, + [1794] = 1794, + [1795] = 1473, + [1796] = 1794, + [1797] = 1455, + [1798] = 1453, + [1799] = 1799, + [1800] = 1772, + [1801] = 1779, + [1802] = 1600, + [1803] = 1799, + [1804] = 1481, + [1805] = 1805, + [1806] = 1806, + [1807] = 1807, + [1808] = 1786, + [1809] = 1468, + [1810] = 1559, + [1811] = 1451, + [1812] = 1561, + [1813] = 1513, + [1814] = 1814, + [1815] = 1471, + [1816] = 1773, + [1817] = 414, + [1818] = 1564, + [1819] = 1601, + [1820] = 1493, + [1821] = 1073, + [1822] = 1592, + [1823] = 1778, + [1824] = 1594, + [1825] = 1604, + [1826] = 1782, + [1827] = 1597, + [1828] = 1469, + [1829] = 1562, + [1830] = 1555, + [1831] = 1599, + [1832] = 1526, + [1833] = 1492, + [1834] = 1470, + [1835] = 1531, + [1836] = 418, + [1837] = 1524, + [1838] = 1793, + [1839] = 1584, + [1840] = 423, + [1841] = 1464, + [1842] = 1566, + [1843] = 1779, + [1844] = 1528, + [1845] = 1488, + [1846] = 1773, + [1847] = 421, + [1848] = 1778, + [1849] = 1782, + [1850] = 1793, + [1851] = 1530, + [1852] = 1782, + [1853] = 1482, + [1854] = 425, + [1855] = 1793, + [1856] = 1779, + [1857] = 1599, + [1858] = 1773, + [1859] = 1533, + [1860] = 1782, + [1861] = 1534, + [1862] = 1862, + [1863] = 1793, + [1864] = 1864, + [1865] = 1779, + [1866] = 1866, + [1867] = 1773, + [1868] = 1535, + [1869] = 1782, + [1870] = 1497, + [1871] = 1508, + [1872] = 1793, + [1873] = 1779, + [1874] = 1773, + [1875] = 1785, + [1876] = 1782, + [1877] = 1793, + [1878] = 1521, + [1879] = 1779, + [1880] = 1585, + [1881] = 1519, + [1882] = 1579, + [1883] = 1580, + [1884] = 1582, + [1885] = 1778, + [1886] = 1583, + [1887] = 1540, + [1888] = 1791, + [1889] = 1584, + [1890] = 1585, + [1891] = 1814, + [1892] = 1586, + [1893] = 1587, + [1894] = 1588, + [1895] = 1589, + [1896] = 1553, + [1897] = 1897, + [1898] = 1590, + [1899] = 1899, + [1900] = 1556, + [1901] = 1546, + [1902] = 1557, + [1903] = 1548, + [1904] = 1603, + [1905] = 1560, + [1906] = 1514, + [1907] = 1457, + [1908] = 1484, + [1909] = 1452, + [1910] = 1505, + [1911] = 1477, [1912] = 1912, [1913] = 1913, - [1914] = 1723, - [1915] = 1816, - [1916] = 1869, - [1917] = 1717, - [1918] = 1723, - [1919] = 1816, - [1920] = 1533, - [1921] = 1453, - [1922] = 1539, - [1923] = 1534, - [1924] = 1504, - [1925] = 1507, - [1926] = 1513, - [1927] = 1927, - [1928] = 1438, - [1929] = 1929, - [1930] = 1446, - [1931] = 1931, - [1932] = 1447, - [1933] = 1871, - [1934] = 1934, - [1935] = 1889, - [1936] = 425, + [1914] = 1499, + [1915] = 1475, + [1916] = 1586, + [1917] = 1449, + [1918] = 1538, + [1919] = 1601, + [1920] = 412, + [1921] = 1458, + [1922] = 411, + [1923] = 1474, + [1924] = 1483, + [1925] = 1501, + [1926] = 1595, + [1927] = 1506, + [1928] = 1503, + [1929] = 1592, + [1930] = 1504, + [1931] = 1517, + [1932] = 1547, + [1933] = 1478, + [1934] = 1600, + [1935] = 1523, + [1936] = 1527, [1937] = 1937, - [1938] = 1938, + [1938] = 1485, [1939] = 1939, - [1940] = 1940, - [1941] = 1941, - [1942] = 1942, - [1943] = 1943, - [1944] = 1944, - [1945] = 1937, - [1946] = 1946, - [1947] = 1947, - [1948] = 1943, + [1940] = 1461, + [1941] = 413, + [1942] = 1525, + [1943] = 1522, + [1944] = 420, + [1945] = 1509, + [1946] = 1466, + [1947] = 1511, + [1948] = 1597, [1949] = 1949, [1950] = 1950, [1951] = 1951, - [1952] = 1739, + [1952] = 1952, [1953] = 1953, [1954] = 1954, - [1955] = 1781, - [1956] = 1947, - [1957] = 1907, - [1958] = 1944, - [1959] = 1939, + [1955] = 1750, + [1956] = 1956, + [1957] = 1953, + [1958] = 1958, + [1959] = 1959, [1960] = 1960, - [1961] = 1949, - [1962] = 1954, - [1963] = 1950, - [1964] = 1939, - [1965] = 1965, + [1961] = 1961, + [1962] = 1949, + [1963] = 1963, + [1964] = 1961, + [1965] = 1866, [1966] = 1966, - [1967] = 1967, - [1968] = 1940, + [1967] = 1954, + [1968] = 1968, [1969] = 1969, - [1970] = 1942, - [1971] = 1946, - [1972] = 1941, - [1973] = 1969, - [1974] = 1974, - [1975] = 1975, + [1970] = 1970, + [1971] = 1960, + [1972] = 1972, + [1973] = 1963, + [1974] = 1968, + [1975] = 1950, [1976] = 1976, [1977] = 1977, - [1978] = 1975, - [1979] = 1974, - [1980] = 1977, - [1981] = 1976, - [1982] = 1982, - [1983] = 1983, - [1984] = 1984, - [1985] = 1985, + [1978] = 1978, + [1979] = 1969, + [1980] = 1970, + [1981] = 1961, + [1982] = 1952, + [1983] = 1749, + [1984] = 1951, + [1985] = 1972, [1986] = 1986, - [1987] = 1986, - [1988] = 1986, - [1989] = 1985, - [1990] = 1986, - [1991] = 1986, - [1992] = 1986, - [1993] = 1985, - [1994] = 1994, - [1995] = 1994, - [1996] = 160, - [1997] = 180, - [1998] = 1099, - [1999] = 1095, + [1987] = 1977, + [1988] = 1988, + [1989] = 1989, + [1990] = 1990, + [1991] = 1990, + [1992] = 1988, + [1993] = 1993, + [1994] = 1989, + [1995] = 1993, + [1996] = 1996, + [1997] = 1997, + [1998] = 1998, + [1999] = 1999, [2000] = 2000, - [2001] = 1098, - [2002] = 1088, - [2003] = 1072, - [2004] = 1095, - [2005] = 1280, - [2006] = 1376, - [2007] = 1088, - [2008] = 1098, - [2009] = 1099, - [2010] = 1431, - [2011] = 1069, - [2012] = 1071, - [2013] = 1210, - [2014] = 1110, - [2015] = 1324, - [2016] = 1103, - [2017] = 1079, - [2018] = 2018, - [2019] = 1109, - [2020] = 1107, - [2021] = 2021, - [2022] = 2022, - [2023] = 2021, - [2024] = 1284, - [2025] = 2025, - [2026] = 1289, - [2027] = 1288, - [2028] = 1084, - [2029] = 1091, - [2030] = 1089, - [2031] = 1092, - [2032] = 1150, - [2033] = 419, - [2034] = 1575, - [2035] = 2035, - [2036] = 2025, - [2037] = 2037, - [2038] = 212, - [2039] = 2039, - [2040] = 1265, - [2041] = 1211, - [2042] = 1296, - [2043] = 2037, - [2044] = 402, - [2045] = 1171, - [2046] = 1326, - [2047] = 1299, - [2048] = 204, - [2049] = 1378, - [2050] = 1264, - [2051] = 2037, - [2052] = 1281, - [2053] = 1262, - [2054] = 2025, - [2055] = 1505, - [2056] = 1508, - [2057] = 1434, - [2058] = 1435, - [2059] = 1457, - [2060] = 1568, - [2061] = 1437, - [2062] = 1515, - [2063] = 1519, - [2064] = 1448, - [2065] = 1451, - [2066] = 1553, - [2067] = 1570, - [2068] = 1442, - [2069] = 1456, - [2070] = 2070, - [2071] = 1571, - [2072] = 1511, - [2073] = 1452, - [2074] = 1458, - [2075] = 1460, - [2076] = 1436, - [2077] = 1461, - [2078] = 1462, - [2079] = 1473, - [2080] = 1454, - [2081] = 1555, - [2082] = 1497, - [2083] = 1499, - [2084] = 1464, - [2085] = 1538, - [2086] = 1523, + [2001] = 2000, + [2002] = 2000, + [2003] = 2000, + [2004] = 2000, + [2005] = 1999, + [2006] = 1999, + [2007] = 2000, + [2008] = 2008, + [2009] = 2008, + [2010] = 1110, + [2011] = 1099, + [2012] = 1100, + [2013] = 1101, + [2014] = 2014, + [2015] = 1402, + [2016] = 1405, + [2017] = 1099, + [2018] = 1100, + [2019] = 1101, + [2020] = 1087, + [2021] = 1435, + [2022] = 1078, + [2023] = 1397, + [2024] = 1110, + [2025] = 1089, + [2026] = 2026, + [2027] = 1309, + [2028] = 2028, + [2029] = 1307, + [2030] = 1407, + [2031] = 2031, + [2032] = 1339, + [2033] = 2028, + [2034] = 1260, + [2035] = 1090, + [2036] = 1106, + [2037] = 1098, + [2038] = 1427, + [2039] = 1430, + [2040] = 1571, + [2041] = 2031, + [2042] = 2042, + [2043] = 1431, + [2044] = 1113, + [2045] = 1107, + [2046] = 203, + [2047] = 1443, + [2048] = 1440, + [2049] = 1437, + [2050] = 2050, + [2051] = 216, + [2052] = 1410, + [2053] = 2053, + [2054] = 1416, + [2055] = 1574, + [2056] = 2056, + [2057] = 1409, + [2058] = 1412, + [2059] = 1572, + [2060] = 2031, + [2061] = 1573, + [2062] = 2050, + [2063] = 1406, + [2064] = 2050, + [2065] = 1436, + [2066] = 2066, + [2067] = 427, + [2068] = 1400, + [2069] = 2069, + [2070] = 417, + [2071] = 1403, + [2072] = 1525, + [2073] = 1455, + [2074] = 1541, + [2075] = 1450, + [2076] = 1538, + [2077] = 1533, + [2078] = 1534, + [2079] = 1524, + [2080] = 1544, + [2081] = 1546, + [2082] = 1548, + [2083] = 1449, + [2084] = 1523, + [2085] = 1499, + [2086] = 1501, [2087] = 1506, - [2088] = 1554, - [2089] = 2089, - [2090] = 1503, - [2091] = 1450, - [2092] = 2092, - [2093] = 161, - [2094] = 169, - [2095] = 2095, - [2096] = 1294, - [2097] = 1301, - [2098] = 1303, - [2099] = 1333, - [2100] = 1335, - [2101] = 1336, - [2102] = 1392, - [2103] = 1098, - [2104] = 1099, - [2105] = 1095, - [2106] = 1088, - [2107] = 1088, - [2108] = 2108, - [2109] = 1095, - [2110] = 2110, - [2111] = 1099, - [2112] = 1088, - [2113] = 1099, - [2114] = 1098, - [2115] = 1098, - [2116] = 2000, - [2117] = 2117, - [2118] = 1095, - [2119] = 2119, - [2120] = 2120, - [2121] = 2121, - [2122] = 2122, - [2123] = 2120, - [2124] = 2124, - [2125] = 2125, - [2126] = 2122, - [2127] = 2124, - [2128] = 2128, + [2088] = 1527, + [2089] = 1522, + [2090] = 1485, + [2091] = 1474, + [2092] = 1509, + [2093] = 1540, + [2094] = 1511, + [2095] = 1503, + [2096] = 1535, + [2097] = 1483, + [2098] = 1517, + [2099] = 1547, + [2100] = 1513, + [2101] = 1458, + [2102] = 1530, + [2103] = 1528, + [2104] = 1444, + [2105] = 1420, + [2106] = 1413, + [2107] = 1414, + [2108] = 1415, + [2109] = 2109, + [2110] = 157, + [2111] = 2111, + [2112] = 1439, + [2113] = 2113, + [2114] = 2114, + [2115] = 152, + [2116] = 161, + [2117] = 162, + [2118] = 1434, + [2119] = 1100, + [2120] = 1099, + [2121] = 1110, + [2122] = 1110, + [2123] = 1099, + [2124] = 1100, + [2125] = 1100, + [2126] = 1099, + [2127] = 1110, + [2128] = 1101, [2129] = 2129, - [2130] = 1098, - [2131] = 395, + [2130] = 2130, + [2131] = 2014, [2132] = 2132, - [2133] = 2133, - [2134] = 2134, + [2133] = 1101, + [2134] = 1101, [2135] = 2135, - [2136] = 2136, + [2136] = 2135, [2137] = 2137, [2138] = 2138, [2139] = 2139, - [2140] = 2022, - [2141] = 1095, + [2140] = 2140, + [2141] = 2139, [2142] = 2142, - [2143] = 2143, - [2144] = 394, + [2143] = 2140, + [2144] = 346, [2145] = 2145, - [2146] = 2146, - [2147] = 2147, - [2148] = 2138, - [2149] = 397, - [2150] = 2150, - [2151] = 2142, - [2152] = 2143, + [2146] = 306, + [2147] = 1078, + [2148] = 2148, + [2149] = 2149, + [2150] = 2148, + [2151] = 2151, + [2152] = 2149, [2153] = 2153, [2154] = 2154, - [2155] = 1069, + [2155] = 2155, [2156] = 2156, [2157] = 2157, - [2158] = 2158, - [2159] = 1088, - [2160] = 2156, - [2161] = 2158, - [2162] = 2157, - [2163] = 1099, + [2158] = 2149, + [2159] = 2149, + [2160] = 2160, + [2161] = 2042, + [2162] = 1087, + [2163] = 386, [2164] = 2164, - [2165] = 1071, - [2166] = 2166, - [2167] = 2167, + [2165] = 2165, + [2166] = 2164, + [2167] = 334, [2168] = 2168, - [2169] = 2137, - [2170] = 398, - [2171] = 2171, - [2172] = 396, - [2173] = 1072, + [2169] = 2169, + [2170] = 1089, + [2171] = 1110, + [2172] = 1099, + [2173] = 2149, [2174] = 2174, - [2175] = 2135, - [2176] = 2171, + [2175] = 1100, + [2176] = 1101, [2177] = 2177, [2178] = 2178, - [2179] = 2179, - [2180] = 2180, + [2179] = 2169, + [2180] = 2155, [2181] = 2181, [2182] = 2182, - [2183] = 2183, + [2183] = 2165, [2184] = 2184, [2185] = 2185, - [2186] = 2186, + [2186] = 2178, [2187] = 2187, [2188] = 2188, - [2189] = 2189, - [2190] = 2190, + [2189] = 290, + [2190] = 2181, [2191] = 2191, [2192] = 2192, [2193] = 2193, [2194] = 2194, [2195] = 2195, [2196] = 2196, - [2197] = 1079, - [2198] = 2198, - [2199] = 2022, + [2197] = 2197, + [2198] = 410, + [2199] = 2199, [2200] = 2200, - [2201] = 2201, + [2201] = 2042, [2202] = 2202, [2203] = 2203, [2204] = 2204, [2205] = 2205, - [2206] = 2196, - [2207] = 411, - [2208] = 2196, - [2209] = 2200, + [2206] = 2042, + [2207] = 2207, + [2208] = 2208, + [2209] = 2209, [2210] = 2210, [2211] = 2211, - [2212] = 2203, + [2212] = 2212, [2213] = 2213, [2214] = 2214, - [2215] = 2202, + [2215] = 2200, [2216] = 2216, [2217] = 2217, [2218] = 2218, [2219] = 2219, - [2220] = 2220, + [2220] = 1090, [2221] = 2221, - [2222] = 2196, - [2223] = 2196, - [2224] = 2035, + [2222] = 2222, + [2223] = 2056, + [2224] = 2224, [2225] = 2225, - [2226] = 2022, + [2226] = 2226, [2227] = 2227, [2228] = 2228, [2229] = 2229, [2230] = 2230, - [2231] = 2177, - [2232] = 1107, + [2231] = 2231, + [2232] = 2232, [2233] = 2233, - [2234] = 1091, + [2234] = 2234, [2235] = 2235, [2236] = 2236, - [2237] = 1109, + [2237] = 2237, [2238] = 2238, - [2239] = 1092, - [2240] = 2240, - [2241] = 2035, - [2242] = 2236, + [2239] = 2203, + [2240] = 2207, + [2241] = 2233, + [2242] = 2233, [2243] = 2243, [2244] = 2244, - [2245] = 2245, + [2245] = 2208, [2246] = 2246, [2247] = 2247, - [2248] = 2235, - [2249] = 2249, - [2250] = 2246, - [2251] = 1103, + [2248] = 2248, + [2249] = 1107, + [2250] = 2250, + [2251] = 1098, [2252] = 2252, - [2253] = 2244, + [2253] = 2253, [2254] = 2254, - [2255] = 1084, + [2255] = 2255, [2256] = 2256, - [2257] = 2257, - [2258] = 1089, + [2257] = 2247, + [2258] = 2258, [2259] = 2259, - [2260] = 2236, - [2261] = 2254, - [2262] = 2262, + [2260] = 1260, + [2261] = 2261, + [2262] = 1339, [2263] = 2263, - [2264] = 2264, - [2265] = 2265, - [2266] = 2257, - [2267] = 2233, - [2268] = 2022, - [2269] = 2245, + [2264] = 1307, + [2265] = 1309, + [2266] = 2266, + [2267] = 2267, + [2268] = 2056, + [2269] = 1106, [2270] = 2270, - [2271] = 2259, - [2272] = 2249, - [2273] = 2256, - [2274] = 2259, - [2275] = 2035, - [2276] = 2238, - [2277] = 2270, + [2271] = 2271, + [2272] = 2272, + [2273] = 2273, + [2274] = 2273, + [2275] = 2272, + [2276] = 2276, + [2277] = 2276, [2278] = 2278, - [2279] = 2279, - [2280] = 2252, - [2281] = 2240, - [2282] = 2278, - [2283] = 1110, + [2279] = 2271, + [2280] = 2253, + [2281] = 2255, + [2282] = 2282, + [2283] = 2258, [2284] = 2284, - [2285] = 2285, + [2285] = 1113, [2286] = 2286, - [2287] = 2287, - [2288] = 2288, - [2289] = 2289, - [2290] = 2290, - [2291] = 2291, - [2292] = 2292, + [2287] = 2042, + [2288] = 2266, + [2289] = 2258, + [2290] = 2278, + [2291] = 2056, + [2292] = 2286, [2293] = 2293, - [2294] = 2294, - [2295] = 2295, - [2296] = 2296, - [2297] = 2285, - [2298] = 2298, + [2294] = 2261, + [2295] = 2293, + [2296] = 2259, + [2297] = 2267, + [2298] = 2252, [2299] = 2299, [2300] = 2300, [2301] = 2301, [2302] = 2302, [2303] = 2303, [2304] = 2304, - [2305] = 2286, + [2305] = 2305, [2306] = 2306, [2307] = 2307, - [2308] = 2308, - [2309] = 2293, + [2308] = 2300, + [2309] = 2309, [2310] = 2310, - [2311] = 2035, - [2312] = 2295, - [2313] = 2313, - [2314] = 2290, - [2315] = 2291, - [2316] = 2288, + [2311] = 2311, + [2312] = 2309, + [2313] = 2304, + [2314] = 2314, + [2315] = 2315, + [2316] = 2316, [2317] = 2317, - [2318] = 2318, + [2318] = 2310, [2319] = 2319, - [2320] = 2318, - [2321] = 2313, - [2322] = 2307, + [2320] = 2320, + [2321] = 2321, + [2322] = 2303, [2323] = 2323, - [2324] = 2300, - [2325] = 2323, - [2326] = 2326, + [2324] = 2324, + [2325] = 2325, + [2326] = 2307, [2327] = 2327, - [2328] = 2306, - [2329] = 2308, + [2328] = 2328, + [2329] = 2327, [2330] = 2330, - [2331] = 2298, - [2332] = 2319, - [2333] = 2333, - [2334] = 2330, - [2335] = 2294, - [2336] = 2333, - [2337] = 2289, - [2338] = 2338, + [2331] = 2331, + [2332] = 2315, + [2333] = 2316, + [2334] = 2334, + [2335] = 2305, + [2336] = 2056, + [2337] = 2311, + [2338] = 2301, [2339] = 2339, - [2340] = 2340, - [2341] = 2341, + [2340] = 2334, + [2341] = 2339, [2342] = 2342, - [2343] = 2095, - [2344] = 2344, - [2345] = 2345, - [2346] = 2346, - [2347] = 2347, + [2343] = 2343, + [2344] = 2319, + [2345] = 2302, + [2346] = 2306, + [2347] = 2321, [2348] = 2348, [2349] = 2349, - [2350] = 2348, + [2350] = 2325, [2351] = 2351, - [2352] = 2352, - [2353] = 2353, - [2354] = 2354, - [2355] = 2355, + [2352] = 2324, + [2353] = 2328, + [2354] = 2323, + [2355] = 2320, [2356] = 2356, - [2357] = 2356, - [2358] = 2358, - [2359] = 2358, - [2360] = 2347, + [2357] = 2357, + [2358] = 2109, + [2359] = 2359, + [2360] = 2360, [2361] = 2361, - [2362] = 2338, + [2362] = 2362, [2363] = 2363, - [2364] = 2344, - [2365] = 2342, - [2366] = 2361, + [2364] = 2364, + [2365] = 2365, + [2366] = 2366, [2367] = 2367, [2368] = 2368, [2369] = 2369, - [2370] = 2363, + [2370] = 2370, [2371] = 2371, [2372] = 2372, [2373] = 2373, [2374] = 2374, - [2375] = 2371, + [2375] = 2366, [2376] = 2376, - [2377] = 2358, - [2378] = 2352, - [2379] = 2379, - [2380] = 2353, - [2381] = 2369, - [2382] = 2382, + [2377] = 2359, + [2378] = 2360, + [2379] = 2367, + [2380] = 2380, + [2381] = 2381, + [2382] = 2364, [2383] = 2383, - [2384] = 2372, - [2385] = 2382, + [2384] = 2384, + [2385] = 2369, [2386] = 2386, [2387] = 2387, - [2388] = 2347, - [2389] = 2389, - [2390] = 2345, - [2391] = 2391, - [2392] = 2383, - [2393] = 2346, - [2394] = 2379, - [2395] = 2341, - [2396] = 2354, - [2397] = 2386, - [2398] = 2347, - [2399] = 2355, + [2388] = 2370, + [2389] = 2364, + [2390] = 2364, + [2391] = 2364, + [2392] = 2392, + [2393] = 2372, + [2394] = 2373, + [2395] = 2374, + [2396] = 2356, + [2397] = 2376, + [2398] = 2380, + [2399] = 2383, [2400] = 2400, - [2401] = 2347, - [2402] = 1335, - [2403] = 2403, - [2404] = 1392, - [2405] = 1303, + [2401] = 2386, + [2402] = 2387, + [2403] = 2381, + [2404] = 2404, + [2405] = 2405, [2406] = 2406, [2407] = 2407, - [2408] = 2110, - [2409] = 1301, + [2408] = 2404, + [2409] = 2405, [2410] = 2410, - [2411] = 2411, + [2411] = 2405, [2412] = 2412, - [2413] = 2413, - [2414] = 2414, + [2413] = 2368, + [2414] = 2400, [2415] = 2415, [2416] = 2416, [2417] = 2417, [2418] = 2418, [2419] = 2419, - [2420] = 2406, - [2421] = 2421, + [2420] = 2420, + [2421] = 2129, [2422] = 2422, [2423] = 2423, [2424] = 2424, - [2425] = 2425, + [2425] = 2416, [2426] = 2426, - [2427] = 2427, + [2427] = 2417, [2428] = 2428, [2429] = 2429, [2430] = 2430, [2431] = 2431, [2432] = 2432, - [2433] = 2410, - [2434] = 2423, - [2435] = 2435, - [2436] = 2430, - [2437] = 2411, + [2433] = 2433, + [2434] = 2434, + [2435] = 2415, + [2436] = 2436, + [2437] = 2437, [2438] = 2438, - [2439] = 2439, + [2439] = 2132, [2440] = 2440, - [2441] = 2406, + [2441] = 2423, [2442] = 2442, - [2443] = 2428, - [2444] = 2421, - [2445] = 2411, - [2446] = 2440, - [2447] = 2447, - [2448] = 2422, - [2449] = 2108, + [2443] = 2443, + [2444] = 2418, + [2445] = 2445, + [2446] = 2429, + [2447] = 2430, + [2448] = 2436, + [2449] = 2449, [2450] = 2450, - [2451] = 2451, - [2452] = 2452, - [2453] = 2451, - [2454] = 2426, - [2455] = 2412, - [2456] = 1333, - [2457] = 2414, + [2451] = 1444, + [2452] = 2424, + [2453] = 2453, + [2454] = 2454, + [2455] = 2455, + [2456] = 2432, + [2457] = 2443, [2458] = 2458, - [2459] = 2452, - [2460] = 2442, - [2461] = 2461, - [2462] = 2462, - [2463] = 2429, - [2464] = 169, - [2465] = 160, - [2466] = 2092, + [2459] = 2419, + [2460] = 2437, + [2461] = 2438, + [2462] = 2440, + [2463] = 2420, + [2464] = 2464, + [2465] = 2465, + [2466] = 2466, [2467] = 2467, - [2468] = 161, - [2469] = 2406, - [2470] = 2411, - [2471] = 2471, - [2472] = 2422, - [2473] = 2473, - [2474] = 2415, - [2475] = 180, - [2476] = 2417, - [2477] = 2439, - [2478] = 2431, - [2479] = 2418, - [2480] = 2447, - [2481] = 2481, - [2482] = 2482, - [2483] = 2467, - [2484] = 2438, - [2485] = 2406, + [2468] = 152, + [2469] = 157, + [2470] = 2431, + [2471] = 2433, + [2472] = 161, + [2473] = 2466, + [2474] = 2431, + [2475] = 2433, + [2476] = 2433, + [2477] = 162, + [2478] = 2466, + [2479] = 2466, + [2480] = 2449, + [2481] = 2431, + [2482] = 2466, + [2483] = 2483, + [2484] = 1420, + [2485] = 1439, [2486] = 2486, - [2487] = 2419, - [2488] = 2473, - [2489] = 2458, - [2490] = 2482, - [2491] = 2416, - [2492] = 2403, - [2493] = 2406, - [2494] = 1294, - [2495] = 2495, - [2496] = 2424, - [2497] = 2426, - [2498] = 2482, - [2499] = 2462, - [2500] = 2422, - [2501] = 1336, - [2502] = 2427, - [2503] = 2503, - [2504] = 2495, - [2505] = 2432, - [2506] = 2486, - [2507] = 2413, + [2487] = 2111, + [2488] = 2466, + [2489] = 2486, + [2490] = 2490, + [2491] = 2491, + [2492] = 2492, + [2493] = 2483, + [2494] = 2465, + [2495] = 2492, + [2496] = 2434, + [2497] = 2483, + [2498] = 2498, + [2499] = 2442, + [2500] = 2500, + [2501] = 2501, + [2502] = 2422, + [2503] = 2454, + [2504] = 2455, + [2505] = 2505, + [2506] = 2498, + [2507] = 2490, [2508] = 2508, - [2509] = 1112, - [2510] = 2510, - [2511] = 2511, + [2509] = 2508, + [2510] = 2428, + [2511] = 1413, [2512] = 2512, - [2513] = 2513, - [2514] = 2514, - [2515] = 2515, + [2513] = 2464, + [2514] = 2491, + [2515] = 2467, [2516] = 2516, - [2517] = 2517, - [2518] = 2518, - [2519] = 2519, - [2520] = 2520, - [2521] = 2521, - [2522] = 2522, - [2523] = 2523, + [2517] = 1414, + [2518] = 2450, + [2519] = 1415, + [2520] = 1434, + [2521] = 2491, + [2522] = 2458, + [2523] = 2445, [2524] = 2524, [2525] = 2525, [2526] = 2526, @@ -6543,138 +6559,138 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2531] = 2531, [2532] = 2532, [2533] = 2533, - [2534] = 2511, + [2534] = 2534, [2535] = 2535, - [2536] = 2526, - [2537] = 2530, - [2538] = 2532, + [2536] = 2535, + [2537] = 2535, + [2538] = 1102, [2539] = 2539, - [2540] = 2528, - [2541] = 2541, + [2540] = 1405, + [2541] = 2524, [2542] = 2532, [2543] = 2543, - [2544] = 2544, - [2545] = 2519, - [2546] = 2511, - [2547] = 1065, - [2548] = 2523, - [2549] = 2549, + [2544] = 2528, + [2545] = 2545, + [2546] = 2546, + [2547] = 2547, + [2548] = 2548, + [2549] = 2532, [2550] = 2550, - [2551] = 2551, - [2552] = 2552, - [2553] = 1105, + [2551] = 2534, + [2552] = 2527, + [2553] = 2553, [2554] = 2554, [2555] = 2555, - [2556] = 2508, - [2557] = 2510, + [2556] = 2532, + [2557] = 2547, [2558] = 2558, - [2559] = 2559, - [2560] = 2539, + [2559] = 2545, + [2560] = 2560, [2561] = 2561, [2562] = 2562, [2563] = 2563, - [2564] = 2128, - [2565] = 2565, - [2566] = 2526, - [2567] = 2525, - [2568] = 2568, - [2569] = 2569, + [2564] = 2564, + [2565] = 2539, + [2566] = 1105, + [2567] = 2567, + [2568] = 2554, + [2569] = 1435, [2570] = 2570, - [2571] = 2512, - [2572] = 2544, + [2571] = 2527, + [2572] = 2572, [2573] = 2573, [2574] = 2574, - [2575] = 1431, - [2576] = 2576, + [2575] = 2575, + [2576] = 2528, [2577] = 2577, - [2578] = 2516, + [2578] = 2578, [2579] = 2579, - [2580] = 2530, - [2581] = 2528, - [2582] = 2521, - [2583] = 2583, - [2584] = 1210, - [2585] = 1106, - [2586] = 2517, - [2587] = 1111, - [2588] = 2544, + [2580] = 2534, + [2581] = 2581, + [2582] = 2582, + [2583] = 1109, + [2584] = 2584, + [2585] = 2585, + [2586] = 1402, + [2587] = 2534, + [2588] = 2555, [2589] = 2589, - [2590] = 2514, - [2591] = 2539, - [2592] = 2592, - [2593] = 2520, + [2590] = 2590, + [2591] = 2591, + [2592] = 2561, + [2593] = 2525, [2594] = 2594, - [2595] = 2558, + [2595] = 2574, [2596] = 2596, - [2597] = 2526, - [2598] = 1280, + [2597] = 1111, + [2598] = 2584, [2599] = 2599, - [2600] = 2583, - [2601] = 1376, - [2602] = 2569, - [2603] = 2549, - [2604] = 2524, - [2605] = 2121, - [2606] = 2570, - [2607] = 2607, - [2608] = 2589, - [2609] = 2565, - [2610] = 2532, + [2600] = 2600, + [2601] = 2525, + [2602] = 2602, + [2603] = 2602, + [2604] = 2604, + [2605] = 2605, + [2606] = 2606, + [2607] = 2606, + [2608] = 2554, + [2609] = 2543, + [2610] = 2590, [2611] = 2611, - [2612] = 2612, - [2613] = 2613, + [2612] = 2572, + [2613] = 1397, [2614] = 2614, - [2615] = 2511, - [2616] = 2616, - [2617] = 2617, - [2618] = 2618, - [2619] = 2619, + [2615] = 2575, + [2616] = 2594, + [2617] = 2611, + [2618] = 2137, + [2619] = 2558, [2620] = 2620, - [2621] = 2621, - [2622] = 2622, + [2621] = 2138, + [2622] = 2581, [2623] = 2623, [2624] = 2624, [2625] = 2625, [2626] = 2626, - [2627] = 2627, - [2628] = 2628, + [2627] = 1073, + [2628] = 2528, [2629] = 2629, [2630] = 2630, [2631] = 2631, - [2632] = 2632, + [2632] = 2614, [2633] = 2633, - [2634] = 2617, + [2634] = 2634, [2635] = 2635, [2636] = 2636, [2637] = 2637, [2638] = 2638, [2639] = 2639, [2640] = 2640, - [2641] = 2639, + [2641] = 2641, [2642] = 2642, - [2643] = 2619, - [2644] = 2618, + [2643] = 2643, + [2644] = 2644, [2645] = 2645, - [2646] = 2619, + [2646] = 2646, [2647] = 2647, [2648] = 2648, [2649] = 2649, - [2650] = 2642, - [2651] = 2651, - [2652] = 2618, - [2653] = 2619, - [2654] = 2654, - [2655] = 2655, + [2650] = 2650, + [2651] = 2177, + [2652] = 2187, + [2653] = 2637, + [2654] = 2188, + [2655] = 2168, [2656] = 2656, - [2657] = 2623, - [2658] = 2628, - [2659] = 2629, + [2657] = 2657, + [2658] = 2658, + [2659] = 2659, [2660] = 2660, - [2661] = 2631, - [2662] = 2632, - [2663] = 2633, - [2664] = 2617, - [2665] = 2624, + [2661] = 2661, + [2662] = 2662, + [2663] = 2663, + [2664] = 2664, + [2665] = 2665, [2666] = 2666, [2667] = 2667, [2668] = 2668, @@ -6682,241 +6698,241 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2670] = 2670, [2671] = 2671, [2672] = 2672, - [2673] = 2642, + [2673] = 2673, [2674] = 2674, - [2675] = 2631, - [2676] = 2628, - [2677] = 2616, - [2678] = 2633, - [2679] = 2617, - [2680] = 2680, - [2681] = 2681, + [2675] = 2675, + [2676] = 2676, + [2677] = 2677, + [2678] = 2678, + [2679] = 2679, + [2680] = 2668, + [2681] = 2677, [2682] = 2682, [2683] = 2683, [2684] = 2684, - [2685] = 2637, + [2685] = 2661, [2686] = 2686, - [2687] = 2687, - [2688] = 2631, - [2689] = 2617, - [2690] = 2147, - [2691] = 2633, - [2692] = 2617, - [2693] = 2654, + [2687] = 2682, + [2688] = 2688, + [2689] = 2667, + [2690] = 2690, + [2691] = 2691, + [2692] = 2692, + [2693] = 2693, [2694] = 2694, [2695] = 2695, - [2696] = 2623, + [2696] = 2656, [2697] = 2697, [2698] = 2698, - [2699] = 2625, + [2699] = 2699, [2700] = 2700, - [2701] = 2669, - [2702] = 2624, - [2703] = 2625, - [2704] = 2647, - [2705] = 2633, + [2701] = 2701, + [2702] = 2686, + [2703] = 2633, + [2704] = 2704, + [2705] = 2705, [2706] = 2706, [2707] = 2707, - [2708] = 2626, + [2708] = 2708, [2709] = 2709, [2710] = 2710, - [2711] = 2651, + [2711] = 2688, [2712] = 2712, [2713] = 2713, - [2714] = 2628, - [2715] = 2636, - [2716] = 2627, - [2717] = 2670, - [2718] = 2640, + [2714] = 2638, + [2715] = 2639, + [2716] = 2640, + [2717] = 2717, + [2718] = 2695, [2719] = 2719, - [2720] = 2628, - [2721] = 2629, + [2720] = 2720, + [2721] = 2721, [2722] = 2722, - [2723] = 2621, - [2724] = 2628, + [2723] = 2723, + [2724] = 2704, [2725] = 2725, [2726] = 2726, - [2727] = 2727, - [2728] = 2642, - [2729] = 2631, - [2730] = 2632, - [2731] = 2694, - [2732] = 2680, - [2733] = 2733, + [2727] = 2153, + [2728] = 166, + [2729] = 2157, + [2730] = 2192, + [2731] = 2731, + [2732] = 2732, + [2733] = 2174, [2734] = 2734, - [2735] = 2726, - [2736] = 2672, - [2737] = 2719, - [2738] = 175, - [2739] = 2726, - [2740] = 2667, - [2741] = 2668, + [2735] = 2672, + [2736] = 2674, + [2737] = 2698, + [2738] = 2690, + [2739] = 2691, + [2740] = 2151, + [2741] = 2662, [2742] = 2742, - [2743] = 2698, - [2744] = 2744, - [2745] = 2745, - [2746] = 176, - [2747] = 2747, - [2748] = 2748, - [2749] = 2749, - [2750] = 2632, - [2751] = 2751, - [2752] = 2154, - [2753] = 2633, - [2754] = 2645, - [2755] = 2755, - [2756] = 2756, - [2757] = 2757, - [2758] = 2686, - [2759] = 2759, - [2760] = 2760, - [2761] = 2713, - [2762] = 2629, - [2763] = 2630, - [2764] = 2700, - [2765] = 2669, - [2766] = 2666, - [2767] = 2767, - [2768] = 2639, - [2769] = 2769, - [2770] = 2617, - [2771] = 2627, - [2772] = 2642, - [2773] = 2773, - [2774] = 2774, - [2775] = 2775, - [2776] = 2707, - [2777] = 2632, - [2778] = 2637, - [2779] = 2680, - [2780] = 2749, - [2781] = 2618, - [2782] = 2767, - [2783] = 2139, - [2784] = 2618, - [2785] = 2145, - [2786] = 2623, - [2787] = 2787, - [2788] = 2788, - [2789] = 2683, - [2790] = 2167, + [2743] = 2154, + [2744] = 2156, + [2745] = 2663, + [2746] = 165, + [2747] = 2160, + [2748] = 2710, + [2749] = 2678, + [2750] = 2643, + [2751] = 2644, + [2752] = 2645, + [2753] = 2679, + [2754] = 2647, + [2755] = 2648, + [2756] = 2649, + [2757] = 2664, + [2758] = 2656, + [2759] = 2658, + [2760] = 2659, + [2761] = 2660, + [2762] = 2706, + [2763] = 2661, + [2764] = 2719, + [2765] = 2662, + [2766] = 2663, + [2767] = 2664, + [2768] = 2667, + [2769] = 2671, + [2770] = 2673, + [2771] = 2675, + [2772] = 2720, + [2773] = 2677, + [2774] = 2678, + [2775] = 2679, + [2776] = 2688, + [2777] = 2777, + [2778] = 2694, + [2779] = 2708, + [2780] = 2780, + [2781] = 2700, + [2782] = 2639, + [2783] = 2640, + [2784] = 2731, + [2785] = 2732, + [2786] = 2721, + [2787] = 2643, + [2788] = 2644, + [2789] = 2645, + [2790] = 2647, [2791] = 2648, - [2792] = 2695, - [2793] = 2670, - [2794] = 2712, - [2795] = 2795, - [2796] = 2796, - [2797] = 2637, - [2798] = 2684, - [2799] = 2799, - [2800] = 2800, - [2801] = 2683, - [2802] = 2802, - [2803] = 2683, - [2804] = 2709, - [2805] = 2619, - [2806] = 2647, - [2807] = 2638, - [2808] = 2136, - [2809] = 2654, - [2810] = 2636, - [2811] = 2134, - [2812] = 2168, + [2792] = 2792, + [2793] = 2658, + [2794] = 2659, + [2795] = 2660, + [2796] = 2661, + [2797] = 2662, + [2798] = 2663, + [2799] = 2671, + [2800] = 2673, + [2801] = 2677, + [2802] = 2679, + [2803] = 2803, + [2804] = 2688, + [2805] = 2707, + [2806] = 2644, + [2807] = 2665, + [2808] = 2708, + [2809] = 2645, + [2810] = 2647, + [2811] = 2648, + [2812] = 2669, [2813] = 2813, - [2814] = 2814, - [2815] = 2815, - [2816] = 2150, - [2817] = 2647, - [2818] = 2621, - [2819] = 2645, - [2820] = 2636, - [2821] = 2795, - [2822] = 2630, - [2823] = 2815, - [2824] = 2655, - [2825] = 2825, - [2826] = 2727, - [2827] = 2129, - [2828] = 2671, - [2829] = 2647, - [2830] = 2166, - [2831] = 2760, - [2832] = 2622, - [2833] = 2620, - [2834] = 2834, - [2835] = 2645, - [2836] = 2153, - [2837] = 2706, - [2838] = 2814, - [2839] = 2839, - [2840] = 2825, - [2841] = 2841, - [2842] = 2683, - [2843] = 2774, - [2844] = 2710, - [2845] = 2845, - [2846] = 2775, - [2847] = 2623, - [2848] = 2695, - [2849] = 2697, - [2850] = 2799, - [2851] = 2800, - [2852] = 2624, - [2853] = 2787, - [2854] = 2722, - [2855] = 2625, - [2856] = 2799, - [2857] = 2845, - [2858] = 2788, - [2859] = 2744, - [2860] = 2860, - [2861] = 2682, - [2862] = 2744, - [2863] = 2682, - [2864] = 2800, - [2865] = 2700, - [2866] = 2633, - [2867] = 2629, - [2868] = 2686, - [2869] = 2627, - [2870] = 2841, - [2871] = 2871, - [2872] = 2686, - [2873] = 2630, - [2874] = 2639, - [2875] = 2875, - [2876] = 2642, - [2877] = 2747, + [2814] = 2658, + [2815] = 2662, + [2816] = 2663, + [2817] = 2671, + [2818] = 2673, + [2819] = 2677, + [2820] = 2679, + [2821] = 2722, + [2822] = 2670, + [2823] = 2647, + [2824] = 2645, + [2825] = 2662, + [2826] = 2723, + [2827] = 2677, + [2828] = 2679, + [2829] = 2829, + [2830] = 2690, + [2831] = 2677, + [2832] = 2679, + [2833] = 2691, + [2834] = 2645, + [2835] = 2648, + [2836] = 2692, + [2837] = 2837, + [2838] = 2838, + [2839] = 2637, + [2840] = 2840, + [2841] = 2712, + [2842] = 2649, + [2843] = 2843, + [2844] = 2643, + [2845] = 2697, + [2846] = 2846, + [2847] = 2658, + [2848] = 2848, + [2849] = 2849, + [2850] = 2792, + [2851] = 2708, + [2852] = 2641, + [2853] = 2853, + [2854] = 2693, + [2855] = 2840, + [2856] = 2856, + [2857] = 2671, + [2858] = 2858, + [2859] = 2859, + [2860] = 2813, + [2861] = 2659, + [2862] = 2731, + [2863] = 2699, + [2864] = 2701, + [2865] = 2732, + [2866] = 2866, + [2867] = 2867, + [2868] = 2868, + [2869] = 2869, + [2870] = 2650, + [2871] = 2742, + [2872] = 2656, + [2873] = 2673, + [2874] = 2656, + [2875] = 2660, + [2876] = 2637, + [2877] = 2697, [2878] = 2878, - [2879] = 2879, - [2880] = 2880, - [2881] = 2881, - [2882] = 2882, - [2883] = 2221, - [2884] = 2884, - [2885] = 2885, - [2886] = 2878, - [2887] = 2887, - [2888] = 2888, - [2889] = 2889, + [2879] = 2694, + [2880] = 2683, + [2881] = 2675, + [2882] = 2637, + [2883] = 2697, + [2884] = 2843, + [2885] = 2867, + [2886] = 2868, + [2887] = 2684, + [2888] = 2666, + [2889] = 2705, [2890] = 2890, - [2891] = 2891, - [2892] = 2892, - [2893] = 2893, + [2891] = 2734, + [2892] = 2829, + [2893] = 2709, [2894] = 2894, [2895] = 2895, - [2896] = 2896, - [2897] = 2897, - [2898] = 2898, - [2899] = 2899, + [2896] = 2777, + [2897] = 2646, + [2898] = 2859, + [2899] = 2678, [2900] = 2900, [2901] = 2901, - [2902] = 2902, + [2902] = 2638, [2903] = 2903, [2904] = 2904, [2905] = 2905, [2906] = 2906, - [2907] = 2891, + [2907] = 2907, [2908] = 2908, [2909] = 2909, [2910] = 2910, @@ -6936,308 +6952,308 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2924] = 2924, [2925] = 2925, [2926] = 2926, - [2927] = 2187, + [2927] = 2927, [2928] = 2928, [2929] = 2929, - [2930] = 2188, + [2930] = 2927, [2931] = 2931, [2932] = 2932, - [2933] = 2190, + [2933] = 2933, [2934] = 2934, - [2935] = 2192, - [2936] = 2936, + [2935] = 2935, + [2936] = 2213, [2937] = 2937, - [2938] = 2193, - [2939] = 2195, + [2938] = 2938, + [2939] = 2939, [2940] = 2940, - [2941] = 2879, - [2942] = 2921, + [2941] = 2911, + [2942] = 2942, [2943] = 2943, - [2944] = 2944, - [2945] = 2887, + [2944] = 2232, + [2945] = 2945, [2946] = 2946, [2947] = 2947, - [2948] = 2911, - [2949] = 2943, + [2948] = 2948, + [2949] = 2949, [2950] = 2950, - [2951] = 2951, - [2952] = 2952, + [2951] = 2916, + [2952] = 2919, [2953] = 2953, [2954] = 2954, [2955] = 2955, [2956] = 2956, [2957] = 2957, [2958] = 2958, - [2959] = 2888, - [2960] = 2908, - [2961] = 2961, - [2962] = 2918, - [2963] = 2947, + [2959] = 2959, + [2960] = 2928, + [2961] = 2908, + [2962] = 2940, + [2963] = 2963, [2964] = 2964, [2965] = 2965, - [2966] = 2912, - [2967] = 2913, + [2966] = 2966, + [2967] = 2967, [2968] = 2968, - [2969] = 2914, + [2969] = 2969, [2970] = 2970, [2971] = 2971, - [2972] = 2198, - [2973] = 2205, - [2974] = 2915, + [2972] = 2963, + [2973] = 2964, + [2974] = 2205, [2975] = 2975, - [2976] = 2976, - [2977] = 2977, - [2978] = 2916, - [2979] = 2944, - [2980] = 2968, + [2976] = 2229, + [2977] = 2943, + [2978] = 2978, + [2979] = 2945, + [2980] = 2980, [2981] = 2981, - [2982] = 2982, - [2983] = 2983, + [2982] = 2218, + [2983] = 2230, [2984] = 2984, - [2985] = 2917, - [2986] = 2946, - [2987] = 2216, - [2988] = 2981, - [2989] = 2989, + [2985] = 2985, + [2986] = 2986, + [2987] = 2987, + [2988] = 2988, + [2989] = 2210, [2990] = 2990, - [2991] = 2201, + [2991] = 2991, [2992] = 2992, [2993] = 2993, - [2994] = 2884, + [2994] = 2994, [2995] = 2995, - [2996] = 2189, - [2997] = 2191, + [2996] = 2193, + [2997] = 2997, [2998] = 2998, [2999] = 2999, - [3000] = 2194, + [3000] = 3000, [3001] = 3001, [3002] = 3002, - [3003] = 2890, - [3004] = 2964, - [3005] = 2919, - [3006] = 3006, - [3007] = 2204, + [3003] = 2195, + [3004] = 2204, + [3005] = 2228, + [3006] = 2946, + [3007] = 3007, [3008] = 3008, - [3009] = 2920, - [3010] = 2210, + [3009] = 3009, + [3010] = 3010, [3011] = 3011, - [3012] = 3012, - [3013] = 2211, - [3014] = 2213, - [3015] = 2217, - [3016] = 2218, - [3017] = 2219, - [3018] = 3018, - [3019] = 2220, + [3012] = 2209, + [3013] = 3013, + [3014] = 2909, + [3015] = 2914, + [3016] = 2903, + [3017] = 2931, + [3018] = 2225, + [3019] = 3019, [3020] = 3020, [3021] = 3021, [3022] = 3022, [3023] = 3023, - [3024] = 2897, - [3025] = 3025, + [3024] = 2222, + [3025] = 2236, [3026] = 3026, [3027] = 3027, - [3028] = 3028, - [3029] = 2922, - [3030] = 2882, - [3031] = 2923, - [3032] = 2884, - [3033] = 3033, - [3034] = 2885, - [3035] = 2878, - [3036] = 3036, + [3028] = 2235, + [3029] = 2196, + [3030] = 3030, + [3031] = 2969, + [3032] = 3032, + [3033] = 2903, + [3034] = 2933, + [3035] = 3035, + [3036] = 2903, [3037] = 3037, - [3038] = 3038, - [3039] = 183, - [3040] = 2912, - [3041] = 2913, + [3038] = 2924, + [3039] = 3039, + [3040] = 3019, + [3041] = 2955, [3042] = 3042, - [3043] = 2919, - [3044] = 2898, - [3045] = 2920, - [3046] = 3046, - [3047] = 3047, - [3048] = 2923, - [3049] = 2992, - [3050] = 2965, - [3051] = 2951, - [3052] = 2955, + [3043] = 3020, + [3044] = 2932, + [3045] = 2907, + [3046] = 2953, + [3047] = 2920, + [3048] = 2910, + [3049] = 2912, + [3050] = 2913, + [3051] = 3051, + [3052] = 2965, [3053] = 3053, - [3054] = 2225, - [3055] = 3055, + [3054] = 2938, + [3055] = 2939, [3056] = 3056, - [3057] = 2924, - [3058] = 2227, - [3059] = 2925, - [3060] = 2885, - [3061] = 2899, - [3062] = 2951, - [3063] = 3063, - [3064] = 3011, + [3057] = 2948, + [3058] = 2950, + [3059] = 2916, + [3060] = 2919, + [3061] = 3061, + [3062] = 2975, + [3063] = 2980, + [3064] = 2954, [3065] = 3065, - [3066] = 3018, - [3067] = 3067, - [3068] = 2229, - [3069] = 3022, + [3066] = 3066, + [3067] = 2948, + [3068] = 3068, + [3069] = 3069, [3070] = 3070, - [3071] = 3071, - [3072] = 2230, + [3071] = 2903, + [3072] = 3053, [3073] = 3073, - [3074] = 3074, - [3075] = 2912, - [3076] = 2913, - [3077] = 2993, - [3078] = 3078, - [3079] = 2951, + [3074] = 2955, + [3075] = 3075, + [3076] = 3076, + [3077] = 3077, + [3078] = 2921, + [3079] = 3079, [3080] = 3080, - [3081] = 411, - [3082] = 3082, - [3083] = 2928, - [3084] = 3011, - [3085] = 2929, - [3086] = 2900, + [3081] = 2938, + [3082] = 2939, + [3083] = 2967, + [3084] = 3084, + [3085] = 2975, + [3086] = 3086, [3087] = 3087, [3088] = 3088, - [3089] = 2931, - [3090] = 2179, - [3091] = 3091, - [3092] = 3092, - [3093] = 3022, - [3094] = 3094, - [3095] = 2983, - [3096] = 2182, - [3097] = 3097, + [3089] = 3022, + [3090] = 410, + [3091] = 3007, + [3092] = 2197, + [3093] = 3093, + [3094] = 3039, + [3095] = 2925, + [3096] = 3096, + [3097] = 2968, [3098] = 3098, [3099] = 3099, - [3100] = 3100, - [3101] = 3101, - [3102] = 3102, - [3103] = 3103, - [3104] = 3038, - [3105] = 3038, - [3106] = 3106, + [3100] = 2955, + [3101] = 2224, + [3102] = 2194, + [3103] = 2202, + [3104] = 2216, + [3105] = 2243, + [3106] = 2234, [3107] = 3107, - [3108] = 2902, - [3109] = 2934, - [3110] = 3055, - [3111] = 3111, + [3108] = 2950, + [3109] = 2971, + [3110] = 3110, + [3111] = 2934, [3112] = 3112, - [3113] = 2955, - [3114] = 3114, - [3115] = 3115, - [3116] = 3116, - [3117] = 2880, - [3118] = 3118, - [3119] = 3106, + [3113] = 3113, + [3114] = 2969, + [3115] = 3068, + [3116] = 3073, + [3117] = 3117, + [3118] = 2926, + [3119] = 3008, [3120] = 3120, - [3121] = 2936, - [3122] = 2937, - [3123] = 3123, - [3124] = 3107, - [3125] = 3125, - [3126] = 3011, - [3127] = 2178, - [3128] = 2180, + [3121] = 2905, + [3122] = 3122, + [3123] = 2966, + [3124] = 3030, + [3125] = 2975, + [3126] = 3126, + [3127] = 3127, + [3128] = 3128, [3129] = 3129, - [3130] = 2181, - [3131] = 2183, - [3132] = 2184, - [3133] = 2185, + [3130] = 3130, + [3131] = 3131, + [3132] = 3132, + [3133] = 3131, [3134] = 3134, [3135] = 3135, - [3136] = 2904, - [3137] = 3137, + [3136] = 3136, + [3137] = 2906, [3138] = 3138, [3139] = 3139, [3140] = 3140, - [3141] = 3141, - [3142] = 3142, + [3141] = 2980, + [3142] = 2907, [3143] = 3143, [3144] = 3144, - [3145] = 2901, + [3145] = 3145, [3146] = 3146, [3147] = 3147, - [3148] = 2893, - [3149] = 2903, - [3150] = 3018, - [3151] = 3125, - [3152] = 3152, - [3153] = 3153, - [3154] = 3022, - [3155] = 3155, - [3156] = 3011, - [3157] = 2894, - [3158] = 2975, - [3159] = 2940, - [3160] = 2976, - [3161] = 2971, - [3162] = 3001, - [3163] = 3143, - [3164] = 3152, + [3148] = 2246, + [3149] = 2221, + [3150] = 3150, + [3151] = 2227, + [3152] = 2211, + [3153] = 2212, + [3154] = 3154, + [3155] = 2214, + [3156] = 3075, + [3157] = 3010, + [3158] = 2922, + [3159] = 3159, + [3160] = 3079, + [3161] = 3161, + [3162] = 2985, + [3163] = 3163, + [3164] = 3164, [3165] = 3165, - [3166] = 2882, - [3167] = 2889, - [3168] = 2953, - [3169] = 3080, - [3170] = 2905, - [3171] = 3112, - [3172] = 3165, + [3166] = 3166, + [3167] = 2987, + [3168] = 2910, + [3169] = 2988, + [3170] = 3011, + [3171] = 3171, + [3172] = 2219, [3173] = 3173, - [3174] = 3094, + [3174] = 184, [3175] = 3175, - [3176] = 3176, + [3176] = 3039, [3177] = 3177, - [3178] = 3155, - [3179] = 2957, - [3180] = 2984, - [3181] = 2958, - [3182] = 3176, - [3183] = 2214, - [3184] = 3147, - [3185] = 3023, - [3186] = 3111, - [3187] = 2895, - [3188] = 2922, + [3178] = 2918, + [3179] = 2992, + [3180] = 2957, + [3181] = 2993, + [3182] = 2912, + [3183] = 2913, + [3184] = 3066, + [3185] = 3140, + [3186] = 2935, + [3187] = 2942, + [3188] = 3188, [3189] = 3189, [3190] = 3190, - [3191] = 3191, - [3192] = 3192, - [3193] = 3193, - [3194] = 3194, - [3195] = 3195, - [3196] = 3196, - [3197] = 3197, - [3198] = 3198, - [3199] = 3199, + [3191] = 2958, + [3192] = 3107, + [3193] = 2937, + [3194] = 3076, + [3195] = 3061, + [3196] = 2923, + [3197] = 2995, + [3198] = 2915, + [3199] = 3051, [3200] = 3200, - [3201] = 3201, - [3202] = 1554, + [3201] = 2998, + [3202] = 3086, [3203] = 3203, - [3204] = 3204, + [3204] = 2959, [3205] = 3205, - [3206] = 3206, - [3207] = 3207, - [3208] = 3208, - [3209] = 3209, - [3210] = 3210, - [3211] = 3211, - [3212] = 3212, - [3213] = 3212, - [3214] = 3214, + [3206] = 2226, + [3207] = 2938, + [3208] = 3013, + [3209] = 2231, + [3210] = 2244, + [3211] = 3099, + [3212] = 2199, + [3213] = 2939, + [3214] = 3093, [3215] = 3215, [3216] = 3216, [3217] = 3217, - [3218] = 3218, + [3218] = 3087, [3219] = 3219, [3220] = 3220, [3221] = 3221, [3222] = 3222, [3223] = 3223, - [3224] = 3203, + [3224] = 3224, [3225] = 3225, [3226] = 3226, - [3227] = 3192, - [3228] = 3221, + [3227] = 3227, + [3228] = 3228, [3229] = 3229, [3230] = 3230, [3231] = 3231, @@ -7245,309 +7261,309 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3233] = 3233, [3234] = 3234, [3235] = 3235, - [3236] = 3204, + [3236] = 3236, [3237] = 3237, - [3238] = 3201, + [3238] = 3238, [3239] = 3239, - [3240] = 3223, + [3240] = 3240, [3241] = 3241, [3242] = 3242, [3243] = 3243, - [3244] = 3241, - [3245] = 3230, - [3246] = 3246, - [3247] = 3206, - [3248] = 3248, - [3249] = 3249, - [3250] = 3193, - [3251] = 3201, - [3252] = 3199, + [3244] = 3244, + [3245] = 3245, + [3246] = 3240, + [3247] = 3247, + [3248] = 3237, + [3249] = 3239, + [3250] = 3234, + [3251] = 3251, + [3252] = 1513, [3253] = 3253, - [3254] = 3201, - [3255] = 3203, - [3256] = 3204, + [3254] = 3254, + [3255] = 3255, + [3256] = 3228, [3257] = 3257, - [3258] = 3207, - [3259] = 3259, - [3260] = 3260, - [3261] = 3211, - [3262] = 3262, - [3263] = 3209, - [3264] = 3264, + [3258] = 3258, + [3259] = 3226, + [3260] = 3221, + [3261] = 3240, + [3262] = 3223, + [3263] = 3238, + [3264] = 3238, [3265] = 3265, - [3266] = 3266, - [3267] = 3267, - [3268] = 3268, - [3269] = 3201, - [3270] = 3220, - [3271] = 3223, + [3266] = 3240, + [3267] = 3237, + [3268] = 3239, + [3269] = 3225, + [3270] = 3270, + [3271] = 3270, [3272] = 3272, [3273] = 3273, - [3274] = 3211, - [3275] = 3241, - [3276] = 3276, - [3277] = 3193, - [3278] = 3201, - [3279] = 3243, - [3280] = 3203, - [3281] = 3204, - [3282] = 3189, - [3283] = 3211, - [3284] = 3284, - [3285] = 3226, - [3286] = 3191, - [3287] = 3241, - [3288] = 3205, - [3289] = 3289, - [3290] = 3201, - [3291] = 3203, - [3292] = 3204, - [3293] = 3195, - [3294] = 3294, - [3295] = 3295, - [3296] = 3296, - [3297] = 3294, - [3298] = 3298, - [3299] = 3299, - [3300] = 3241, - [3301] = 3259, - [3302] = 3201, - [3303] = 3203, - [3304] = 3204, - [3305] = 3284, - [3306] = 3197, - [3307] = 3223, - [3308] = 3241, - [3309] = 3201, - [3310] = 3203, - [3311] = 3204, - [3312] = 3241, - [3313] = 3203, - [3314] = 3204, - [3315] = 3241, - [3316] = 3203, - [3317] = 3204, - [3318] = 3241, - [3319] = 3203, - [3320] = 3204, - [3321] = 3241, - [3322] = 3203, - [3323] = 3204, - [3324] = 3199, - [3325] = 3325, - [3326] = 3326, + [3274] = 3274, + [3275] = 3238, + [3276] = 3257, + [3277] = 3277, + [3278] = 3278, + [3279] = 3279, + [3280] = 3227, + [3281] = 3238, + [3282] = 3240, + [3283] = 3237, + [3284] = 3239, + [3285] = 3285, + [3286] = 3225, + [3287] = 3287, + [3288] = 3274, + [3289] = 3238, + [3290] = 3240, + [3291] = 3237, + [3292] = 3239, + [3293] = 3238, + [3294] = 3237, + [3295] = 3239, + [3296] = 3238, + [3297] = 3237, + [3298] = 3239, + [3299] = 3238, + [3300] = 3237, + [3301] = 3239, + [3302] = 3238, + [3303] = 3237, + [3304] = 3239, + [3305] = 3305, + [3306] = 3306, + [3307] = 3307, + [3308] = 1522, + [3309] = 3309, + [3310] = 3310, + [3311] = 3150, + [3312] = 3165, + [3313] = 3265, + [3314] = 3314, + [3315] = 3315, + [3316] = 3316, + [3317] = 3317, + [3318] = 3257, + [3319] = 1410, + [3320] = 1412, + [3321] = 3321, + [3322] = 3322, + [3323] = 3242, + [3324] = 3324, + [3325] = 3245, + [3326] = 3242, [3327] = 3222, - [3328] = 3208, + [3328] = 3328, [3329] = 3329, [3330] = 3330, - [3331] = 3331, - [3332] = 3200, - [3333] = 3231, - [3334] = 3334, - [3335] = 3265, - [3336] = 1262, - [3337] = 1264, - [3338] = 3234, + [3331] = 3255, + [3332] = 3317, + [3333] = 3333, + [3334] = 3219, + [3335] = 3335, + [3336] = 3255, + [3337] = 3337, + [3338] = 3287, [3339] = 3339, - [3340] = 3232, - [3341] = 3235, - [3342] = 3243, - [3343] = 3343, - [3344] = 3233, + [3340] = 3340, + [3341] = 3242, + [3342] = 3240, + [3343] = 3240, + [3344] = 3237, [3345] = 3345, - [3346] = 3330, - [3347] = 3347, - [3348] = 3241, + [3346] = 3346, + [3347] = 3239, + [3348] = 3235, [3349] = 3349, - [3350] = 3265, - [3351] = 3351, - [3352] = 3331, + [3350] = 3236, + [3351] = 3277, + [3352] = 3352, [3353] = 3353, - [3354] = 3276, + [3354] = 1546, [3355] = 3355, [3356] = 3356, - [3357] = 3357, - [3358] = 1436, - [3359] = 1437, - [3360] = 3360, - [3361] = 3091, - [3362] = 3103, - [3363] = 3363, + [3357] = 3349, + [3358] = 1548, + [3359] = 3265, + [3360] = 3309, + [3361] = 3361, + [3362] = 3362, + [3363] = 3270, [3364] = 3364, - [3365] = 3357, + [3365] = 3234, [3366] = 3366, [3367] = 3367, [3368] = 3368, [3369] = 3369, - [3370] = 3193, - [3371] = 3334, - [3372] = 3372, - [3373] = 3373, - [3374] = 3214, + [3370] = 3370, + [3371] = 3371, + [3372] = 3244, + [3373] = 3352, + [3374] = 3374, [3375] = 3375, [3376] = 3376, - [3377] = 3198, - [3378] = 3199, - [3379] = 3200, - [3380] = 3380, - [3381] = 3356, - [3382] = 3382, + [3377] = 3377, + [3378] = 3378, + [3379] = 3379, + [3380] = 3330, + [3381] = 3353, + [3382] = 3255, [3383] = 3383, [3384] = 3384, - [3385] = 3242, - [3386] = 3386, - [3387] = 3387, - [3388] = 3295, - [3389] = 3363, - [3390] = 3382, - [3391] = 3387, + [3385] = 3229, + [3386] = 3367, + [3387] = 3328, + [3388] = 3367, + [3389] = 3389, + [3390] = 3237, + [3391] = 3391, [3392] = 3392, [3393] = 3393, - [3394] = 3394, + [3394] = 3391, [3395] = 3395, [3396] = 3396, - [3397] = 3201, - [3398] = 3220, - [3399] = 3399, - [3400] = 3355, - [3401] = 3360, + [3397] = 3273, + [3398] = 3253, + [3399] = 3224, + [3400] = 3396, + [3401] = 3401, [3402] = 3402, - [3403] = 3203, - [3404] = 3204, - [3405] = 1538, - [3406] = 3353, - [3407] = 3357, - [3408] = 3408, - [3409] = 3386, + [3403] = 3239, + [3404] = 3404, + [3405] = 3405, + [3406] = 3376, + [3407] = 3234, + [3408] = 3377, + [3409] = 3409, [3410] = 3410, - [3411] = 3205, - [3412] = 3198, + [3411] = 3411, + [3412] = 3412, [3413] = 3413, - [3414] = 3208, - [3415] = 3201, - [3416] = 3231, - [3417] = 3417, - [3418] = 1262, - [3419] = 1264, - [3420] = 3339, - [3421] = 3421, - [3422] = 3276, - [3423] = 3423, - [3424] = 3193, + [3414] = 3414, + [3415] = 3230, + [3416] = 3355, + [3417] = 1525, + [3418] = 3356, + [3419] = 3378, + [3420] = 3404, + [3421] = 3414, + [3422] = 3379, + [3423] = 3316, + [3424] = 3424, [3425] = 3425, - [3426] = 3347, - [3427] = 3364, - [3428] = 3428, - [3429] = 3429, - [3430] = 3430, - [3431] = 3231, - [3432] = 3259, - [3433] = 3339, - [3434] = 3428, - [3435] = 3190, - [3436] = 3366, - [3437] = 3218, + [3426] = 1410, + [3427] = 1412, + [3428] = 3425, + [3429] = 3321, + [3430] = 3272, + [3431] = 3274, + [3432] = 3335, + [3433] = 3330, + [3434] = 3361, + [3435] = 3435, + [3436] = 3389, + [3437] = 3315, [3438] = 3438, - [3439] = 3231, - [3440] = 3339, - [3441] = 3211, - [3442] = 3246, - [3443] = 3262, - [3444] = 3444, - [3445] = 3421, - [3446] = 3265, - [3447] = 3223, + [3439] = 3439, + [3440] = 3440, + [3441] = 3441, + [3442] = 3222, + [3443] = 3443, + [3444] = 3316, + [3445] = 3445, + [3446] = 3321, + [3447] = 3279, [3448] = 3448, - [3449] = 3260, - [3450] = 3253, - [3451] = 3451, - [3452] = 3201, - [3453] = 3372, - [3454] = 3276, - [3455] = 3205, - [3456] = 3219, - [3457] = 3444, - [3458] = 3239, - [3459] = 3212, - [3460] = 3229, - [3461] = 3339, + [3449] = 3366, + [3450] = 3337, + [3451] = 3272, + [3452] = 3316, + [3453] = 3321, + [3454] = 3287, + [3455] = 3455, + [3456] = 3456, + [3457] = 3445, + [3458] = 3314, + [3459] = 3305, + [3460] = 3306, + [3461] = 3257, [3462] = 3462, - [3463] = 3257, - [3464] = 3429, - [3465] = 3451, - [3466] = 3289, - [3467] = 1508, - [3468] = 3468, - [3469] = 3235, - [3470] = 3243, - [3471] = 3423, - [3472] = 3221, - [3473] = 3241, - [3474] = 3410, - [3475] = 3262, - [3476] = 3260, - [3477] = 3423, - [3478] = 3260, - [3479] = 3423, - [3480] = 3367, - [3481] = 3353, - [3482] = 3265, - [3483] = 3438, - [3484] = 3413, - [3485] = 3329, - [3486] = 3267, - [3487] = 3208, - [3488] = 3353, - [3489] = 3393, - [3490] = 3430, - [3491] = 3343, - [3492] = 3268, - [3493] = 3221, - [3494] = 3368, - [3495] = 3448, - [3496] = 3462, - [3497] = 3497, - [3498] = 3498, - [3499] = 3499, - [3500] = 3500, - [3501] = 3501, - [3502] = 3502, - [3503] = 3503, + [3463] = 3364, + [3464] = 3375, + [3465] = 3392, + [3466] = 3240, + [3467] = 3335, + [3468] = 3265, + [3469] = 3412, + [3470] = 3438, + [3471] = 3393, + [3472] = 3472, + [3473] = 3473, + [3474] = 3440, + [3475] = 3337, + [3476] = 3234, + [3477] = 3477, + [3478] = 3333, + [3479] = 3479, + [3480] = 3231, + [3481] = 3278, + [3482] = 3238, + [3483] = 3456, + [3484] = 3443, + [3485] = 3409, + [3486] = 3335, + [3487] = 3455, + [3488] = 3274, + [3489] = 3238, + [3490] = 3240, + [3491] = 3491, + [3492] = 3401, + [3493] = 3257, + [3494] = 3445, + [3495] = 3364, + [3496] = 3219, + [3497] = 3364, + [3498] = 3219, + [3499] = 3242, + [3500] = 3225, + [3501] = 3307, + [3502] = 3337, + [3503] = 3409, [3504] = 3504, - [3505] = 3505, - [3506] = 3506, + [3505] = 3258, + [3506] = 3240, [3507] = 3507, - [3508] = 3508, + [3508] = 3339, [3509] = 3509, - [3510] = 3510, - [3511] = 3511, - [3512] = 3512, - [3513] = 3513, - [3514] = 3509, + [3510] = 3237, + [3511] = 3270, + [3512] = 3239, + [3513] = 3232, + [3514] = 3316, [3515] = 3515, - [3516] = 3516, + [3516] = 3504, [3517] = 3517, - [3518] = 3518, - [3519] = 3519, - [3520] = 3520, - [3521] = 3521, - [3522] = 3522, - [3523] = 3523, - [3524] = 3524, - [3525] = 3525, - [3526] = 3526, - [3527] = 3527, - [3528] = 3498, + [3518] = 3254, + [3519] = 3409, + [3520] = 3255, + [3521] = 3220, + [3522] = 3448, + [3523] = 3491, + [3524] = 3279, + [3525] = 3395, + [3526] = 3240, + [3527] = 3321, + [3528] = 3245, [3529] = 3529, [3530] = 3530, - [3531] = 3522, - [3532] = 3516, - [3533] = 3523, + [3531] = 3531, + [3532] = 3532, + [3533] = 3533, [3534] = 3534, [3535] = 3535, [3536] = 3536, [3537] = 3537, - [3538] = 3502, + [3538] = 3538, [3539] = 3539, [3540] = 3540, [3541] = 3541, @@ -7560,22 +7576,22 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3548] = 3548, [3549] = 3549, [3550] = 3550, - [3551] = 3501, + [3551] = 3551, [3552] = 3552, [3553] = 3553, - [3554] = 3507, - [3555] = 3510, - [3556] = 3518, - [3557] = 3547, - [3558] = 3519, + [3554] = 3554, + [3555] = 3555, + [3556] = 3556, + [3557] = 3557, + [3558] = 3558, [3559] = 3559, - [3560] = 3560, - [3561] = 3561, + [3560] = 3530, + [3561] = 179, [3562] = 3562, - [3563] = 3525, - [3564] = 3512, + [3563] = 3563, + [3564] = 3564, [3565] = 3565, - [3566] = 3552, + [3566] = 3566, [3567] = 3567, [3568] = 3568, [3569] = 3569, @@ -7585,253 +7601,291 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3573] = 3573, [3574] = 3574, [3575] = 3575, - [3576] = 3511, + [3576] = 3576, [3577] = 3577, - [3578] = 3572, + [3578] = 3578, [3579] = 3579, - [3580] = 3571, + [3580] = 3569, [3581] = 3581, [3582] = 3582, [3583] = 3583, [3584] = 3584, - [3585] = 3500, + [3585] = 3585, [3586] = 3586, - [3587] = 3568, - [3588] = 3570, + [3587] = 3587, + [3588] = 3588, [3589] = 3589, [3590] = 3590, [3591] = 3591, - [3592] = 3539, + [3592] = 3592, [3593] = 3593, [3594] = 3594, [3595] = 3595, [3596] = 3596, - [3597] = 3594, - [3598] = 3598, - [3599] = 3599, + [3597] = 3597, + [3598] = 3553, + [3599] = 3559, [3600] = 3600, - [3601] = 3527, - [3602] = 3547, - [3603] = 3603, - [3604] = 3511, - [3605] = 3605, - [3606] = 3510, + [3601] = 3601, + [3602] = 3585, + [3603] = 3588, + [3604] = 3604, + [3605] = 3577, + [3606] = 3606, [3607] = 3607, - [3608] = 3596, - [3609] = 3609, - [3610] = 3513, - [3611] = 3517, - [3612] = 3498, + [3608] = 3590, + [3609] = 3547, + [3610] = 3610, + [3611] = 3611, + [3612] = 3612, [3613] = 3613, - [3614] = 3614, + [3614] = 3541, [3615] = 3615, [3616] = 3616, - [3617] = 3589, + [3617] = 3617, [3618] = 3618, [3619] = 3619, - [3620] = 3512, - [3621] = 3621, + [3620] = 3620, + [3621] = 3616, [3622] = 3622, - [3623] = 3530, - [3624] = 3614, + [3623] = 3623, + [3624] = 3624, [3625] = 3625, - [3626] = 3536, - [3627] = 3590, + [3626] = 3616, + [3627] = 3627, [3628] = 3628, [3629] = 3629, - [3630] = 3579, - [3631] = 3504, + [3630] = 3627, + [3631] = 3631, [3632] = 3632, [3633] = 3633, - [3634] = 3575, - [3635] = 3507, - [3636] = 3636, - [3637] = 3637, + [3634] = 3542, + [3635] = 3601, + [3636] = 3556, + [3637] = 3613, [3638] = 3638, - [3639] = 3632, - [3640] = 3640, - [3641] = 3583, - [3642] = 3642, - [3643] = 3643, - [3644] = 3500, - [3645] = 3547, - [3646] = 3646, + [3639] = 3592, + [3640] = 3569, + [3641] = 3641, + [3642] = 3618, + [3643] = 3592, + [3644] = 3569, + [3645] = 3538, + [3646] = 3571, [3647] = 3647, [3648] = 3648, - [3649] = 3573, - [3650] = 3512, - [3651] = 3513, - [3652] = 3509, - [3653] = 3646, - [3654] = 3517, - [3655] = 3498, - [3656] = 3656, + [3649] = 3620, + [3650] = 3617, + [3651] = 3651, + [3652] = 3652, + [3653] = 3555, + [3654] = 3543, + [3655] = 3557, + [3656] = 3612, [3657] = 3657, - [3658] = 3582, - [3659] = 3573, - [3660] = 3536, + [3658] = 3658, + [3659] = 3536, + [3660] = 3660, [3661] = 3661, - [3662] = 3662, - [3663] = 3625, - [3664] = 3540, - [3665] = 3544, - [3666] = 3629, - [3667] = 3629, + [3662] = 3589, + [3663] = 3581, + [3664] = 3607, + [3665] = 3665, + [3666] = 3563, + [3667] = 3667, [3668] = 3668, - [3669] = 3549, - [3670] = 3633, + [3669] = 3669, + [3670] = 3597, [3671] = 3671, - [3672] = 3668, - [3673] = 3643, - [3674] = 3633, + [3672] = 3567, + [3673] = 3593, + [3674] = 3562, [3675] = 3675, - [3676] = 3500, + [3676] = 3576, [3677] = 3677, - [3678] = 3513, - [3679] = 3517, - [3680] = 3668, - [3681] = 3681, + [3678] = 3573, + [3679] = 3569, + [3680] = 3555, + [3681] = 3565, [3682] = 3682, - [3683] = 3546, - [3684] = 3625, - [3685] = 3633, - [3686] = 3643, - [3687] = 3687, - [3688] = 3547, - [3689] = 3517, - [3690] = 3625, - [3691] = 3633, - [3692] = 3643, - [3693] = 3625, - [3694] = 3517, - [3695] = 3633, - [3696] = 3643, - [3697] = 3517, - [3698] = 3633, - [3699] = 3633, - [3700] = 3633, - [3701] = 3633, - [3702] = 3633, - [3703] = 174, - [3704] = 3704, - [3705] = 3600, - [3706] = 3562, - [3707] = 3574, - [3708] = 3708, - [3709] = 3535, - [3710] = 3710, + [3683] = 3683, + [3684] = 3632, + [3685] = 3543, + [3686] = 3544, + [3687] = 3545, + [3688] = 3595, + [3689] = 3547, + [3690] = 3690, + [3691] = 3600, + [3692] = 3651, + [3693] = 3612, + [3694] = 3694, + [3695] = 3695, + [3696] = 3579, + [3697] = 3566, + [3698] = 3536, + [3699] = 3699, + [3700] = 3700, + [3701] = 3611, + [3702] = 3607, + [3703] = 3703, + [3704] = 3695, + [3705] = 3668, + [3706] = 3657, + [3707] = 3612, + [3708] = 3573, + [3709] = 3709, + [3710] = 3592, [3711] = 3711, [3712] = 3712, - [3713] = 3603, - [3714] = 3621, - [3715] = 3715, - [3716] = 3542, - [3717] = 3586, - [3718] = 3715, - [3719] = 3497, - [3720] = 3657, - [3721] = 3721, - [3722] = 3722, - [3723] = 3499, - [3724] = 3724, - [3725] = 3710, - [3726] = 3598, - [3727] = 3511, + [3713] = 3544, + [3714] = 3547, + [3715] = 3575, + [3716] = 3550, + [3717] = 3651, + [3718] = 3536, + [3719] = 3668, + [3720] = 3720, + [3721] = 3573, + [3722] = 3569, + [3723] = 3604, + [3724] = 3547, + [3725] = 3536, + [3726] = 3668, + [3727] = 3573, [3728] = 3728, - [3729] = 3628, - [3730] = 3730, - [3731] = 3511, - [3732] = 3629, - [3733] = 3733, - [3734] = 3733, - [3735] = 3569, - [3736] = 3643, - [3737] = 3625, + [3729] = 3547, + [3730] = 3668, + [3731] = 3573, + [3732] = 3547, + [3733] = 3668, + [3734] = 3668, + [3735] = 3668, + [3736] = 3668, + [3737] = 3668, [3738] = 3738, [3739] = 3739, - [3740] = 3739, + [3740] = 3740, [3741] = 3741, - [3742] = 3547, - [3743] = 3613, - [3744] = 3521, - [3745] = 3545, - [3746] = 3746, - [3747] = 3541, - [3748] = 3638, - [3749] = 3618, + [3742] = 3587, + [3743] = 3641, + [3744] = 3744, + [3745] = 3745, + [3746] = 3694, + [3747] = 3543, + [3748] = 3748, + [3749] = 3683, [3750] = 3750, - [3751] = 3738, - [3752] = 3633, - [3753] = 3599, - [3754] = 3682, - [3755] = 3755, - [3756] = 3508, - [3757] = 3724, - [3758] = 3640, - [3759] = 3550, - [3760] = 3648, - [3761] = 3761, - [3762] = 3762, - [3763] = 3763, - [3764] = 3656, - [3765] = 3577, - [3766] = 3632, - [3767] = 3562, - [3768] = 3574, - [3769] = 3603, - [3770] = 3621, - [3771] = 3579, - [3772] = 3583, - [3773] = 3562, - [3774] = 3621, - [3775] = 3522, - [3776] = 3668, - [3777] = 3621, - [3778] = 3621, - [3779] = 3621, - [3780] = 3643, - [3781] = 3559, - [3782] = 3520, - [3783] = 3546, - [3784] = 171, - [3785] = 3785, - [3786] = 3712, - [3787] = 3511, - [3788] = 3637, - [3789] = 3789, - [3790] = 3507, - [3791] = 3537, - [3792] = 3675, - [3793] = 3755, + [3751] = 3535, + [3752] = 3752, + [3753] = 3753, + [3754] = 3633, + [3755] = 3700, + [3756] = 3668, + [3757] = 3757, + [3758] = 3579, + [3759] = 3582, + [3760] = 3596, + [3761] = 3588, + [3762] = 3584, + [3763] = 3536, + [3764] = 3764, + [3765] = 3624, + [3766] = 3544, + [3767] = 3675, + [3768] = 186, + [3769] = 3533, + [3770] = 3770, + [3771] = 3578, + [3772] = 3539, + [3773] = 3551, + [3774] = 3665, + [3775] = 3606, + [3776] = 3610, + [3777] = 3777, + [3778] = 3661, + [3779] = 3779, + [3780] = 3594, + [3781] = 3690, + [3782] = 3677, + [3783] = 3530, + [3784] = 3784, + [3785] = 3750, + [3786] = 3581, + [3787] = 3787, + [3788] = 3583, + [3789] = 3709, + [3790] = 3607, + [3791] = 3545, + [3792] = 3564, + [3793] = 3793, [3794] = 3794, - [3795] = 3721, - [3796] = 3561, - [3797] = 3797, - [3798] = 3593, - [3799] = 3799, - [3800] = 3646, - [3801] = 3565, - [3802] = 3628, - [3803] = 3560, - [3804] = 3797, - [3805] = 3805, - [3806] = 3806, - [3807] = 3728, - [3808] = 3505, - [3809] = 3622, - [3810] = 3619, - [3811] = 3805, - [3812] = 3583, - [3813] = 3522, - [3814] = 3509, - [3815] = 3799, - [3816] = 3816, - [3817] = 3817, - [3818] = 3818, - [3819] = 3819, - [3820] = 3820, - [3821] = 3821, - [3822] = 3822, + [3795] = 3795, + [3796] = 3796, + [3797] = 3741, + [3798] = 3739, + [3799] = 3648, + [3800] = 3529, + [3801] = 3801, + [3802] = 3587, + [3803] = 3641, + [3804] = 3683, + [3805] = 3750, + [3806] = 3668, + [3807] = 3587, + [3808] = 3750, + [3809] = 3546, + [3810] = 3750, + [3811] = 3750, + [3812] = 3750, + [3813] = 3675, + [3814] = 3712, + [3815] = 3815, + [3816] = 3647, + [3817] = 3586, + [3818] = 3675, + [3819] = 3562, + [3820] = 3703, + [3821] = 3549, + [3822] = 3576, + [3823] = 3578, + [3824] = 3572, + [3825] = 3753, + [3826] = 3826, + [3827] = 3752, + [3828] = 3573, + [3829] = 3829, + [3830] = 3612, + [3831] = 3831, + [3832] = 3832, + [3833] = 3594, + [3834] = 3532, + [3835] = 3588, + [3836] = 3671, + [3837] = 3578, + [3838] = 3629, + [3839] = 3565, + [3840] = 3795, + [3841] = 3591, + [3842] = 3534, + [3843] = 3652, + [3844] = 3554, + [3845] = 3845, + [3846] = 3570, + [3847] = 3574, + [3848] = 3612, + [3849] = 3576, + [3850] = 3787, + [3851] = 3851, + [3852] = 3545, + [3853] = 3530, + [3854] = 3854, + [3855] = 3855, + [3856] = 3856, + [3857] = 3857, + [3858] = 3858, + [3859] = 3859, + [3860] = 3860, }; static const TSSymbol ts_supertype_symbols[SUPERTYPE_COUNT] = { @@ -8687,6 +8741,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '\'', 146, '(', 77, ')', 78, + '*', 93, '+', 91, ',', 141, '.', 34, @@ -8929,7 +8984,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '\'', 146, '(', 77, ')', 78, - '*', 93, '+', 91, ',', 141, '-', 46, @@ -9923,686 +9977,696 @@ 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 == '_') ADVANCE(163); - if (lookahead == 'h') ADVANCE(164); + ACCEPT_TOKEN(sym_mutable_specifier); END_STATE(); case 112: - ACCEPT_TOKEN(anon_sym_pub); + ACCEPT_TOKEN(anon_sym_pat); + if (lookahead == '_') ADVANCE(165); + if (lookahead == 'h') ADVANCE(166); 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(165); + ACCEPT_TOKEN(anon_sym_ref); END_STATE(); case 116: - if (lookahead == 'f') ADVANCE(166); + if (lookahead == 'u') ADVANCE(167); END_STATE(); case 117: - if (lookahead == 't') ADVANCE(167); + if (lookahead == 'e') ADVANCE(168); END_STATE(); case 118: - if (lookahead == 't') ADVANCE(168); + if (lookahead == 'f') ADVANCE(169); END_STATE(); case 119: - ACCEPT_TOKEN(anon_sym_str); - if (lookahead == 'u') ADVANCE(169); + if (lookahead == 't') ADVANCE(170); END_STATE(); case 120: - if (lookahead == 'e') ADVANCE(170); + if (lookahead == 't') ADVANCE(171); END_STATE(); case 121: - if (lookahead == 'i') ADVANCE(171); + ACCEPT_TOKEN(anon_sym_str); + if (lookahead == 'u') ADVANCE(172); END_STATE(); case 122: - if (lookahead == 'e') ADVANCE(172); + if (lookahead == 'e') ADVANCE(173); END_STATE(); case 123: - ACCEPT_TOKEN(anon_sym_try); + if (lookahead == 'i') ADVANCE(174); END_STATE(); case 124: - if (lookahead == 'e') ADVANCE(173); + if (lookahead == 'e') ADVANCE(175); END_STATE(); case 125: - if (lookahead == '8') ADVANCE(174); + ACCEPT_TOKEN(anon_sym_try); END_STATE(); case 126: - ACCEPT_TOKEN(anon_sym_u16); + if (lookahead == 'e') ADVANCE(176); END_STATE(); case 127: - ACCEPT_TOKEN(anon_sym_u32); + if (lookahead == '8') ADVANCE(177); END_STATE(); case 128: - ACCEPT_TOKEN(anon_sym_u64); + ACCEPT_TOKEN(anon_sym_u16); END_STATE(); case 129: - if (lookahead == 'o') ADVANCE(175); + ACCEPT_TOKEN(anon_sym_u32); END_STATE(); case 130: - if (lookahead == 'a') ADVANCE(176); + ACCEPT_TOKEN(anon_sym_u64); END_STATE(); case 131: - ACCEPT_TOKEN(anon_sym_use); + if (lookahead == 'o') ADVANCE(178); END_STATE(); case 132: - if (lookahead == 'z') ADVANCE(177); + if (lookahead == 'a') ADVANCE(179); END_STATE(); case 133: - ACCEPT_TOKEN(anon_sym_vis); + ACCEPT_TOKEN(anon_sym_use); END_STATE(); case 134: - if (lookahead == 'r') ADVANCE(178); + if (lookahead == 'z') ADVANCE(180); END_STATE(); case 135: - if (lookahead == 'l') ADVANCE(179); + ACCEPT_TOKEN(anon_sym_vis); END_STATE(); case 136: - if (lookahead == 'l') ADVANCE(180); + if (lookahead == 'r') ADVANCE(181); END_STATE(); case 137: - if (lookahead == 'c') ADVANCE(181); + if (lookahead == 'l') ADVANCE(182); END_STATE(); case 138: - if (lookahead == 't') ADVANCE(182); + if (lookahead == 'l') ADVANCE(183); END_STATE(); case 139: - if (lookahead == 'k') ADVANCE(183); + if (lookahead == 'c') ADVANCE(184); END_STATE(); case 140: - ACCEPT_TOKEN(anon_sym_bool); + if (lookahead == 't') ADVANCE(185); END_STATE(); case 141: - if (lookahead == 'k') ADVANCE(184); + if (lookahead == 'k') ADVANCE(186); END_STATE(); case 142: - ACCEPT_TOKEN(anon_sym_char); + ACCEPT_TOKEN(anon_sym_bool); END_STATE(); case 143: - if (lookahead == 't') ADVANCE(185); + if (lookahead == 'k') ADVANCE(187); END_STATE(); case 144: - if (lookahead == 'i') ADVANCE(186); + ACCEPT_TOKEN(anon_sym_char); END_STATE(); case 145: - if (lookahead == 'e') ADVANCE(187); + if (lookahead == 't') ADVANCE(188); END_STATE(); case 146: - if (lookahead == 'u') ADVANCE(188); + if (lookahead == 'i') ADVANCE(189); END_STATE(); case 147: - ACCEPT_TOKEN(anon_sym_else); + if (lookahead == 'e') ADVANCE(190); END_STATE(); case 148: - ACCEPT_TOKEN(anon_sym_enum); + if (lookahead == 'u') ADVANCE(191); END_STATE(); case 149: - ACCEPT_TOKEN(anon_sym_expr); - if (lookahead == '_') ADVANCE(189); + ACCEPT_TOKEN(anon_sym_else); END_STATE(); case 150: - if (lookahead == 'r') ADVANCE(190); + ACCEPT_TOKEN(anon_sym_enum); END_STATE(); case 151: - if (lookahead == 'e') ADVANCE(191); + ACCEPT_TOKEN(anon_sym_expr); + if (lookahead == '_') ADVANCE(192); END_STATE(); case 152: - ACCEPT_TOKEN(anon_sym_i128); + if (lookahead == 'r') ADVANCE(193); END_STATE(); case 153: - if (lookahead == 't') ADVANCE(192); + if (lookahead == 'e') ADVANCE(194); END_STATE(); case 154: - ACCEPT_TOKEN(anon_sym_impl); + ACCEPT_TOKEN(anon_sym_i128); END_STATE(); case 155: - if (lookahead == 'e') ADVANCE(193); + if (lookahead == 't') ADVANCE(195); END_STATE(); case 156: - ACCEPT_TOKEN(anon_sym_item); + ACCEPT_TOKEN(anon_sym_impl); END_STATE(); case 157: - if (lookahead == 't') ADVANCE(194); + if (lookahead == 'e') ADVANCE(196); END_STATE(); case 158: - if (lookahead == 'r') ADVANCE(195); + ACCEPT_TOKEN(anon_sym_item); END_STATE(); case 159: - ACCEPT_TOKEN(anon_sym_loop); + if (lookahead == 't') ADVANCE(197); END_STATE(); case 160: - if (lookahead == 'h') ADVANCE(196); + if (lookahead == 'r') ADVANCE(198); 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(199); END_STATE(); case 163: - if (lookahead == 'p') ADVANCE(197); + ACCEPT_TOKEN(anon_sym_meta); END_STATE(); case 164: - ACCEPT_TOKEN(anon_sym_path); + ACCEPT_TOKEN(anon_sym_move); END_STATE(); case 165: - if (lookahead == 'r') ADVANCE(198); + if (lookahead == 'p') ADVANCE(200); END_STATE(); case 166: - ACCEPT_TOKEN(sym_self); + ACCEPT_TOKEN(anon_sym_path); END_STATE(); case 167: - if (lookahead == 'i') ADVANCE(199); + if (lookahead == 'r') ADVANCE(201); END_STATE(); case 168: - ACCEPT_TOKEN(anon_sym_stmt); + ACCEPT_TOKEN(anon_sym_safe); END_STATE(); case 169: - if (lookahead == 'c') ADVANCE(200); + ACCEPT_TOKEN(sym_self); END_STATE(); case 170: - if (lookahead == 'r') ADVANCE(201); + if (lookahead == 'i') ADVANCE(202); END_STATE(); case 171: - if (lookahead == 't') ADVANCE(202); + ACCEPT_TOKEN(anon_sym_stmt); END_STATE(); case 172: - ACCEPT_TOKEN(anon_sym_true); + if (lookahead == 'c') ADVANCE(203); END_STATE(); case 173: - ACCEPT_TOKEN(anon_sym_type); + if (lookahead == 'r') ADVANCE(204); END_STATE(); case 174: - ACCEPT_TOKEN(anon_sym_u128); + if (lookahead == 't') ADVANCE(205); END_STATE(); case 175: - if (lookahead == 'n') ADVANCE(203); + ACCEPT_TOKEN(anon_sym_true); END_STATE(); case 176: - if (lookahead == 'f') ADVANCE(204); + ACCEPT_TOKEN(anon_sym_type); END_STATE(); case 177: - if (lookahead == 'e') ADVANCE(205); + ACCEPT_TOKEN(anon_sym_u128); END_STATE(); case 178: - if (lookahead == 'e') ADVANCE(206); + if (lookahead == 'n') ADVANCE(206); END_STATE(); case 179: - if (lookahead == 'e') ADVANCE(207); + if (lookahead == 'f') ADVANCE(207); END_STATE(); case 180: - if (lookahead == 'd') ADVANCE(208); + if (lookahead == 'e') ADVANCE(208); END_STATE(); case 181: - ACCEPT_TOKEN(anon_sym_async); + if (lookahead == 'e') ADVANCE(209); END_STATE(); case 182: - ACCEPT_TOKEN(anon_sym_await); + if (lookahead == 'e') ADVANCE(210); END_STATE(); case 183: - ACCEPT_TOKEN(anon_sym_block); + if (lookahead == 'd') ADVANCE(211); END_STATE(); case 184: - ACCEPT_TOKEN(anon_sym_break); + ACCEPT_TOKEN(anon_sym_async); END_STATE(); case 185: - ACCEPT_TOKEN(anon_sym_const); + ACCEPT_TOKEN(anon_sym_await); END_STATE(); case 186: - if (lookahead == 'n') ADVANCE(209); + ACCEPT_TOKEN(anon_sym_block); END_STATE(); case 187: - ACCEPT_TOKEN(sym_crate); + ACCEPT_TOKEN(anon_sym_break); END_STATE(); case 188: - if (lookahead == 'l') ADVANCE(210); + ACCEPT_TOKEN(anon_sym_const); END_STATE(); case 189: - if (lookahead == '2') ADVANCE(211); + if (lookahead == 'n') ADVANCE(212); END_STATE(); case 190: - if (lookahead == 'n') ADVANCE(212); + ACCEPT_TOKEN(sym_crate); END_STATE(); case 191: - ACCEPT_TOKEN(anon_sym_false); + if (lookahead == 'l') ADVANCE(213); END_STATE(); case 192: - ACCEPT_TOKEN(anon_sym_ident); + if (lookahead == '2') ADVANCE(214); END_STATE(); case 193: - ACCEPT_TOKEN(anon_sym_isize); + if (lookahead == 'n') ADVANCE(215); END_STATE(); case 194: - if (lookahead == 'i') ADVANCE(213); + ACCEPT_TOKEN(anon_sym_false); END_STATE(); case 195: - if (lookahead == 'a') ADVANCE(214); + ACCEPT_TOKEN(anon_sym_ident); END_STATE(); case 196: - ACCEPT_TOKEN(anon_sym_match); + ACCEPT_TOKEN(anon_sym_isize); END_STATE(); case 197: - if (lookahead == 'a') ADVANCE(215); + if (lookahead == 'i') ADVANCE(216); END_STATE(); case 198: - if (lookahead == 'n') ADVANCE(216); + if (lookahead == 'a') ADVANCE(217); END_STATE(); case 199: - if (lookahead == 'c') ADVANCE(217); + ACCEPT_TOKEN(anon_sym_match); END_STATE(); case 200: - if (lookahead == 't') ADVANCE(218); + if (lookahead == 'a') ADVANCE(218); END_STATE(); case 201: - ACCEPT_TOKEN(sym_super); + if (lookahead == 'n') ADVANCE(219); END_STATE(); case 202: - ACCEPT_TOKEN(anon_sym_trait); + if (lookahead == 'c') ADVANCE(220); END_STATE(); case 203: - ACCEPT_TOKEN(anon_sym_union); + if (lookahead == 't') ADVANCE(221); END_STATE(); case 204: - if (lookahead == 'e') ADVANCE(219); + ACCEPT_TOKEN(sym_super); END_STATE(); case 205: - ACCEPT_TOKEN(anon_sym_usize); + ACCEPT_TOKEN(anon_sym_trait); END_STATE(); case 206: - ACCEPT_TOKEN(anon_sym_where); + ACCEPT_TOKEN(anon_sym_union); END_STATE(); case 207: - ACCEPT_TOKEN(anon_sym_while); + if (lookahead == 'e') ADVANCE(222); END_STATE(); case 208: - ACCEPT_TOKEN(anon_sym_yield); + ACCEPT_TOKEN(anon_sym_usize); END_STATE(); case 209: - if (lookahead == 'u') ADVANCE(220); + ACCEPT_TOKEN(anon_sym_where); END_STATE(); case 210: - if (lookahead == 't') ADVANCE(221); + ACCEPT_TOKEN(anon_sym_while); END_STATE(); case 211: - if (lookahead == '0') ADVANCE(222); + ACCEPT_TOKEN(anon_sym_yield); END_STATE(); case 212: - ACCEPT_TOKEN(anon_sym_extern); + if (lookahead == 'u') ADVANCE(223); END_STATE(); case 213: - if (lookahead == 'm') ADVANCE(223); + if (lookahead == 't') ADVANCE(224); END_STATE(); case 214: - if (lookahead == 'l') ADVANCE(224); + if (lookahead == '0') ADVANCE(225); END_STATE(); case 215: - if (lookahead == 'r') ADVANCE(225); + ACCEPT_TOKEN(anon_sym_extern); END_STATE(); case 216: - ACCEPT_TOKEN(anon_sym_return); + if (lookahead == 'm') ADVANCE(226); END_STATE(); case 217: - ACCEPT_TOKEN(anon_sym_static); + if (lookahead == 'l') ADVANCE(227); END_STATE(); case 218: - ACCEPT_TOKEN(anon_sym_struct); + if (lookahead == 'r') ADVANCE(228); END_STATE(); case 219: - ACCEPT_TOKEN(anon_sym_unsafe); + ACCEPT_TOKEN(anon_sym_return); END_STATE(); case 220: - if (lookahead == 'e') ADVANCE(226); + ACCEPT_TOKEN(anon_sym_static); END_STATE(); case 221: - ACCEPT_TOKEN(anon_sym_default); + ACCEPT_TOKEN(anon_sym_struct); END_STATE(); case 222: - if (lookahead == '2') ADVANCE(227); + ACCEPT_TOKEN(anon_sym_unsafe); END_STATE(); case 223: - if (lookahead == 'e') ADVANCE(228); + if (lookahead == 'e') ADVANCE(229); END_STATE(); case 224: - ACCEPT_TOKEN(anon_sym_literal); + ACCEPT_TOKEN(anon_sym_default); END_STATE(); case 225: - if (lookahead == 'a') ADVANCE(229); + if (lookahead == '2') ADVANCE(230); END_STATE(); case 226: - ACCEPT_TOKEN(anon_sym_continue); + if (lookahead == 'e') ADVANCE(231); END_STATE(); case 227: - if (lookahead == '1') ADVANCE(230); + ACCEPT_TOKEN(anon_sym_literal); END_STATE(); case 228: - ACCEPT_TOKEN(anon_sym_lifetime); + if (lookahead == 'a') ADVANCE(232); END_STATE(); case 229: - if (lookahead == 'm') ADVANCE(231); + ACCEPT_TOKEN(anon_sym_continue); END_STATE(); case 230: - ACCEPT_TOKEN(anon_sym_expr_2021); + if (lookahead == '1') ADVANCE(233); END_STATE(); case 231: + ACCEPT_TOKEN(anon_sym_lifetime); + END_STATE(); + case 232: + if (lookahead == 'm') ADVANCE(234); + END_STATE(); + case 233: + ACCEPT_TOKEN(anon_sym_expr_2021); + END_STATE(); + case 234: ACCEPT_TOKEN(anon_sym_pat_param); END_STATE(); default: @@ -10655,7 +10719,7 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [41] = {.lex_state = 5, .external_lex_state = 2}, [42] = {.lex_state = 5, .external_lex_state = 2}, [43] = {.lex_state = 7, .external_lex_state = 2}, - [44] = {.lex_state = 7, .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}, @@ -10663,7 +10727,7 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [49] = {.lex_state = 7, .external_lex_state = 2}, [50] = {.lex_state = 7, .external_lex_state = 2}, [51] = {.lex_state = 5, .external_lex_state = 2}, - [52] = {.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}, @@ -10696,8 +10760,8 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [82] = {.lex_state = 4, .external_lex_state = 2}, [83] = {.lex_state = 6, .external_lex_state = 2}, [84] = {.lex_state = 6, .external_lex_state = 2}, - [85] = {.lex_state = 4, .external_lex_state = 2}, - [86] = {.lex_state = 4, .external_lex_state = 2}, + [85] = {.lex_state = 6, .external_lex_state = 2}, + [86] = {.lex_state = 6, .external_lex_state = 2}, [87] = {.lex_state = 6, .external_lex_state = 2}, [88] = {.lex_state = 6, .external_lex_state = 2}, [89] = {.lex_state = 6, .external_lex_state = 2}, @@ -10706,99 +10770,99 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [92] = {.lex_state = 6, .external_lex_state = 2}, [93] = {.lex_state = 6, .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}, + [95] = {.lex_state = 4, .external_lex_state = 2}, + [96] = {.lex_state = 4, .external_lex_state = 2}, [97] = {.lex_state = 6, .external_lex_state = 2}, [98] = {.lex_state = 6, .external_lex_state = 2}, - [99] = {.lex_state = 4, .external_lex_state = 2}, + [99] = {.lex_state = 6, .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 = 6, .external_lex_state = 2}, - [106] = {.lex_state = 6, .external_lex_state = 2}, + [105] = {.lex_state = 4, .external_lex_state = 2}, + [106] = {.lex_state = 4, .external_lex_state = 2}, [107] = {.lex_state = 6, .external_lex_state = 2}, - [108] = {.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}, - [112] = {.lex_state = 6, .external_lex_state = 2}, - [113] = {.lex_state = 6, .external_lex_state = 2}, + [112] = {.lex_state = 4, .external_lex_state = 2}, + [113] = {.lex_state = 4, .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}, [117] = {.lex_state = 4, .external_lex_state = 2}, - [118] = {.lex_state = 4, .external_lex_state = 2}, + [118] = {.lex_state = 6, .external_lex_state = 2}, [119] = {.lex_state = 6, .external_lex_state = 2}, [120] = {.lex_state = 6, .external_lex_state = 2}, - [121] = {.lex_state = 6, .external_lex_state = 2}, - [122] = {.lex_state = 4, .external_lex_state = 2}, + [121] = {.lex_state = 4, .external_lex_state = 2}, + [122] = {.lex_state = 6, .external_lex_state = 2}, [123] = {.lex_state = 6, .external_lex_state = 2}, [124] = {.lex_state = 6, .external_lex_state = 2}, [125] = {.lex_state = 6, .external_lex_state = 2}, [126] = {.lex_state = 6, .external_lex_state = 2}, [127] = {.lex_state = 6, .external_lex_state = 2}, - [128] = {.lex_state = 6, .external_lex_state = 2}, + [128] = {.lex_state = 4, .external_lex_state = 2}, [129] = {.lex_state = 6, .external_lex_state = 2}, [130] = {.lex_state = 6, .external_lex_state = 2}, - [131] = {.lex_state = 4, .external_lex_state = 2}, - [132] = {.lex_state = 4, .external_lex_state = 2}, + [131] = {.lex_state = 6, .external_lex_state = 2}, + [132] = {.lex_state = 6, .external_lex_state = 2}, [133] = {.lex_state = 6, .external_lex_state = 2}, - [134] = {.lex_state = 13, .external_lex_state = 2}, - [135] = {.lex_state = 13, .external_lex_state = 2}, + [134] = {.lex_state = 4, .external_lex_state = 2}, + [135] = {.lex_state = 4, .external_lex_state = 2}, [136] = {.lex_state = 13, .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 = 13, .external_lex_state = 2}, - [142] = {.lex_state = 4, .external_lex_state = 2}, + [140] = {.lex_state = 13, .external_lex_state = 2}, + [141] = {.lex_state = 4, .external_lex_state = 2}, + [142] = {.lex_state = 13, .external_lex_state = 2}, [143] = {.lex_state = 13, .external_lex_state = 2}, - [144] = {.lex_state = 4, .external_lex_state = 2}, + [144] = {.lex_state = 13, .external_lex_state = 2}, [145] = {.lex_state = 13, .external_lex_state = 2}, [146] = {.lex_state = 13, .external_lex_state = 2}, - [147] = {.lex_state = 6, .external_lex_state = 2}, - [148] = {.lex_state = 4, .external_lex_state = 2}, - [149] = {.lex_state = 4, .external_lex_state = 2}, - [150] = {.lex_state = 4, .external_lex_state = 2}, + [147] = {.lex_state = 13, .external_lex_state = 2}, + [148] = {.lex_state = 13, .external_lex_state = 2}, + [149] = {.lex_state = 13, .external_lex_state = 2}, + [150] = {.lex_state = 13, .external_lex_state = 2}, [151] = {.lex_state = 13, .external_lex_state = 2}, - [152] = {.lex_state = 13, .external_lex_state = 2}, - [153] = {.lex_state = 13, .external_lex_state = 2}, - [154] = {.lex_state = 4, .external_lex_state = 2}, - [155] = {.lex_state = 4, .external_lex_state = 2}, + [152] = {.lex_state = 4, .external_lex_state = 2}, + [153] = {.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}, + [157] = {.lex_state = 4, .external_lex_state = 2}, [158] = {.lex_state = 4, .external_lex_state = 2}, [159] = {.lex_state = 4, .external_lex_state = 2}, [160] = {.lex_state = 4, .external_lex_state = 2}, [161] = {.lex_state = 4, .external_lex_state = 2}, - [162] = {.lex_state = 13, .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 = 13, .external_lex_state = 2}, + [165] = {.lex_state = 4, .external_lex_state = 2}, + [166] = {.lex_state = 4, .external_lex_state = 2}, [167] = {.lex_state = 13, .external_lex_state = 2}, - [168] = {.lex_state = 13, .external_lex_state = 2}, - [169] = {.lex_state = 4, .external_lex_state = 2}, - [170] = {.lex_state = 6, .external_lex_state = 2}, - [171] = {.lex_state = 4, .external_lex_state = 2}, + [168] = {.lex_state = 6, .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}, [172] = {.lex_state = 13, .external_lex_state = 2}, [173] = {.lex_state = 13, .external_lex_state = 2}, - [174] = {.lex_state = 4, .external_lex_state = 2}, + [174] = {.lex_state = 13, .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 = 13, .external_lex_state = 2}, - [179] = {.lex_state = 13, .external_lex_state = 2}, + [176] = {.lex_state = 6, .external_lex_state = 2}, + [177] = {.lex_state = 4, .external_lex_state = 2}, + [178] = {.lex_state = 4, .external_lex_state = 2}, + [179] = {.lex_state = 4, .external_lex_state = 2}, [180] = {.lex_state = 4, .external_lex_state = 2}, [181] = {.lex_state = 13, .external_lex_state = 2}, [182] = {.lex_state = 13, .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 = 4, .external_lex_state = 2}, [186] = {.lex_state = 4, .external_lex_state = 2}, - [187] = {.lex_state = 4, .external_lex_state = 2}, + [187] = {.lex_state = 13, .external_lex_state = 2}, [188] = {.lex_state = 13, .external_lex_state = 2}, [189] = {.lex_state = 13, .external_lex_state = 2}, [190] = {.lex_state = 13, .external_lex_state = 2}, @@ -10808,81 +10872,81 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [194] = {.lex_state = 13, .external_lex_state = 2}, [195] = {.lex_state = 13, .external_lex_state = 2}, [196] = {.lex_state = 13, .external_lex_state = 2}, - [197] = {.lex_state = 4, .external_lex_state = 2}, + [197] = {.lex_state = 13, .external_lex_state = 2}, [198] = {.lex_state = 6, .external_lex_state = 2}, - [199] = {.lex_state = 13, .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 = 6, .external_lex_state = 2}, + [201] = {.lex_state = 6, .external_lex_state = 2}, + [202] = {.lex_state = 13, .external_lex_state = 2}, [203] = {.lex_state = 6, .external_lex_state = 2}, - [204] = {.lex_state = 6, .external_lex_state = 2}, - [205] = {.lex_state = 6, .external_lex_state = 2}, + [204] = {.lex_state = 12, .external_lex_state = 2}, + [205] = {.lex_state = 13, .external_lex_state = 2}, [206] = {.lex_state = 6, .external_lex_state = 2}, - [207] = {.lex_state = 6, .external_lex_state = 2}, - [208] = {.lex_state = 6, .external_lex_state = 2}, - [209] = {.lex_state = 13, .external_lex_state = 2}, - [210] = {.lex_state = 6, .external_lex_state = 2}, + [207] = {.lex_state = 12, .external_lex_state = 2}, + [208] = {.lex_state = 13, .external_lex_state = 2}, + [209] = {.lex_state = 12, .external_lex_state = 2}, + [210] = {.lex_state = 12, .external_lex_state = 2}, [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 = 13, .external_lex_state = 2}, - [215] = {.lex_state = 15, .external_lex_state = 2}, - [216] = {.lex_state = 13, .external_lex_state = 2}, - [217] = {.lex_state = 15, .external_lex_state = 2}, - [218] = {.lex_state = 13, .external_lex_state = 2}, - [219] = {.lex_state = 15, .external_lex_state = 2}, - [220] = {.lex_state = 15, .external_lex_state = 2}, - [221] = {.lex_state = 13, .external_lex_state = 2}, - [222] = {.lex_state = 13, .external_lex_state = 2}, - [223] = {.lex_state = 13, .external_lex_state = 2}, + [212] = {.lex_state = 13, .external_lex_state = 2}, + [213] = {.lex_state = 6, .external_lex_state = 2}, + [214] = {.lex_state = 6, .external_lex_state = 2}, + [215] = {.lex_state = 12, .external_lex_state = 2}, + [216] = {.lex_state = 6, .external_lex_state = 2}, + [217] = {.lex_state = 12, .external_lex_state = 2}, + [218] = {.lex_state = 6, .external_lex_state = 2}, + [219] = {.lex_state = 6, .external_lex_state = 2}, + [220] = {.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 = 15, .external_lex_state = 2}, [224] = {.lex_state = 15, .external_lex_state = 2}, [225] = {.lex_state = 13, .external_lex_state = 2}, [226] = {.lex_state = 15, .external_lex_state = 2}, - [227] = {.lex_state = 13, .external_lex_state = 2}, - [228] = {.lex_state = 15, .external_lex_state = 2}, - [229] = {.lex_state = 12, .external_lex_state = 2}, - [230] = {.lex_state = 13, .external_lex_state = 2}, - [231] = {.lex_state = 12, .external_lex_state = 2}, - [232] = {.lex_state = 15, .external_lex_state = 2}, - [233] = {.lex_state = 15, .external_lex_state = 2}, - [234] = {.lex_state = 15, .external_lex_state = 2}, - [235] = {.lex_state = 12, .external_lex_state = 2}, - [236] = {.lex_state = 15, .external_lex_state = 2}, - [237] = {.lex_state = 12, .external_lex_state = 2}, + [227] = {.lex_state = 15, .external_lex_state = 2}, + [228] = {.lex_state = 12, .external_lex_state = 2}, + [229] = {.lex_state = 15, .external_lex_state = 2}, + [230] = {.lex_state = 15, .external_lex_state = 2}, + [231] = {.lex_state = 13, .external_lex_state = 2}, + [232] = {.lex_state = 13, .external_lex_state = 2}, + [233] = {.lex_state = 13, .external_lex_state = 2}, + [234] = {.lex_state = 12, .external_lex_state = 2}, + [235] = {.lex_state = 13, .external_lex_state = 2}, + [236] = {.lex_state = 13, .external_lex_state = 2}, + [237] = {.lex_state = 15, .external_lex_state = 2}, [238] = {.lex_state = 13, .external_lex_state = 2}, [239] = {.lex_state = 13, .external_lex_state = 2}, - [240] = {.lex_state = 13, .external_lex_state = 2}, + [240] = {.lex_state = 12, .external_lex_state = 2}, [241] = {.lex_state = 13, .external_lex_state = 2}, - [242] = {.lex_state = 12, .external_lex_state = 2}, - [243] = {.lex_state = 15, .external_lex_state = 2}, + [242] = {.lex_state = 15, .external_lex_state = 2}, + [243] = {.lex_state = 12, .external_lex_state = 2}, [244] = {.lex_state = 15, .external_lex_state = 2}, [245] = {.lex_state = 15, .external_lex_state = 2}, - [246] = {.lex_state = 13, .external_lex_state = 2}, - [247] = {.lex_state = 15, .external_lex_state = 2}, - [248] = {.lex_state = 15, .external_lex_state = 2}, - [249] = {.lex_state = 15, .external_lex_state = 2}, - [250] = {.lex_state = 13, .external_lex_state = 2}, - [251] = {.lex_state = 12, .external_lex_state = 2}, - [252] = {.lex_state = 13, .external_lex_state = 2}, + [246] = {.lex_state = 12, .external_lex_state = 2}, + [247] = {.lex_state = 13, .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 = 15, .external_lex_state = 2}, + [252] = {.lex_state = 15, .external_lex_state = 2}, [253] = {.lex_state = 13, .external_lex_state = 2}, - [254] = {.lex_state = 15, .external_lex_state = 2}, + [254] = {.lex_state = 13, .external_lex_state = 2}, [255] = {.lex_state = 15, .external_lex_state = 2}, [256] = {.lex_state = 15, .external_lex_state = 2}, [257] = {.lex_state = 13, .external_lex_state = 2}, - [258] = {.lex_state = 12, .external_lex_state = 2}, - [259] = {.lex_state = 12, .external_lex_state = 2}, - [260] = {.lex_state = 12, .external_lex_state = 2}, + [258] = {.lex_state = 13, .external_lex_state = 2}, + [259] = {.lex_state = 13, .external_lex_state = 2}, + [260] = {.lex_state = 13, .external_lex_state = 2}, [261] = {.lex_state = 12, .external_lex_state = 2}, - [262] = {.lex_state = 12, .external_lex_state = 2}, - [263] = {.lex_state = 12, .external_lex_state = 2}, - [264] = {.lex_state = 12, .external_lex_state = 2}, - [265] = {.lex_state = 12, .external_lex_state = 2}, - [266] = {.lex_state = 12, .external_lex_state = 2}, - [267] = {.lex_state = 13, .external_lex_state = 2}, - [268] = {.lex_state = 13, .external_lex_state = 2}, - [269] = {.lex_state = 13, .external_lex_state = 2}, - [270] = {.lex_state = 13, .external_lex_state = 2}, - [271] = {.lex_state = 13, .external_lex_state = 2}, + [262] = {.lex_state = 15, .external_lex_state = 2}, + [263] = {.lex_state = 15, .external_lex_state = 2}, + [264] = {.lex_state = 13, .external_lex_state = 2}, + [265] = {.lex_state = 15, .external_lex_state = 2}, + [266] = {.lex_state = 15, .external_lex_state = 2}, + [267] = {.lex_state = 14, .external_lex_state = 2}, + [268] = {.lex_state = 14, .external_lex_state = 2}, + [269] = {.lex_state = 14, .external_lex_state = 2}, + [270] = {.lex_state = 71, .external_lex_state = 2}, + [271] = {.lex_state = 12, .external_lex_state = 2}, [272] = {.lex_state = 13, .external_lex_state = 2}, [273] = {.lex_state = 13, .external_lex_state = 2}, [274] = {.lex_state = 13, .external_lex_state = 2}, @@ -10917,7 +10981,7 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [303] = {.lex_state = 13, .external_lex_state = 2}, [304] = {.lex_state = 13, .external_lex_state = 2}, [305] = {.lex_state = 13, .external_lex_state = 2}, - [306] = {.lex_state = 13, .external_lex_state = 2}, + [306] = {.lex_state = 71, .external_lex_state = 2}, [307] = {.lex_state = 13, .external_lex_state = 2}, [308] = {.lex_state = 13, .external_lex_state = 2}, [309] = {.lex_state = 13, .external_lex_state = 2}, @@ -10929,13 +10993,13 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [315] = {.lex_state = 13, .external_lex_state = 2}, [316] = {.lex_state = 13, .external_lex_state = 2}, [317] = {.lex_state = 13, .external_lex_state = 2}, - [318] = {.lex_state = 14, .external_lex_state = 2}, - [319] = {.lex_state = 12, .external_lex_state = 2}, + [318] = {.lex_state = 13, .external_lex_state = 2}, + [319] = {.lex_state = 13, .external_lex_state = 2}, [320] = {.lex_state = 13, .external_lex_state = 2}, [321] = {.lex_state = 13, .external_lex_state = 2}, [322] = {.lex_state = 13, .external_lex_state = 2}, [323] = {.lex_state = 13, .external_lex_state = 2}, - [324] = {.lex_state = 14, .external_lex_state = 2}, + [324] = {.lex_state = 13, .external_lex_state = 2}, [325] = {.lex_state = 13, .external_lex_state = 2}, [326] = {.lex_state = 13, .external_lex_state = 2}, [327] = {.lex_state = 13, .external_lex_state = 2}, @@ -10945,11 +11009,11 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [331] = {.lex_state = 13, .external_lex_state = 2}, [332] = {.lex_state = 13, .external_lex_state = 2}, [333] = {.lex_state = 13, .external_lex_state = 2}, - [334] = {.lex_state = 13, .external_lex_state = 2}, + [334] = {.lex_state = 71, .external_lex_state = 2}, [335] = {.lex_state = 13, .external_lex_state = 2}, [336] = {.lex_state = 13, .external_lex_state = 2}, [337] = {.lex_state = 13, .external_lex_state = 2}, - [338] = {.lex_state = 14, .external_lex_state = 2}, + [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 = 13, .external_lex_state = 2}, @@ -10957,7 +11021,7 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [343] = {.lex_state = 13, .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 = 71, .external_lex_state = 2}, [347] = {.lex_state = 13, .external_lex_state = 2}, [348] = {.lex_state = 13, .external_lex_state = 2}, [349] = {.lex_state = 13, .external_lex_state = 2}, @@ -10997,7 +11061,7 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [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}, + [386] = {.lex_state = 71, .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}, @@ -11005,15 +11069,15 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [391] = {.lex_state = 13, .external_lex_state = 2}, [392] = {.lex_state = 13, .external_lex_state = 2}, [393] = {.lex_state = 13, .external_lex_state = 2}, - [394] = {.lex_state = 71, .external_lex_state = 2}, - [395] = {.lex_state = 71, .external_lex_state = 2}, - [396] = {.lex_state = 71, .external_lex_state = 2}, - [397] = {.lex_state = 71, .external_lex_state = 2}, - [398] = {.lex_state = 71, .external_lex_state = 2}, - [399] = {.lex_state = 71, .external_lex_state = 2}, - [400] = {.lex_state = 12, .external_lex_state = 2}, + [394] = {.lex_state = 13, .external_lex_state = 2}, + [395] = {.lex_state = 13, .external_lex_state = 2}, + [396] = {.lex_state = 13, .external_lex_state = 2}, + [397] = {.lex_state = 13, .external_lex_state = 2}, + [398] = {.lex_state = 13, .external_lex_state = 2}, + [399] = {.lex_state = 13, .external_lex_state = 2}, + [400] = {.lex_state = 13, .external_lex_state = 2}, [401] = {.lex_state = 71, .external_lex_state = 2}, - [402] = {.lex_state = 71, .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 = 12, .external_lex_state = 2}, @@ -11028,7 +11092,7 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [414] = {.lex_state = 71, .external_lex_state = 2}, [415] = {.lex_state = 71, .external_lex_state = 2}, [416] = {.lex_state = 71, .external_lex_state = 2}, - [417] = {.lex_state = 12, .external_lex_state = 2}, + [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 = 71, .external_lex_state = 2}, @@ -11040,8 +11104,8 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [426] = {.lex_state = 12, .external_lex_state = 2}, [427] = {.lex_state = 71, .external_lex_state = 2}, [428] = {.lex_state = 71, .external_lex_state = 2}, - [429] = {.lex_state = 14, .external_lex_state = 2}, - [430] = {.lex_state = 14, .external_lex_state = 2}, + [429] = {.lex_state = 12, .external_lex_state = 2}, + [430] = {.lex_state = 71, .external_lex_state = 2}, [431] = {.lex_state = 14, .external_lex_state = 2}, [432] = {.lex_state = 14, .external_lex_state = 2}, [433] = {.lex_state = 14, .external_lex_state = 2}, @@ -11051,12 +11115,12 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [437] = {.lex_state = 14, .external_lex_state = 2}, [438] = {.lex_state = 14, .external_lex_state = 2}, [439] = {.lex_state = 14, .external_lex_state = 2}, - [440] = {.lex_state = 5, .external_lex_state = 2}, - [441] = {.lex_state = 7, .external_lex_state = 2}, - [442] = {.lex_state = 16, .external_lex_state = 2}, - [443] = {.lex_state = 16, .external_lex_state = 2}, - [444] = {.lex_state = 13, .external_lex_state = 2}, - [445] = {.lex_state = 13, .external_lex_state = 2}, + [440] = {.lex_state = 14, .external_lex_state = 2}, + [441] = {.lex_state = 14, .external_lex_state = 2}, + [442] = {.lex_state = 5, .external_lex_state = 2}, + [443] = {.lex_state = 7, .external_lex_state = 2}, + [444] = {.lex_state = 16, .external_lex_state = 2}, + [445] = {.lex_state = 16, .external_lex_state = 2}, [446] = {.lex_state = 13, .external_lex_state = 2}, [447] = {.lex_state = 13, .external_lex_state = 2}, [448] = {.lex_state = 13, .external_lex_state = 2}, @@ -11072,24 +11136,24 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [458] = {.lex_state = 13, .external_lex_state = 2}, [459] = {.lex_state = 13, .external_lex_state = 2}, [460] = {.lex_state = 13, .external_lex_state = 2}, - [461] = {.lex_state = 14, .external_lex_state = 2}, - [462] = {.lex_state = 14, .external_lex_state = 2}, + [461] = {.lex_state = 13, .external_lex_state = 2}, + [462] = {.lex_state = 13, .external_lex_state = 2}, [463] = {.lex_state = 5, .external_lex_state = 2}, [464] = {.lex_state = 14, .external_lex_state = 2}, [465] = {.lex_state = 14, .external_lex_state = 2}, [466] = {.lex_state = 14, .external_lex_state = 2}, [467] = {.lex_state = 14, .external_lex_state = 2}, - [468] = {.lex_state = 5, .external_lex_state = 2}, - [469] = {.lex_state = 14, .external_lex_state = 2}, + [468] = {.lex_state = 14, .external_lex_state = 2}, + [469] = {.lex_state = 5, .external_lex_state = 2}, [470] = {.lex_state = 5, .external_lex_state = 2}, - [471] = {.lex_state = 5, .external_lex_state = 2}, + [471] = {.lex_state = 14, .external_lex_state = 2}, [472] = {.lex_state = 5, .external_lex_state = 2}, - [473] = {.lex_state = 14, .external_lex_state = 2}, - [474] = {.lex_state = 5, .external_lex_state = 2}, - [475] = {.lex_state = 14, .external_lex_state = 2}, + [473] = {.lex_state = 5, .external_lex_state = 2}, + [474] = {.lex_state = 14, .external_lex_state = 2}, + [475] = {.lex_state = 5, .external_lex_state = 2}, [476] = {.lex_state = 14, .external_lex_state = 2}, [477] = {.lex_state = 5, .external_lex_state = 2}, - [478] = {.lex_state = 5, .external_lex_state = 2}, + [478] = {.lex_state = 14, .external_lex_state = 2}, [479] = {.lex_state = 5, .external_lex_state = 2}, [480] = {.lex_state = 5, .external_lex_state = 2}, [481] = {.lex_state = 5, .external_lex_state = 2}, @@ -11111,9 +11175,9 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [497] = {.lex_state = 14, .external_lex_state = 2}, [498] = {.lex_state = 5, .external_lex_state = 2}, [499] = {.lex_state = 14, .external_lex_state = 2}, - [500] = {.lex_state = 14, .external_lex_state = 2}, - [501] = {.lex_state = 14, .external_lex_state = 2}, - [502] = {.lex_state = 14, .external_lex_state = 2}, + [500] = {.lex_state = 5, .external_lex_state = 2}, + [501] = {.lex_state = 73, .external_lex_state = 2}, + [502] = {.lex_state = 73, .external_lex_state = 2}, [503] = {.lex_state = 73, .external_lex_state = 2}, [504] = {.lex_state = 73, .external_lex_state = 2}, [505] = {.lex_state = 73, .external_lex_state = 2}, @@ -11142,7 +11206,7 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [528] = {.lex_state = 73, .external_lex_state = 2}, [529] = {.lex_state = 73, .external_lex_state = 2}, [530] = {.lex_state = 73, .external_lex_state = 2}, - [531] = {.lex_state = 23}, + [531] = {.lex_state = 73, .external_lex_state = 2}, [532] = {.lex_state = 73, .external_lex_state = 2}, [533] = {.lex_state = 73, .external_lex_state = 2}, [534] = {.lex_state = 73, .external_lex_state = 2}, @@ -11156,12 +11220,12 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [542] = {.lex_state = 73, .external_lex_state = 2}, [543] = {.lex_state = 73, .external_lex_state = 2}, [544] = {.lex_state = 73, .external_lex_state = 2}, - [545] = {.lex_state = 23}, + [545] = {.lex_state = 73, .external_lex_state = 2}, [546] = {.lex_state = 73, .external_lex_state = 2}, [547] = {.lex_state = 73, .external_lex_state = 2}, [548] = {.lex_state = 73, .external_lex_state = 2}, [549] = {.lex_state = 73, .external_lex_state = 2}, - [550] = {.lex_state = 23}, + [550] = {.lex_state = 73, .external_lex_state = 2}, [551] = {.lex_state = 73, .external_lex_state = 2}, [552] = {.lex_state = 73, .external_lex_state = 2}, [553] = {.lex_state = 73, .external_lex_state = 2}, @@ -11189,9 +11253,9 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [575] = {.lex_state = 73, .external_lex_state = 2}, [576] = {.lex_state = 73, .external_lex_state = 2}, [577] = {.lex_state = 73, .external_lex_state = 2}, - [578] = {.lex_state = 73, .external_lex_state = 2}, + [578] = {.lex_state = 14, .external_lex_state = 2}, [579] = {.lex_state = 73, .external_lex_state = 2}, - [580] = {.lex_state = 73, .external_lex_state = 2}, + [580] = {.lex_state = 23}, [581] = {.lex_state = 73, .external_lex_state = 2}, [582] = {.lex_state = 73, .external_lex_state = 2}, [583] = {.lex_state = 73, .external_lex_state = 2}, @@ -11230,7 +11294,7 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [616] = {.lex_state = 73, .external_lex_state = 2}, [617] = {.lex_state = 73, .external_lex_state = 2}, [618] = {.lex_state = 73, .external_lex_state = 2}, - [619] = {.lex_state = 73, .external_lex_state = 2}, + [619] = {.lex_state = 23}, [620] = {.lex_state = 73, .external_lex_state = 2}, [621] = {.lex_state = 73, .external_lex_state = 2}, [622] = {.lex_state = 73, .external_lex_state = 2}, @@ -11255,19 +11319,19 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [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 = 14, .external_lex_state = 2}, - [645] = {.lex_state = 23}, + [644] = {.lex_state = 73, .external_lex_state = 2}, + [645] = {.lex_state = 73, .external_lex_state = 2}, [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 = 23}, + [651] = {.lex_state = 73, .external_lex_state = 2}, [652] = {.lex_state = 73, .external_lex_state = 2}, [653] = {.lex_state = 73, .external_lex_state = 2}, [654] = {.lex_state = 73, .external_lex_state = 2}, [655] = {.lex_state = 73, .external_lex_state = 2}, - [656] = {.lex_state = 73, .external_lex_state = 2}, + [656] = {.lex_state = 23}, [657] = {.lex_state = 73, .external_lex_state = 2}, [658] = {.lex_state = 73, .external_lex_state = 2}, [659] = {.lex_state = 73, .external_lex_state = 2}, @@ -11275,7 +11339,7 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [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 = 73, .external_lex_state = 2}, + [664] = {.lex_state = 23}, [665] = {.lex_state = 73, .external_lex_state = 2}, [666] = {.lex_state = 73, .external_lex_state = 2}, [667] = {.lex_state = 73, .external_lex_state = 2}, @@ -11283,7 +11347,7 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [669] = {.lex_state = 73, .external_lex_state = 2}, [670] = {.lex_state = 73, .external_lex_state = 2}, [671] = {.lex_state = 73, .external_lex_state = 2}, - [672] = {.lex_state = 73, .external_lex_state = 2}, + [672] = {.lex_state = 14, .external_lex_state = 2}, [673] = {.lex_state = 73, .external_lex_state = 2}, [674] = {.lex_state = 73, .external_lex_state = 2}, [675] = {.lex_state = 73, .external_lex_state = 2}, @@ -11353,7 +11417,7 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [739] = {.lex_state = 73, .external_lex_state = 2}, [740] = {.lex_state = 73, .external_lex_state = 2}, [741] = {.lex_state = 73, .external_lex_state = 2}, - [742] = {.lex_state = 73, .external_lex_state = 2}, + [742] = {.lex_state = 23}, [743] = {.lex_state = 73, .external_lex_state = 2}, [744] = {.lex_state = 73, .external_lex_state = 2}, [745] = {.lex_state = 73, .external_lex_state = 2}, @@ -11399,23 +11463,23 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [785] = {.lex_state = 73, .external_lex_state = 2}, [786] = {.lex_state = 73, .external_lex_state = 2}, [787] = {.lex_state = 73, .external_lex_state = 2}, - [788] = {.lex_state = 17}, - [789] = {.lex_state = 17}, - [790] = {.lex_state = 17}, - [791] = {.lex_state = 17}, + [788] = {.lex_state = 73, .external_lex_state = 2}, + [789] = {.lex_state = 73, .external_lex_state = 2}, + [790] = {.lex_state = 73, .external_lex_state = 2}, + [791] = {.lex_state = 14, .external_lex_state = 2}, [792] = {.lex_state = 17}, - [793] = {.lex_state = 17}, - [794] = {.lex_state = 17}, + [793] = {.lex_state = 14, .external_lex_state = 2}, + [794] = {.lex_state = 14, .external_lex_state = 2}, [795] = {.lex_state = 17}, - [796] = {.lex_state = 14, .external_lex_state = 2}, + [796] = {.lex_state = 17}, [797] = {.lex_state = 17}, - [798] = {.lex_state = 14, .external_lex_state = 2}, - [799] = {.lex_state = 14, .external_lex_state = 2}, + [798] = {.lex_state = 17}, + [799] = {.lex_state = 17}, [800] = {.lex_state = 17}, - [801] = {.lex_state = 14, .external_lex_state = 2}, + [801] = {.lex_state = 17}, [802] = {.lex_state = 17}, - [803] = {.lex_state = 14, .external_lex_state = 2}, - [804] = {.lex_state = 14, .external_lex_state = 2}, + [803] = {.lex_state = 17}, + [804] = {.lex_state = 17}, [805] = {.lex_state = 14, .external_lex_state = 2}, [806] = {.lex_state = 14, .external_lex_state = 2}, [807] = {.lex_state = 14, .external_lex_state = 2}, @@ -11423,9 +11487,9 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [809] = {.lex_state = 14, .external_lex_state = 2}, [810] = {.lex_state = 14, .external_lex_state = 2}, [811] = {.lex_state = 14, .external_lex_state = 2}, - [812] = {.lex_state = 14, .external_lex_state = 2}, + [812] = {.lex_state = 12, .external_lex_state = 2}, [813] = {.lex_state = 14, .external_lex_state = 2}, - [814] = {.lex_state = 12, .external_lex_state = 2}, + [814] = {.lex_state = 14, .external_lex_state = 2}, [815] = {.lex_state = 14, .external_lex_state = 2}, [816] = {.lex_state = 14, .external_lex_state = 2}, [817] = {.lex_state = 14, .external_lex_state = 2}, @@ -11445,7 +11509,7 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [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}, + [834] = {.lex_state = 17}, [835] = {.lex_state = 14, .external_lex_state = 2}, [836] = {.lex_state = 14, .external_lex_state = 2}, [837] = {.lex_state = 14, .external_lex_state = 2}, @@ -11455,27 +11519,27 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [841] = {.lex_state = 14, .external_lex_state = 2}, [842] = {.lex_state = 14, .external_lex_state = 2}, [843] = {.lex_state = 14, .external_lex_state = 2}, - [844] = {.lex_state = 14, .external_lex_state = 2}, - [845] = {.lex_state = 14, .external_lex_state = 2}, + [844] = {.lex_state = 17}, + [845] = {.lex_state = 17}, [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 = 14, .external_lex_state = 2}, - [850] = {.lex_state = 14, .external_lex_state = 2}, + [850] = {.lex_state = 17}, [851] = {.lex_state = 14, .external_lex_state = 2}, [852] = {.lex_state = 14, .external_lex_state = 2}, [853] = {.lex_state = 14, .external_lex_state = 2}, - [854] = {.lex_state = 17}, + [854] = {.lex_state = 14, .external_lex_state = 2}, [855] = {.lex_state = 17}, - [856] = {.lex_state = 17}, - [857] = {.lex_state = 17}, - [858] = {.lex_state = 17}, - [859] = {.lex_state = 17}, - [860] = {.lex_state = 17}, - [861] = {.lex_state = 17}, - [862] = {.lex_state = 17}, - [863] = {.lex_state = 17}, - [864] = {.lex_state = 17}, + [856] = {.lex_state = 14, .external_lex_state = 2}, + [857] = {.lex_state = 14, .external_lex_state = 2}, + [858] = {.lex_state = 14, .external_lex_state = 2}, + [859] = {.lex_state = 14, .external_lex_state = 2}, + [860] = {.lex_state = 14, .external_lex_state = 2}, + [861] = {.lex_state = 14, .external_lex_state = 2}, + [862] = {.lex_state = 14, .external_lex_state = 2}, + [863] = {.lex_state = 14, .external_lex_state = 2}, + [864] = {.lex_state = 14, .external_lex_state = 2}, [865] = {.lex_state = 17}, [866] = {.lex_state = 17}, [867] = {.lex_state = 17}, @@ -11669,62 +11733,62 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [1055] = {.lex_state = 17}, [1056] = {.lex_state = 17}, [1057] = {.lex_state = 17}, - [1058] = {.lex_state = 13, .external_lex_state = 2}, - [1059] = {.lex_state = 13, .external_lex_state = 2}, - [1060] = {.lex_state = 13, .external_lex_state = 2}, - [1061] = {.lex_state = 15, .external_lex_state = 2}, - [1062] = {.lex_state = 15, .external_lex_state = 2}, - [1063] = {.lex_state = 13, .external_lex_state = 2}, - [1064] = {.lex_state = 12, .external_lex_state = 2}, + [1058] = {.lex_state = 17}, + [1059] = {.lex_state = 17}, + [1060] = {.lex_state = 17}, + [1061] = {.lex_state = 17}, + [1062] = {.lex_state = 17}, + [1063] = {.lex_state = 17}, + [1064] = {.lex_state = 17}, [1065] = {.lex_state = 17}, [1066] = {.lex_state = 13, .external_lex_state = 2}, [1067] = {.lex_state = 13, .external_lex_state = 2}, [1068] = {.lex_state = 13, .external_lex_state = 2}, - [1069] = {.lex_state = 8}, - [1070] = {.lex_state = 9}, - [1071] = {.lex_state = 8}, - [1072] = {.lex_state = 8}, - [1073] = {.lex_state = 23}, - [1074] = {.lex_state = 23}, - [1075] = {.lex_state = 23}, - [1076] = {.lex_state = 23}, - [1077] = {.lex_state = 14, .external_lex_state = 2}, - [1078] = {.lex_state = 23}, - [1079] = {.lex_state = 8}, + [1069] = {.lex_state = 15, .external_lex_state = 2}, + [1070] = {.lex_state = 15, .external_lex_state = 2}, + [1071] = {.lex_state = 13, .external_lex_state = 2}, + [1072] = {.lex_state = 12, .external_lex_state = 2}, + [1073] = {.lex_state = 17}, + [1074] = {.lex_state = 13, .external_lex_state = 2}, + [1075] = {.lex_state = 13, .external_lex_state = 2}, + [1076] = {.lex_state = 13, .external_lex_state = 2}, + [1077] = {.lex_state = 23}, + [1078] = {.lex_state = 8}, + [1079] = {.lex_state = 23}, [1080] = {.lex_state = 23}, [1081] = {.lex_state = 23}, [1082] = {.lex_state = 23}, [1083] = {.lex_state = 23}, - [1084] = {.lex_state = 8}, - [1085] = {.lex_state = 26}, - [1086] = {.lex_state = 17}, - [1087] = {.lex_state = 26}, - [1088] = {.lex_state = 8}, + [1084] = {.lex_state = 23}, + [1085] = {.lex_state = 23}, + [1086] = {.lex_state = 9}, + [1087] = {.lex_state = 8}, + [1088] = {.lex_state = 23}, [1089] = {.lex_state = 8}, - [1090] = {.lex_state = 26}, - [1091] = {.lex_state = 8}, - [1092] = {.lex_state = 8}, - [1093] = {.lex_state = 17}, - [1094] = {.lex_state = 17}, - [1095] = {.lex_state = 8}, - [1096] = {.lex_state = 26}, - [1097] = {.lex_state = 26}, + [1090] = {.lex_state = 8}, + [1091] = {.lex_state = 26}, + [1092] = {.lex_state = 26}, + [1093] = {.lex_state = 26}, + [1094] = {.lex_state = 26}, + [1095] = {.lex_state = 26}, + [1096] = {.lex_state = 14, .external_lex_state = 2}, + [1097] = {.lex_state = 17}, [1098] = {.lex_state = 8}, [1099] = {.lex_state = 8}, - [1100] = {.lex_state = 17}, - [1101] = {.lex_state = 14, .external_lex_state = 2}, - [1102] = {.lex_state = 14, .external_lex_state = 2}, - [1103] = {.lex_state = 9}, - [1104] = {.lex_state = 9}, + [1100] = {.lex_state = 8}, + [1101] = {.lex_state = 8}, + [1102] = {.lex_state = 17}, + [1103] = {.lex_state = 17}, + [1104] = {.lex_state = 17}, [1105] = {.lex_state = 17}, - [1106] = {.lex_state = 17}, - [1107] = {.lex_state = 9}, + [1106] = {.lex_state = 8}, + [1107] = {.lex_state = 8}, [1108] = {.lex_state = 9}, - [1109] = {.lex_state = 9}, - [1110] = {.lex_state = 9}, + [1109] = {.lex_state = 17}, + [1110] = {.lex_state = 8}, [1111] = {.lex_state = 17}, [1112] = {.lex_state = 17}, - [1113] = {.lex_state = 23}, + [1113] = {.lex_state = 8}, [1114] = {.lex_state = 23}, [1115] = {.lex_state = 23}, [1116] = {.lex_state = 23}, @@ -11756,23 +11820,23 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [1142] = {.lex_state = 23}, [1143] = {.lex_state = 23}, [1144] = {.lex_state = 23}, - [1145] = {.lex_state = 14, .external_lex_state = 2}, - [1146] = {.lex_state = 14, .external_lex_state = 2}, + [1145] = {.lex_state = 23}, + [1146] = {.lex_state = 23}, [1147] = {.lex_state = 23}, - [1148] = {.lex_state = 9}, + [1148] = {.lex_state = 23}, [1149] = {.lex_state = 23}, - [1150] = {.lex_state = 9}, + [1150] = {.lex_state = 23}, [1151] = {.lex_state = 23}, [1152] = {.lex_state = 23}, [1153] = {.lex_state = 23}, [1154] = {.lex_state = 23}, [1155] = {.lex_state = 23}, - [1156] = {.lex_state = 9}, + [1156] = {.lex_state = 23}, [1157] = {.lex_state = 23}, - [1158] = {.lex_state = 9}, + [1158] = {.lex_state = 23}, [1159] = {.lex_state = 23}, [1160] = {.lex_state = 23}, - [1161] = {.lex_state = 9}, + [1161] = {.lex_state = 23}, [1162] = {.lex_state = 23}, [1163] = {.lex_state = 23}, [1164] = {.lex_state = 23}, @@ -11782,7 +11846,7 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [1168] = {.lex_state = 23}, [1169] = {.lex_state = 23}, [1170] = {.lex_state = 23}, - [1171] = {.lex_state = 20}, + [1171] = {.lex_state = 23}, [1172] = {.lex_state = 23}, [1173] = {.lex_state = 23}, [1174] = {.lex_state = 23}, @@ -11791,17 +11855,17 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [1177] = {.lex_state = 23}, [1178] = {.lex_state = 23}, [1179] = {.lex_state = 23}, - [1180] = {.lex_state = 17}, - [1181] = {.lex_state = 9}, + [1180] = {.lex_state = 23}, + [1181] = {.lex_state = 23}, [1182] = {.lex_state = 23}, [1183] = {.lex_state = 23}, [1184] = {.lex_state = 23}, [1185] = {.lex_state = 23}, - [1186] = {.lex_state = 14, .external_lex_state = 2}, + [1186] = {.lex_state = 23}, [1187] = {.lex_state = 23}, [1188] = {.lex_state = 23}, - [1189] = {.lex_state = 9}, - [1190] = {.lex_state = 9}, + [1189] = {.lex_state = 23}, + [1190] = {.lex_state = 23}, [1191] = {.lex_state = 23}, [1192] = {.lex_state = 23}, [1193] = {.lex_state = 23}, @@ -11821,12 +11885,12 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [1207] = {.lex_state = 23}, [1208] = {.lex_state = 23}, [1209] = {.lex_state = 23}, - [1210] = {.lex_state = 9}, - [1211] = {.lex_state = 20}, - [1212] = {.lex_state = 17}, - [1213] = {.lex_state = 9}, + [1210] = {.lex_state = 23}, + [1211] = {.lex_state = 23}, + [1212] = {.lex_state = 23}, + [1213] = {.lex_state = 23}, [1214] = {.lex_state = 23}, - [1215] = {.lex_state = 14, .external_lex_state = 2}, + [1215] = {.lex_state = 23}, [1216] = {.lex_state = 23}, [1217] = {.lex_state = 23}, [1218] = {.lex_state = 23}, @@ -11835,7 +11899,7 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [1221] = {.lex_state = 23}, [1222] = {.lex_state = 23}, [1223] = {.lex_state = 23}, - [1224] = {.lex_state = 14, .external_lex_state = 2}, + [1224] = {.lex_state = 23}, [1225] = {.lex_state = 23}, [1226] = {.lex_state = 23}, [1227] = {.lex_state = 23}, @@ -11848,10 +11912,10 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [1234] = {.lex_state = 23}, [1235] = {.lex_state = 23}, [1236] = {.lex_state = 23}, - [1237] = {.lex_state = 17}, - [1238] = {.lex_state = 21}, + [1237] = {.lex_state = 23}, + [1238] = {.lex_state = 23}, [1239] = {.lex_state = 23}, - [1240] = {.lex_state = 14, .external_lex_state = 2}, + [1240] = {.lex_state = 23}, [1241] = {.lex_state = 23}, [1242] = {.lex_state = 23}, [1243] = {.lex_state = 23}, @@ -11862,23 +11926,23 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [1248] = {.lex_state = 23}, [1249] = {.lex_state = 23}, [1250] = {.lex_state = 23}, - [1251] = {.lex_state = 9}, + [1251] = {.lex_state = 23}, [1252] = {.lex_state = 23}, [1253] = {.lex_state = 23}, - [1254] = {.lex_state = 17}, + [1254] = {.lex_state = 23}, [1255] = {.lex_state = 23}, [1256] = {.lex_state = 23}, - [1257] = {.lex_state = 12, .external_lex_state = 2}, + [1257] = {.lex_state = 23}, [1258] = {.lex_state = 23}, [1259] = {.lex_state = 23}, - [1260] = {.lex_state = 23}, + [1260] = {.lex_state = 9}, [1261] = {.lex_state = 23}, - [1262] = {.lex_state = 9}, + [1262] = {.lex_state = 23}, [1263] = {.lex_state = 23}, - [1264] = {.lex_state = 9}, - [1265] = {.lex_state = 9}, + [1264] = {.lex_state = 23}, + [1265] = {.lex_state = 23}, [1266] = {.lex_state = 23}, - [1267] = {.lex_state = 9}, + [1267] = {.lex_state = 23}, [1268] = {.lex_state = 23}, [1269] = {.lex_state = 23}, [1270] = {.lex_state = 23}, @@ -11891,41 +11955,41 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [1277] = {.lex_state = 23}, [1278] = {.lex_state = 23}, [1279] = {.lex_state = 23}, - [1280] = {.lex_state = 9}, - [1281] = {.lex_state = 20}, - [1282] = {.lex_state = 12, .external_lex_state = 2}, - [1283] = {.lex_state = 9}, - [1284] = {.lex_state = 9}, - [1285] = {.lex_state = 17}, + [1280] = {.lex_state = 23}, + [1281] = {.lex_state = 23}, + [1282] = {.lex_state = 23}, + [1283] = {.lex_state = 23}, + [1284] = {.lex_state = 23}, + [1285] = {.lex_state = 23}, [1286] = {.lex_state = 23}, - [1287] = {.lex_state = 12, .external_lex_state = 2}, - [1288] = {.lex_state = 9}, - [1289] = {.lex_state = 9}, + [1287] = {.lex_state = 23}, + [1288] = {.lex_state = 23}, + [1289] = {.lex_state = 23}, [1290] = {.lex_state = 23}, [1291] = {.lex_state = 23}, [1292] = {.lex_state = 23}, - [1293] = {.lex_state = 21}, - [1294] = {.lex_state = 20}, + [1293] = {.lex_state = 23}, + [1294] = {.lex_state = 23}, [1295] = {.lex_state = 23}, - [1296] = {.lex_state = 9}, + [1296] = {.lex_state = 23}, [1297] = {.lex_state = 23}, [1298] = {.lex_state = 23}, - [1299] = {.lex_state = 9}, + [1299] = {.lex_state = 23}, [1300] = {.lex_state = 23}, - [1301] = {.lex_state = 20}, + [1301] = {.lex_state = 23}, [1302] = {.lex_state = 23}, - [1303] = {.lex_state = 20}, + [1303] = {.lex_state = 23}, [1304] = {.lex_state = 23}, [1305] = {.lex_state = 23}, [1306] = {.lex_state = 23}, [1307] = {.lex_state = 9}, [1308] = {.lex_state = 23}, - [1309] = {.lex_state = 23}, + [1309] = {.lex_state = 9}, [1310] = {.lex_state = 23}, - [1311] = {.lex_state = 23}, - [1312] = {.lex_state = 23}, + [1311] = {.lex_state = 14, .external_lex_state = 2}, + [1312] = {.lex_state = 17}, [1313] = {.lex_state = 23}, - [1314] = {.lex_state = 23}, + [1314] = {.lex_state = 17}, [1315] = {.lex_state = 23}, [1316] = {.lex_state = 23}, [1317] = {.lex_state = 23}, @@ -11933,35 +11997,35 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [1319] = {.lex_state = 23}, [1320] = {.lex_state = 23}, [1321] = {.lex_state = 23}, - [1322] = {.lex_state = 23}, + [1322] = {.lex_state = 17}, [1323] = {.lex_state = 23}, - [1324] = {.lex_state = 8}, + [1324] = {.lex_state = 23}, [1325] = {.lex_state = 23}, - [1326] = {.lex_state = 20}, + [1326] = {.lex_state = 23}, [1327] = {.lex_state = 23}, [1328] = {.lex_state = 23}, [1329] = {.lex_state = 23}, [1330] = {.lex_state = 23}, [1331] = {.lex_state = 23}, [1332] = {.lex_state = 23}, - [1333] = {.lex_state = 20}, + [1333] = {.lex_state = 17}, [1334] = {.lex_state = 23}, - [1335] = {.lex_state = 20}, - [1336] = {.lex_state = 20}, + [1335] = {.lex_state = 23}, + [1336] = {.lex_state = 23}, [1337] = {.lex_state = 23}, [1338] = {.lex_state = 23}, - [1339] = {.lex_state = 23}, + [1339] = {.lex_state = 9}, [1340] = {.lex_state = 23}, [1341] = {.lex_state = 23}, [1342] = {.lex_state = 23}, [1343] = {.lex_state = 23}, [1344] = {.lex_state = 23}, [1345] = {.lex_state = 23}, - [1346] = {.lex_state = 23}, + [1346] = {.lex_state = 9}, [1347] = {.lex_state = 23}, [1348] = {.lex_state = 23}, [1349] = {.lex_state = 23}, - [1350] = {.lex_state = 23}, + [1350] = {.lex_state = 14, .external_lex_state = 2}, [1351] = {.lex_state = 23}, [1352] = {.lex_state = 23}, [1353] = {.lex_state = 23}, @@ -11987,9 +12051,9 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [1373] = {.lex_state = 23}, [1374] = {.lex_state = 23}, [1375] = {.lex_state = 23}, - [1376] = {.lex_state = 9}, + [1376] = {.lex_state = 23}, [1377] = {.lex_state = 23}, - [1378] = {.lex_state = 20}, + [1378] = {.lex_state = 23}, [1379] = {.lex_state = 23}, [1380] = {.lex_state = 23}, [1381] = {.lex_state = 23}, @@ -12001,61 +12065,61 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [1387] = {.lex_state = 23}, [1388] = {.lex_state = 23}, [1389] = {.lex_state = 23}, - [1390] = {.lex_state = 23}, + [1390] = {.lex_state = 17}, [1391] = {.lex_state = 23}, - [1392] = {.lex_state = 20}, + [1392] = {.lex_state = 23}, [1393] = {.lex_state = 23}, - [1394] = {.lex_state = 23}, + [1394] = {.lex_state = 17}, [1395] = {.lex_state = 23}, - [1396] = {.lex_state = 23}, - [1397] = {.lex_state = 23}, - [1398] = {.lex_state = 23}, - [1399] = {.lex_state = 23}, - [1400] = {.lex_state = 23}, - [1401] = {.lex_state = 23}, - [1402] = {.lex_state = 23}, - [1403] = {.lex_state = 23}, - [1404] = {.lex_state = 23}, - [1405] = {.lex_state = 23}, - [1406] = {.lex_state = 23}, - [1407] = {.lex_state = 23}, - [1408] = {.lex_state = 23}, - [1409] = {.lex_state = 23}, - [1410] = {.lex_state = 23}, - [1411] = {.lex_state = 23}, - [1412] = {.lex_state = 23}, - [1413] = {.lex_state = 23}, - [1414] = {.lex_state = 23}, - [1415] = {.lex_state = 23}, - [1416] = {.lex_state = 23}, - [1417] = {.lex_state = 23}, - [1418] = {.lex_state = 23}, - [1419] = {.lex_state = 23}, - [1420] = {.lex_state = 23}, - [1421] = {.lex_state = 23}, - [1422] = {.lex_state = 23}, - [1423] = {.lex_state = 23}, - [1424] = {.lex_state = 23}, - [1425] = {.lex_state = 23}, - [1426] = {.lex_state = 23}, - [1427] = {.lex_state = 23}, - [1428] = {.lex_state = 17}, - [1429] = {.lex_state = 23}, - [1430] = {.lex_state = 23}, + [1396] = {.lex_state = 14, .external_lex_state = 2}, + [1397] = {.lex_state = 9}, + [1398] = {.lex_state = 14, .external_lex_state = 2}, + [1399] = {.lex_state = 9}, + [1400] = {.lex_state = 20}, + [1401] = {.lex_state = 9}, + [1402] = {.lex_state = 9}, + [1403] = {.lex_state = 20}, + [1404] = {.lex_state = 9}, + [1405] = {.lex_state = 9}, + [1406] = {.lex_state = 20}, + [1407] = {.lex_state = 8}, + [1408] = {.lex_state = 12, .external_lex_state = 2}, + [1409] = {.lex_state = 20}, + [1410] = {.lex_state = 9}, + [1411] = {.lex_state = 9}, + [1412] = {.lex_state = 9}, + [1413] = {.lex_state = 20}, + [1414] = {.lex_state = 20}, + [1415] = {.lex_state = 20}, + [1416] = {.lex_state = 9}, + [1417] = {.lex_state = 21}, + [1418] = {.lex_state = 9}, + [1419] = {.lex_state = 9}, + [1420] = {.lex_state = 20}, + [1421] = {.lex_state = 9}, + [1422] = {.lex_state = 9}, + [1423] = {.lex_state = 14, .external_lex_state = 2}, + [1424] = {.lex_state = 14, .external_lex_state = 2}, + [1425] = {.lex_state = 9}, + [1426] = {.lex_state = 12, .external_lex_state = 2}, + [1427] = {.lex_state = 9}, + [1428] = {.lex_state = 9}, + [1429] = {.lex_state = 12, .external_lex_state = 2}, + [1430] = {.lex_state = 9}, [1431] = {.lex_state = 9}, - [1432] = {.lex_state = 23}, - [1433] = {.lex_state = 17}, - [1434] = {.lex_state = 9}, + [1432] = {.lex_state = 14, .external_lex_state = 2}, + [1433] = {.lex_state = 21}, + [1434] = {.lex_state = 20}, [1435] = {.lex_state = 9}, - [1436] = {.lex_state = 9}, + [1436] = {.lex_state = 20}, [1437] = {.lex_state = 9}, [1438] = {.lex_state = 9}, - [1439] = {.lex_state = 9}, + [1439] = {.lex_state = 20}, [1440] = {.lex_state = 9}, [1441] = {.lex_state = 9}, - [1442] = {.lex_state = 9}, + [1442] = {.lex_state = 14, .external_lex_state = 2}, [1443] = {.lex_state = 9}, - [1444] = {.lex_state = 9}, + [1444] = {.lex_state = 20}, [1445] = {.lex_state = 9}, [1446] = {.lex_state = 9}, [1447] = {.lex_state = 9}, @@ -12090,7 +12154,7 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [1476] = {.lex_state = 9}, [1477] = {.lex_state = 9}, [1478] = {.lex_state = 9}, - [1479] = {.lex_state = 9}, + [1479] = {.lex_state = 17}, [1480] = {.lex_state = 9}, [1481] = {.lex_state = 9}, [1482] = {.lex_state = 9}, @@ -12098,7 +12162,7 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [1484] = {.lex_state = 9}, [1485] = {.lex_state = 9}, [1486] = {.lex_state = 9}, - [1487] = {.lex_state = 10}, + [1487] = {.lex_state = 9}, [1488] = {.lex_state = 9}, [1489] = {.lex_state = 9}, [1490] = {.lex_state = 9}, @@ -12160,7 +12224,7 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [1546] = {.lex_state = 9}, [1547] = {.lex_state = 9}, [1548] = {.lex_state = 9}, - [1549] = {.lex_state = 9}, + [1549] = {.lex_state = 10}, [1550] = {.lex_state = 9}, [1551] = {.lex_state = 9}, [1552] = {.lex_state = 9}, @@ -12173,26 +12237,26 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [1559] = {.lex_state = 9}, [1560] = {.lex_state = 9}, [1561] = {.lex_state = 9}, - [1562] = {.lex_state = 13, .external_lex_state = 2}, + [1562] = {.lex_state = 9}, [1563] = {.lex_state = 9}, - [1564] = {.lex_state = 13, .external_lex_state = 2}, - [1565] = {.lex_state = 13, .external_lex_state = 2}, - [1566] = {.lex_state = 17}, + [1564] = {.lex_state = 9}, + [1565] = {.lex_state = 9}, + [1566] = {.lex_state = 9}, [1567] = {.lex_state = 9}, [1568] = {.lex_state = 17}, [1569] = {.lex_state = 9}, - [1570] = {.lex_state = 17}, + [1570] = {.lex_state = 9}, [1571] = {.lex_state = 17}, - [1572] = {.lex_state = 13, .external_lex_state = 2}, - [1573] = {.lex_state = 13, .external_lex_state = 2}, - [1574] = {.lex_state = 13, .external_lex_state = 2}, - [1575] = {.lex_state = 17}, - [1576] = {.lex_state = 11}, - [1577] = {.lex_state = 9}, - [1578] = {.lex_state = 9}, - [1579] = {.lex_state = 11}, - [1580] = {.lex_state = 11}, - [1581] = {.lex_state = 9}, + [1572] = {.lex_state = 17}, + [1573] = {.lex_state = 17}, + [1574] = {.lex_state = 17}, + [1575] = {.lex_state = 9}, + [1576] = {.lex_state = 9}, + [1577] = {.lex_state = 13, .external_lex_state = 2}, + [1578] = {.lex_state = 13, .external_lex_state = 2}, + [1579] = {.lex_state = 9}, + [1580] = {.lex_state = 9}, + [1581] = {.lex_state = 11}, [1582] = {.lex_state = 9}, [1583] = {.lex_state = 9}, [1584] = {.lex_state = 9}, @@ -12204,143 +12268,143 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [1590] = {.lex_state = 9}, [1591] = {.lex_state = 9}, [1592] = {.lex_state = 9}, - [1593] = {.lex_state = 9}, + [1593] = {.lex_state = 13, .external_lex_state = 2}, [1594] = {.lex_state = 9}, [1595] = {.lex_state = 9}, - [1596] = {.lex_state = 9}, - [1597] = {.lex_state = 10}, - [1598] = {.lex_state = 11}, - [1599] = {.lex_state = 10}, - [1600] = {.lex_state = 11}, - [1601] = {.lex_state = 11}, - [1602] = {.lex_state = 11}, + [1596] = {.lex_state = 13, .external_lex_state = 2}, + [1597] = {.lex_state = 9}, + [1598] = {.lex_state = 13, .external_lex_state = 2}, + [1599] = {.lex_state = 9}, + [1600] = {.lex_state = 9}, + [1601] = {.lex_state = 9}, + [1602] = {.lex_state = 13, .external_lex_state = 2}, [1603] = {.lex_state = 9}, [1604] = {.lex_state = 9}, - [1605] = {.lex_state = 9}, - [1606] = {.lex_state = 9}, - [1607] = {.lex_state = 9}, - [1608] = {.lex_state = 9}, - [1609] = {.lex_state = 11}, + [1605] = {.lex_state = 11}, + [1606] = {.lex_state = 11}, + [1607] = {.lex_state = 11}, + [1608] = {.lex_state = 10}, + [1609] = {.lex_state = 9}, [1610] = {.lex_state = 9}, [1611] = {.lex_state = 11}, - [1612] = {.lex_state = 10}, - [1613] = {.lex_state = 10}, + [1612] = {.lex_state = 11}, + [1613] = {.lex_state = 11}, [1614] = {.lex_state = 11}, [1615] = {.lex_state = 11}, [1616] = {.lex_state = 10}, [1617] = {.lex_state = 11}, - [1618] = {.lex_state = 10}, - [1619] = {.lex_state = 9}, + [1618] = {.lex_state = 17}, + [1619] = {.lex_state = 11}, [1620] = {.lex_state = 9}, - [1621] = {.lex_state = 10}, - [1622] = {.lex_state = 10}, - [1623] = {.lex_state = 10}, - [1624] = {.lex_state = 10}, - [1625] = {.lex_state = 17}, + [1621] = {.lex_state = 9}, + [1622] = {.lex_state = 9}, + [1623] = {.lex_state = 17}, + [1624] = {.lex_state = 17}, + [1625] = {.lex_state = 11}, [1626] = {.lex_state = 10}, - [1627] = {.lex_state = 10}, + [1627] = {.lex_state = 9}, [1628] = {.lex_state = 10}, - [1629] = {.lex_state = 10}, - [1630] = {.lex_state = 10}, - [1631] = {.lex_state = 10}, + [1629] = {.lex_state = 9}, + [1630] = {.lex_state = 9}, + [1631] = {.lex_state = 9}, [1632] = {.lex_state = 17}, [1633] = {.lex_state = 10}, - [1634] = {.lex_state = 10}, + [1634] = {.lex_state = 9}, [1635] = {.lex_state = 9}, - [1636] = {.lex_state = 9}, + [1636] = {.lex_state = 10}, [1637] = {.lex_state = 9}, [1638] = {.lex_state = 9}, [1639] = {.lex_state = 9}, - [1640] = {.lex_state = 9}, + [1640] = {.lex_state = 10}, [1641] = {.lex_state = 9}, [1642] = {.lex_state = 9}, [1643] = {.lex_state = 9}, [1644] = {.lex_state = 9}, [1645] = {.lex_state = 9}, [1646] = {.lex_state = 9}, - [1647] = {.lex_state = 17}, - [1648] = {.lex_state = 9}, + [1647] = {.lex_state = 10}, + [1648] = {.lex_state = 10}, [1649] = {.lex_state = 9}, - [1650] = {.lex_state = 9}, + [1650] = {.lex_state = 10}, [1651] = {.lex_state = 10}, - [1652] = {.lex_state = 17}, - [1653] = {.lex_state = 10}, - [1654] = {.lex_state = 22}, - [1655] = {.lex_state = 9}, + [1652] = {.lex_state = 10}, + [1653] = {.lex_state = 9}, + [1654] = {.lex_state = 10}, + [1655] = {.lex_state = 10}, [1656] = {.lex_state = 10}, - [1657] = {.lex_state = 9}, - [1658] = {.lex_state = 22}, - [1659] = {.lex_state = 10}, - [1660] = {.lex_state = 22}, - [1661] = {.lex_state = 10}, - [1662] = {.lex_state = 22}, - [1663] = {.lex_state = 10}, - [1664] = {.lex_state = 22}, - [1665] = {.lex_state = 22}, - [1666] = {.lex_state = 9}, - [1667] = {.lex_state = 10}, - [1668] = {.lex_state = 10}, - [1669] = {.lex_state = 10}, - [1670] = {.lex_state = 10}, + [1657] = {.lex_state = 10}, + [1658] = {.lex_state = 10}, + [1659] = {.lex_state = 9}, + [1660] = {.lex_state = 10}, + [1661] = {.lex_state = 9}, + [1662] = {.lex_state = 10}, + [1663] = {.lex_state = 9}, + [1664] = {.lex_state = 9}, + [1665] = {.lex_state = 10}, + [1666] = {.lex_state = 10}, + [1667] = {.lex_state = 22}, + [1668] = {.lex_state = 22}, + [1669] = {.lex_state = 9}, + [1670] = {.lex_state = 9}, [1671] = {.lex_state = 10}, - [1672] = {.lex_state = 10}, - [1673] = {.lex_state = 9}, + [1672] = {.lex_state = 9}, + [1673] = {.lex_state = 10}, [1674] = {.lex_state = 10}, - [1675] = {.lex_state = 9}, - [1676] = {.lex_state = 9}, - [1677] = {.lex_state = 10}, + [1675] = {.lex_state = 10}, + [1676] = {.lex_state = 10}, + [1677] = {.lex_state = 11}, [1678] = {.lex_state = 9}, [1679] = {.lex_state = 9}, [1680] = {.lex_state = 9}, - [1681] = {.lex_state = 10}, + [1681] = {.lex_state = 9}, [1682] = {.lex_state = 9}, - [1683] = {.lex_state = 10}, + [1683] = {.lex_state = 22}, [1684] = {.lex_state = 9}, [1685] = {.lex_state = 9}, - [1686] = {.lex_state = 9}, + [1686] = {.lex_state = 10}, [1687] = {.lex_state = 9}, [1688] = {.lex_state = 22}, - [1689] = {.lex_state = 9}, + [1689] = {.lex_state = 22}, [1690] = {.lex_state = 22}, [1691] = {.lex_state = 9}, - [1692] = {.lex_state = 10}, + [1692] = {.lex_state = 9}, [1693] = {.lex_state = 10}, - [1694] = {.lex_state = 9}, - [1695] = {.lex_state = 9}, - [1696] = {.lex_state = 9}, - [1697] = {.lex_state = 17}, - [1698] = {.lex_state = 11}, - [1699] = {.lex_state = 22}, - [1700] = {.lex_state = 9}, - [1701] = {.lex_state = 9}, - [1702] = {.lex_state = 22}, - [1703] = {.lex_state = 9}, - [1704] = {.lex_state = 10}, + [1694] = {.lex_state = 10}, + [1695] = {.lex_state = 10}, + [1696] = {.lex_state = 22}, + [1697] = {.lex_state = 9}, + [1698] = {.lex_state = 9}, + [1699] = {.lex_state = 9}, + [1700] = {.lex_state = 22}, + [1701] = {.lex_state = 10}, + [1702] = {.lex_state = 9}, + [1703] = {.lex_state = 22}, + [1704] = {.lex_state = 9}, [1705] = {.lex_state = 9}, - [1706] = {.lex_state = 10}, + [1706] = {.lex_state = 9}, [1707] = {.lex_state = 9}, - [1708] = {.lex_state = 22}, - [1709] = {.lex_state = 9}, + [1708] = {.lex_state = 9}, + [1709] = {.lex_state = 22}, [1710] = {.lex_state = 9}, [1711] = {.lex_state = 9}, - [1712] = {.lex_state = 22}, - [1713] = {.lex_state = 10}, - [1714] = {.lex_state = 9}, - [1715] = {.lex_state = 10}, - [1716] = {.lex_state = 9}, - [1717] = {.lex_state = 9}, - [1718] = {.lex_state = 10}, + [1712] = {.lex_state = 9}, + [1713] = {.lex_state = 9}, + [1714] = {.lex_state = 10}, + [1715] = {.lex_state = 9}, + [1716] = {.lex_state = 17}, + [1717] = {.lex_state = 10}, + [1718] = {.lex_state = 22}, [1719] = {.lex_state = 10}, [1720] = {.lex_state = 10}, - [1721] = {.lex_state = 10}, - [1722] = {.lex_state = 10}, - [1723] = {.lex_state = 9}, + [1721] = {.lex_state = 22}, + [1722] = {.lex_state = 9}, + [1723] = {.lex_state = 10}, [1724] = {.lex_state = 10}, [1725] = {.lex_state = 10}, [1726] = {.lex_state = 10}, [1727] = {.lex_state = 9}, [1728] = {.lex_state = 10}, - [1729] = {.lex_state = 10}, + [1729] = {.lex_state = 9}, [1730] = {.lex_state = 10}, [1731] = {.lex_state = 10}, [1732] = {.lex_state = 10}, @@ -12348,97 +12412,97 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [1734] = {.lex_state = 10}, [1735] = {.lex_state = 10}, [1736] = {.lex_state = 10}, - [1737] = {.lex_state = 10}, + [1737] = {.lex_state = 9}, [1738] = {.lex_state = 10}, - [1739] = {.lex_state = 9}, + [1739] = {.lex_state = 10}, [1740] = {.lex_state = 10}, - [1741] = {.lex_state = 9}, - [1742] = {.lex_state = 9}, + [1741] = {.lex_state = 10}, + [1742] = {.lex_state = 10}, [1743] = {.lex_state = 10}, - [1744] = {.lex_state = 10}, + [1744] = {.lex_state = 9}, [1745] = {.lex_state = 10}, [1746] = {.lex_state = 10}, [1747] = {.lex_state = 10}, [1748] = {.lex_state = 10}, - [1749] = {.lex_state = 10}, + [1749] = {.lex_state = 9}, [1750] = {.lex_state = 9}, - [1751] = {.lex_state = 10}, + [1751] = {.lex_state = 9}, [1752] = {.lex_state = 10}, [1753] = {.lex_state = 10}, [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}, + [1758] = {.lex_state = 9}, + [1759] = {.lex_state = 9}, + [1760] = {.lex_state = 9}, [1761] = {.lex_state = 10}, [1762] = {.lex_state = 10}, [1763] = {.lex_state = 10}, - [1764] = {.lex_state = 17}, + [1764] = {.lex_state = 10}, [1765] = {.lex_state = 10}, - [1766] = {.lex_state = 9}, - [1767] = {.lex_state = 9}, - [1768] = {.lex_state = 9}, + [1766] = {.lex_state = 10}, + [1767] = {.lex_state = 10}, + [1768] = {.lex_state = 10}, [1769] = {.lex_state = 9}, - [1770] = {.lex_state = 9}, + [1770] = {.lex_state = 10}, [1771] = {.lex_state = 9}, [1772] = {.lex_state = 9}, [1773] = {.lex_state = 9}, - [1774] = {.lex_state = 9}, + [1774] = {.lex_state = 10}, [1775] = {.lex_state = 9}, - [1776] = {.lex_state = 9}, - [1777] = {.lex_state = 9}, + [1776] = {.lex_state = 10}, + [1777] = {.lex_state = 10}, [1778] = {.lex_state = 9}, [1779] = {.lex_state = 9}, - [1780] = {.lex_state = 9}, + [1780] = {.lex_state = 10}, [1781] = {.lex_state = 9}, - [1782] = {.lex_state = 10}, + [1782] = {.lex_state = 9}, [1783] = {.lex_state = 10}, - [1784] = {.lex_state = 10}, - [1785] = {.lex_state = 10}, - [1786] = {.lex_state = 10}, + [1784] = {.lex_state = 9}, + [1785] = {.lex_state = 9}, + [1786] = {.lex_state = 9}, [1787] = {.lex_state = 10}, [1788] = {.lex_state = 9}, [1789] = {.lex_state = 9}, [1790] = {.lex_state = 10}, - [1791] = {.lex_state = 10}, + [1791] = {.lex_state = 9}, [1792] = {.lex_state = 10}, [1793] = {.lex_state = 9}, - [1794] = {.lex_state = 10}, + [1794] = {.lex_state = 9}, [1795] = {.lex_state = 10}, - [1796] = {.lex_state = 10}, + [1796] = {.lex_state = 9}, [1797] = {.lex_state = 10}, - [1798] = {.lex_state = 9}, - [1799] = {.lex_state = 10}, - [1800] = {.lex_state = 10}, - [1801] = {.lex_state = 10}, - [1802] = {.lex_state = 10}, - [1803] = {.lex_state = 10}, + [1798] = {.lex_state = 10}, + [1799] = {.lex_state = 9}, + [1800] = {.lex_state = 9}, + [1801] = {.lex_state = 9}, + [1802] = {.lex_state = 9}, + [1803] = {.lex_state = 9}, [1804] = {.lex_state = 10}, - [1805] = {.lex_state = 10}, - [1806] = {.lex_state = 10}, - [1807] = {.lex_state = 10}, - [1808] = {.lex_state = 10}, + [1805] = {.lex_state = 9}, + [1806] = {.lex_state = 9}, + [1807] = {.lex_state = 9}, + [1808] = {.lex_state = 9}, [1809] = {.lex_state = 10}, [1810] = {.lex_state = 10}, [1811] = {.lex_state = 10}, [1812] = {.lex_state = 10}, [1813] = {.lex_state = 10}, - [1814] = {.lex_state = 10}, + [1814] = {.lex_state = 9}, [1815] = {.lex_state = 10}, [1816] = {.lex_state = 9}, - [1817] = {.lex_state = 9}, + [1817] = {.lex_state = 10}, [1818] = {.lex_state = 10}, - [1819] = {.lex_state = 10}, - [1820] = {.lex_state = 9}, + [1819] = {.lex_state = 9}, + [1820] = {.lex_state = 10}, [1821] = {.lex_state = 10}, - [1822] = {.lex_state = 10}, - [1823] = {.lex_state = 10}, - [1824] = {.lex_state = 10}, + [1822] = {.lex_state = 9}, + [1823] = {.lex_state = 9}, + [1824] = {.lex_state = 9}, [1825] = {.lex_state = 9}, - [1826] = {.lex_state = 10}, - [1827] = {.lex_state = 10}, + [1826] = {.lex_state = 9}, + [1827] = {.lex_state = 9}, [1828] = {.lex_state = 10}, [1829] = {.lex_state = 10}, [1830] = {.lex_state = 10}, @@ -12449,87 +12513,87 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [1835] = {.lex_state = 10}, [1836] = {.lex_state = 10}, [1837] = {.lex_state = 10}, - [1838] = {.lex_state = 10}, + [1838] = {.lex_state = 9}, [1839] = {.lex_state = 9}, [1840] = {.lex_state = 10}, [1841] = {.lex_state = 10}, [1842] = {.lex_state = 10}, - [1843] = {.lex_state = 10}, + [1843] = {.lex_state = 9}, [1844] = {.lex_state = 10}, [1845] = {.lex_state = 10}, - [1846] = {.lex_state = 10}, + [1846] = {.lex_state = 9}, [1847] = {.lex_state = 10}, [1848] = {.lex_state = 9}, - [1849] = {.lex_state = 10}, - [1850] = {.lex_state = 10}, + [1849] = {.lex_state = 9}, + [1850] = {.lex_state = 9}, [1851] = {.lex_state = 10}, - [1852] = {.lex_state = 10}, + [1852] = {.lex_state = 9}, [1853] = {.lex_state = 10}, [1854] = {.lex_state = 10}, - [1855] = {.lex_state = 10}, - [1856] = {.lex_state = 10}, - [1857] = {.lex_state = 10}, - [1858] = {.lex_state = 10}, + [1855] = {.lex_state = 9}, + [1856] = {.lex_state = 9}, + [1857] = {.lex_state = 9}, + [1858] = {.lex_state = 9}, [1859] = {.lex_state = 10}, - [1860] = {.lex_state = 10}, + [1860] = {.lex_state = 9}, [1861] = {.lex_state = 10}, - [1862] = {.lex_state = 10}, - [1863] = {.lex_state = 10}, - [1864] = {.lex_state = 10}, - [1865] = {.lex_state = 10}, - [1866] = {.lex_state = 10}, + [1862] = {.lex_state = 9}, + [1863] = {.lex_state = 9}, + [1864] = {.lex_state = 9}, + [1865] = {.lex_state = 9}, + [1866] = {.lex_state = 9}, [1867] = {.lex_state = 9}, - [1868] = {.lex_state = 9}, + [1868] = {.lex_state = 10}, [1869] = {.lex_state = 9}, [1870] = {.lex_state = 10}, - [1871] = {.lex_state = 9}, - [1872] = {.lex_state = 10}, + [1871] = {.lex_state = 10}, + [1872] = {.lex_state = 9}, [1873] = {.lex_state = 9}, [1874] = {.lex_state = 9}, - [1875] = {.lex_state = 10}, + [1875] = {.lex_state = 9}, [1876] = {.lex_state = 9}, - [1877] = {.lex_state = 10}, + [1877] = {.lex_state = 9}, [1878] = {.lex_state = 10}, - [1879] = {.lex_state = 10}, + [1879] = {.lex_state = 9}, [1880] = {.lex_state = 9}, - [1881] = {.lex_state = 9}, - [1882] = {.lex_state = 9}, - [1883] = {.lex_state = 9}, - [1884] = {.lex_state = 9}, + [1881] = {.lex_state = 10}, + [1882] = {.lex_state = 10}, + [1883] = {.lex_state = 10}, + [1884] = {.lex_state = 10}, [1885] = {.lex_state = 9}, - [1886] = {.lex_state = 9}, - [1887] = {.lex_state = 9}, + [1886] = {.lex_state = 10}, + [1887] = {.lex_state = 10}, [1888] = {.lex_state = 9}, - [1889] = {.lex_state = 9}, - [1890] = {.lex_state = 9}, + [1889] = {.lex_state = 10}, + [1890] = {.lex_state = 10}, [1891] = {.lex_state = 9}, - [1892] = {.lex_state = 9}, - [1893] = {.lex_state = 9}, - [1894] = {.lex_state = 9}, - [1895] = {.lex_state = 9}, - [1896] = {.lex_state = 9}, + [1892] = {.lex_state = 10}, + [1893] = {.lex_state = 10}, + [1894] = {.lex_state = 10}, + [1895] = {.lex_state = 10}, + [1896] = {.lex_state = 10}, [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 = 9}, + [1898] = {.lex_state = 10}, + [1899] = {.lex_state = 17}, + [1900] = {.lex_state = 10}, + [1901] = {.lex_state = 10}, + [1902] = {.lex_state = 10}, + [1903] = {.lex_state = 10}, [1904] = {.lex_state = 9}, - [1905] = {.lex_state = 9}, - [1906] = {.lex_state = 9}, - [1907] = {.lex_state = 9}, - [1908] = {.lex_state = 9}, - [1909] = {.lex_state = 9}, - [1910] = {.lex_state = 9}, - [1911] = {.lex_state = 9}, + [1905] = {.lex_state = 10}, + [1906] = {.lex_state = 10}, + [1907] = {.lex_state = 10}, + [1908] = {.lex_state = 10}, + [1909] = {.lex_state = 10}, + [1910] = {.lex_state = 10}, + [1911] = {.lex_state = 10}, [1912] = {.lex_state = 9}, [1913] = {.lex_state = 9}, - [1914] = {.lex_state = 9}, - [1915] = {.lex_state = 9}, + [1914] = {.lex_state = 10}, + [1915] = {.lex_state = 10}, [1916] = {.lex_state = 9}, - [1917] = {.lex_state = 9}, - [1918] = {.lex_state = 9}, + [1917] = {.lex_state = 10}, + [1918] = {.lex_state = 10}, [1919] = {.lex_state = 9}, [1920] = {.lex_state = 10}, [1921] = {.lex_state = 10}, @@ -12538,67 +12602,67 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [1924] = {.lex_state = 10}, [1925] = {.lex_state = 10}, [1926] = {.lex_state = 10}, - [1927] = {.lex_state = 17}, + [1927] = {.lex_state = 10}, [1928] = {.lex_state = 10}, - [1929] = {.lex_state = 9}, + [1929] = {.lex_state = 10}, [1930] = {.lex_state = 10}, - [1931] = {.lex_state = 9}, + [1931] = {.lex_state = 10}, [1932] = {.lex_state = 10}, - [1933] = {.lex_state = 9}, + [1933] = {.lex_state = 10}, [1934] = {.lex_state = 9}, - [1935] = {.lex_state = 9}, + [1935] = {.lex_state = 10}, [1936] = {.lex_state = 10}, [1937] = {.lex_state = 17}, - [1938] = {.lex_state = 9}, + [1938] = {.lex_state = 10}, [1939] = {.lex_state = 9}, - [1940] = {.lex_state = 9}, - [1941] = {.lex_state = 9}, - [1942] = {.lex_state = 9}, - [1943] = {.lex_state = 9}, - [1944] = {.lex_state = 9}, - [1945] = {.lex_state = 17}, - [1946] = {.lex_state = 9}, - [1947] = {.lex_state = 9}, + [1940] = {.lex_state = 10}, + [1941] = {.lex_state = 10}, + [1942] = {.lex_state = 10}, + [1943] = {.lex_state = 10}, + [1944] = {.lex_state = 10}, + [1945] = {.lex_state = 10}, + [1946] = {.lex_state = 10}, + [1947] = {.lex_state = 10}, [1948] = {.lex_state = 9}, - [1949] = {.lex_state = 17}, + [1949] = {.lex_state = 9}, [1950] = {.lex_state = 9}, [1951] = {.lex_state = 9}, - [1952] = {.lex_state = 10}, - [1953] = {.lex_state = 17}, + [1952] = {.lex_state = 9}, + [1953] = {.lex_state = 9}, [1954] = {.lex_state = 9}, [1955] = {.lex_state = 10}, [1956] = {.lex_state = 9}, - [1957] = {.lex_state = 10}, + [1957] = {.lex_state = 9}, [1958] = {.lex_state = 9}, [1959] = {.lex_state = 9}, [1960] = {.lex_state = 9}, - [1961] = {.lex_state = 17}, + [1961] = {.lex_state = 9}, [1962] = {.lex_state = 9}, [1963] = {.lex_state = 9}, [1964] = {.lex_state = 9}, - [1965] = {.lex_state = 9}, + [1965] = {.lex_state = 10}, [1966] = {.lex_state = 9}, [1967] = {.lex_state = 9}, [1968] = {.lex_state = 9}, [1969] = {.lex_state = 9}, - [1970] = {.lex_state = 9}, + [1970] = {.lex_state = 17}, [1971] = {.lex_state = 9}, - [1972] = {.lex_state = 9}, + [1972] = {.lex_state = 17}, [1973] = {.lex_state = 9}, - [1974] = {.lex_state = 17}, - [1975] = {.lex_state = 17}, - [1976] = {.lex_state = 17}, - [1977] = {.lex_state = 17}, - [1978] = {.lex_state = 17}, - [1979] = {.lex_state = 17}, + [1974] = {.lex_state = 9}, + [1975] = {.lex_state = 9}, + [1976] = {.lex_state = 9}, + [1977] = {.lex_state = 9}, + [1978] = {.lex_state = 9}, + [1979] = {.lex_state = 9}, [1980] = {.lex_state = 17}, - [1981] = {.lex_state = 17}, - [1982] = {.lex_state = 17}, - [1983] = {.lex_state = 17}, - [1984] = {.lex_state = 17}, + [1981] = {.lex_state = 9}, + [1982] = {.lex_state = 9}, + [1983] = {.lex_state = 10}, + [1984] = {.lex_state = 9}, [1985] = {.lex_state = 17}, [1986] = {.lex_state = 17}, - [1987] = {.lex_state = 17}, + [1987] = {.lex_state = 9}, [1988] = {.lex_state = 17}, [1989] = {.lex_state = 17}, [1990] = {.lex_state = 17}, @@ -12607,82 +12671,82 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [1993] = {.lex_state = 17}, [1994] = {.lex_state = 17}, [1995] = {.lex_state = 17}, - [1996] = {.lex_state = 31}, - [1997] = {.lex_state = 31}, - [1998] = {.lex_state = 18}, - [1999] = {.lex_state = 18}, - [2000] = {.lex_state = 18}, - [2001] = {.lex_state = 18}, - [2002] = {.lex_state = 18}, - [2003] = {.lex_state = 18}, - [2004] = {.lex_state = 18}, + [1996] = {.lex_state = 17}, + [1997] = {.lex_state = 17}, + [1998] = {.lex_state = 17}, + [1999] = {.lex_state = 17}, + [2000] = {.lex_state = 17}, + [2001] = {.lex_state = 17}, + [2002] = {.lex_state = 17}, + [2003] = {.lex_state = 17}, + [2004] = {.lex_state = 17}, [2005] = {.lex_state = 17}, [2006] = {.lex_state = 17}, - [2007] = {.lex_state = 18}, - [2008] = {.lex_state = 18}, - [2009] = {.lex_state = 18}, - [2010] = {.lex_state = 17}, + [2007] = {.lex_state = 17}, + [2008] = {.lex_state = 17}, + [2009] = {.lex_state = 17}, + [2010] = {.lex_state = 18}, [2011] = {.lex_state = 18}, [2012] = {.lex_state = 18}, - [2013] = {.lex_state = 17}, - [2014] = {.lex_state = 17}, - [2015] = {.lex_state = 31}, + [2013] = {.lex_state = 18}, + [2014] = {.lex_state = 18}, + [2015] = {.lex_state = 17}, [2016] = {.lex_state = 17}, [2017] = {.lex_state = 18}, - [2018] = {.lex_state = 13, .external_lex_state = 2}, - [2019] = {.lex_state = 17}, - [2020] = {.lex_state = 17}, + [2018] = {.lex_state = 18}, + [2019] = {.lex_state = 18}, + [2020] = {.lex_state = 18}, [2021] = {.lex_state = 17}, [2022] = {.lex_state = 18}, [2023] = {.lex_state = 17}, - [2024] = {.lex_state = 17}, + [2024] = {.lex_state = 18}, [2025] = {.lex_state = 18}, - [2026] = {.lex_state = 17}, + [2026] = {.lex_state = 13, .external_lex_state = 2}, [2027] = {.lex_state = 17}, - [2028] = {.lex_state = 31}, - [2029] = {.lex_state = 31}, + [2028] = {.lex_state = 17}, + [2029] = {.lex_state = 17}, [2030] = {.lex_state = 31}, - [2031] = {.lex_state = 31}, + [2031] = {.lex_state = 18}, [2032] = {.lex_state = 17}, - [2033] = {.lex_state = 31}, + [2033] = {.lex_state = 17}, [2034] = {.lex_state = 17}, - [2035] = {.lex_state = 17}, + [2035] = {.lex_state = 18}, [2036] = {.lex_state = 18}, [2037] = {.lex_state = 18}, - [2038] = {.lex_state = 31}, + [2038] = {.lex_state = 17}, [2039] = {.lex_state = 17}, [2040] = {.lex_state = 17}, - [2041] = {.lex_state = 31}, - [2042] = {.lex_state = 17}, - [2043] = {.lex_state = 18}, - [2044] = {.lex_state = 31}, - [2045] = {.lex_state = 31}, + [2041] = {.lex_state = 18}, + [2042] = {.lex_state = 18}, + [2043] = {.lex_state = 17}, + [2044] = {.lex_state = 18}, + [2045] = {.lex_state = 18}, [2046] = {.lex_state = 31}, [2047] = {.lex_state = 17}, - [2048] = {.lex_state = 31}, - [2049] = {.lex_state = 31}, - [2050] = {.lex_state = 17}, - [2051] = {.lex_state = 18}, - [2052] = {.lex_state = 31}, + [2048] = {.lex_state = 17}, + [2049] = {.lex_state = 17}, + [2050] = {.lex_state = 18}, + [2051] = {.lex_state = 31}, + [2052] = {.lex_state = 17}, [2053] = {.lex_state = 17}, - [2054] = {.lex_state = 18}, - [2055] = {.lex_state = 31}, - [2056] = {.lex_state = 31}, + [2054] = {.lex_state = 17}, + [2055] = {.lex_state = 17}, + [2056] = {.lex_state = 17}, [2057] = {.lex_state = 31}, - [2058] = {.lex_state = 31}, - [2059] = {.lex_state = 31}, - [2060] = {.lex_state = 17}, - [2061] = {.lex_state = 31}, - [2062] = {.lex_state = 31}, + [2058] = {.lex_state = 17}, + [2059] = {.lex_state = 17}, + [2060] = {.lex_state = 18}, + [2061] = {.lex_state = 17}, + [2062] = {.lex_state = 18}, [2063] = {.lex_state = 31}, - [2064] = {.lex_state = 31}, + [2064] = {.lex_state = 18}, [2065] = {.lex_state = 31}, - [2066] = {.lex_state = 31}, - [2067] = {.lex_state = 17}, + [2066] = {.lex_state = 17}, + [2067] = {.lex_state = 31}, [2068] = {.lex_state = 31}, - [2069] = {.lex_state = 31}, - [2070] = {.lex_state = 17}, - [2071] = {.lex_state = 17}, + [2069] = {.lex_state = 17}, + [2070] = {.lex_state = 31}, + [2071] = {.lex_state = 31}, [2072] = {.lex_state = 31}, [2073] = {.lex_state = 31}, [2074] = {.lex_state = 31}, @@ -12700,827 +12764,827 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [2086] = {.lex_state = 31}, [2087] = {.lex_state = 31}, [2088] = {.lex_state = 31}, - [2089] = {.lex_state = 17}, + [2089] = {.lex_state = 31}, [2090] = {.lex_state = 31}, [2091] = {.lex_state = 31}, [2092] = {.lex_state = 31}, [2093] = {.lex_state = 31}, [2094] = {.lex_state = 31}, - [2095] = {.lex_state = 17}, - [2096] = {.lex_state = 17}, - [2097] = {.lex_state = 17}, - [2098] = {.lex_state = 17}, - [2099] = {.lex_state = 17}, - [2100] = {.lex_state = 17}, - [2101] = {.lex_state = 17}, - [2102] = {.lex_state = 17}, - [2103] = {.lex_state = 18}, - [2104] = {.lex_state = 18}, - [2105] = {.lex_state = 18}, - [2106] = {.lex_state = 18}, - [2107] = {.lex_state = 18}, - [2108] = {.lex_state = 31}, - [2109] = {.lex_state = 18}, + [2095] = {.lex_state = 31}, + [2096] = {.lex_state = 31}, + [2097] = {.lex_state = 31}, + [2098] = {.lex_state = 31}, + [2099] = {.lex_state = 31}, + [2100] = {.lex_state = 31}, + [2101] = {.lex_state = 31}, + [2102] = {.lex_state = 31}, + [2103] = {.lex_state = 31}, + [2104] = {.lex_state = 17}, + [2105] = {.lex_state = 17}, + [2106] = {.lex_state = 17}, + [2107] = {.lex_state = 17}, + [2108] = {.lex_state = 17}, + [2109] = {.lex_state = 17}, [2110] = {.lex_state = 31}, - [2111] = {.lex_state = 18}, - [2112] = {.lex_state = 18}, - [2113] = {.lex_state = 18}, - [2114] = {.lex_state = 18}, - [2115] = {.lex_state = 18}, - [2116] = {.lex_state = 19}, - [2117] = {.lex_state = 17}, - [2118] = {.lex_state = 18}, + [2111] = {.lex_state = 31}, + [2112] = {.lex_state = 17}, + [2113] = {.lex_state = 17}, + [2114] = {.lex_state = 17}, + [2115] = {.lex_state = 31}, + [2116] = {.lex_state = 31}, + [2117] = {.lex_state = 31}, + [2118] = {.lex_state = 17}, [2119] = {.lex_state = 18}, - [2120] = {.lex_state = 17}, - [2121] = {.lex_state = 17}, - [2122] = {.lex_state = 17}, - [2123] = {.lex_state = 17}, - [2124] = {.lex_state = 17}, - [2125] = {.lex_state = 17}, - [2126] = {.lex_state = 17}, - [2127] = {.lex_state = 17}, - [2128] = {.lex_state = 17}, - [2129] = {.lex_state = 17}, - [2130] = {.lex_state = 19}, - [2131] = {.lex_state = 31}, - [2132] = {.lex_state = 17}, + [2120] = {.lex_state = 18}, + [2121] = {.lex_state = 18}, + [2122] = {.lex_state = 18}, + [2123] = {.lex_state = 18}, + [2124] = {.lex_state = 18}, + [2125] = {.lex_state = 18}, + [2126] = {.lex_state = 18}, + [2127] = {.lex_state = 18}, + [2128] = {.lex_state = 18}, + [2129] = {.lex_state = 31}, + [2130] = {.lex_state = 18}, + [2131] = {.lex_state = 19}, + [2132] = {.lex_state = 31}, [2133] = {.lex_state = 18}, - [2134] = {.lex_state = 17}, + [2134] = {.lex_state = 18}, [2135] = {.lex_state = 17}, [2136] = {.lex_state = 17}, [2137] = {.lex_state = 17}, - [2138] = {.lex_state = 27}, + [2138] = {.lex_state = 17}, [2139] = {.lex_state = 17}, - [2140] = {.lex_state = 18}, - [2141] = {.lex_state = 19}, - [2142] = {.lex_state = 18}, - [2143] = {.lex_state = 24}, + [2140] = {.lex_state = 17}, + [2141] = {.lex_state = 17}, + [2142] = {.lex_state = 17}, + [2143] = {.lex_state = 17}, [2144] = {.lex_state = 31}, [2145] = {.lex_state = 17}, - [2146] = {.lex_state = 17}, - [2147] = {.lex_state = 17}, + [2146] = {.lex_state = 31}, + [2147] = {.lex_state = 18}, [2148] = {.lex_state = 27}, - [2149] = {.lex_state = 31}, - [2150] = {.lex_state = 17}, - [2151] = {.lex_state = 18}, - [2152] = {.lex_state = 24}, + [2149] = {.lex_state = 18}, + [2150] = {.lex_state = 27}, + [2151] = {.lex_state = 17}, + [2152] = {.lex_state = 18}, [2153] = {.lex_state = 17}, [2154] = {.lex_state = 17}, [2155] = {.lex_state = 18}, - [2156] = {.lex_state = 18}, - [2157] = {.lex_state = 18}, + [2156] = {.lex_state = 17}, + [2157] = {.lex_state = 17}, [2158] = {.lex_state = 18}, - [2159] = {.lex_state = 19}, - [2160] = {.lex_state = 18}, + [2159] = {.lex_state = 18}, + [2160] = {.lex_state = 17}, [2161] = {.lex_state = 18}, [2162] = {.lex_state = 18}, - [2163] = {.lex_state = 19}, + [2163] = {.lex_state = 31}, [2164] = {.lex_state = 17}, [2165] = {.lex_state = 18}, [2166] = {.lex_state = 17}, - [2167] = {.lex_state = 17}, + [2167] = {.lex_state = 31}, [2168] = {.lex_state = 17}, [2169] = {.lex_state = 17}, - [2170] = {.lex_state = 31}, - [2171] = {.lex_state = 24}, - [2172] = {.lex_state = 31}, + [2170] = {.lex_state = 18}, + [2171] = {.lex_state = 19}, + [2172] = {.lex_state = 19}, [2173] = {.lex_state = 18}, [2174] = {.lex_state = 17}, - [2175] = {.lex_state = 17}, - [2176] = {.lex_state = 24}, + [2175] = {.lex_state = 19}, + [2176] = {.lex_state = 19}, [2177] = {.lex_state = 17}, - [2178] = {.lex_state = 31}, - [2179] = {.lex_state = 31}, - [2180] = {.lex_state = 31}, - [2181] = {.lex_state = 31}, - [2182] = {.lex_state = 31}, - [2183] = {.lex_state = 31}, - [2184] = {.lex_state = 31}, - [2185] = {.lex_state = 31}, - [2186] = {.lex_state = 31}, - [2187] = {.lex_state = 31}, - [2188] = {.lex_state = 31}, + [2178] = {.lex_state = 18}, + [2179] = {.lex_state = 17}, + [2180] = {.lex_state = 18}, + [2181] = {.lex_state = 18}, + [2182] = {.lex_state = 17}, + [2183] = {.lex_state = 18}, + [2184] = {.lex_state = 17}, + [2185] = {.lex_state = 17}, + [2186] = {.lex_state = 18}, + [2187] = {.lex_state = 17}, + [2188] = {.lex_state = 17}, [2189] = {.lex_state = 31}, - [2190] = {.lex_state = 31}, - [2191] = {.lex_state = 31}, - [2192] = {.lex_state = 31}, + [2190] = {.lex_state = 18}, + [2191] = {.lex_state = 18}, + [2192] = {.lex_state = 17}, [2193] = {.lex_state = 31}, [2194] = {.lex_state = 31}, [2195] = {.lex_state = 31}, - [2196] = {.lex_state = 18}, - [2197] = {.lex_state = 18}, + [2196] = {.lex_state = 31}, + [2197] = {.lex_state = 31}, [2198] = {.lex_state = 31}, - [2199] = {.lex_state = 19}, - [2200] = {.lex_state = 17}, - [2201] = {.lex_state = 31}, - [2202] = {.lex_state = 27}, - [2203] = {.lex_state = 27}, + [2199] = {.lex_state = 31}, + [2200] = {.lex_state = 27}, + [2201] = {.lex_state = 18}, + [2202] = {.lex_state = 31}, + [2203] = {.lex_state = 17}, [2204] = {.lex_state = 31}, [2205] = {.lex_state = 31}, - [2206] = {.lex_state = 18}, - [2207] = {.lex_state = 31}, - [2208] = {.lex_state = 18}, - [2209] = {.lex_state = 17}, + [2206] = {.lex_state = 19}, + [2207] = {.lex_state = 27}, + [2208] = {.lex_state = 17}, + [2209] = {.lex_state = 31}, [2210] = {.lex_state = 31}, [2211] = {.lex_state = 31}, - [2212] = {.lex_state = 27}, + [2212] = {.lex_state = 31}, [2213] = {.lex_state = 31}, [2214] = {.lex_state = 31}, [2215] = {.lex_state = 27}, [2216] = {.lex_state = 31}, - [2217] = {.lex_state = 31}, + [2217] = {.lex_state = 17}, [2218] = {.lex_state = 31}, [2219] = {.lex_state = 31}, - [2220] = {.lex_state = 31}, + [2220] = {.lex_state = 18}, [2221] = {.lex_state = 31}, - [2222] = {.lex_state = 18}, - [2223] = {.lex_state = 18}, - [2224] = {.lex_state = 12}, + [2222] = {.lex_state = 31}, + [2223] = {.lex_state = 12}, + [2224] = {.lex_state = 31}, [2225] = {.lex_state = 31}, - [2226] = {.lex_state = 18}, + [2226] = {.lex_state = 31}, [2227] = {.lex_state = 31}, - [2228] = {.lex_state = 17}, + [2228] = {.lex_state = 31}, [2229] = {.lex_state = 31}, [2230] = {.lex_state = 31}, - [2231] = {.lex_state = 17}, - [2232] = {.lex_state = 19}, - [2233] = {.lex_state = 31}, + [2231] = {.lex_state = 31}, + [2232] = {.lex_state = 31}, + [2233] = {.lex_state = 8}, [2234] = {.lex_state = 31}, - [2235] = {.lex_state = 17}, - [2236] = {.lex_state = 8}, - [2237] = {.lex_state = 19}, - [2238] = {.lex_state = 17}, - [2239] = {.lex_state = 31}, - [2240] = {.lex_state = 17}, - [2241] = {.lex_state = 19}, + [2235] = {.lex_state = 31}, + [2236] = {.lex_state = 31}, + [2237] = {.lex_state = 17}, + [2238] = {.lex_state = 18}, + [2239] = {.lex_state = 17}, + [2240] = {.lex_state = 27}, + [2241] = {.lex_state = 8}, [2242] = {.lex_state = 8}, - [2243] = {.lex_state = 17}, - [2244] = {.lex_state = 17}, + [2243] = {.lex_state = 31}, + [2244] = {.lex_state = 31}, [2245] = {.lex_state = 17}, - [2246] = {.lex_state = 17}, - [2247] = {.lex_state = 17}, + [2246] = {.lex_state = 31}, + [2247] = {.lex_state = 18}, [2248] = {.lex_state = 17}, - [2249] = {.lex_state = 17}, - [2250] = {.lex_state = 17}, - [2251] = {.lex_state = 19}, - [2252] = {.lex_state = 31}, + [2249] = {.lex_state = 31}, + [2250] = {.lex_state = 27}, + [2251] = {.lex_state = 31}, + [2252] = {.lex_state = 17}, [2253] = {.lex_state = 17}, [2254] = {.lex_state = 17}, - [2255] = {.lex_state = 31}, + [2255] = {.lex_state = 17}, [2256] = {.lex_state = 17}, - [2257] = {.lex_state = 17}, - [2258] = {.lex_state = 31}, - [2259] = {.lex_state = 12}, - [2260] = {.lex_state = 8}, + [2257] = {.lex_state = 18}, + [2258] = {.lex_state = 12}, + [2259] = {.lex_state = 18}, + [2260] = {.lex_state = 19}, [2261] = {.lex_state = 17}, - [2262] = {.lex_state = 17}, - [2263] = {.lex_state = 17}, - [2264] = {.lex_state = 17}, - [2265] = {.lex_state = 27}, + [2262] = {.lex_state = 19}, + [2263] = {.lex_state = 72}, + [2264] = {.lex_state = 19}, + [2265] = {.lex_state = 19}, [2266] = {.lex_state = 17}, - [2267] = {.lex_state = 31}, - [2268] = {.lex_state = 18}, - [2269] = {.lex_state = 17}, - [2270] = {.lex_state = 31}, - [2271] = {.lex_state = 12}, + [2267] = {.lex_state = 18}, + [2268] = {.lex_state = 19}, + [2269] = {.lex_state = 31}, + [2270] = {.lex_state = 17}, + [2271] = {.lex_state = 17}, [2272] = {.lex_state = 17}, [2273] = {.lex_state = 17}, - [2274] = {.lex_state = 12}, - [2275] = {.lex_state = 12}, + [2274] = {.lex_state = 17}, + [2275] = {.lex_state = 17}, [2276] = {.lex_state = 17}, - [2277] = {.lex_state = 31}, - [2278] = {.lex_state = 31}, - [2279] = {.lex_state = 72}, - [2280] = {.lex_state = 31}, + [2277] = {.lex_state = 17}, + [2278] = {.lex_state = 17}, + [2279] = {.lex_state = 17}, + [2280] = {.lex_state = 17}, [2281] = {.lex_state = 17}, - [2282] = {.lex_state = 31}, - [2283] = {.lex_state = 19}, + [2282] = {.lex_state = 17}, + [2283] = {.lex_state = 12}, [2284] = {.lex_state = 17}, - [2285] = {.lex_state = 27}, + [2285] = {.lex_state = 31}, [2286] = {.lex_state = 17}, - [2287] = {.lex_state = 17}, - [2288] = {.lex_state = 27}, - [2289] = {.lex_state = 17}, + [2287] = {.lex_state = 18}, + [2288] = {.lex_state = 17}, + [2289] = {.lex_state = 12}, [2290] = {.lex_state = 17}, - [2291] = {.lex_state = 17}, + [2291] = {.lex_state = 12}, [2292] = {.lex_state = 17}, - [2293] = {.lex_state = 17}, + [2293] = {.lex_state = 18}, [2294] = {.lex_state = 17}, - [2295] = {.lex_state = 17}, - [2296] = {.lex_state = 24}, - [2297] = {.lex_state = 27}, - [2298] = {.lex_state = 27}, + [2295] = {.lex_state = 18}, + [2296] = {.lex_state = 18}, + [2297] = {.lex_state = 18}, + [2298] = {.lex_state = 17}, [2299] = {.lex_state = 17}, [2300] = {.lex_state = 17}, - [2301] = {.lex_state = 17}, - [2302] = {.lex_state = 17}, + [2301] = {.lex_state = 27}, + [2302] = {.lex_state = 27}, [2303] = {.lex_state = 17}, [2304] = {.lex_state = 17}, [2305] = {.lex_state = 17}, - [2306] = {.lex_state = 17}, - [2307] = {.lex_state = 27}, - [2308] = {.lex_state = 27}, + [2306] = {.lex_state = 27}, + [2307] = {.lex_state = 17}, + [2308] = {.lex_state = 17}, [2309] = {.lex_state = 17}, - [2310] = {.lex_state = 17}, - [2311] = {.lex_state = 12}, + [2310] = {.lex_state = 27}, + [2311] = {.lex_state = 17}, [2312] = {.lex_state = 17}, [2313] = {.lex_state = 17}, [2314] = {.lex_state = 17}, [2315] = {.lex_state = 17}, - [2316] = {.lex_state = 27}, + [2316] = {.lex_state = 17}, [2317] = {.lex_state = 17}, - [2318] = {.lex_state = 17}, + [2318] = {.lex_state = 27}, [2319] = {.lex_state = 17}, [2320] = {.lex_state = 17}, [2321] = {.lex_state = 17}, - [2322] = {.lex_state = 27}, - [2323] = {.lex_state = 27}, - [2324] = {.lex_state = 17}, - [2325] = {.lex_state = 27}, + [2322] = {.lex_state = 17}, + [2323] = {.lex_state = 17}, + [2324] = {.lex_state = 27}, + [2325] = {.lex_state = 17}, [2326] = {.lex_state = 17}, - [2327] = {.lex_state = 17}, + [2327] = {.lex_state = 27}, [2328] = {.lex_state = 17}, [2329] = {.lex_state = 27}, [2330] = {.lex_state = 17}, - [2331] = {.lex_state = 27}, + [2331] = {.lex_state = 17}, [2332] = {.lex_state = 17}, [2333] = {.lex_state = 17}, [2334] = {.lex_state = 17}, [2335] = {.lex_state = 17}, - [2336] = {.lex_state = 17}, + [2336] = {.lex_state = 12}, [2337] = {.lex_state = 17}, - [2338] = {.lex_state = 72}, - [2339] = {.lex_state = 72}, - [2340] = {.lex_state = 31}, - [2341] = {.lex_state = 72}, - [2342] = {.lex_state = 72}, - [2343] = {.lex_state = 19}, - [2344] = {.lex_state = 72}, - [2345] = {.lex_state = 72}, - [2346] = {.lex_state = 72}, + [2338] = {.lex_state = 27}, + [2339] = {.lex_state = 17}, + [2340] = {.lex_state = 17}, + [2341] = {.lex_state = 17}, + [2342] = {.lex_state = 17}, + [2343] = {.lex_state = 17}, + [2344] = {.lex_state = 17}, + [2345] = {.lex_state = 27}, + [2346] = {.lex_state = 27}, [2347] = {.lex_state = 17}, - [2348] = {.lex_state = 27}, + [2348] = {.lex_state = 17}, [2349] = {.lex_state = 17}, - [2350] = {.lex_state = 27}, - [2351] = {.lex_state = 72}, - [2352] = {.lex_state = 72}, - [2353] = {.lex_state = 72}, - [2354] = {.lex_state = 72}, - [2355] = {.lex_state = 72}, - [2356] = {.lex_state = 5}, - [2357] = {.lex_state = 5}, - [2358] = {.lex_state = 12}, - [2359] = {.lex_state = 12}, - [2360] = {.lex_state = 17}, - [2361] = {.lex_state = 17}, - [2362] = {.lex_state = 72}, - [2363] = {.lex_state = 17}, - [2364] = {.lex_state = 72}, + [2350] = {.lex_state = 17}, + [2351] = {.lex_state = 17}, + [2352] = {.lex_state = 27}, + [2353] = {.lex_state = 17}, + [2354] = {.lex_state = 17}, + [2355] = {.lex_state = 17}, + [2356] = {.lex_state = 72}, + [2357] = {.lex_state = 72}, + [2358] = {.lex_state = 19}, + [2359] = {.lex_state = 27}, + [2360] = {.lex_state = 27}, + [2361] = {.lex_state = 18}, + [2362] = {.lex_state = 18}, + [2363] = {.lex_state = 5}, + [2364] = {.lex_state = 17}, [2365] = {.lex_state = 72}, - [2366] = {.lex_state = 17}, - [2367] = {.lex_state = 31}, - [2368] = {.lex_state = 72}, - [2369] = {.lex_state = 27}, - [2370] = {.lex_state = 17}, - [2371] = {.lex_state = 27}, + [2366] = {.lex_state = 72}, + [2367] = {.lex_state = 72}, + [2368] = {.lex_state = 17}, + [2369] = {.lex_state = 72}, + [2370] = {.lex_state = 72}, + [2371] = {.lex_state = 17}, [2372] = {.lex_state = 17}, - [2373] = {.lex_state = 17}, + [2373] = {.lex_state = 72}, [2374] = {.lex_state = 72}, - [2375] = {.lex_state = 27}, - [2376] = {.lex_state = 169}, - [2377] = {.lex_state = 12}, - [2378] = {.lex_state = 72}, + [2375] = {.lex_state = 72}, + [2376] = {.lex_state = 72}, + [2377] = {.lex_state = 27}, + [2378] = {.lex_state = 27}, [2379] = {.lex_state = 72}, - [2380] = {.lex_state = 72}, + [2380] = {.lex_state = 27}, [2381] = {.lex_state = 27}, - [2382] = {.lex_state = 72}, - [2383] = {.lex_state = 27}, - [2384] = {.lex_state = 17}, + [2382] = {.lex_state = 17}, + [2383] = {.lex_state = 72}, + [2384] = {.lex_state = 72}, [2385] = {.lex_state = 72}, - [2386] = {.lex_state = 17}, + [2386] = {.lex_state = 72}, [2387] = {.lex_state = 72}, - [2388] = {.lex_state = 17}, - [2389] = {.lex_state = 5}, - [2390] = {.lex_state = 72}, + [2388] = {.lex_state = 72}, + [2389] = {.lex_state = 17}, + [2390] = {.lex_state = 17}, [2391] = {.lex_state = 17}, - [2392] = {.lex_state = 27}, - [2393] = {.lex_state = 72}, + [2392] = {.lex_state = 169}, + [2393] = {.lex_state = 17}, [2394] = {.lex_state = 72}, [2395] = {.lex_state = 72}, [2396] = {.lex_state = 72}, - [2397] = {.lex_state = 17}, - [2398] = {.lex_state = 17}, + [2397] = {.lex_state = 72}, + [2398] = {.lex_state = 27}, [2399] = {.lex_state = 72}, [2400] = {.lex_state = 72}, - [2401] = {.lex_state = 17}, - [2402] = {.lex_state = 31}, - [2403] = {.lex_state = 17}, - [2404] = {.lex_state = 31}, - [2405] = {.lex_state = 31}, - [2406] = {.lex_state = 23}, - [2407] = {.lex_state = 17}, - [2408] = {.lex_state = 19}, - [2409] = {.lex_state = 31}, - [2410] = {.lex_state = 20}, - [2411] = {.lex_state = 31}, - [2412] = {.lex_state = 17}, + [2401] = {.lex_state = 72}, + [2402] = {.lex_state = 72}, + [2403] = {.lex_state = 27}, + [2404] = {.lex_state = 5}, + [2405] = {.lex_state = 12}, + [2406] = {.lex_state = 72}, + [2407] = {.lex_state = 72}, + [2408] = {.lex_state = 5}, + [2409] = {.lex_state = 12}, + [2410] = {.lex_state = 17}, + [2411] = {.lex_state = 12}, + [2412] = {.lex_state = 72}, [2413] = {.lex_state = 17}, - [2414] = {.lex_state = 20}, + [2414] = {.lex_state = 72}, [2415] = {.lex_state = 17}, [2416] = {.lex_state = 17}, [2417] = {.lex_state = 17}, [2418] = {.lex_state = 17}, [2419] = {.lex_state = 17}, - [2420] = {.lex_state = 23}, - [2421] = {.lex_state = 17}, - [2422] = {.lex_state = 17}, - [2423] = {.lex_state = 17}, + [2420] = {.lex_state = 17}, + [2421] = {.lex_state = 19}, + [2422] = {.lex_state = 20}, + [2423] = {.lex_state = 31}, [2424] = {.lex_state = 17}, [2425] = {.lex_state = 17}, - [2426] = {.lex_state = 31}, + [2426] = {.lex_state = 17}, [2427] = {.lex_state = 17}, - [2428] = {.lex_state = 17}, + [2428] = {.lex_state = 24}, [2429] = {.lex_state = 17}, [2430] = {.lex_state = 17}, - [2431] = {.lex_state = 17}, + [2431] = {.lex_state = 31}, [2432] = {.lex_state = 17}, - [2433] = {.lex_state = 20}, + [2433] = {.lex_state = 17}, [2434] = {.lex_state = 17}, - [2435] = {.lex_state = 72}, + [2435] = {.lex_state = 17}, [2436] = {.lex_state = 17}, - [2437] = {.lex_state = 31}, + [2437] = {.lex_state = 20}, [2438] = {.lex_state = 17}, - [2439] = {.lex_state = 17}, + [2439] = {.lex_state = 19}, [2440] = {.lex_state = 17}, - [2441] = {.lex_state = 23}, - [2442] = {.lex_state = 31}, + [2441] = {.lex_state = 31}, + [2442] = {.lex_state = 17}, [2443] = {.lex_state = 17}, [2444] = {.lex_state = 17}, - [2445] = {.lex_state = 31}, + [2445] = {.lex_state = 17}, [2446] = {.lex_state = 17}, [2447] = {.lex_state = 17}, [2448] = {.lex_state = 17}, - [2449] = {.lex_state = 19}, - [2450] = {.lex_state = 27}, - [2451] = {.lex_state = 5}, - [2452] = {.lex_state = 5}, - [2453] = {.lex_state = 5}, - [2454] = {.lex_state = 31}, + [2449] = {.lex_state = 20}, + [2450] = {.lex_state = 17}, + [2451] = {.lex_state = 31}, + [2452] = {.lex_state = 17}, + [2453] = {.lex_state = 17}, + [2454] = {.lex_state = 17}, [2455] = {.lex_state = 17}, - [2456] = {.lex_state = 31}, - [2457] = {.lex_state = 20}, + [2456] = {.lex_state = 17}, + [2457] = {.lex_state = 17}, [2458] = {.lex_state = 17}, - [2459] = {.lex_state = 5}, - [2460] = {.lex_state = 31}, + [2459] = {.lex_state = 17}, + [2460] = {.lex_state = 20}, [2461] = {.lex_state = 17}, [2462] = {.lex_state = 17}, [2463] = {.lex_state = 17}, - [2464] = {.lex_state = 19}, - [2465] = {.lex_state = 19}, - [2466] = {.lex_state = 19}, + [2464] = {.lex_state = 17}, + [2465] = {.lex_state = 5}, + [2466] = {.lex_state = 23}, [2467] = {.lex_state = 17}, [2468] = {.lex_state = 19}, - [2469] = {.lex_state = 23}, + [2469] = {.lex_state = 19}, [2470] = {.lex_state = 31}, [2471] = {.lex_state = 17}, - [2472] = {.lex_state = 17}, - [2473] = {.lex_state = 17}, - [2474] = {.lex_state = 17}, - [2475] = {.lex_state = 19}, + [2472] = {.lex_state = 19}, + [2473] = {.lex_state = 23}, + [2474] = {.lex_state = 31}, + [2475] = {.lex_state = 17}, [2476] = {.lex_state = 17}, - [2477] = {.lex_state = 17}, - [2478] = {.lex_state = 17}, - [2479] = {.lex_state = 17}, - [2480] = {.lex_state = 17}, - [2481] = {.lex_state = 72}, - [2482] = {.lex_state = 15}, - [2483] = {.lex_state = 17}, - [2484] = {.lex_state = 17}, - [2485] = {.lex_state = 23}, + [2477] = {.lex_state = 19}, + [2478] = {.lex_state = 23}, + [2479] = {.lex_state = 23}, + [2480] = {.lex_state = 20}, + [2481] = {.lex_state = 31}, + [2482] = {.lex_state = 23}, + [2483] = {.lex_state = 15}, + [2484] = {.lex_state = 31}, + [2485] = {.lex_state = 31}, [2486] = {.lex_state = 17}, - [2487] = {.lex_state = 17}, - [2488] = {.lex_state = 17}, + [2487] = {.lex_state = 19}, + [2488] = {.lex_state = 23}, [2489] = {.lex_state = 17}, - [2490] = {.lex_state = 31}, - [2491] = {.lex_state = 17}, - [2492] = {.lex_state = 17}, - [2493] = {.lex_state = 23}, - [2494] = {.lex_state = 31}, - [2495] = {.lex_state = 20}, + [2490] = {.lex_state = 17}, + [2491] = {.lex_state = 15}, + [2492] = {.lex_state = 5}, + [2493] = {.lex_state = 31}, + [2494] = {.lex_state = 5}, + [2495] = {.lex_state = 5}, [2496] = {.lex_state = 17}, - [2497] = {.lex_state = 15}, - [2498] = {.lex_state = 31}, + [2497] = {.lex_state = 31}, + [2498] = {.lex_state = 24}, [2499] = {.lex_state = 17}, [2500] = {.lex_state = 17}, - [2501] = {.lex_state = 31}, - [2502] = {.lex_state = 17}, + [2501] = {.lex_state = 27}, + [2502] = {.lex_state = 20}, [2503] = {.lex_state = 17}, - [2504] = {.lex_state = 20}, - [2505] = {.lex_state = 17}, - [2506] = {.lex_state = 17}, + [2504] = {.lex_state = 17}, + [2505] = {.lex_state = 72}, + [2506] = {.lex_state = 24}, [2507] = {.lex_state = 17}, - [2508] = {.lex_state = 23}, - [2509] = {.lex_state = 31}, - [2510] = {.lex_state = 23}, + [2508] = {.lex_state = 17}, + [2509] = {.lex_state = 17}, + [2510] = {.lex_state = 24}, [2511] = {.lex_state = 31}, - [2512] = {.lex_state = 23}, + [2512] = {.lex_state = 17}, [2513] = {.lex_state = 17}, - [2514] = {.lex_state = 23}, - [2515] = {.lex_state = 5}, - [2516] = {.lex_state = 23}, - [2517] = {.lex_state = 23}, + [2514] = {.lex_state = 31}, + [2515] = {.lex_state = 17}, + [2516] = {.lex_state = 72}, + [2517] = {.lex_state = 31}, [2518] = {.lex_state = 17}, - [2519] = {.lex_state = 23}, - [2520] = {.lex_state = 23}, - [2521] = {.lex_state = 23}, + [2519] = {.lex_state = 31}, + [2520] = {.lex_state = 31}, + [2521] = {.lex_state = 31}, [2522] = {.lex_state = 17}, - [2523] = {.lex_state = 23}, + [2523] = {.lex_state = 17}, [2524] = {.lex_state = 23}, - [2525] = {.lex_state = 23}, - [2526] = {.lex_state = 31}, + [2525] = {.lex_state = 31}, + [2526] = {.lex_state = 17}, [2527] = {.lex_state = 17}, - [2528] = {.lex_state = 31}, + [2528] = {.lex_state = 8}, [2529] = {.lex_state = 17}, [2530] = {.lex_state = 17}, - [2531] = {.lex_state = 17}, - [2532] = {.lex_state = 8}, + [2531] = {.lex_state = 24}, + [2532] = {.lex_state = 31}, [2533] = {.lex_state = 17}, [2534] = {.lex_state = 31}, - [2535] = {.lex_state = 17}, + [2535] = {.lex_state = 31}, [2536] = {.lex_state = 31}, - [2537] = {.lex_state = 17}, - [2538] = {.lex_state = 8}, - [2539] = {.lex_state = 31}, - [2540] = {.lex_state = 31}, - [2541] = {.lex_state = 17}, - [2542] = {.lex_state = 8}, - [2543] = {.lex_state = 17}, - [2544] = {.lex_state = 31}, - [2545] = {.lex_state = 23}, + [2537] = {.lex_state = 31}, + [2538] = {.lex_state = 31}, + [2539] = {.lex_state = 23}, + [2540] = {.lex_state = 19}, + [2541] = {.lex_state = 23}, + [2542] = {.lex_state = 31}, + [2543] = {.lex_state = 23}, + [2544] = {.lex_state = 8}, + [2545] = {.lex_state = 31}, [2546] = {.lex_state = 31}, - [2547] = {.lex_state = 31}, - [2548] = {.lex_state = 23}, + [2547] = {.lex_state = 23}, + [2548] = {.lex_state = 17}, [2549] = {.lex_state = 31}, - [2550] = {.lex_state = 17}, - [2551] = {.lex_state = 17}, + [2550] = {.lex_state = 31}, + [2551] = {.lex_state = 31}, [2552] = {.lex_state = 17}, - [2553] = {.lex_state = 31}, - [2554] = {.lex_state = 17}, - [2555] = {.lex_state = 17}, - [2556] = {.lex_state = 23}, + [2553] = {.lex_state = 17}, + [2554] = {.lex_state = 31}, + [2555] = {.lex_state = 23}, + [2556] = {.lex_state = 31}, [2557] = {.lex_state = 23}, - [2558] = {.lex_state = 23}, - [2559] = {.lex_state = 17}, - [2560] = {.lex_state = 31}, - [2561] = {.lex_state = 17}, + [2558] = {.lex_state = 17}, + [2559] = {.lex_state = 31}, + [2560] = {.lex_state = 17}, + [2561] = {.lex_state = 23}, [2562] = {.lex_state = 17}, [2563] = {.lex_state = 17}, - [2564] = {.lex_state = 19}, + [2564] = {.lex_state = 17}, [2565] = {.lex_state = 23}, [2566] = {.lex_state = 31}, - [2567] = {.lex_state = 23}, + [2567] = {.lex_state = 31}, [2568] = {.lex_state = 31}, - [2569] = {.lex_state = 17}, - [2570] = {.lex_state = 23}, - [2571] = {.lex_state = 23}, - [2572] = {.lex_state = 31}, + [2569] = {.lex_state = 19}, + [2570] = {.lex_state = 5}, + [2571] = {.lex_state = 17}, + [2572] = {.lex_state = 23}, [2573] = {.lex_state = 8}, - [2574] = {.lex_state = 17}, - [2575] = {.lex_state = 19}, - [2576] = {.lex_state = 31}, - [2577] = {.lex_state = 5}, - [2578] = {.lex_state = 23}, - [2579] = {.lex_state = 31}, - [2580] = {.lex_state = 17}, - [2581] = {.lex_state = 72}, - [2582] = {.lex_state = 23}, - [2583] = {.lex_state = 23}, - [2584] = {.lex_state = 19}, - [2585] = {.lex_state = 31}, - [2586] = {.lex_state = 23}, + [2574] = {.lex_state = 23}, + [2575] = {.lex_state = 31}, + [2576] = {.lex_state = 8}, + [2577] = {.lex_state = 17}, + [2578] = {.lex_state = 17}, + [2579] = {.lex_state = 17}, + [2580] = {.lex_state = 31}, + [2581] = {.lex_state = 23}, + [2582] = {.lex_state = 31}, + [2583] = {.lex_state = 31}, + [2584] = {.lex_state = 23}, + [2585] = {.lex_state = 17}, + [2586] = {.lex_state = 19}, [2587] = {.lex_state = 31}, - [2588] = {.lex_state = 72}, - [2589] = {.lex_state = 31}, + [2588] = {.lex_state = 23}, + [2589] = {.lex_state = 17}, [2590] = {.lex_state = 23}, - [2591] = {.lex_state = 31}, - [2592] = {.lex_state = 17}, - [2593] = {.lex_state = 23}, - [2594] = {.lex_state = 17}, + [2591] = {.lex_state = 17}, + [2592] = {.lex_state = 23}, + [2593] = {.lex_state = 72}, + [2594] = {.lex_state = 23}, [2595] = {.lex_state = 23}, - [2596] = {.lex_state = 31}, + [2596] = {.lex_state = 17}, [2597] = {.lex_state = 31}, - [2598] = {.lex_state = 19}, - [2599] = {.lex_state = 23, .external_lex_state = 3}, - [2600] = {.lex_state = 23}, - [2601] = {.lex_state = 19}, - [2602] = {.lex_state = 17}, - [2603] = {.lex_state = 31}, - [2604] = {.lex_state = 23}, - [2605] = {.lex_state = 19}, + [2598] = {.lex_state = 23}, + [2599] = {.lex_state = 17}, + [2600] = {.lex_state = 17}, + [2601] = {.lex_state = 31}, + [2602] = {.lex_state = 23}, + [2603] = {.lex_state = 23}, + [2604] = {.lex_state = 31}, + [2605] = {.lex_state = 17}, [2606] = {.lex_state = 23}, - [2607] = {.lex_state = 17}, - [2608] = {.lex_state = 31}, + [2607] = {.lex_state = 23}, + [2608] = {.lex_state = 72}, [2609] = {.lex_state = 23}, - [2610] = {.lex_state = 8}, - [2611] = {.lex_state = 31}, - [2612] = {.lex_state = 31}, - [2613] = {.lex_state = 17}, - [2614] = {.lex_state = 17}, + [2610] = {.lex_state = 23}, + [2611] = {.lex_state = 23}, + [2612] = {.lex_state = 23}, + [2613] = {.lex_state = 19}, + [2614] = {.lex_state = 23}, [2615] = {.lex_state = 31}, - [2616] = {.lex_state = 8}, - [2617] = {.lex_state = 8}, - [2618] = {.lex_state = 23}, + [2616] = {.lex_state = 23}, + [2617] = {.lex_state = 23}, + [2618] = {.lex_state = 19}, [2619] = {.lex_state = 17}, [2620] = {.lex_state = 17}, - [2621] = {.lex_state = 8}, - [2622] = {.lex_state = 17}, - [2623] = {.lex_state = 72}, - [2624] = {.lex_state = 23}, - [2625] = {.lex_state = 23}, - [2626] = {.lex_state = 72}, - [2627] = {.lex_state = 23}, - [2628] = {.lex_state = 23, .external_lex_state = 4}, - [2629] = {.lex_state = 72}, - [2630] = {.lex_state = 23}, - [2631] = {.lex_state = 8}, - [2632] = {.lex_state = 8}, - [2633] = {.lex_state = 8}, - [2634] = {.lex_state = 8}, + [2621] = {.lex_state = 19}, + [2622] = {.lex_state = 23}, + [2623] = {.lex_state = 23, .external_lex_state = 3}, + [2624] = {.lex_state = 17}, + [2625] = {.lex_state = 31}, + [2626] = {.lex_state = 17}, + [2627] = {.lex_state = 31}, + [2628] = {.lex_state = 8}, + [2629] = {.lex_state = 17}, + [2630] = {.lex_state = 5}, + [2631] = {.lex_state = 17}, + [2632] = {.lex_state = 23}, + [2633] = {.lex_state = 17}, + [2634] = {.lex_state = 31}, [2635] = {.lex_state = 23, .external_lex_state = 4}, - [2636] = {.lex_state = 17}, - [2637] = {.lex_state = 23}, - [2638] = {.lex_state = 17}, - [2639] = {.lex_state = 23}, + [2636] = {.lex_state = 31}, + [2637] = {.lex_state = 5}, + [2638] = {.lex_state = 72}, + [2639] = {.lex_state = 17}, [2640] = {.lex_state = 17}, - [2641] = {.lex_state = 23}, - [2642] = {.lex_state = 23, .external_lex_state = 4}, - [2643] = {.lex_state = 17}, + [2641] = {.lex_state = 72}, + [2642] = {.lex_state = 31}, + [2643] = {.lex_state = 23}, [2644] = {.lex_state = 23}, - [2645] = {.lex_state = 23}, + [2645] = {.lex_state = 23, .external_lex_state = 4}, [2646] = {.lex_state = 17}, - [2647] = {.lex_state = 5}, + [2647] = {.lex_state = 23}, [2648] = {.lex_state = 17}, - [2649] = {.lex_state = 72}, - [2650] = {.lex_state = 23, .external_lex_state = 4}, - [2651] = {.lex_state = 17}, - [2652] = {.lex_state = 23}, - [2653] = {.lex_state = 17}, - [2654] = {.lex_state = 23}, - [2655] = {.lex_state = 72}, - [2656] = {.lex_state = 72}, + [2649] = {.lex_state = 23}, + [2650] = {.lex_state = 23}, + [2651] = {.lex_state = 19}, + [2652] = {.lex_state = 19}, + [2653] = {.lex_state = 5}, + [2654] = {.lex_state = 19}, + [2655] = {.lex_state = 19}, + [2656] = {.lex_state = 18}, [2657] = {.lex_state = 72}, - [2658] = {.lex_state = 23, .external_lex_state = 4}, - [2659] = {.lex_state = 72}, - [2660] = {.lex_state = 72}, - [2661] = {.lex_state = 8}, - [2662] = {.lex_state = 8}, - [2663] = {.lex_state = 8}, + [2658] = {.lex_state = 72}, + [2659] = {.lex_state = 23}, + [2660] = {.lex_state = 23}, + [2661] = {.lex_state = 23}, + [2662] = {.lex_state = 23, .external_lex_state = 4}, + [2663] = {.lex_state = 72}, [2664] = {.lex_state = 8}, - [2665] = {.lex_state = 23}, + [2665] = {.lex_state = 17}, [2666] = {.lex_state = 17}, - [2667] = {.lex_state = 17}, + [2667] = {.lex_state = 8}, [2668] = {.lex_state = 17}, - [2669] = {.lex_state = 8}, + [2669] = {.lex_state = 72}, [2670] = {.lex_state = 72}, - [2671] = {.lex_state = 72}, - [2672] = {.lex_state = 72}, - [2673] = {.lex_state = 23, .external_lex_state = 4}, - [2674] = {.lex_state = 31}, - [2675] = {.lex_state = 8}, - [2676] = {.lex_state = 23, .external_lex_state = 4}, + [2671] = {.lex_state = 8}, + [2672] = {.lex_state = 17}, + [2673] = {.lex_state = 8}, + [2674] = {.lex_state = 17}, + [2675] = {.lex_state = 72}, + [2676] = {.lex_state = 31}, [2677] = {.lex_state = 8}, [2678] = {.lex_state = 8}, [2679] = {.lex_state = 8}, - [2680] = {.lex_state = 72}, - [2681] = {.lex_state = 72}, + [2680] = {.lex_state = 17}, + [2681] = {.lex_state = 8}, [2682] = {.lex_state = 17}, - [2683] = {.lex_state = 18}, - [2684] = {.lex_state = 23}, + [2683] = {.lex_state = 17}, + [2684] = {.lex_state = 17}, [2685] = {.lex_state = 23}, - [2686] = {.lex_state = 8}, - [2687] = {.lex_state = 31}, - [2688] = {.lex_state = 8}, + [2686] = {.lex_state = 17}, + [2687] = {.lex_state = 17}, + [2688] = {.lex_state = 23}, [2689] = {.lex_state = 8}, - [2690] = {.lex_state = 19}, + [2690] = {.lex_state = 8}, [2691] = {.lex_state = 8}, - [2692] = {.lex_state = 8}, - [2693] = {.lex_state = 23}, - [2694] = {.lex_state = 23}, - [2695] = {.lex_state = 72}, - [2696] = {.lex_state = 72}, - [2697] = {.lex_state = 8}, + [2692] = {.lex_state = 72}, + [2693] = {.lex_state = 72}, + [2694] = {.lex_state = 72}, + [2695] = {.lex_state = 17}, + [2696] = {.lex_state = 18}, + [2697] = {.lex_state = 17}, [2698] = {.lex_state = 17}, [2699] = {.lex_state = 23}, - [2700] = {.lex_state = 8}, - [2701] = {.lex_state = 8}, - [2702] = {.lex_state = 23}, - [2703] = {.lex_state = 23}, - [2704] = {.lex_state = 5}, + [2700] = {.lex_state = 17}, + [2701] = {.lex_state = 23}, + [2702] = {.lex_state = 17}, + [2703] = {.lex_state = 17}, + [2704] = {.lex_state = 17}, [2705] = {.lex_state = 8}, [2706] = {.lex_state = 17}, - [2707] = {.lex_state = 72}, - [2708] = {.lex_state = 72}, - [2709] = {.lex_state = 72}, + [2707] = {.lex_state = 17}, + [2708] = {.lex_state = 23}, + [2709] = {.lex_state = 8}, [2710] = {.lex_state = 17}, - [2711] = {.lex_state = 17}, + [2711] = {.lex_state = 23}, [2712] = {.lex_state = 17}, - [2713] = {.lex_state = 23}, - [2714] = {.lex_state = 23, .external_lex_state = 4}, + [2713] = {.lex_state = 72}, + [2714] = {.lex_state = 72}, [2715] = {.lex_state = 17}, - [2716] = {.lex_state = 23}, - [2717] = {.lex_state = 72}, + [2716] = {.lex_state = 17}, + [2717] = {.lex_state = 23}, [2718] = {.lex_state = 17}, [2719] = {.lex_state = 17}, - [2720] = {.lex_state = 23, .external_lex_state = 4}, - [2721] = {.lex_state = 72}, + [2720] = {.lex_state = 17}, + [2721] = {.lex_state = 17}, [2722] = {.lex_state = 17}, - [2723] = {.lex_state = 8}, - [2724] = {.lex_state = 23, .external_lex_state = 4}, - [2725] = {.lex_state = 31}, - [2726] = {.lex_state = 8}, - [2727] = {.lex_state = 17}, - [2728] = {.lex_state = 23, .external_lex_state = 4}, - [2729] = {.lex_state = 8}, - [2730] = {.lex_state = 8}, - [2731] = {.lex_state = 23}, - [2732] = {.lex_state = 72}, - [2733] = {.lex_state = 33}, - [2734] = {.lex_state = 33}, - [2735] = {.lex_state = 8}, - [2736] = {.lex_state = 72}, + [2723] = {.lex_state = 17}, + [2724] = {.lex_state = 17}, + [2725] = {.lex_state = 33}, + [2726] = {.lex_state = 33}, + [2727] = {.lex_state = 19}, + [2728] = {.lex_state = 72}, + [2729] = {.lex_state = 19}, + [2730] = {.lex_state = 19}, + [2731] = {.lex_state = 17}, + [2732] = {.lex_state = 17}, + [2733] = {.lex_state = 19}, + [2734] = {.lex_state = 17}, + [2735] = {.lex_state = 17}, + [2736] = {.lex_state = 17}, [2737] = {.lex_state = 17}, - [2738] = {.lex_state = 72}, + [2738] = {.lex_state = 8}, [2739] = {.lex_state = 8}, - [2740] = {.lex_state = 17}, - [2741] = {.lex_state = 17}, - [2742] = {.lex_state = 72}, - [2743] = {.lex_state = 17}, - [2744] = {.lex_state = 17}, - [2745] = {.lex_state = 31}, + [2740] = {.lex_state = 19}, + [2741] = {.lex_state = 23, .external_lex_state = 4}, + [2742] = {.lex_state = 23}, + [2743] = {.lex_state = 19}, + [2744] = {.lex_state = 19}, + [2745] = {.lex_state = 72}, [2746] = {.lex_state = 72}, - [2747] = {.lex_state = 17}, - [2748] = {.lex_state = 72}, - [2749] = {.lex_state = 17}, - [2750] = {.lex_state = 8}, - [2751] = {.lex_state = 31}, - [2752] = {.lex_state = 19}, + [2747] = {.lex_state = 19}, + [2748] = {.lex_state = 17}, + [2749] = {.lex_state = 8}, + [2750] = {.lex_state = 23}, + [2751] = {.lex_state = 23}, + [2752] = {.lex_state = 23, .external_lex_state = 4}, [2753] = {.lex_state = 8}, [2754] = {.lex_state = 23}, - [2755] = {.lex_state = 31}, - [2756] = {.lex_state = 72}, - [2757] = {.lex_state = 33}, - [2758] = {.lex_state = 8}, + [2755] = {.lex_state = 17}, + [2756] = {.lex_state = 23}, + [2757] = {.lex_state = 8}, + [2758] = {.lex_state = 18}, [2759] = {.lex_state = 72}, - [2760] = {.lex_state = 17}, + [2760] = {.lex_state = 23}, [2761] = {.lex_state = 23}, - [2762] = {.lex_state = 72}, + [2762] = {.lex_state = 17}, [2763] = {.lex_state = 23}, - [2764] = {.lex_state = 8}, - [2765] = {.lex_state = 8}, - [2766] = {.lex_state = 17}, - [2767] = {.lex_state = 72}, - [2768] = {.lex_state = 23}, - [2769] = {.lex_state = 31}, + [2764] = {.lex_state = 17}, + [2765] = {.lex_state = 23, .external_lex_state = 4}, + [2766] = {.lex_state = 72}, + [2767] = {.lex_state = 8}, + [2768] = {.lex_state = 8}, + [2769] = {.lex_state = 8}, [2770] = {.lex_state = 8}, - [2771] = {.lex_state = 23}, - [2772] = {.lex_state = 23, .external_lex_state = 4}, - [2773] = {.lex_state = 33}, - [2774] = {.lex_state = 23}, - [2775] = {.lex_state = 23}, - [2776] = {.lex_state = 72}, + [2771] = {.lex_state = 72}, + [2772] = {.lex_state = 17}, + [2773] = {.lex_state = 8}, + [2774] = {.lex_state = 8}, + [2775] = {.lex_state = 8}, + [2776] = {.lex_state = 23}, [2777] = {.lex_state = 8}, - [2778] = {.lex_state = 23}, - [2779] = {.lex_state = 72}, - [2780] = {.lex_state = 17}, - [2781] = {.lex_state = 23}, - [2782] = {.lex_state = 72}, - [2783] = {.lex_state = 19}, - [2784] = {.lex_state = 23}, - [2785] = {.lex_state = 19}, - [2786] = {.lex_state = 72}, + [2778] = {.lex_state = 72}, + [2779] = {.lex_state = 23}, + [2780] = {.lex_state = 31}, + [2781] = {.lex_state = 17}, + [2782] = {.lex_state = 17}, + [2783] = {.lex_state = 17}, + [2784] = {.lex_state = 17}, + [2785] = {.lex_state = 17}, + [2786] = {.lex_state = 17}, [2787] = {.lex_state = 23}, [2788] = {.lex_state = 23}, - [2789] = {.lex_state = 18}, - [2790] = {.lex_state = 19}, + [2789] = {.lex_state = 23, .external_lex_state = 4}, + [2790] = {.lex_state = 23}, [2791] = {.lex_state = 17}, - [2792] = {.lex_state = 72}, + [2792] = {.lex_state = 23}, [2793] = {.lex_state = 72}, - [2794] = {.lex_state = 17}, + [2794] = {.lex_state = 23}, [2795] = {.lex_state = 23}, - [2796] = {.lex_state = 31}, - [2797] = {.lex_state = 23}, - [2798] = {.lex_state = 23}, - [2799] = {.lex_state = 17}, - [2800] = {.lex_state = 17}, - [2801] = {.lex_state = 18}, - [2802] = {.lex_state = 72}, - [2803] = {.lex_state = 18}, - [2804] = {.lex_state = 72}, + [2796] = {.lex_state = 23}, + [2797] = {.lex_state = 23, .external_lex_state = 4}, + [2798] = {.lex_state = 72}, + [2799] = {.lex_state = 8}, + [2800] = {.lex_state = 8}, + [2801] = {.lex_state = 8}, + [2802] = {.lex_state = 8}, + [2803] = {.lex_state = 72}, + [2804] = {.lex_state = 23}, [2805] = {.lex_state = 17}, - [2806] = {.lex_state = 5}, + [2806] = {.lex_state = 23}, [2807] = {.lex_state = 17}, - [2808] = {.lex_state = 19}, - [2809] = {.lex_state = 23}, - [2810] = {.lex_state = 17}, - [2811] = {.lex_state = 19}, - [2812] = {.lex_state = 19}, - [2813] = {.lex_state = 31}, - [2814] = {.lex_state = 8}, - [2815] = {.lex_state = 17}, - [2816] = {.lex_state = 19}, - [2817] = {.lex_state = 5}, + [2808] = {.lex_state = 23}, + [2809] = {.lex_state = 23, .external_lex_state = 4}, + [2810] = {.lex_state = 23}, + [2811] = {.lex_state = 17}, + [2812] = {.lex_state = 72}, + [2813] = {.lex_state = 72}, + [2814] = {.lex_state = 72}, + [2815] = {.lex_state = 23, .external_lex_state = 4}, + [2816] = {.lex_state = 72}, + [2817] = {.lex_state = 8}, [2818] = {.lex_state = 8}, - [2819] = {.lex_state = 23}, - [2820] = {.lex_state = 17}, - [2821] = {.lex_state = 23}, - [2822] = {.lex_state = 23}, - [2823] = {.lex_state = 17}, - [2824] = {.lex_state = 72}, - [2825] = {.lex_state = 17}, + [2819] = {.lex_state = 8}, + [2820] = {.lex_state = 8}, + [2821] = {.lex_state = 17}, + [2822] = {.lex_state = 72}, + [2823] = {.lex_state = 23}, + [2824] = {.lex_state = 23, .external_lex_state = 4}, + [2825] = {.lex_state = 23, .external_lex_state = 4}, [2826] = {.lex_state = 17}, - [2827] = {.lex_state = 19}, - [2828] = {.lex_state = 72}, - [2829] = {.lex_state = 5}, - [2830] = {.lex_state = 19}, - [2831] = {.lex_state = 17}, - [2832] = {.lex_state = 17}, - [2833] = {.lex_state = 17}, - [2834] = {.lex_state = 72}, - [2835] = {.lex_state = 23}, - [2836] = {.lex_state = 19}, - [2837] = {.lex_state = 17}, - [2838] = {.lex_state = 8}, - [2839] = {.lex_state = 72}, - [2840] = {.lex_state = 17}, + [2827] = {.lex_state = 8}, + [2828] = {.lex_state = 8}, + [2829] = {.lex_state = 8}, + [2830] = {.lex_state = 8}, + [2831] = {.lex_state = 8}, + [2832] = {.lex_state = 8}, + [2833] = {.lex_state = 8}, + [2834] = {.lex_state = 23, .external_lex_state = 4}, + [2835] = {.lex_state = 17}, + [2836] = {.lex_state = 72}, + [2837] = {.lex_state = 72}, + [2838] = {.lex_state = 33}, + [2839] = {.lex_state = 5}, + [2840] = {.lex_state = 72}, [2841] = {.lex_state = 17}, - [2842] = {.lex_state = 18}, - [2843] = {.lex_state = 23}, - [2844] = {.lex_state = 17}, - [2845] = {.lex_state = 8}, - [2846] = {.lex_state = 23}, + [2842] = {.lex_state = 23}, + [2843] = {.lex_state = 17}, + [2844] = {.lex_state = 23}, + [2845] = {.lex_state = 17}, + [2846] = {.lex_state = 31}, [2847] = {.lex_state = 72}, - [2848] = {.lex_state = 72}, - [2849] = {.lex_state = 8}, - [2850] = {.lex_state = 17}, - [2851] = {.lex_state = 17}, - [2852] = {.lex_state = 23}, - [2853] = {.lex_state = 23}, - [2854] = {.lex_state = 17}, - [2855] = {.lex_state = 23}, - [2856] = {.lex_state = 17}, + [2848] = {.lex_state = 31}, + [2849] = {.lex_state = 72}, + [2850] = {.lex_state = 23}, + [2851] = {.lex_state = 23}, + [2852] = {.lex_state = 72}, + [2853] = {.lex_state = 31}, + [2854] = {.lex_state = 72}, + [2855] = {.lex_state = 72}, + [2856] = {.lex_state = 31}, [2857] = {.lex_state = 8}, - [2858] = {.lex_state = 23}, - [2859] = {.lex_state = 17}, - [2860] = {.lex_state = 23}, - [2861] = {.lex_state = 17}, + [2858] = {.lex_state = 31}, + [2859] = {.lex_state = 23}, + [2860] = {.lex_state = 72}, + [2861] = {.lex_state = 23}, [2862] = {.lex_state = 17}, - [2863] = {.lex_state = 17}, - [2864] = {.lex_state = 17}, - [2865] = {.lex_state = 8}, - [2866] = {.lex_state = 8}, - [2867] = {.lex_state = 72}, - [2868] = {.lex_state = 8}, - [2869] = {.lex_state = 23}, - [2870] = {.lex_state = 17}, - [2871] = {.lex_state = 31}, - [2872] = {.lex_state = 8}, - [2873] = {.lex_state = 23}, - [2874] = {.lex_state = 23}, - [2875] = {.lex_state = 31}, - [2876] = {.lex_state = 23, .external_lex_state = 4}, + [2863] = {.lex_state = 23}, + [2864] = {.lex_state = 23}, + [2865] = {.lex_state = 17}, + [2866] = {.lex_state = 72}, + [2867] = {.lex_state = 23}, + [2868] = {.lex_state = 23}, + [2869] = {.lex_state = 33}, + [2870] = {.lex_state = 23}, + [2871] = {.lex_state = 23}, + [2872] = {.lex_state = 18}, + [2873] = {.lex_state = 8}, + [2874] = {.lex_state = 18}, + [2875] = {.lex_state = 23}, + [2876] = {.lex_state = 5}, [2877] = {.lex_state = 17}, [2878] = {.lex_state = 72}, [2879] = {.lex_state = 72}, - [2880] = {.lex_state = 72}, + [2880] = {.lex_state = 17}, [2881] = {.lex_state = 72}, - [2882] = {.lex_state = 72}, - [2883] = {.lex_state = 19}, - [2884] = {.lex_state = 72}, - [2885] = {.lex_state = 72}, - [2886] = {.lex_state = 72}, - [2887] = {.lex_state = 72}, - [2888] = {.lex_state = 72}, - [2889] = {.lex_state = 17}, + [2882] = {.lex_state = 5}, + [2883] = {.lex_state = 17}, + [2884] = {.lex_state = 17}, + [2885] = {.lex_state = 23}, + [2886] = {.lex_state = 23}, + [2887] = {.lex_state = 17}, + [2888] = {.lex_state = 17}, + [2889] = {.lex_state = 8}, [2890] = {.lex_state = 72}, - [2891] = {.lex_state = 72}, - [2892] = {.lex_state = 72}, - [2893] = {.lex_state = 72}, + [2891] = {.lex_state = 17}, + [2892] = {.lex_state = 8}, + [2893] = {.lex_state = 8}, [2894] = {.lex_state = 72}, - [2895] = {.lex_state = 72}, - [2896] = {.lex_state = 17}, - [2897] = {.lex_state = 72}, - [2898] = {.lex_state = 72}, - [2899] = {.lex_state = 17}, - [2900] = {.lex_state = 17}, + [2895] = {.lex_state = 31}, + [2896] = {.lex_state = 8}, + [2897] = {.lex_state = 17}, + [2898] = {.lex_state = 23}, + [2899] = {.lex_state = 8}, + [2900] = {.lex_state = 72}, [2901] = {.lex_state = 72}, [2902] = {.lex_state = 72}, - [2903] = {.lex_state = 72}, + [2903] = {.lex_state = 17}, [2904] = {.lex_state = 17}, - [2905] = {.lex_state = 17}, + [2905] = {.lex_state = 72}, [2906] = {.lex_state = 72}, [2907] = {.lex_state = 72}, [2908] = {.lex_state = 72}, - [2909] = {.lex_state = 19}, + [2909] = {.lex_state = 72}, [2910] = {.lex_state = 72}, [2911] = {.lex_state = 72}, [2912] = {.lex_state = 72}, @@ -13536,41 +13600,41 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [2922] = {.lex_state = 72}, [2923] = {.lex_state = 72}, [2924] = {.lex_state = 72}, - [2925] = {.lex_state = 72}, - [2926] = {.lex_state = 17}, - [2927] = {.lex_state = 19}, + [2925] = {.lex_state = 17}, + [2926] = {.lex_state = 8}, + [2927] = {.lex_state = 17}, [2928] = {.lex_state = 72}, - [2929] = {.lex_state = 72}, - [2930] = {.lex_state = 19}, + [2929] = {.lex_state = 20}, + [2930] = {.lex_state = 17}, [2931] = {.lex_state = 72}, - [2932] = {.lex_state = 20}, - [2933] = {.lex_state = 19}, + [2932] = {.lex_state = 17}, + [2933] = {.lex_state = 72}, [2934] = {.lex_state = 72}, - [2935] = {.lex_state = 19}, - [2936] = {.lex_state = 72}, - [2937] = {.lex_state = 72}, - [2938] = {.lex_state = 19}, - [2939] = {.lex_state = 19}, + [2935] = {.lex_state = 72}, + [2936] = {.lex_state = 19}, + [2937] = {.lex_state = 8}, + [2938] = {.lex_state = 72}, + [2939] = {.lex_state = 72}, [2940] = {.lex_state = 72}, [2941] = {.lex_state = 72}, - [2942] = {.lex_state = 72}, - [2943] = {.lex_state = 17}, - [2944] = {.lex_state = 72}, + [2942] = {.lex_state = 8}, + [2943] = {.lex_state = 72}, + [2944] = {.lex_state = 19}, [2945] = {.lex_state = 72}, [2946] = {.lex_state = 72}, - [2947] = {.lex_state = 72}, + [2947] = {.lex_state = 17}, [2948] = {.lex_state = 72}, - [2949] = {.lex_state = 17}, + [2949] = {.lex_state = 23, .external_lex_state = 4}, [2950] = {.lex_state = 72}, [2951] = {.lex_state = 72}, [2952] = {.lex_state = 72}, - [2953] = {.lex_state = 8}, + [2953] = {.lex_state = 72}, [2954] = {.lex_state = 72}, - [2955] = {.lex_state = 72}, + [2955] = {.lex_state = 8}, [2956] = {.lex_state = 72}, [2957] = {.lex_state = 72}, - [2958] = {.lex_state = 17}, - [2959] = {.lex_state = 72}, + [2958] = {.lex_state = 72}, + [2959] = {.lex_state = 17}, [2960] = {.lex_state = 72}, [2961] = {.lex_state = 72}, [2962] = {.lex_state = 72}, @@ -13579,338 +13643,338 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [2965] = {.lex_state = 72}, [2966] = {.lex_state = 72}, [2967] = {.lex_state = 72}, - [2968] = {.lex_state = 72}, + [2968] = {.lex_state = 17}, [2969] = {.lex_state = 72}, - [2970] = {.lex_state = 20}, + [2970] = {.lex_state = 72}, [2971] = {.lex_state = 72}, - [2972] = {.lex_state = 19}, - [2973] = {.lex_state = 19}, - [2974] = {.lex_state = 72}, + [2972] = {.lex_state = 72}, + [2973] = {.lex_state = 72}, + [2974] = {.lex_state = 19}, [2975] = {.lex_state = 72}, - [2976] = {.lex_state = 72}, + [2976] = {.lex_state = 19}, [2977] = {.lex_state = 72}, [2978] = {.lex_state = 72}, [2979] = {.lex_state = 72}, [2980] = {.lex_state = 72}, - [2981] = {.lex_state = 72}, - [2982] = {.lex_state = 23, .external_lex_state = 4}, - [2983] = {.lex_state = 72}, + [2981] = {.lex_state = 17}, + [2982] = {.lex_state = 19}, + [2983] = {.lex_state = 19}, [2984] = {.lex_state = 72}, [2985] = {.lex_state = 72}, [2986] = {.lex_state = 72}, - [2987] = {.lex_state = 19}, + [2987] = {.lex_state = 72}, [2988] = {.lex_state = 72}, - [2989] = {.lex_state = 72}, + [2989] = {.lex_state = 19}, [2990] = {.lex_state = 72}, - [2991] = {.lex_state = 19}, + [2991] = {.lex_state = 72}, [2992] = {.lex_state = 72}, [2993] = {.lex_state = 72}, [2994] = {.lex_state = 72}, [2995] = {.lex_state = 72}, [2996] = {.lex_state = 19}, - [2997] = {.lex_state = 19}, + [2997] = {.lex_state = 72}, [2998] = {.lex_state = 72}, [2999] = {.lex_state = 72}, - [3000] = {.lex_state = 19}, + [3000] = {.lex_state = 72}, [3001] = {.lex_state = 72}, [3002] = {.lex_state = 72}, - [3003] = {.lex_state = 72}, - [3004] = {.lex_state = 72}, - [3005] = {.lex_state = 72}, + [3003] = {.lex_state = 19}, + [3004] = {.lex_state = 19}, + [3005] = {.lex_state = 19}, [3006] = {.lex_state = 72}, - [3007] = {.lex_state = 19}, - [3008] = {.lex_state = 17}, + [3007] = {.lex_state = 72}, + [3008] = {.lex_state = 72}, [3009] = {.lex_state = 72}, - [3010] = {.lex_state = 19}, - [3011] = {.lex_state = 17}, - [3012] = {.lex_state = 72}, - [3013] = {.lex_state = 19}, - [3014] = {.lex_state = 19}, - [3015] = {.lex_state = 19}, - [3016] = {.lex_state = 19}, - [3017] = {.lex_state = 19}, - [3018] = {.lex_state = 72}, - [3019] = {.lex_state = 19}, - [3020] = {.lex_state = 23}, - [3021] = {.lex_state = 72}, - [3022] = {.lex_state = 8}, + [3010] = {.lex_state = 72}, + [3011] = {.lex_state = 72}, + [3012] = {.lex_state = 19}, + [3013] = {.lex_state = 72}, + [3014] = {.lex_state = 72}, + [3015] = {.lex_state = 72}, + [3016] = {.lex_state = 17}, + [3017] = {.lex_state = 72}, + [3018] = {.lex_state = 19}, + [3019] = {.lex_state = 72}, + [3020] = {.lex_state = 72}, + [3021] = {.lex_state = 20}, + [3022] = {.lex_state = 72}, [3023] = {.lex_state = 72}, - [3024] = {.lex_state = 72}, - [3025] = {.lex_state = 72}, + [3024] = {.lex_state = 19}, + [3025] = {.lex_state = 19}, [3026] = {.lex_state = 72}, - [3027] = {.lex_state = 72}, - [3028] = {.lex_state = 72}, - [3029] = {.lex_state = 72}, + [3027] = {.lex_state = 19}, + [3028] = {.lex_state = 19}, + [3029] = {.lex_state = 19}, [3030] = {.lex_state = 72}, [3031] = {.lex_state = 72}, [3032] = {.lex_state = 72}, - [3033] = {.lex_state = 72}, + [3033] = {.lex_state = 17}, [3034] = {.lex_state = 72}, [3035] = {.lex_state = 72}, - [3036] = {.lex_state = 72}, + [3036] = {.lex_state = 17}, [3037] = {.lex_state = 72}, [3038] = {.lex_state = 72}, - [3039] = {.lex_state = 31}, + [3039] = {.lex_state = 72}, [3040] = {.lex_state = 72}, - [3041] = {.lex_state = 72}, + [3041] = {.lex_state = 8}, [3042] = {.lex_state = 72}, [3043] = {.lex_state = 72}, - [3044] = {.lex_state = 72}, + [3044] = {.lex_state = 17}, [3045] = {.lex_state = 72}, [3046] = {.lex_state = 72}, [3047] = {.lex_state = 72}, [3048] = {.lex_state = 72}, [3049] = {.lex_state = 72}, [3050] = {.lex_state = 72}, - [3051] = {.lex_state = 72}, + [3051] = {.lex_state = 8}, [3052] = {.lex_state = 72}, - [3053] = {.lex_state = 31}, - [3054] = {.lex_state = 19}, - [3055] = {.lex_state = 8}, - [3056] = {.lex_state = 72}, + [3053] = {.lex_state = 72}, + [3054] = {.lex_state = 72}, + [3055] = {.lex_state = 72}, + [3056] = {.lex_state = 17}, [3057] = {.lex_state = 72}, - [3058] = {.lex_state = 19}, + [3058] = {.lex_state = 72}, [3059] = {.lex_state = 72}, [3060] = {.lex_state = 72}, [3061] = {.lex_state = 17}, [3062] = {.lex_state = 72}, [3063] = {.lex_state = 72}, - [3064] = {.lex_state = 17}, + [3064] = {.lex_state = 72}, [3065] = {.lex_state = 72}, - [3066] = {.lex_state = 72}, + [3066] = {.lex_state = 17}, [3067] = {.lex_state = 72}, - [3068] = {.lex_state = 19}, - [3069] = {.lex_state = 8}, - [3070] = {.lex_state = 20}, - [3071] = {.lex_state = 72}, - [3072] = {.lex_state = 19}, + [3068] = {.lex_state = 72}, + [3069] = {.lex_state = 72}, + [3070] = {.lex_state = 72}, + [3071] = {.lex_state = 17}, + [3072] = {.lex_state = 72}, [3073] = {.lex_state = 72}, - [3074] = {.lex_state = 72}, + [3074] = {.lex_state = 8}, [3075] = {.lex_state = 72}, [3076] = {.lex_state = 72}, [3077] = {.lex_state = 72}, - [3078] = {.lex_state = 20}, + [3078] = {.lex_state = 72}, [3079] = {.lex_state = 72}, [3080] = {.lex_state = 72}, - [3081] = {.lex_state = 19}, + [3081] = {.lex_state = 72}, [3082] = {.lex_state = 72}, [3083] = {.lex_state = 72}, [3084] = {.lex_state = 17}, [3085] = {.lex_state = 72}, - [3086] = {.lex_state = 17}, + [3086] = {.lex_state = 72}, [3087] = {.lex_state = 72}, [3088] = {.lex_state = 72}, [3089] = {.lex_state = 72}, [3090] = {.lex_state = 19}, - [3091] = {.lex_state = 23}, - [3092] = {.lex_state = 72}, - [3093] = {.lex_state = 8}, - [3094] = {.lex_state = 8}, - [3095] = {.lex_state = 72}, - [3096] = {.lex_state = 19}, - [3097] = {.lex_state = 72}, + [3091] = {.lex_state = 72}, + [3092] = {.lex_state = 19}, + [3093] = {.lex_state = 72}, + [3094] = {.lex_state = 72}, + [3095] = {.lex_state = 17}, + [3096] = {.lex_state = 72}, + [3097] = {.lex_state = 17}, [3098] = {.lex_state = 72}, [3099] = {.lex_state = 17}, - [3100] = {.lex_state = 17}, - [3101] = {.lex_state = 72}, - [3102] = {.lex_state = 72}, - [3103] = {.lex_state = 23}, - [3104] = {.lex_state = 72}, - [3105] = {.lex_state = 72}, - [3106] = {.lex_state = 72}, - [3107] = {.lex_state = 72}, + [3100] = {.lex_state = 8}, + [3101] = {.lex_state = 19}, + [3102] = {.lex_state = 19}, + [3103] = {.lex_state = 19}, + [3104] = {.lex_state = 19}, + [3105] = {.lex_state = 19}, + [3106] = {.lex_state = 19}, + [3107] = {.lex_state = 8}, [3108] = {.lex_state = 72}, [3109] = {.lex_state = 72}, - [3110] = {.lex_state = 8}, + [3110] = {.lex_state = 72}, [3111] = {.lex_state = 72}, [3112] = {.lex_state = 72}, [3113] = {.lex_state = 72}, [3114] = {.lex_state = 72}, - [3115] = {.lex_state = 23}, + [3115] = {.lex_state = 72}, [3116] = {.lex_state = 72}, [3117] = {.lex_state = 72}, - [3118] = {.lex_state = 72}, + [3118] = {.lex_state = 8}, [3119] = {.lex_state = 72}, - [3120] = {.lex_state = 72}, + [3120] = {.lex_state = 20}, [3121] = {.lex_state = 72}, [3122] = {.lex_state = 72}, [3123] = {.lex_state = 72}, [3124] = {.lex_state = 72}, [3125] = {.lex_state = 72}, - [3126] = {.lex_state = 17}, - [3127] = {.lex_state = 19}, - [3128] = {.lex_state = 19}, + [3126] = {.lex_state = 72}, + [3127] = {.lex_state = 31}, + [3128] = {.lex_state = 20}, [3129] = {.lex_state = 72}, - [3130] = {.lex_state = 19}, - [3131] = {.lex_state = 19}, - [3132] = {.lex_state = 19}, - [3133] = {.lex_state = 19}, + [3130] = {.lex_state = 72}, + [3131] = {.lex_state = 17}, + [3132] = {.lex_state = 72}, + [3133] = {.lex_state = 17}, [3134] = {.lex_state = 72}, [3135] = {.lex_state = 72}, - [3136] = {.lex_state = 17}, + [3136] = {.lex_state = 72}, [3137] = {.lex_state = 72}, [3138] = {.lex_state = 72}, [3139] = {.lex_state = 72}, - [3140] = {.lex_state = 72}, + [3140] = {.lex_state = 17}, [3141] = {.lex_state = 72}, [3142] = {.lex_state = 72}, [3143] = {.lex_state = 72}, - [3144] = {.lex_state = 72}, + [3144] = {.lex_state = 23}, [3145] = {.lex_state = 72}, - [3146] = {.lex_state = 17}, + [3146] = {.lex_state = 72}, [3147] = {.lex_state = 72}, - [3148] = {.lex_state = 72}, - [3149] = {.lex_state = 72}, - [3150] = {.lex_state = 72}, - [3151] = {.lex_state = 72}, - [3152] = {.lex_state = 17}, - [3153] = {.lex_state = 20}, - [3154] = {.lex_state = 8}, - [3155] = {.lex_state = 8}, - [3156] = {.lex_state = 17}, + [3148] = {.lex_state = 19}, + [3149] = {.lex_state = 19}, + [3150] = {.lex_state = 23}, + [3151] = {.lex_state = 19}, + [3152] = {.lex_state = 19}, + [3153] = {.lex_state = 19}, + [3154] = {.lex_state = 72}, + [3155] = {.lex_state = 19}, + [3156] = {.lex_state = 72}, [3157] = {.lex_state = 72}, [3158] = {.lex_state = 72}, [3159] = {.lex_state = 72}, [3160] = {.lex_state = 72}, [3161] = {.lex_state = 72}, [3162] = {.lex_state = 72}, - [3163] = {.lex_state = 72}, - [3164] = {.lex_state = 17}, - [3165] = {.lex_state = 8}, + [3163] = {.lex_state = 23}, + [3164] = {.lex_state = 72}, + [3165] = {.lex_state = 23}, [3166] = {.lex_state = 72}, - [3167] = {.lex_state = 17}, - [3168] = {.lex_state = 8}, + [3167] = {.lex_state = 72}, + [3168] = {.lex_state = 72}, [3169] = {.lex_state = 72}, - [3170] = {.lex_state = 17}, + [3170] = {.lex_state = 72}, [3171] = {.lex_state = 72}, - [3172] = {.lex_state = 8}, - [3173] = {.lex_state = 72}, - [3174] = {.lex_state = 8}, + [3172] = {.lex_state = 19}, + [3173] = {.lex_state = 17}, + [3174] = {.lex_state = 31}, [3175] = {.lex_state = 72}, - [3176] = {.lex_state = 17}, + [3176] = {.lex_state = 72}, [3177] = {.lex_state = 72}, - [3178] = {.lex_state = 8}, + [3178] = {.lex_state = 72}, [3179] = {.lex_state = 72}, [3180] = {.lex_state = 72}, - [3181] = {.lex_state = 17}, - [3182] = {.lex_state = 17}, - [3183] = {.lex_state = 19}, - [3184] = {.lex_state = 72}, - [3185] = {.lex_state = 72}, + [3181] = {.lex_state = 72}, + [3182] = {.lex_state = 72}, + [3183] = {.lex_state = 72}, + [3184] = {.lex_state = 17}, + [3185] = {.lex_state = 17}, [3186] = {.lex_state = 72}, - [3187] = {.lex_state = 72}, + [3187] = {.lex_state = 8}, [3188] = {.lex_state = 72}, [3189] = {.lex_state = 72}, - [3190] = {.lex_state = 72}, + [3190] = {.lex_state = 17}, [3191] = {.lex_state = 72}, - [3192] = {.lex_state = 72}, - [3193] = {.lex_state = 72}, + [3192] = {.lex_state = 8}, + [3193] = {.lex_state = 8}, [3194] = {.lex_state = 72}, - [3195] = {.lex_state = 72}, + [3195] = {.lex_state = 17}, [3196] = {.lex_state = 72}, [3197] = {.lex_state = 72}, - [3198] = {.lex_state = 17}, - [3199] = {.lex_state = 17}, - [3200] = {.lex_state = 17}, - [3201] = {.lex_state = 17}, - [3202] = {.lex_state = 31}, - [3203] = {.lex_state = 17}, + [3198] = {.lex_state = 72}, + [3199] = {.lex_state = 8}, + [3200] = {.lex_state = 20}, + [3201] = {.lex_state = 72}, + [3202] = {.lex_state = 72}, + [3203] = {.lex_state = 72}, [3204] = {.lex_state = 17}, [3205] = {.lex_state = 72}, - [3206] = {.lex_state = 72}, + [3206] = {.lex_state = 19}, [3207] = {.lex_state = 72}, [3208] = {.lex_state = 72}, - [3209] = {.lex_state = 72}, - [3210] = {.lex_state = 31}, - [3211] = {.lex_state = 72}, - [3212] = {.lex_state = 17}, - [3213] = {.lex_state = 17}, + [3209] = {.lex_state = 19}, + [3210] = {.lex_state = 19}, + [3211] = {.lex_state = 17}, + [3212] = {.lex_state = 19}, + [3213] = {.lex_state = 72}, [3214] = {.lex_state = 72}, - [3215] = {.lex_state = 20}, + [3215] = {.lex_state = 72}, [3216] = {.lex_state = 72}, [3217] = {.lex_state = 72}, [3218] = {.lex_state = 72}, - [3219] = {.lex_state = 72}, + [3219] = {.lex_state = 17}, [3220] = {.lex_state = 17}, [3221] = {.lex_state = 72}, - [3222] = {.lex_state = 72}, + [3222] = {.lex_state = 17}, [3223] = {.lex_state = 72}, [3224] = {.lex_state = 17}, [3225] = {.lex_state = 72}, [3226] = {.lex_state = 72}, [3227] = {.lex_state = 72}, [3228] = {.lex_state = 72}, - [3229] = {.lex_state = 17}, + [3229] = {.lex_state = 72}, [3230] = {.lex_state = 72}, - [3231] = {.lex_state = 72}, + [3231] = {.lex_state = 8}, [3232] = {.lex_state = 72}, - [3233] = {.lex_state = 72}, + [3233] = {.lex_state = 23, .external_lex_state = 5}, [3234] = {.lex_state = 72}, - [3235] = {.lex_state = 17}, - [3236] = {.lex_state = 17}, - [3237] = {.lex_state = 72}, + [3235] = {.lex_state = 72}, + [3236] = {.lex_state = 72}, + [3237] = {.lex_state = 17}, [3238] = {.lex_state = 17}, [3239] = {.lex_state = 17}, - [3240] = {.lex_state = 72}, - [3241] = {.lex_state = 17}, - [3242] = {.lex_state = 8}, - [3243] = {.lex_state = 17}, - [3244] = {.lex_state = 17}, - [3245] = {.lex_state = 72}, - [3246] = {.lex_state = 72}, + [3240] = {.lex_state = 17}, + [3241] = {.lex_state = 72}, + [3242] = {.lex_state = 72}, + [3243] = {.lex_state = 23, .external_lex_state = 5}, + [3244] = {.lex_state = 72}, + [3245] = {.lex_state = 17}, + [3246] = {.lex_state = 17}, [3247] = {.lex_state = 72}, - [3248] = {.lex_state = 23, .external_lex_state = 5}, - [3249] = {.lex_state = 72}, + [3248] = {.lex_state = 17}, + [3249] = {.lex_state = 17}, [3250] = {.lex_state = 72}, - [3251] = {.lex_state = 17}, - [3252] = {.lex_state = 17}, + [3251] = {.lex_state = 72}, + [3252] = {.lex_state = 31}, [3253] = {.lex_state = 72}, - [3254] = {.lex_state = 17}, - [3255] = {.lex_state = 17}, - [3256] = {.lex_state = 17}, - [3257] = {.lex_state = 72}, - [3258] = {.lex_state = 72}, - [3259] = {.lex_state = 17}, - [3260] = {.lex_state = 17}, - [3261] = {.lex_state = 72}, + [3254] = {.lex_state = 72}, + [3255] = {.lex_state = 72}, + [3256] = {.lex_state = 72}, + [3257] = {.lex_state = 17}, + [3258] = {.lex_state = 17}, + [3259] = {.lex_state = 72}, + [3260] = {.lex_state = 72}, + [3261] = {.lex_state = 17}, [3262] = {.lex_state = 72}, - [3263] = {.lex_state = 72}, - [3264] = {.lex_state = 72}, - [3265] = {.lex_state = 17}, - [3266] = {.lex_state = 72}, - [3267] = {.lex_state = 72}, + [3263] = {.lex_state = 17}, + [3264] = {.lex_state = 17}, + [3265] = {.lex_state = 72}, + [3266] = {.lex_state = 17}, + [3267] = {.lex_state = 17}, [3268] = {.lex_state = 17}, - [3269] = {.lex_state = 17}, - [3270] = {.lex_state = 17}, + [3269] = {.lex_state = 72}, + [3270] = {.lex_state = 72}, [3271] = {.lex_state = 72}, - [3272] = {.lex_state = 23}, + [3272] = {.lex_state = 17}, [3273] = {.lex_state = 72}, - [3274] = {.lex_state = 72}, + [3274] = {.lex_state = 17}, [3275] = {.lex_state = 17}, - [3276] = {.lex_state = 72}, + [3276] = {.lex_state = 17}, [3277] = {.lex_state = 72}, [3278] = {.lex_state = 17}, [3279] = {.lex_state = 17}, - [3280] = {.lex_state = 17}, + [3280] = {.lex_state = 72}, [3281] = {.lex_state = 17}, - [3282] = {.lex_state = 72}, - [3283] = {.lex_state = 72}, - [3284] = {.lex_state = 72}, + [3282] = {.lex_state = 17}, + [3283] = {.lex_state = 17}, + [3284] = {.lex_state = 17}, [3285] = {.lex_state = 72}, [3286] = {.lex_state = 72}, [3287] = {.lex_state = 17}, - [3288] = {.lex_state = 72}, + [3288] = {.lex_state = 17}, [3289] = {.lex_state = 17}, [3290] = {.lex_state = 17}, [3291] = {.lex_state = 17}, [3292] = {.lex_state = 17}, - [3293] = {.lex_state = 72}, - [3294] = {.lex_state = 72}, - [3295] = {.lex_state = 72}, - [3296] = {.lex_state = 72}, - [3297] = {.lex_state = 72}, - [3298] = {.lex_state = 72}, - [3299] = {.lex_state = 72}, + [3293] = {.lex_state = 17}, + [3294] = {.lex_state = 17}, + [3295] = {.lex_state = 17}, + [3296] = {.lex_state = 17}, + [3297] = {.lex_state = 17}, + [3298] = {.lex_state = 17}, + [3299] = {.lex_state = 17}, [3300] = {.lex_state = 17}, [3301] = {.lex_state = 17}, [3302] = {.lex_state = 17}, @@ -13919,290 +13983,290 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [3305] = {.lex_state = 72}, [3306] = {.lex_state = 72}, [3307] = {.lex_state = 72}, - [3308] = {.lex_state = 17}, - [3309] = {.lex_state = 17}, - [3310] = {.lex_state = 17}, - [3311] = {.lex_state = 17}, - [3312] = {.lex_state = 17}, - [3313] = {.lex_state = 17}, + [3308] = {.lex_state = 31}, + [3309] = {.lex_state = 72}, + [3310] = {.lex_state = 72}, + [3311] = {.lex_state = 7}, + [3312] = {.lex_state = 7}, + [3313] = {.lex_state = 72}, [3314] = {.lex_state = 17}, - [3315] = {.lex_state = 17}, - [3316] = {.lex_state = 17}, - [3317] = {.lex_state = 17}, + [3315] = {.lex_state = 72}, + [3316] = {.lex_state = 72}, + [3317] = {.lex_state = 72}, [3318] = {.lex_state = 17}, - [3319] = {.lex_state = 17}, - [3320] = {.lex_state = 17}, - [3321] = {.lex_state = 17}, + [3319] = {.lex_state = 72}, + [3320] = {.lex_state = 72}, + [3321] = {.lex_state = 72}, [3322] = {.lex_state = 17}, - [3323] = {.lex_state = 17}, - [3324] = {.lex_state = 17}, - [3325] = {.lex_state = 72}, + [3323] = {.lex_state = 72}, + [3324] = {.lex_state = 72}, + [3325] = {.lex_state = 17}, [3326] = {.lex_state = 72}, - [3327] = {.lex_state = 72}, + [3327] = {.lex_state = 17}, [3328] = {.lex_state = 72}, - [3329] = {.lex_state = 72}, - [3330] = {.lex_state = 72}, + [3329] = {.lex_state = 23, .external_lex_state = 5}, + [3330] = {.lex_state = 17}, [3331] = {.lex_state = 72}, - [3332] = {.lex_state = 17}, - [3333] = {.lex_state = 72}, - [3334] = {.lex_state = 72}, - [3335] = {.lex_state = 17}, + [3332] = {.lex_state = 72}, + [3333] = {.lex_state = 17}, + [3334] = {.lex_state = 17}, + [3335] = {.lex_state = 72}, [3336] = {.lex_state = 72}, - [3337] = {.lex_state = 72}, - [3338] = {.lex_state = 72}, + [3337] = {.lex_state = 17}, + [3338] = {.lex_state = 17}, [3339] = {.lex_state = 72}, [3340] = {.lex_state = 72}, - [3341] = {.lex_state = 17}, + [3341] = {.lex_state = 72}, [3342] = {.lex_state = 17}, [3343] = {.lex_state = 17}, - [3344] = {.lex_state = 72}, + [3344] = {.lex_state = 17}, [3345] = {.lex_state = 72}, [3346] = {.lex_state = 72}, - [3347] = {.lex_state = 72, .external_lex_state = 6}, - [3348] = {.lex_state = 17}, + [3347] = {.lex_state = 17}, + [3348] = {.lex_state = 72}, [3349] = {.lex_state = 72}, - [3350] = {.lex_state = 17}, + [3350] = {.lex_state = 72}, [3351] = {.lex_state = 72}, [3352] = {.lex_state = 72}, [3353] = {.lex_state = 72}, - [3354] = {.lex_state = 72}, + [3354] = {.lex_state = 31}, [3355] = {.lex_state = 72}, [3356] = {.lex_state = 72}, - [3357] = {.lex_state = 17}, + [3357] = {.lex_state = 72}, [3358] = {.lex_state = 31}, - [3359] = {.lex_state = 31}, + [3359] = {.lex_state = 72}, [3360] = {.lex_state = 72}, - [3361] = {.lex_state = 7}, - [3362] = {.lex_state = 7}, + [3361] = {.lex_state = 72}, + [3362] = {.lex_state = 72}, [3363] = {.lex_state = 72}, - [3364] = {.lex_state = 72}, - [3365] = {.lex_state = 17}, + [3364] = {.lex_state = 17}, + [3365] = {.lex_state = 72}, [3366] = {.lex_state = 72}, - [3367] = {.lex_state = 72}, + [3367] = {.lex_state = 17}, [3368] = {.lex_state = 72}, - [3369] = {.lex_state = 72}, + [3369] = {.lex_state = 20}, [3370] = {.lex_state = 72}, [3371] = {.lex_state = 72}, [3372] = {.lex_state = 72}, - [3373] = {.lex_state = 23, .external_lex_state = 5}, + [3373] = {.lex_state = 72}, [3374] = {.lex_state = 72}, - [3375] = {.lex_state = 17}, + [3375] = {.lex_state = 72}, [3376] = {.lex_state = 72}, - [3377] = {.lex_state = 17}, - [3378] = {.lex_state = 17}, - [3379] = {.lex_state = 17}, - [3380] = {.lex_state = 72}, + [3377] = {.lex_state = 72}, + [3378] = {.lex_state = 72}, + [3379] = {.lex_state = 72}, + [3380] = {.lex_state = 17}, [3381] = {.lex_state = 72}, [3382] = {.lex_state = 72}, [3383] = {.lex_state = 72}, - [3384] = {.lex_state = 23, .external_lex_state = 5}, - [3385] = {.lex_state = 8}, - [3386] = {.lex_state = 72}, + [3384] = {.lex_state = 72}, + [3385] = {.lex_state = 72}, + [3386] = {.lex_state = 17}, [3387] = {.lex_state = 72}, - [3388] = {.lex_state = 72}, - [3389] = {.lex_state = 72}, - [3390] = {.lex_state = 72}, + [3388] = {.lex_state = 17}, + [3389] = {.lex_state = 17}, + [3390] = {.lex_state = 17}, [3391] = {.lex_state = 72}, - [3392] = {.lex_state = 72}, - [3393] = {.lex_state = 72}, + [3392] = {.lex_state = 17}, + [3393] = {.lex_state = 17}, [3394] = {.lex_state = 72}, - [3395] = {.lex_state = 23}, + [3395] = {.lex_state = 72}, [3396] = {.lex_state = 72}, - [3397] = {.lex_state = 17}, - [3398] = {.lex_state = 17}, - [3399] = {.lex_state = 72}, + [3397] = {.lex_state = 72}, + [3398] = {.lex_state = 72}, + [3399] = {.lex_state = 17}, [3400] = {.lex_state = 72}, - [3401] = {.lex_state = 72}, + [3401] = {.lex_state = 17}, [3402] = {.lex_state = 72}, [3403] = {.lex_state = 17}, - [3404] = {.lex_state = 17}, - [3405] = {.lex_state = 31}, + [3404] = {.lex_state = 72}, + [3405] = {.lex_state = 72}, [3406] = {.lex_state = 72}, - [3407] = {.lex_state = 17}, + [3407] = {.lex_state = 72}, [3408] = {.lex_state = 72}, [3409] = {.lex_state = 72}, - [3410] = {.lex_state = 17}, + [3410] = {.lex_state = 72}, [3411] = {.lex_state = 72}, - [3412] = {.lex_state = 17}, - [3413] = {.lex_state = 17}, + [3412] = {.lex_state = 72}, + [3413] = {.lex_state = 72}, [3414] = {.lex_state = 72}, - [3415] = {.lex_state = 17}, + [3415] = {.lex_state = 72}, [3416] = {.lex_state = 72}, - [3417] = {.lex_state = 72}, + [3417] = {.lex_state = 31}, [3418] = {.lex_state = 72}, [3419] = {.lex_state = 72}, [3420] = {.lex_state = 72}, [3421] = {.lex_state = 72}, [3422] = {.lex_state = 72}, - [3423] = {.lex_state = 17}, + [3423] = {.lex_state = 72}, [3424] = {.lex_state = 72}, [3425] = {.lex_state = 72}, - [3426] = {.lex_state = 72, .external_lex_state = 6}, + [3426] = {.lex_state = 72}, [3427] = {.lex_state = 72}, [3428] = {.lex_state = 72}, - [3429] = {.lex_state = 17}, - [3430] = {.lex_state = 72}, - [3431] = {.lex_state = 72}, - [3432] = {.lex_state = 17}, - [3433] = {.lex_state = 72}, + [3429] = {.lex_state = 72}, + [3430] = {.lex_state = 17}, + [3431] = {.lex_state = 17}, + [3432] = {.lex_state = 72}, + [3433] = {.lex_state = 17}, [3434] = {.lex_state = 72}, [3435] = {.lex_state = 72}, - [3436] = {.lex_state = 72}, + [3436] = {.lex_state = 17}, [3437] = {.lex_state = 72}, [3438] = {.lex_state = 72}, [3439] = {.lex_state = 72}, [3440] = {.lex_state = 72}, - [3441] = {.lex_state = 72}, - [3442] = {.lex_state = 72}, + [3441] = {.lex_state = 31}, + [3442] = {.lex_state = 17}, [3443] = {.lex_state = 72}, - [3444] = {.lex_state = 17}, + [3444] = {.lex_state = 72}, [3445] = {.lex_state = 72}, - [3446] = {.lex_state = 17}, - [3447] = {.lex_state = 72}, - [3448] = {.lex_state = 72}, - [3449] = {.lex_state = 17}, - [3450] = {.lex_state = 72}, + [3446] = {.lex_state = 72}, + [3447] = {.lex_state = 17}, + [3448] = {.lex_state = 72, .external_lex_state = 6}, + [3449] = {.lex_state = 72}, + [3450] = {.lex_state = 17}, [3451] = {.lex_state = 17}, - [3452] = {.lex_state = 17}, + [3452] = {.lex_state = 72}, [3453] = {.lex_state = 72}, - [3454] = {.lex_state = 72}, + [3454] = {.lex_state = 17}, [3455] = {.lex_state = 72}, - [3456] = {.lex_state = 72}, - [3457] = {.lex_state = 17}, + [3456] = {.lex_state = 17}, + [3457] = {.lex_state = 72}, [3458] = {.lex_state = 17}, - [3459] = {.lex_state = 17}, - [3460] = {.lex_state = 17}, - [3461] = {.lex_state = 72}, - [3462] = {.lex_state = 17}, - [3463] = {.lex_state = 72}, - [3464] = {.lex_state = 17}, + [3459] = {.lex_state = 72}, + [3460] = {.lex_state = 72}, + [3461] = {.lex_state = 17}, + [3462] = {.lex_state = 23}, + [3463] = {.lex_state = 17}, + [3464] = {.lex_state = 72}, [3465] = {.lex_state = 17}, [3466] = {.lex_state = 17}, - [3467] = {.lex_state = 31}, + [3467] = {.lex_state = 72}, [3468] = {.lex_state = 72}, - [3469] = {.lex_state = 17}, - [3470] = {.lex_state = 17}, + [3469] = {.lex_state = 72}, + [3470] = {.lex_state = 72}, [3471] = {.lex_state = 17}, [3472] = {.lex_state = 72}, - [3473] = {.lex_state = 17}, - [3474] = {.lex_state = 17}, - [3475] = {.lex_state = 72}, - [3476] = {.lex_state = 17}, - [3477] = {.lex_state = 17}, + [3473] = {.lex_state = 72}, + [3474] = {.lex_state = 72}, + [3475] = {.lex_state = 17}, + [3476] = {.lex_state = 72}, + [3477] = {.lex_state = 72}, [3478] = {.lex_state = 17}, - [3479] = {.lex_state = 17}, - [3480] = {.lex_state = 72}, - [3481] = {.lex_state = 72}, + [3479] = {.lex_state = 72}, + [3480] = {.lex_state = 8}, + [3481] = {.lex_state = 17}, [3482] = {.lex_state = 17}, - [3483] = {.lex_state = 72}, - [3484] = {.lex_state = 17}, + [3483] = {.lex_state = 17}, + [3484] = {.lex_state = 72}, [3485] = {.lex_state = 72}, [3486] = {.lex_state = 72}, [3487] = {.lex_state = 72}, - [3488] = {.lex_state = 72}, - [3489] = {.lex_state = 72}, - [3490] = {.lex_state = 72}, - [3491] = {.lex_state = 17}, + [3488] = {.lex_state = 17}, + [3489] = {.lex_state = 17}, + [3490] = {.lex_state = 17}, + [3491] = {.lex_state = 72}, [3492] = {.lex_state = 17}, - [3493] = {.lex_state = 72}, + [3493] = {.lex_state = 17}, [3494] = {.lex_state = 72}, - [3495] = {.lex_state = 72}, + [3495] = {.lex_state = 17}, [3496] = {.lex_state = 17}, [3497] = {.lex_state = 17}, - [3498] = {.lex_state = 72}, - [3499] = {.lex_state = 17}, - [3500] = {.lex_state = 17}, + [3498] = {.lex_state = 17}, + [3499] = {.lex_state = 72}, + [3500] = {.lex_state = 72}, [3501] = {.lex_state = 72}, - [3502] = {.lex_state = 72}, - [3503] = {.lex_state = 72, .external_lex_state = 7}, - [3504] = {.lex_state = 72}, + [3502] = {.lex_state = 17}, + [3503] = {.lex_state = 72}, + [3504] = {.lex_state = 17}, [3505] = {.lex_state = 17}, [3506] = {.lex_state = 17}, - [3507] = {.lex_state = 17}, + [3507] = {.lex_state = 72}, [3508] = {.lex_state = 72}, - [3509] = {.lex_state = 17}, + [3509] = {.lex_state = 23}, [3510] = {.lex_state = 17}, - [3511] = {.lex_state = 72, .external_lex_state = 8}, - [3512] = {.lex_state = 72}, + [3511] = {.lex_state = 72}, + [3512] = {.lex_state = 17}, [3513] = {.lex_state = 72}, - [3514] = {.lex_state = 17}, - [3515] = {.lex_state = 17}, + [3514] = {.lex_state = 72}, + [3515] = {.lex_state = 72}, [3516] = {.lex_state = 17}, [3517] = {.lex_state = 72}, [3518] = {.lex_state = 72}, [3519] = {.lex_state = 72}, [3520] = {.lex_state = 72}, - [3521] = {.lex_state = 72}, - [3522] = {.lex_state = 72}, - [3523] = {.lex_state = 17}, - [3524] = {.lex_state = 23}, + [3521] = {.lex_state = 17}, + [3522] = {.lex_state = 72, .external_lex_state = 6}, + [3523] = {.lex_state = 72}, + [3524] = {.lex_state = 17}, [3525] = {.lex_state = 72}, - [3526] = {.lex_state = 73}, - [3527] = {.lex_state = 17}, - [3528] = {.lex_state = 72}, + [3526] = {.lex_state = 17}, + [3527] = {.lex_state = 72}, + [3528] = {.lex_state = 17}, [3529] = {.lex_state = 20}, - [3530] = {.lex_state = 72}, - [3531] = {.lex_state = 72}, + [3530] = {.lex_state = 17}, + [3531] = {.lex_state = 23}, [3532] = {.lex_state = 17}, - [3533] = {.lex_state = 17}, - [3534] = {.lex_state = 72}, - [3535] = {.lex_state = 72}, - [3536] = {.lex_state = 72}, - [3537] = {.lex_state = 17}, + [3533] = {.lex_state = 20}, + [3534] = {.lex_state = 17}, + [3535] = {.lex_state = 20}, + [3536] = {.lex_state = 72, .external_lex_state = 7}, + [3537] = {.lex_state = 73}, [3538] = {.lex_state = 72}, - [3539] = {.lex_state = 72}, - [3540] = {.lex_state = 72}, + [3539] = {.lex_state = 17}, + [3540] = {.lex_state = 72, .external_lex_state = 8}, [3541] = {.lex_state = 72}, - [3542] = {.lex_state = 17}, + [3542] = {.lex_state = 72}, [3543] = {.lex_state = 72}, [3544] = {.lex_state = 72}, - [3545] = {.lex_state = 72}, + [3545] = {.lex_state = 17}, [3546] = {.lex_state = 72}, [3547] = {.lex_state = 72}, - [3548] = {.lex_state = 20}, - [3549] = {.lex_state = 72}, + [3548] = {.lex_state = 17}, + [3549] = {.lex_state = 17}, [3550] = {.lex_state = 72}, - [3551] = {.lex_state = 72}, + [3551] = {.lex_state = 20}, [3552] = {.lex_state = 72}, [3553] = {.lex_state = 72}, [3554] = {.lex_state = 17}, - [3555] = {.lex_state = 17}, + [3555] = {.lex_state = 72}, [3556] = {.lex_state = 72}, [3557] = {.lex_state = 72}, [3558] = {.lex_state = 72}, - [3559] = {.lex_state = 17}, + [3559] = {.lex_state = 72}, [3560] = {.lex_state = 17}, - [3561] = {.lex_state = 72}, - [3562] = {.lex_state = 20}, - [3563] = {.lex_state = 72}, - [3564] = {.lex_state = 72}, - [3565] = {.lex_state = 17}, + [3561] = {.lex_state = 73}, + [3562] = {.lex_state = 8}, + [3563] = {.lex_state = 17}, + [3564] = {.lex_state = 17}, + [3565] = {.lex_state = 72}, [3566] = {.lex_state = 72}, - [3567] = {.lex_state = 72, .external_lex_state = 7}, + [3567] = {.lex_state = 72}, [3568] = {.lex_state = 72}, - [3569] = {.lex_state = 20}, + [3569] = {.lex_state = 72}, [3570] = {.lex_state = 17}, [3571] = {.lex_state = 72}, - [3572] = {.lex_state = 72}, + [3572] = {.lex_state = 17}, [3573] = {.lex_state = 72}, - [3574] = {.lex_state = 72}, + [3574] = {.lex_state = 17}, [3575] = {.lex_state = 72}, - [3576] = {.lex_state = 72, .external_lex_state = 8}, + [3576] = {.lex_state = 17}, [3577] = {.lex_state = 72}, [3578] = {.lex_state = 72}, [3579] = {.lex_state = 72}, [3580] = {.lex_state = 72}, [3581] = {.lex_state = 72}, [3582] = {.lex_state = 72}, - [3583] = {.lex_state = 17}, - [3584] = {.lex_state = 17}, - [3585] = {.lex_state = 17}, + [3583] = {.lex_state = 72}, + [3584] = {.lex_state = 72}, + [3585] = {.lex_state = 72}, [3586] = {.lex_state = 72}, - [3587] = {.lex_state = 72}, - [3588] = {.lex_state = 17}, + [3587] = {.lex_state = 20}, + [3588] = {.lex_state = 72}, [3589] = {.lex_state = 72}, [3590] = {.lex_state = 72}, - [3591] = {.lex_state = 72}, + [3591] = {.lex_state = 17}, [3592] = {.lex_state = 72}, [3593] = {.lex_state = 72}, [3594] = {.lex_state = 72}, @@ -14211,54 +14275,54 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [3597] = {.lex_state = 72}, [3598] = {.lex_state = 72}, [3599] = {.lex_state = 72}, - [3600] = {.lex_state = 17}, + [3600] = {.lex_state = 72}, [3601] = {.lex_state = 17}, [3602] = {.lex_state = 72}, [3603] = {.lex_state = 72}, - [3604] = {.lex_state = 72, .external_lex_state = 8}, - [3605] = {.lex_state = 167}, + [3604] = {.lex_state = 72}, + [3605] = {.lex_state = 72}, [3606] = {.lex_state = 17}, [3607] = {.lex_state = 72}, [3608] = {.lex_state = 72}, [3609] = {.lex_state = 72}, - [3610] = {.lex_state = 72}, + [3610] = {.lex_state = 17}, [3611] = {.lex_state = 72}, - [3612] = {.lex_state = 72}, + [3612] = {.lex_state = 72, .external_lex_state = 9}, [3613] = {.lex_state = 72}, [3614] = {.lex_state = 72}, - [3615] = {.lex_state = 20}, - [3616] = {.lex_state = 72}, + [3615] = {.lex_state = 73}, + [3616] = {.lex_state = 17}, [3617] = {.lex_state = 72}, [3618] = {.lex_state = 72}, - [3619] = {.lex_state = 72}, + [3619] = {.lex_state = 20}, [3620] = {.lex_state = 72}, - [3621] = {.lex_state = 20}, - [3622] = {.lex_state = 17}, + [3621] = {.lex_state = 17}, + [3622] = {.lex_state = 72}, [3623] = {.lex_state = 72}, - [3624] = {.lex_state = 72}, - [3625] = {.lex_state = 72, .external_lex_state = 9}, - [3626] = {.lex_state = 72}, + [3624] = {.lex_state = 17}, + [3625] = {.lex_state = 20}, + [3626] = {.lex_state = 17}, [3627] = {.lex_state = 72}, - [3628] = {.lex_state = 72}, - [3629] = {.lex_state = 72}, + [3628] = {.lex_state = 17}, + [3629] = {.lex_state = 17}, [3630] = {.lex_state = 72}, - [3631] = {.lex_state = 72}, - [3632] = {.lex_state = 8}, + [3631] = {.lex_state = 17}, + [3632] = {.lex_state = 17}, [3633] = {.lex_state = 72}, [3634] = {.lex_state = 72}, [3635] = {.lex_state = 17}, - [3636] = {.lex_state = 17}, - [3637] = {.lex_state = 17}, - [3638] = {.lex_state = 20}, - [3639] = {.lex_state = 8}, + [3636] = {.lex_state = 72}, + [3637] = {.lex_state = 72}, + [3638] = {.lex_state = 23}, + [3639] = {.lex_state = 72}, [3640] = {.lex_state = 72}, - [3641] = {.lex_state = 17}, - [3642] = {.lex_state = 73}, + [3641] = {.lex_state = 72}, + [3642] = {.lex_state = 72}, [3643] = {.lex_state = 72}, - [3644] = {.lex_state = 17}, + [3644] = {.lex_state = 72}, [3645] = {.lex_state = 72}, [3646] = {.lex_state = 72}, - [3647] = {.lex_state = 73}, + [3647] = {.lex_state = 72}, [3648] = {.lex_state = 72}, [3649] = {.lex_state = 72}, [3650] = {.lex_state = 72}, @@ -14267,41 +14331,41 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [3653] = {.lex_state = 72}, [3654] = {.lex_state = 72}, [3655] = {.lex_state = 72}, - [3656] = {.lex_state = 20}, - [3657] = {.lex_state = 20}, - [3658] = {.lex_state = 72}, - [3659] = {.lex_state = 72}, - [3660] = {.lex_state = 72}, - [3661] = {.lex_state = 73}, + [3656] = {.lex_state = 72, .external_lex_state = 9}, + [3657] = {.lex_state = 72}, + [3658] = {.lex_state = 73}, + [3659] = {.lex_state = 72, .external_lex_state = 7}, + [3660] = {.lex_state = 167}, + [3661] = {.lex_state = 17}, [3662] = {.lex_state = 72}, - [3663] = {.lex_state = 72, .external_lex_state = 9}, + [3663] = {.lex_state = 72}, [3664] = {.lex_state = 72}, [3665] = {.lex_state = 72}, - [3666] = {.lex_state = 72}, - [3667] = {.lex_state = 72}, + [3666] = {.lex_state = 17}, + [3667] = {.lex_state = 72, .external_lex_state = 8}, [3668] = {.lex_state = 72}, [3669] = {.lex_state = 72}, [3670] = {.lex_state = 72}, - [3671] = {.lex_state = 72, .external_lex_state = 7}, + [3671] = {.lex_state = 72}, [3672] = {.lex_state = 72}, [3673] = {.lex_state = 72}, - [3674] = {.lex_state = 72}, + [3674] = {.lex_state = 8}, [3675] = {.lex_state = 17}, [3676] = {.lex_state = 17}, - [3677] = {.lex_state = 72, .external_lex_state = 7}, + [3677] = {.lex_state = 20}, [3678] = {.lex_state = 72}, [3679] = {.lex_state = 72}, [3680] = {.lex_state = 72}, - [3681] = {.lex_state = 17}, - [3682] = {.lex_state = 72}, + [3681] = {.lex_state = 72}, + [3682] = {.lex_state = 72, .external_lex_state = 8}, [3683] = {.lex_state = 72}, - [3684] = {.lex_state = 72, .external_lex_state = 9}, + [3684] = {.lex_state = 17}, [3685] = {.lex_state = 72}, [3686] = {.lex_state = 72}, [3687] = {.lex_state = 17}, [3688] = {.lex_state = 72}, [3689] = {.lex_state = 72}, - [3690] = {.lex_state = 72, .external_lex_state = 9}, + [3690] = {.lex_state = 72}, [3691] = {.lex_state = 72}, [3692] = {.lex_state = 72}, [3693] = {.lex_state = 72, .external_lex_state = 9}, @@ -14309,131 +14373,169 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [3695] = {.lex_state = 72}, [3696] = {.lex_state = 72}, [3697] = {.lex_state = 72}, - [3698] = {.lex_state = 72}, - [3699] = {.lex_state = 72}, - [3700] = {.lex_state = 72}, + [3698] = {.lex_state = 72, .external_lex_state = 7}, + [3699] = {.lex_state = 17}, + [3700] = {.lex_state = 20}, [3701] = {.lex_state = 72}, [3702] = {.lex_state = 72}, - [3703] = {.lex_state = 73}, + [3703] = {.lex_state = 72}, [3704] = {.lex_state = 72}, - [3705] = {.lex_state = 17}, - [3706] = {.lex_state = 20}, - [3707] = {.lex_state = 72}, - [3708] = {.lex_state = 73}, + [3705] = {.lex_state = 72}, + [3706] = {.lex_state = 72}, + [3707] = {.lex_state = 72, .external_lex_state = 9}, + [3708] = {.lex_state = 72}, [3709] = {.lex_state = 72}, [3710] = {.lex_state = 72}, - [3711] = {.lex_state = 72}, - [3712] = {.lex_state = 72}, + [3711] = {.lex_state = 17}, + [3712] = {.lex_state = 17}, [3713] = {.lex_state = 72}, - [3714] = {.lex_state = 20}, - [3715] = {.lex_state = 20}, - [3716] = {.lex_state = 17}, + [3714] = {.lex_state = 72}, + [3715] = {.lex_state = 72}, + [3716] = {.lex_state = 72}, [3717] = {.lex_state = 72}, - [3718] = {.lex_state = 20}, - [3719] = {.lex_state = 17}, - [3720] = {.lex_state = 20}, - [3721] = {.lex_state = 17}, - [3722] = {.lex_state = 17}, - [3723] = {.lex_state = 17}, + [3718] = {.lex_state = 72, .external_lex_state = 7}, + [3719] = {.lex_state = 72}, + [3720] = {.lex_state = 17}, + [3721] = {.lex_state = 72}, + [3722] = {.lex_state = 72}, + [3723] = {.lex_state = 72}, [3724] = {.lex_state = 72}, - [3725] = {.lex_state = 72}, + [3725] = {.lex_state = 72, .external_lex_state = 7}, [3726] = {.lex_state = 72}, - [3727] = {.lex_state = 72, .external_lex_state = 8}, - [3728] = {.lex_state = 17}, + [3727] = {.lex_state = 72}, + [3728] = {.lex_state = 20}, [3729] = {.lex_state = 72}, [3730] = {.lex_state = 72}, - [3731] = {.lex_state = 72, .external_lex_state = 8}, + [3731] = {.lex_state = 72}, [3732] = {.lex_state = 72}, [3733] = {.lex_state = 72}, [3734] = {.lex_state = 72}, - [3735] = {.lex_state = 20}, + [3735] = {.lex_state = 72}, [3736] = {.lex_state = 72}, - [3737] = {.lex_state = 72, .external_lex_state = 9}, - [3738] = {.lex_state = 72}, + [3737] = {.lex_state = 72}, + [3738] = {.lex_state = 17}, [3739] = {.lex_state = 20}, - [3740] = {.lex_state = 20}, - [3741] = {.lex_state = 17}, - [3742] = {.lex_state = 72}, + [3740] = {.lex_state = 72}, + [3741] = {.lex_state = 72}, + [3742] = {.lex_state = 20}, [3743] = {.lex_state = 72}, [3744] = {.lex_state = 72}, - [3745] = {.lex_state = 72}, - [3746] = {.lex_state = 73}, + [3745] = {.lex_state = 20}, + [3746] = {.lex_state = 72}, [3747] = {.lex_state = 72}, - [3748] = {.lex_state = 20}, + [3748] = {.lex_state = 72}, [3749] = {.lex_state = 72}, - [3750] = {.lex_state = 72}, - [3751] = {.lex_state = 72}, + [3750] = {.lex_state = 20}, + [3751] = {.lex_state = 20}, [3752] = {.lex_state = 72}, - [3753] = {.lex_state = 72}, + [3753] = {.lex_state = 17}, [3754] = {.lex_state = 72}, - [3755] = {.lex_state = 72}, + [3755] = {.lex_state = 20}, [3756] = {.lex_state = 72}, - [3757] = {.lex_state = 72}, + [3757] = {.lex_state = 17}, [3758] = {.lex_state = 72}, [3759] = {.lex_state = 72}, [3760] = {.lex_state = 72}, - [3761] = {.lex_state = 20}, - [3762] = {.lex_state = 20}, - [3763] = {.lex_state = 23}, - [3764] = {.lex_state = 20}, - [3765] = {.lex_state = 72}, - [3766] = {.lex_state = 8}, - [3767] = {.lex_state = 20}, - [3768] = {.lex_state = 72}, - [3769] = {.lex_state = 72}, - [3770] = {.lex_state = 20}, + [3761] = {.lex_state = 72}, + [3762] = {.lex_state = 72}, + [3763] = {.lex_state = 72, .external_lex_state = 7}, + [3764] = {.lex_state = 72}, + [3765] = {.lex_state = 17}, + [3766] = {.lex_state = 72}, + [3767] = {.lex_state = 17}, + [3768] = {.lex_state = 73}, + [3769] = {.lex_state = 20}, + [3770] = {.lex_state = 73}, [3771] = {.lex_state = 72}, [3772] = {.lex_state = 17}, [3773] = {.lex_state = 20}, - [3774] = {.lex_state = 20}, - [3775] = {.lex_state = 72}, - [3776] = {.lex_state = 72}, - [3777] = {.lex_state = 20}, - [3778] = {.lex_state = 20}, - [3779] = {.lex_state = 20}, + [3774] = {.lex_state = 72}, + [3775] = {.lex_state = 17}, + [3776] = {.lex_state = 17}, + [3777] = {.lex_state = 73}, + [3778] = {.lex_state = 17}, + [3779] = {.lex_state = 72, .external_lex_state = 8}, [3780] = {.lex_state = 72}, - [3781] = {.lex_state = 17}, - [3782] = {.lex_state = 72}, - [3783] = {.lex_state = 72}, - [3784] = {.lex_state = 73}, - [3785] = {.lex_state = 72}, + [3781] = {.lex_state = 72}, + [3782] = {.lex_state = 20}, + [3783] = {.lex_state = 17}, + [3784] = {.lex_state = 17}, + [3785] = {.lex_state = 20}, [3786] = {.lex_state = 72}, - [3787] = {.lex_state = 72, .external_lex_state = 8}, - [3788] = {.lex_state = 17}, - [3789] = {.lex_state = 72, .external_lex_state = 7}, - [3790] = {.lex_state = 17}, + [3787] = {.lex_state = 72}, + [3788] = {.lex_state = 72}, + [3789] = {.lex_state = 72}, + [3790] = {.lex_state = 72}, [3791] = {.lex_state = 17}, [3792] = {.lex_state = 17}, - [3793] = {.lex_state = 72}, - [3794] = {.lex_state = 17}, + [3793] = {.lex_state = 17}, + [3794] = {.lex_state = 72}, [3795] = {.lex_state = 17}, - [3796] = {.lex_state = 72}, - [3797] = {.lex_state = 17}, - [3798] = {.lex_state = 72}, - [3799] = {.lex_state = 17}, - [3800] = {.lex_state = 72}, - [3801] = {.lex_state = 17}, - [3802] = {.lex_state = 72}, - [3803] = {.lex_state = 17}, - [3804] = {.lex_state = 17}, - [3805] = {.lex_state = 17}, - [3806] = {.lex_state = 17}, - [3807] = {.lex_state = 17}, - [3808] = {.lex_state = 17}, - [3809] = {.lex_state = 17}, - [3810] = {.lex_state = 72}, - [3811] = {.lex_state = 17}, - [3812] = {.lex_state = 17}, - [3813] = {.lex_state = 72}, + [3796] = {.lex_state = 17}, + [3797] = {.lex_state = 72}, + [3798] = {.lex_state = 20}, + [3799] = {.lex_state = 72}, + [3800] = {.lex_state = 20}, + [3801] = {.lex_state = 73}, + [3802] = {.lex_state = 20}, + [3803] = {.lex_state = 72}, + [3804] = {.lex_state = 72}, + [3805] = {.lex_state = 20}, + [3806] = {.lex_state = 72}, + [3807] = {.lex_state = 20}, + [3808] = {.lex_state = 20}, + [3809] = {.lex_state = 72}, + [3810] = {.lex_state = 20}, + [3811] = {.lex_state = 20}, + [3812] = {.lex_state = 20}, + [3813] = {.lex_state = 17}, [3814] = {.lex_state = 17}, - [3815] = {.lex_state = 17}, - [3816] = {(TSStateId)(-1),}, - [3817] = {(TSStateId)(-1),}, - [3818] = {(TSStateId)(-1),}, - [3819] = {(TSStateId)(-1),}, - [3820] = {(TSStateId)(-1),}, - [3821] = {(TSStateId)(-1),}, - [3822] = {(TSStateId)(-1),}, + [3815] = {.lex_state = 72}, + [3816] = {.lex_state = 72}, + [3817] = {.lex_state = 72}, + [3818] = {.lex_state = 17}, + [3819] = {.lex_state = 8}, + [3820] = {.lex_state = 72}, + [3821] = {.lex_state = 17}, + [3822] = {.lex_state = 17}, + [3823] = {.lex_state = 72}, + [3824] = {.lex_state = 17}, + [3825] = {.lex_state = 17}, + [3826] = {.lex_state = 72}, + [3827] = {.lex_state = 72}, + [3828] = {.lex_state = 72}, + [3829] = {.lex_state = 72}, + [3830] = {.lex_state = 72, .external_lex_state = 9}, + [3831] = {.lex_state = 20}, + [3832] = {.lex_state = 17}, + [3833] = {.lex_state = 72}, + [3834] = {.lex_state = 17}, + [3835] = {.lex_state = 72}, + [3836] = {.lex_state = 72}, + [3837] = {.lex_state = 72}, + [3838] = {.lex_state = 17}, + [3839] = {.lex_state = 72}, + [3840] = {.lex_state = 17}, + [3841] = {.lex_state = 17}, + [3842] = {.lex_state = 17}, + [3843] = {.lex_state = 17}, + [3844] = {.lex_state = 17}, + [3845] = {.lex_state = 72}, + [3846] = {.lex_state = 17}, + [3847] = {.lex_state = 17}, + [3848] = {.lex_state = 72, .external_lex_state = 9}, + [3849] = {.lex_state = 17}, + [3850] = {.lex_state = 72}, + [3851] = {.lex_state = 72, .external_lex_state = 8}, + [3852] = {.lex_state = 17}, + [3853] = {.lex_state = 17}, + [3854] = {(TSStateId)(-1),}, + [3855] = {(TSStateId)(-1),}, + [3856] = {(TSStateId)(-1),}, + [3857] = {(TSStateId)(-1),}, + [3858] = {(TSStateId)(-1),}, + [3859] = {(TSStateId)(-1),}, + [3860] = {(TSStateId)(-1),}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -14556,6 +14658,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), @@ -14594,83 +14697,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__error_sentinel] = ACTIONS(1), }, [STATE(1)] = { - [sym_source_file] = STATE(3607), - [sym__statement] = STATE(573), - [sym_empty_statement] = STATE(593), - [sym_expression_statement] = STATE(593), - [sym_macro_definition] = STATE(593), - [sym_attribute_item] = STATE(593), - [sym_inner_attribute_item] = STATE(593), - [sym_mod_item] = STATE(593), - [sym_foreign_mod_item] = STATE(593), - [sym_struct_item] = STATE(593), - [sym_union_item] = STATE(593), - [sym_enum_item] = STATE(593), - [sym_extern_crate_declaration] = STATE(593), - [sym_const_item] = STATE(593), - [sym_static_item] = STATE(593), - [sym_type_item] = STATE(593), - [sym_function_item] = STATE(593), - [sym_function_signature_item] = STATE(593), - [sym_function_modifiers] = STATE(3559), - [sym_impl_item] = STATE(593), - [sym_trait_item] = STATE(593), - [sym_associated_type] = STATE(593), - [sym_let_declaration] = STATE(593), - [sym_use_declaration] = STATE(593), - [sym_extern_modifier] = STATE(2248), - [sym_visibility_modifier] = STATE(2023), - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1960), - [sym_macro_invocation] = STATE(399), - [sym_scoped_identifier] = STATE(1604), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(420), - [sym_match_expression] = STATE(420), - [sym_while_expression] = STATE(420), - [sym_loop_expression] = STATE(420), - [sym_for_expression] = STATE(420), - [sym_const_block] = STATE(420), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3562), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(420), - [sym_async_block] = STATE(420), - [sym_gen_block] = STATE(420), - [sym_try_block] = STATE(420), - [sym_block] = STATE(420), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym_source_file] = STATE(3623), + [sym__statement] = STATE(778), + [sym_empty_statement] = STATE(781), + [sym_expression_statement] = STATE(781), + [sym_macro_definition] = STATE(781), + [sym_attribute_item] = STATE(781), + [sym_inner_attribute_item] = STATE(781), + [sym_mod_item] = STATE(781), + [sym_foreign_mod_item] = STATE(781), + [sym_struct_item] = STATE(781), + [sym_union_item] = STATE(781), + [sym_enum_item] = STATE(781), + [sym_extern_crate_declaration] = STATE(781), + [sym_const_item] = STATE(781), + [sym_static_item] = STATE(781), + [sym_type_item] = STATE(781), + [sym_function_item] = STATE(781), + [sym_function_signature_item] = STATE(781), + [sym_function_modifiers] = STATE(3712), + [aux_sym__item_modifiers] = STATE(2292), + [sym_impl_item] = STATE(781), + [sym_trait_item] = STATE(781), + [sym_associated_type] = STATE(781), + [sym_let_declaration] = STATE(781), + [sym_use_declaration] = STATE(781), + [sym_extern_modifier] = STATE(2897), + [sym_visibility_modifier] = STATE(2033), + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3031), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1976), + [sym_macro_invocation] = STATE(406), + [sym_scoped_identifier] = STATE(1630), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(408), + [sym_match_expression] = STATE(408), + [sym_while_expression] = STATE(408), + [sym_loop_expression] = STATE(408), + [sym_for_expression] = STATE(408), + [sym_const_block] = STATE(408), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3587), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(408), + [sym_async_block] = STATE(408), + [sym_gen_block] = STATE(408), + [sym_try_block] = STATE(408), + [sym_block] = STATE(408), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), [sym_line_comment] = STATE(1), [sym_block_comment] = STATE(1), [aux_sym_source_file_repeat1] = STATE(2), - [aux_sym_function_modifiers_repeat1] = STATE(2317), [ts_builtin_sym_end] = ACTIONS(7), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), @@ -14731,102 +14834,103 @@ 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(573), - [sym_empty_statement] = STATE(593), - [sym_expression_statement] = STATE(593), - [sym_macro_definition] = STATE(593), - [sym_attribute_item] = STATE(593), - [sym_inner_attribute_item] = STATE(593), - [sym_mod_item] = STATE(593), - [sym_foreign_mod_item] = STATE(593), - [sym_struct_item] = STATE(593), - [sym_union_item] = STATE(593), - [sym_enum_item] = STATE(593), - [sym_extern_crate_declaration] = STATE(593), - [sym_const_item] = STATE(593), - [sym_static_item] = STATE(593), - [sym_type_item] = STATE(593), - [sym_function_item] = STATE(593), - [sym_function_signature_item] = STATE(593), - [sym_function_modifiers] = STATE(3559), - [sym_impl_item] = STATE(593), - [sym_trait_item] = STATE(593), - [sym_associated_type] = STATE(593), - [sym_let_declaration] = STATE(593), - [sym_use_declaration] = STATE(593), - [sym_extern_modifier] = STATE(2248), - [sym_visibility_modifier] = STATE(2023), - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1960), - [sym_macro_invocation] = STATE(399), - [sym_scoped_identifier] = STATE(1604), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(420), - [sym_match_expression] = STATE(420), - [sym_while_expression] = STATE(420), - [sym_loop_expression] = STATE(420), - [sym_for_expression] = STATE(420), - [sym_const_block] = STATE(420), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3562), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(420), - [sym_async_block] = STATE(420), - [sym_gen_block] = STATE(420), - [sym_try_block] = STATE(420), - [sym_block] = STATE(420), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym__statement] = STATE(778), + [sym_empty_statement] = STATE(781), + [sym_expression_statement] = STATE(781), + [sym_macro_definition] = STATE(781), + [sym_attribute_item] = STATE(781), + [sym_inner_attribute_item] = STATE(781), + [sym_mod_item] = STATE(781), + [sym_foreign_mod_item] = STATE(781), + [sym_struct_item] = STATE(781), + [sym_union_item] = STATE(781), + [sym_enum_item] = STATE(781), + [sym_extern_crate_declaration] = STATE(781), + [sym_const_item] = STATE(781), + [sym_static_item] = STATE(781), + [sym_type_item] = STATE(781), + [sym_function_item] = STATE(781), + [sym_function_signature_item] = STATE(781), + [sym_function_modifiers] = STATE(3712), + [aux_sym__item_modifiers] = STATE(2292), + [sym_impl_item] = STATE(781), + [sym_trait_item] = STATE(781), + [sym_associated_type] = STATE(781), + [sym_let_declaration] = STATE(781), + [sym_use_declaration] = STATE(781), + [sym_extern_modifier] = STATE(2897), + [sym_visibility_modifier] = STATE(2033), + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3031), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1976), + [sym_macro_invocation] = STATE(406), + [sym_scoped_identifier] = STATE(1630), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(408), + [sym_match_expression] = STATE(408), + [sym_while_expression] = STATE(408), + [sym_loop_expression] = STATE(408), + [sym_for_expression] = STATE(408), + [sym_const_block] = STATE(408), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3587), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(408), + [sym_async_block] = STATE(408), + [sym_gen_block] = STATE(408), + [sym_try_block] = STATE(408), + [sym_block] = STATE(408), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), [sym_line_comment] = STATE(2), [sym_block_comment] = STATE(2), [aux_sym_source_file_repeat1] = STATE(7), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [ts_builtin_sym_end] = ACTIONS(119), + [ts_builtin_sym_end] = ACTIONS(121), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -14858,7 +14962,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), @@ -14886,107 +14990,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(573), - [sym_empty_statement] = STATE(593), - [sym_expression_statement] = STATE(593), - [sym_macro_definition] = STATE(593), - [sym_attribute_item] = STATE(593), - [sym_inner_attribute_item] = STATE(593), - [sym_mod_item] = STATE(593), - [sym_foreign_mod_item] = STATE(593), - [sym_struct_item] = STATE(593), - [sym_union_item] = STATE(593), - [sym_enum_item] = STATE(593), - [sym_extern_crate_declaration] = STATE(593), - [sym_const_item] = STATE(593), - [sym_static_item] = STATE(593), - [sym_type_item] = STATE(593), - [sym_function_item] = STATE(593), - [sym_function_signature_item] = STATE(593), - [sym_function_modifiers] = STATE(3559), - [sym_impl_item] = STATE(593), - [sym_trait_item] = STATE(593), - [sym_associated_type] = STATE(593), - [sym_let_declaration] = STATE(593), - [sym_use_declaration] = STATE(593), - [sym_extern_modifier] = STATE(2248), - [sym_visibility_modifier] = STATE(2023), - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1960), - [sym_macro_invocation] = STATE(399), - [sym_scoped_identifier] = STATE(1604), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(420), - [sym_match_expression] = STATE(420), - [sym_while_expression] = STATE(420), - [sym_loop_expression] = STATE(420), - [sym_for_expression] = STATE(420), - [sym_const_block] = STATE(420), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3562), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(420), - [sym_async_block] = STATE(420), - [sym_gen_block] = STATE(420), - [sym_try_block] = STATE(420), - [sym_block] = STATE(420), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym__statement] = STATE(778), + [sym_empty_statement] = STATE(781), + [sym_expression_statement] = STATE(781), + [sym_macro_definition] = STATE(781), + [sym_attribute_item] = STATE(781), + [sym_inner_attribute_item] = STATE(781), + [sym_mod_item] = STATE(781), + [sym_foreign_mod_item] = STATE(781), + [sym_struct_item] = STATE(781), + [sym_union_item] = STATE(781), + [sym_enum_item] = STATE(781), + [sym_extern_crate_declaration] = STATE(781), + [sym_const_item] = STATE(781), + [sym_static_item] = STATE(781), + [sym_type_item] = STATE(781), + [sym_function_item] = STATE(781), + [sym_function_signature_item] = STATE(781), + [sym_function_modifiers] = STATE(3712), + [aux_sym__item_modifiers] = STATE(2292), + [sym_impl_item] = STATE(781), + [sym_trait_item] = STATE(781), + [sym_associated_type] = STATE(781), + [sym_let_declaration] = STATE(781), + [sym_use_declaration] = STATE(781), + [sym_extern_modifier] = STATE(2897), + [sym_visibility_modifier] = STATE(2033), + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3031), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1879), + [sym_macro_invocation] = STATE(406), + [sym_scoped_identifier] = STATE(1630), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(408), + [sym_match_expression] = STATE(408), + [sym_while_expression] = STATE(408), + [sym_loop_expression] = STATE(408), + [sym_for_expression] = STATE(408), + [sym_const_block] = STATE(408), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3587), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(408), + [sym_async_block] = STATE(408), + [sym_gen_block] = STATE(408), + [sym_try_block] = STATE(408), + [sym_block] = STATE(408), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), [sym_line_comment] = STATE(3), [sym_block_comment] = STATE(3), - [aux_sym_source_file_repeat1] = STATE(6), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [ts_builtin_sym_end] = ACTIONS(119), + [aux_sym_source_file_repeat1] = STATE(12), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), + [anon_sym_RBRACE] = ACTIONS(125), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -15012,7 +15117,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), @@ -15040,107 +15145,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(4)] = { - [sym__statement] = STATE(573), - [sym_empty_statement] = STATE(593), - [sym_expression_statement] = STATE(593), - [sym_macro_definition] = STATE(593), - [sym_attribute_item] = STATE(593), - [sym_inner_attribute_item] = STATE(593), - [sym_mod_item] = STATE(593), - [sym_foreign_mod_item] = STATE(593), - [sym_struct_item] = STATE(593), - [sym_union_item] = STATE(593), - [sym_enum_item] = STATE(593), - [sym_extern_crate_declaration] = STATE(593), - [sym_const_item] = STATE(593), - [sym_static_item] = STATE(593), - [sym_type_item] = STATE(593), - [sym_function_item] = STATE(593), - [sym_function_signature_item] = STATE(593), - [sym_function_modifiers] = STATE(3559), - [sym_impl_item] = STATE(593), - [sym_trait_item] = STATE(593), - [sym_associated_type] = STATE(593), - [sym_let_declaration] = STATE(593), - [sym_use_declaration] = STATE(593), - [sym_extern_modifier] = STATE(2248), - [sym_visibility_modifier] = STATE(2023), - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1717), - [sym_macro_invocation] = STATE(399), - [sym_scoped_identifier] = STATE(1604), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(420), - [sym_match_expression] = STATE(420), - [sym_while_expression] = STATE(420), - [sym_loop_expression] = STATE(420), - [sym_for_expression] = STATE(420), - [sym_const_block] = STATE(420), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3562), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(420), - [sym_async_block] = STATE(420), - [sym_gen_block] = STATE(420), - [sym_try_block] = STATE(420), - [sym_block] = STATE(420), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym__statement] = STATE(778), + [sym_empty_statement] = STATE(781), + [sym_expression_statement] = STATE(781), + [sym_macro_definition] = STATE(781), + [sym_attribute_item] = STATE(781), + [sym_inner_attribute_item] = STATE(781), + [sym_mod_item] = STATE(781), + [sym_foreign_mod_item] = STATE(781), + [sym_struct_item] = STATE(781), + [sym_union_item] = STATE(781), + [sym_enum_item] = STATE(781), + [sym_extern_crate_declaration] = STATE(781), + [sym_const_item] = STATE(781), + [sym_static_item] = STATE(781), + [sym_type_item] = STATE(781), + [sym_function_item] = STATE(781), + [sym_function_signature_item] = STATE(781), + [sym_function_modifiers] = STATE(3712), + [aux_sym__item_modifiers] = STATE(2292), + [sym_impl_item] = STATE(781), + [sym_trait_item] = STATE(781), + [sym_associated_type] = STATE(781), + [sym_let_declaration] = STATE(781), + [sym_use_declaration] = STATE(781), + [sym_extern_modifier] = STATE(2897), + [sym_visibility_modifier] = STATE(2033), + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3031), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1976), + [sym_macro_invocation] = STATE(406), + [sym_scoped_identifier] = STATE(1630), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(408), + [sym_match_expression] = STATE(408), + [sym_while_expression] = STATE(408), + [sym_loop_expression] = STATE(408), + [sym_for_expression] = STATE(408), + [sym_const_block] = STATE(408), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3587), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(408), + [sym_async_block] = STATE(408), + [sym_gen_block] = STATE(408), + [sym_try_block] = STATE(408), + [sym_block] = STATE(408), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), [sym_line_comment] = STATE(4), [sym_block_comment] = STATE(4), - [aux_sym_source_file_repeat1] = STATE(12), - [aux_sym_function_modifiers_repeat1] = STATE(2317), + [aux_sym_source_file_repeat1] = STATE(6), + [ts_builtin_sym_end] = ACTIONS(121), [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_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -15166,7 +15272,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), @@ -15194,107 +15300,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(5)] = { - [sym__statement] = STATE(573), - [sym_empty_statement] = STATE(593), - [sym_expression_statement] = STATE(593), - [sym_macro_definition] = STATE(593), - [sym_attribute_item] = STATE(593), - [sym_inner_attribute_item] = STATE(593), - [sym_mod_item] = STATE(593), - [sym_foreign_mod_item] = STATE(593), - [sym_struct_item] = STATE(593), - [sym_union_item] = STATE(593), - [sym_enum_item] = STATE(593), - [sym_extern_crate_declaration] = STATE(593), - [sym_const_item] = STATE(593), - [sym_static_item] = STATE(593), - [sym_type_item] = STATE(593), - [sym_function_item] = STATE(593), - [sym_function_signature_item] = STATE(593), - [sym_function_modifiers] = STATE(3559), - [sym_impl_item] = STATE(593), - [sym_trait_item] = STATE(593), - [sym_associated_type] = STATE(593), - [sym_let_declaration] = STATE(593), - [sym_use_declaration] = STATE(593), - [sym_extern_modifier] = STATE(2248), - [sym_visibility_modifier] = STATE(2023), - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1902), - [sym_macro_invocation] = STATE(399), - [sym_scoped_identifier] = STATE(1604), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(420), - [sym_match_expression] = STATE(420), - [sym_while_expression] = STATE(420), - [sym_loop_expression] = STATE(420), - [sym_for_expression] = STATE(420), - [sym_const_block] = STATE(420), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3562), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(420), - [sym_async_block] = STATE(420), - [sym_gen_block] = STATE(420), - [sym_try_block] = STATE(420), - [sym_block] = STATE(420), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym__statement] = STATE(778), + [sym_empty_statement] = STATE(781), + [sym_expression_statement] = STATE(781), + [sym_macro_definition] = STATE(781), + [sym_attribute_item] = STATE(781), + [sym_inner_attribute_item] = STATE(781), + [sym_mod_item] = STATE(781), + [sym_foreign_mod_item] = STATE(781), + [sym_struct_item] = STATE(781), + [sym_union_item] = STATE(781), + [sym_enum_item] = STATE(781), + [sym_extern_crate_declaration] = STATE(781), + [sym_const_item] = STATE(781), + [sym_static_item] = STATE(781), + [sym_type_item] = STATE(781), + [sym_function_item] = STATE(781), + [sym_function_signature_item] = STATE(781), + [sym_function_modifiers] = STATE(3712), + [aux_sym__item_modifiers] = STATE(2292), + [sym_impl_item] = STATE(781), + [sym_trait_item] = STATE(781), + [sym_associated_type] = STATE(781), + [sym_let_declaration] = STATE(781), + [sym_use_declaration] = STATE(781), + [sym_extern_modifier] = STATE(2897), + [sym_visibility_modifier] = STATE(2033), + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3031), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1852), + [sym_macro_invocation] = STATE(406), + [sym_scoped_identifier] = STATE(1630), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(408), + [sym_match_expression] = STATE(408), + [sym_while_expression] = STATE(408), + [sym_loop_expression] = STATE(408), + [sym_for_expression] = STATE(408), + [sym_const_block] = STATE(408), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3587), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(408), + [sym_async_block] = STATE(408), + [sym_gen_block] = STATE(408), + [sym_try_block] = STATE(408), + [sym_block] = STATE(408), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), [sym_line_comment] = STATE(5), [sym_block_comment] = STATE(5), - [aux_sym_source_file_repeat1] = STATE(4), - [aux_sym_function_modifiers_repeat1] = STATE(2317), + [aux_sym_source_file_repeat1] = STATE(12), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(125), + [anon_sym_RBRACE] = ACTIONS(127), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -15320,7 +15427,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), @@ -15348,101 +15455,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(6)] = { - [sym__statement] = STATE(573), - [sym_empty_statement] = STATE(593), - [sym_expression_statement] = STATE(593), - [sym_macro_definition] = STATE(593), - [sym_attribute_item] = STATE(593), - [sym_inner_attribute_item] = STATE(593), - [sym_mod_item] = STATE(593), - [sym_foreign_mod_item] = STATE(593), - [sym_struct_item] = STATE(593), - [sym_union_item] = STATE(593), - [sym_enum_item] = STATE(593), - [sym_extern_crate_declaration] = STATE(593), - [sym_const_item] = STATE(593), - [sym_static_item] = STATE(593), - [sym_type_item] = STATE(593), - [sym_function_item] = STATE(593), - [sym_function_signature_item] = STATE(593), - [sym_function_modifiers] = STATE(3559), - [sym_impl_item] = STATE(593), - [sym_trait_item] = STATE(593), - [sym_associated_type] = STATE(593), - [sym_let_declaration] = STATE(593), - [sym_use_declaration] = STATE(593), - [sym_extern_modifier] = STATE(2248), - [sym_visibility_modifier] = STATE(2023), - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1960), - [sym_macro_invocation] = STATE(399), - [sym_scoped_identifier] = STATE(1604), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(420), - [sym_match_expression] = STATE(420), - [sym_while_expression] = STATE(420), - [sym_loop_expression] = STATE(420), - [sym_for_expression] = STATE(420), - [sym_const_block] = STATE(420), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3562), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(420), - [sym_async_block] = STATE(420), - [sym_gen_block] = STATE(420), - [sym_try_block] = STATE(420), - [sym_block] = STATE(420), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym__statement] = STATE(778), + [sym_empty_statement] = STATE(781), + [sym_expression_statement] = STATE(781), + [sym_macro_definition] = STATE(781), + [sym_attribute_item] = STATE(781), + [sym_inner_attribute_item] = STATE(781), + [sym_mod_item] = STATE(781), + [sym_foreign_mod_item] = STATE(781), + [sym_struct_item] = STATE(781), + [sym_union_item] = STATE(781), + [sym_enum_item] = STATE(781), + [sym_extern_crate_declaration] = STATE(781), + [sym_const_item] = STATE(781), + [sym_static_item] = STATE(781), + [sym_type_item] = STATE(781), + [sym_function_item] = STATE(781), + [sym_function_signature_item] = STATE(781), + [sym_function_modifiers] = STATE(3712), + [aux_sym__item_modifiers] = STATE(2292), + [sym_impl_item] = STATE(781), + [sym_trait_item] = STATE(781), + [sym_associated_type] = STATE(781), + [sym_let_declaration] = STATE(781), + [sym_use_declaration] = STATE(781), + [sym_extern_modifier] = STATE(2897), + [sym_visibility_modifier] = STATE(2033), + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3031), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1976), + [sym_macro_invocation] = STATE(406), + [sym_scoped_identifier] = STATE(1630), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(408), + [sym_match_expression] = STATE(408), + [sym_while_expression] = STATE(408), + [sym_loop_expression] = STATE(408), + [sym_for_expression] = STATE(408), + [sym_const_block] = STATE(408), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3587), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(408), + [sym_async_block] = STATE(408), + [sym_gen_block] = STATE(408), + [sym_try_block] = STATE(408), + [sym_block] = STATE(408), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), [sym_line_comment] = STATE(6), [sym_block_comment] = STATE(6), [aux_sym_source_file_repeat1] = STATE(7), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [ts_builtin_sym_end] = ACTIONS(127), + [ts_builtin_sym_end] = ACTIONS(129), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -15474,7 +15582,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), @@ -15502,261 +15610,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(7)] = { - [sym__statement] = STATE(573), - [sym_empty_statement] = STATE(593), - [sym_expression_statement] = STATE(593), - [sym_macro_definition] = STATE(593), - [sym_attribute_item] = STATE(593), - [sym_inner_attribute_item] = STATE(593), - [sym_mod_item] = STATE(593), - [sym_foreign_mod_item] = STATE(593), - [sym_struct_item] = STATE(593), - [sym_union_item] = STATE(593), - [sym_enum_item] = STATE(593), - [sym_extern_crate_declaration] = STATE(593), - [sym_const_item] = STATE(593), - [sym_static_item] = STATE(593), - [sym_type_item] = STATE(593), - [sym_function_item] = STATE(593), - [sym_function_signature_item] = STATE(593), - [sym_function_modifiers] = STATE(3559), - [sym_impl_item] = STATE(593), - [sym_trait_item] = STATE(593), - [sym_associated_type] = STATE(593), - [sym_let_declaration] = STATE(593), - [sym_use_declaration] = STATE(593), - [sym_extern_modifier] = STATE(2248), - [sym_visibility_modifier] = STATE(2023), - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1960), - [sym_macro_invocation] = STATE(399), - [sym_scoped_identifier] = STATE(1604), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(420), - [sym_match_expression] = STATE(420), - [sym_while_expression] = STATE(420), - [sym_loop_expression] = STATE(420), - [sym_for_expression] = STATE(420), - [sym_const_block] = STATE(420), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3562), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(420), - [sym_async_block] = STATE(420), - [sym_gen_block] = STATE(420), - [sym_try_block] = STATE(420), - [sym_block] = STATE(420), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym__statement] = STATE(778), + [sym_empty_statement] = STATE(781), + [sym_expression_statement] = STATE(781), + [sym_macro_definition] = STATE(781), + [sym_attribute_item] = STATE(781), + [sym_inner_attribute_item] = STATE(781), + [sym_mod_item] = STATE(781), + [sym_foreign_mod_item] = STATE(781), + [sym_struct_item] = STATE(781), + [sym_union_item] = STATE(781), + [sym_enum_item] = STATE(781), + [sym_extern_crate_declaration] = STATE(781), + [sym_const_item] = STATE(781), + [sym_static_item] = STATE(781), + [sym_type_item] = STATE(781), + [sym_function_item] = STATE(781), + [sym_function_signature_item] = STATE(781), + [sym_function_modifiers] = STATE(3712), + [aux_sym__item_modifiers] = STATE(2292), + [sym_impl_item] = STATE(781), + [sym_trait_item] = STATE(781), + [sym_associated_type] = STATE(781), + [sym_let_declaration] = STATE(781), + [sym_use_declaration] = STATE(781), + [sym_extern_modifier] = STATE(2897), + [sym_visibility_modifier] = STATE(2033), + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3031), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1976), + [sym_macro_invocation] = STATE(406), + [sym_scoped_identifier] = STATE(1630), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(408), + [sym_match_expression] = STATE(408), + [sym_while_expression] = STATE(408), + [sym_loop_expression] = STATE(408), + [sym_for_expression] = STATE(408), + [sym_const_block] = STATE(408), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3587), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(408), + [sym_async_block] = STATE(408), + [sym_gen_block] = STATE(408), + [sym_try_block] = STATE(408), + [sym_block] = STATE(408), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), [sym_line_comment] = STATE(7), [sym_block_comment] = STATE(7), [aux_sym_source_file_repeat1] = STATE(7), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [ts_builtin_sym_end] = ACTIONS(129), - [sym_identifier] = ACTIONS(131), - [anon_sym_SEMI] = ACTIONS(134), - [anon_sym_macro_rules_BANG] = ACTIONS(137), - [anon_sym_LPAREN] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACE] = ACTIONS(146), - [anon_sym_STAR] = ACTIONS(149), - [anon_sym_u8] = ACTIONS(152), - [anon_sym_i8] = ACTIONS(152), - [anon_sym_u16] = ACTIONS(152), - [anon_sym_i16] = ACTIONS(152), - [anon_sym_u32] = ACTIONS(152), - [anon_sym_i32] = ACTIONS(152), - [anon_sym_u64] = ACTIONS(152), - [anon_sym_i64] = ACTIONS(152), - [anon_sym_u128] = ACTIONS(152), - [anon_sym_i128] = ACTIONS(152), - [anon_sym_isize] = ACTIONS(152), - [anon_sym_usize] = ACTIONS(152), - [anon_sym_f32] = ACTIONS(152), - [anon_sym_f64] = ACTIONS(152), - [anon_sym_bool] = ACTIONS(152), - [anon_sym_str] = ACTIONS(152), - [anon_sym_char] = ACTIONS(152), - [anon_sym_DASH] = ACTIONS(149), - [anon_sym_BANG] = ACTIONS(149), - [anon_sym_AMP] = ACTIONS(155), - [anon_sym_PIPE] = ACTIONS(158), - [anon_sym_LT] = ACTIONS(161), - [anon_sym_DOT_DOT] = ACTIONS(164), - [anon_sym_COLON_COLON] = ACTIONS(167), - [anon_sym_POUND] = ACTIONS(170), - [anon_sym_SQUOTE] = ACTIONS(173), - [anon_sym_async] = ACTIONS(176), - [anon_sym_break] = ACTIONS(179), - [anon_sym_const] = ACTIONS(182), - [anon_sym_continue] = ACTIONS(185), - [anon_sym_default] = ACTIONS(188), - [anon_sym_enum] = ACTIONS(191), - [anon_sym_fn] = ACTIONS(194), - [anon_sym_for] = ACTIONS(197), - [anon_sym_gen] = ACTIONS(200), - [anon_sym_if] = ACTIONS(203), - [anon_sym_impl] = ACTIONS(206), - [anon_sym_let] = ACTIONS(209), - [anon_sym_loop] = ACTIONS(212), - [anon_sym_match] = ACTIONS(215), - [anon_sym_mod] = ACTIONS(218), - [anon_sym_pub] = ACTIONS(221), - [anon_sym_return] = ACTIONS(224), - [anon_sym_static] = ACTIONS(227), - [anon_sym_struct] = ACTIONS(230), - [anon_sym_trait] = ACTIONS(233), - [anon_sym_type] = ACTIONS(236), - [anon_sym_union] = ACTIONS(239), - [anon_sym_unsafe] = ACTIONS(242), - [anon_sym_use] = ACTIONS(245), - [anon_sym_while] = ACTIONS(248), - [anon_sym_extern] = ACTIONS(251), - [anon_sym_yield] = ACTIONS(254), - [anon_sym_move] = ACTIONS(257), - [anon_sym_try] = ACTIONS(260), - [sym_integer_literal] = ACTIONS(263), - [aux_sym_string_literal_token1] = ACTIONS(266), - [sym_char_literal] = ACTIONS(263), - [anon_sym_true] = ACTIONS(269), - [anon_sym_false] = ACTIONS(269), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(272), - [sym_super] = ACTIONS(275), - [sym_crate] = ACTIONS(278), - [sym_metavariable] = ACTIONS(281), - [sym__raw_string_literal_start] = ACTIONS(284), - [sym_float_literal] = ACTIONS(263), + [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_safe] = ACTIONS(256), + [anon_sym_yield] = ACTIONS(259), + [anon_sym_move] = ACTIONS(262), + [anon_sym_try] = ACTIONS(265), + [sym_integer_literal] = ACTIONS(268), + [aux_sym_string_literal_token1] = ACTIONS(271), + [sym_char_literal] = ACTIONS(268), + [anon_sym_true] = ACTIONS(274), + [anon_sym_false] = ACTIONS(274), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(277), + [sym_super] = ACTIONS(280), + [sym_crate] = ACTIONS(283), + [sym_metavariable] = ACTIONS(286), + [sym__raw_string_literal_start] = ACTIONS(289), + [sym_float_literal] = ACTIONS(268), }, [STATE(8)] = { - [sym__statement] = STATE(573), - [sym_empty_statement] = STATE(593), - [sym_expression_statement] = STATE(593), - [sym_macro_definition] = STATE(593), - [sym_attribute_item] = STATE(593), - [sym_inner_attribute_item] = STATE(593), - [sym_mod_item] = STATE(593), - [sym_foreign_mod_item] = STATE(593), - [sym_struct_item] = STATE(593), - [sym_union_item] = STATE(593), - [sym_enum_item] = STATE(593), - [sym_extern_crate_declaration] = STATE(593), - [sym_const_item] = STATE(593), - [sym_static_item] = STATE(593), - [sym_type_item] = STATE(593), - [sym_function_item] = STATE(593), - [sym_function_signature_item] = STATE(593), - [sym_function_modifiers] = STATE(3559), - [sym_impl_item] = STATE(593), - [sym_trait_item] = STATE(593), - [sym_associated_type] = STATE(593), - [sym_let_declaration] = STATE(593), - [sym_use_declaration] = STATE(593), - [sym_extern_modifier] = STATE(2248), - [sym_visibility_modifier] = STATE(2023), - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1723), - [sym_macro_invocation] = STATE(399), - [sym_scoped_identifier] = STATE(1604), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(420), - [sym_match_expression] = STATE(420), - [sym_while_expression] = STATE(420), - [sym_loop_expression] = STATE(420), - [sym_for_expression] = STATE(420), - [sym_const_block] = STATE(420), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3562), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(420), - [sym_async_block] = STATE(420), - [sym_gen_block] = STATE(420), - [sym_try_block] = STATE(420), - [sym_block] = STATE(420), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym__statement] = STATE(778), + [sym_empty_statement] = STATE(781), + [sym_expression_statement] = STATE(781), + [sym_macro_definition] = STATE(781), + [sym_attribute_item] = STATE(781), + [sym_inner_attribute_item] = STATE(781), + [sym_mod_item] = STATE(781), + [sym_foreign_mod_item] = STATE(781), + [sym_struct_item] = STATE(781), + [sym_union_item] = STATE(781), + [sym_enum_item] = STATE(781), + [sym_extern_crate_declaration] = STATE(781), + [sym_const_item] = STATE(781), + [sym_static_item] = STATE(781), + [sym_type_item] = STATE(781), + [sym_function_item] = STATE(781), + [sym_function_signature_item] = STATE(781), + [sym_function_modifiers] = STATE(3712), + [aux_sym__item_modifiers] = STATE(2292), + [sym_impl_item] = STATE(781), + [sym_trait_item] = STATE(781), + [sym_associated_type] = STATE(781), + [sym_let_declaration] = STATE(781), + [sym_use_declaration] = STATE(781), + [sym_extern_modifier] = STATE(2897), + [sym_visibility_modifier] = STATE(2033), + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3031), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1850), + [sym_macro_invocation] = STATE(406), + [sym_scoped_identifier] = STATE(1630), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(408), + [sym_match_expression] = STATE(408), + [sym_while_expression] = STATE(408), + [sym_loop_expression] = STATE(408), + [sym_for_expression] = STATE(408), + [sym_const_block] = STATE(408), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3587), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(408), + [sym_async_block] = STATE(408), + [sym_gen_block] = STATE(408), + [sym_try_block] = STATE(408), + [sym_block] = STATE(408), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), [sym_line_comment] = STATE(8), [sym_block_comment] = STATE(8), [aux_sym_source_file_repeat1] = STATE(9), - [aux_sym_function_modifiers_repeat1] = STATE(2317), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(287), + [anon_sym_RBRACE] = ACTIONS(292), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -15782,7 +15892,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), @@ -15810,107 +15920,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(9)] = { - [sym__statement] = STATE(573), - [sym_empty_statement] = STATE(593), - [sym_expression_statement] = STATE(593), - [sym_macro_definition] = STATE(593), - [sym_attribute_item] = STATE(593), - [sym_inner_attribute_item] = STATE(593), - [sym_mod_item] = STATE(593), - [sym_foreign_mod_item] = STATE(593), - [sym_struct_item] = STATE(593), - [sym_union_item] = STATE(593), - [sym_enum_item] = STATE(593), - [sym_extern_crate_declaration] = STATE(593), - [sym_const_item] = STATE(593), - [sym_static_item] = STATE(593), - [sym_type_item] = STATE(593), - [sym_function_item] = STATE(593), - [sym_function_signature_item] = STATE(593), - [sym_function_modifiers] = STATE(3559), - [sym_impl_item] = STATE(593), - [sym_trait_item] = STATE(593), - [sym_associated_type] = STATE(593), - [sym_let_declaration] = STATE(593), - [sym_use_declaration] = STATE(593), - [sym_extern_modifier] = STATE(2248), - [sym_visibility_modifier] = STATE(2023), - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1816), - [sym_macro_invocation] = STATE(399), - [sym_scoped_identifier] = STATE(1604), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(420), - [sym_match_expression] = STATE(420), - [sym_while_expression] = STATE(420), - [sym_loop_expression] = STATE(420), - [sym_for_expression] = STATE(420), - [sym_const_block] = STATE(420), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3562), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(420), - [sym_async_block] = STATE(420), - [sym_gen_block] = STATE(420), - [sym_try_block] = STATE(420), - [sym_block] = STATE(420), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym__statement] = STATE(778), + [sym_empty_statement] = STATE(781), + [sym_expression_statement] = STATE(781), + [sym_macro_definition] = STATE(781), + [sym_attribute_item] = STATE(781), + [sym_inner_attribute_item] = STATE(781), + [sym_mod_item] = STATE(781), + [sym_foreign_mod_item] = STATE(781), + [sym_struct_item] = STATE(781), + [sym_union_item] = STATE(781), + [sym_enum_item] = STATE(781), + [sym_extern_crate_declaration] = STATE(781), + [sym_const_item] = STATE(781), + [sym_static_item] = STATE(781), + [sym_type_item] = STATE(781), + [sym_function_item] = STATE(781), + [sym_function_signature_item] = STATE(781), + [sym_function_modifiers] = STATE(3712), + [aux_sym__item_modifiers] = STATE(2292), + [sym_impl_item] = STATE(781), + [sym_trait_item] = STATE(781), + [sym_associated_type] = STATE(781), + [sym_let_declaration] = STATE(781), + [sym_use_declaration] = STATE(781), + [sym_extern_modifier] = STATE(2897), + [sym_visibility_modifier] = STATE(2033), + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3031), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1779), + [sym_macro_invocation] = STATE(406), + [sym_scoped_identifier] = STATE(1630), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(408), + [sym_match_expression] = STATE(408), + [sym_while_expression] = STATE(408), + [sym_loop_expression] = STATE(408), + [sym_for_expression] = STATE(408), + [sym_const_block] = STATE(408), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3587), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(408), + [sym_async_block] = STATE(408), + [sym_gen_block] = STATE(408), + [sym_try_block] = STATE(408), + [sym_block] = STATE(408), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), [sym_line_comment] = STATE(9), [sym_block_comment] = STATE(9), [aux_sym_source_file_repeat1] = STATE(12), - [aux_sym_function_modifiers_repeat1] = STATE(2317), [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), @@ -15936,7 +16047,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), @@ -15964,107 +16075,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(573), - [sym_empty_statement] = STATE(593), - [sym_expression_statement] = STATE(593), - [sym_macro_definition] = STATE(593), - [sym_attribute_item] = STATE(593), - [sym_inner_attribute_item] = STATE(593), - [sym_mod_item] = STATE(593), - [sym_foreign_mod_item] = STATE(593), - [sym_struct_item] = STATE(593), - [sym_union_item] = STATE(593), - [sym_enum_item] = STATE(593), - [sym_extern_crate_declaration] = STATE(593), - [sym_const_item] = STATE(593), - [sym_static_item] = STATE(593), - [sym_type_item] = STATE(593), - [sym_function_item] = STATE(593), - [sym_function_signature_item] = STATE(593), - [sym_function_modifiers] = STATE(3559), - [sym_impl_item] = STATE(593), - [sym_trait_item] = STATE(593), - [sym_associated_type] = STATE(593), - [sym_let_declaration] = STATE(593), - [sym_use_declaration] = STATE(593), - [sym_extern_modifier] = STATE(2248), - [sym_visibility_modifier] = STATE(2023), - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1869), - [sym_macro_invocation] = STATE(399), - [sym_scoped_identifier] = STATE(1604), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(420), - [sym_match_expression] = STATE(420), - [sym_while_expression] = STATE(420), - [sym_loop_expression] = STATE(420), - [sym_for_expression] = STATE(420), - [sym_const_block] = STATE(420), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3562), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(420), - [sym_async_block] = STATE(420), - [sym_gen_block] = STATE(420), - [sym_try_block] = STATE(420), - [sym_block] = STATE(420), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym__statement] = STATE(778), + [sym_empty_statement] = STATE(781), + [sym_expression_statement] = STATE(781), + [sym_macro_definition] = STATE(781), + [sym_attribute_item] = STATE(781), + [sym_inner_attribute_item] = STATE(781), + [sym_mod_item] = STATE(781), + [sym_foreign_mod_item] = STATE(781), + [sym_struct_item] = STATE(781), + [sym_union_item] = STATE(781), + [sym_enum_item] = STATE(781), + [sym_extern_crate_declaration] = STATE(781), + [sym_const_item] = STATE(781), + [sym_static_item] = STATE(781), + [sym_type_item] = STATE(781), + [sym_function_item] = STATE(781), + [sym_function_signature_item] = STATE(781), + [sym_function_modifiers] = STATE(3712), + [aux_sym__item_modifiers] = STATE(2292), + [sym_impl_item] = STATE(781), + [sym_trait_item] = STATE(781), + [sym_associated_type] = STATE(781), + [sym_let_declaration] = STATE(781), + [sym_use_declaration] = STATE(781), + [sym_extern_modifier] = STATE(2897), + [sym_visibility_modifier] = STATE(2033), + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3031), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1773), + [sym_macro_invocation] = STATE(406), + [sym_scoped_identifier] = STATE(1630), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(408), + [sym_match_expression] = STATE(408), + [sym_while_expression] = STATE(408), + [sym_loop_expression] = STATE(408), + [sym_for_expression] = STATE(408), + [sym_const_block] = STATE(408), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3587), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(408), + [sym_async_block] = STATE(408), + [sym_gen_block] = STATE(408), + [sym_try_block] = STATE(408), + [sym_block] = STATE(408), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), [sym_line_comment] = STATE(10), [sym_block_comment] = STATE(10), [aux_sym_source_file_repeat1] = STATE(11), - [aux_sym_function_modifiers_repeat1] = STATE(2317), [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), @@ -16090,7 +16202,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), @@ -16118,107 +16230,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(573), - [sym_empty_statement] = STATE(593), - [sym_expression_statement] = STATE(593), - [sym_macro_definition] = STATE(593), - [sym_attribute_item] = STATE(593), - [sym_inner_attribute_item] = STATE(593), - [sym_mod_item] = STATE(593), - [sym_foreign_mod_item] = STATE(593), - [sym_struct_item] = STATE(593), - [sym_union_item] = STATE(593), - [sym_enum_item] = STATE(593), - [sym_extern_crate_declaration] = STATE(593), - [sym_const_item] = STATE(593), - [sym_static_item] = STATE(593), - [sym_type_item] = STATE(593), - [sym_function_item] = STATE(593), - [sym_function_signature_item] = STATE(593), - [sym_function_modifiers] = STATE(3559), - [sym_impl_item] = STATE(593), - [sym_trait_item] = STATE(593), - [sym_associated_type] = STATE(593), - [sym_let_declaration] = STATE(593), - [sym_use_declaration] = STATE(593), - [sym_extern_modifier] = STATE(2248), - [sym_visibility_modifier] = STATE(2023), - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1873), - [sym_macro_invocation] = STATE(399), - [sym_scoped_identifier] = STATE(1604), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(420), - [sym_match_expression] = STATE(420), - [sym_while_expression] = STATE(420), - [sym_loop_expression] = STATE(420), - [sym_for_expression] = STATE(420), - [sym_const_block] = STATE(420), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3562), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(420), - [sym_async_block] = STATE(420), - [sym_gen_block] = STATE(420), - [sym_try_block] = STATE(420), - [sym_block] = STATE(420), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym__statement] = STATE(778), + [sym_empty_statement] = STATE(781), + [sym_expression_statement] = STATE(781), + [sym_macro_definition] = STATE(781), + [sym_attribute_item] = STATE(781), + [sym_inner_attribute_item] = STATE(781), + [sym_mod_item] = STATE(781), + [sym_foreign_mod_item] = STATE(781), + [sym_struct_item] = STATE(781), + [sym_union_item] = STATE(781), + [sym_enum_item] = STATE(781), + [sym_extern_crate_declaration] = STATE(781), + [sym_const_item] = STATE(781), + [sym_static_item] = STATE(781), + [sym_type_item] = STATE(781), + [sym_function_item] = STATE(781), + [sym_function_signature_item] = STATE(781), + [sym_function_modifiers] = STATE(3712), + [aux_sym__item_modifiers] = STATE(2292), + [sym_impl_item] = STATE(781), + [sym_trait_item] = STATE(781), + [sym_associated_type] = STATE(781), + [sym_let_declaration] = STATE(781), + [sym_use_declaration] = STATE(781), + [sym_extern_modifier] = STATE(2897), + [sym_visibility_modifier] = STATE(2033), + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3031), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1782), + [sym_macro_invocation] = STATE(406), + [sym_scoped_identifier] = STATE(1630), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(408), + [sym_match_expression] = STATE(408), + [sym_while_expression] = STATE(408), + [sym_loop_expression] = STATE(408), + [sym_for_expression] = STATE(408), + [sym_const_block] = STATE(408), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3587), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(408), + [sym_async_block] = STATE(408), + [sym_gen_block] = STATE(408), + [sym_try_block] = STATE(408), + [sym_block] = STATE(408), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), [sym_line_comment] = STATE(11), [sym_block_comment] = STATE(11), [aux_sym_source_file_repeat1] = STATE(12), - [aux_sym_function_modifiers_repeat1] = STATE(2317), [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), @@ -16244,7 +16357,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), @@ -16272,261 +16385,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(12)] = { - [sym__statement] = STATE(573), - [sym_empty_statement] = STATE(593), - [sym_expression_statement] = STATE(593), - [sym_macro_definition] = STATE(593), - [sym_attribute_item] = STATE(593), - [sym_inner_attribute_item] = STATE(593), - [sym_mod_item] = STATE(593), - [sym_foreign_mod_item] = STATE(593), - [sym_struct_item] = STATE(593), - [sym_union_item] = STATE(593), - [sym_enum_item] = STATE(593), - [sym_extern_crate_declaration] = STATE(593), - [sym_const_item] = STATE(593), - [sym_static_item] = STATE(593), - [sym_type_item] = STATE(593), - [sym_function_item] = STATE(593), - [sym_function_signature_item] = STATE(593), - [sym_function_modifiers] = STATE(3559), - [sym_impl_item] = STATE(593), - [sym_trait_item] = STATE(593), - [sym_associated_type] = STATE(593), - [sym_let_declaration] = STATE(593), - [sym_use_declaration] = STATE(593), - [sym_extern_modifier] = STATE(2248), - [sym_visibility_modifier] = STATE(2023), - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1960), - [sym_macro_invocation] = STATE(428), - [sym_scoped_identifier] = STATE(1604), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(420), - [sym_match_expression] = STATE(420), - [sym_while_expression] = STATE(420), - [sym_loop_expression] = STATE(420), - [sym_for_expression] = STATE(420), - [sym_const_block] = STATE(420), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3562), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(420), - [sym_async_block] = STATE(420), - [sym_gen_block] = STATE(420), - [sym_try_block] = STATE(420), - [sym_block] = STATE(420), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym__statement] = STATE(778), + [sym_empty_statement] = STATE(781), + [sym_expression_statement] = STATE(781), + [sym_macro_definition] = STATE(781), + [sym_attribute_item] = STATE(781), + [sym_inner_attribute_item] = STATE(781), + [sym_mod_item] = STATE(781), + [sym_foreign_mod_item] = STATE(781), + [sym_struct_item] = STATE(781), + [sym_union_item] = STATE(781), + [sym_enum_item] = STATE(781), + [sym_extern_crate_declaration] = STATE(781), + [sym_const_item] = STATE(781), + [sym_static_item] = STATE(781), + [sym_type_item] = STATE(781), + [sym_function_item] = STATE(781), + [sym_function_signature_item] = STATE(781), + [sym_function_modifiers] = STATE(3712), + [aux_sym__item_modifiers] = STATE(2292), + [sym_impl_item] = STATE(781), + [sym_trait_item] = STATE(781), + [sym_associated_type] = STATE(781), + [sym_let_declaration] = STATE(781), + [sym_use_declaration] = STATE(781), + [sym_extern_modifier] = STATE(2897), + [sym_visibility_modifier] = STATE(2033), + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3031), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1976), + [sym_macro_invocation] = STATE(430), + [sym_scoped_identifier] = STATE(1630), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(408), + [sym_match_expression] = STATE(408), + [sym_while_expression] = STATE(408), + [sym_loop_expression] = STATE(408), + [sym_for_expression] = STATE(408), + [sym_const_block] = STATE(408), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3587), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(408), + [sym_async_block] = STATE(408), + [sym_gen_block] = STATE(408), + [sym_try_block] = STATE(408), + [sym_block] = STATE(408), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), [sym_line_comment] = STATE(12), [sym_block_comment] = STATE(12), [aux_sym_source_file_repeat1] = STATE(12), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(131), - [anon_sym_SEMI] = ACTIONS(134), - [anon_sym_macro_rules_BANG] = ACTIONS(137), - [anon_sym_LPAREN] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACE] = ACTIONS(146), - [anon_sym_RBRACE] = ACTIONS(129), - [anon_sym_STAR] = ACTIONS(149), - [anon_sym_u8] = ACTIONS(152), - [anon_sym_i8] = ACTIONS(152), - [anon_sym_u16] = ACTIONS(152), - [anon_sym_i16] = ACTIONS(152), - [anon_sym_u32] = ACTIONS(152), - [anon_sym_i32] = ACTIONS(152), - [anon_sym_u64] = ACTIONS(152), - [anon_sym_i64] = ACTIONS(152), - [anon_sym_u128] = ACTIONS(152), - [anon_sym_i128] = ACTIONS(152), - [anon_sym_isize] = ACTIONS(152), - [anon_sym_usize] = ACTIONS(152), - [anon_sym_f32] = ACTIONS(152), - [anon_sym_f64] = ACTIONS(152), - [anon_sym_bool] = ACTIONS(152), - [anon_sym_str] = ACTIONS(152), - [anon_sym_char] = ACTIONS(152), - [anon_sym_DASH] = ACTIONS(149), - [anon_sym_BANG] = ACTIONS(149), - [anon_sym_AMP] = ACTIONS(155), - [anon_sym_PIPE] = ACTIONS(158), - [anon_sym_LT] = ACTIONS(161), - [anon_sym_DOT_DOT] = ACTIONS(164), - [anon_sym_COLON_COLON] = ACTIONS(167), - [anon_sym_POUND] = ACTIONS(170), - [anon_sym_SQUOTE] = ACTIONS(173), - [anon_sym_async] = ACTIONS(176), - [anon_sym_break] = ACTIONS(179), - [anon_sym_const] = ACTIONS(182), - [anon_sym_continue] = ACTIONS(185), - [anon_sym_default] = ACTIONS(188), - [anon_sym_enum] = ACTIONS(191), - [anon_sym_fn] = ACTIONS(194), - [anon_sym_for] = ACTIONS(197), - [anon_sym_gen] = ACTIONS(200), - [anon_sym_if] = ACTIONS(203), - [anon_sym_impl] = ACTIONS(206), - [anon_sym_let] = ACTIONS(209), - [anon_sym_loop] = ACTIONS(212), - [anon_sym_match] = ACTIONS(215), - [anon_sym_mod] = ACTIONS(218), - [anon_sym_pub] = ACTIONS(221), - [anon_sym_return] = ACTIONS(224), - [anon_sym_static] = ACTIONS(227), - [anon_sym_struct] = ACTIONS(230), - [anon_sym_trait] = ACTIONS(233), - [anon_sym_type] = ACTIONS(236), - [anon_sym_union] = ACTIONS(239), - [anon_sym_unsafe] = ACTIONS(242), - [anon_sym_use] = ACTIONS(245), - [anon_sym_while] = ACTIONS(248), - [anon_sym_extern] = ACTIONS(251), - [anon_sym_yield] = ACTIONS(254), - [anon_sym_move] = ACTIONS(257), - [anon_sym_try] = ACTIONS(260), - [sym_integer_literal] = ACTIONS(263), - [aux_sym_string_literal_token1] = ACTIONS(266), - [sym_char_literal] = ACTIONS(263), - [anon_sym_true] = ACTIONS(269), - [anon_sym_false] = ACTIONS(269), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(272), - [sym_super] = ACTIONS(275), - [sym_crate] = ACTIONS(278), - [sym_metavariable] = ACTIONS(281), - [sym__raw_string_literal_start] = ACTIONS(284), - [sym_float_literal] = ACTIONS(263), + [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_safe] = ACTIONS(256), + [anon_sym_yield] = ACTIONS(259), + [anon_sym_move] = ACTIONS(262), + [anon_sym_try] = ACTIONS(265), + [sym_integer_literal] = ACTIONS(268), + [aux_sym_string_literal_token1] = ACTIONS(271), + [sym_char_literal] = ACTIONS(268), + [anon_sym_true] = ACTIONS(274), + [anon_sym_false] = ACTIONS(274), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(277), + [sym_super] = ACTIONS(280), + [sym_crate] = ACTIONS(283), + [sym_metavariable] = ACTIONS(286), + [sym__raw_string_literal_start] = ACTIONS(289), + [sym_float_literal] = ACTIONS(268), }, [STATE(13)] = { - [sym__statement] = STATE(573), - [sym_empty_statement] = STATE(593), - [sym_expression_statement] = STATE(593), - [sym_macro_definition] = STATE(593), - [sym_attribute_item] = STATE(593), - [sym_inner_attribute_item] = STATE(593), - [sym_mod_item] = STATE(593), - [sym_foreign_mod_item] = STATE(593), - [sym_struct_item] = STATE(593), - [sym_union_item] = STATE(593), - [sym_enum_item] = STATE(593), - [sym_extern_crate_declaration] = STATE(593), - [sym_const_item] = STATE(593), - [sym_static_item] = STATE(593), - [sym_type_item] = STATE(593), - [sym_function_item] = STATE(593), - [sym_function_signature_item] = STATE(593), - [sym_function_modifiers] = STATE(3559), - [sym_impl_item] = STATE(593), - [sym_trait_item] = STATE(593), - [sym_associated_type] = STATE(593), - [sym_let_declaration] = STATE(593), - [sym_use_declaration] = STATE(593), - [sym_extern_modifier] = STATE(2248), - [sym_visibility_modifier] = STATE(2023), - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1881), - [sym_macro_invocation] = STATE(399), - [sym_scoped_identifier] = STATE(1604), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(420), - [sym_match_expression] = STATE(420), - [sym_while_expression] = STATE(420), - [sym_loop_expression] = STATE(420), - [sym_for_expression] = STATE(420), - [sym_const_block] = STATE(420), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3562), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(420), - [sym_async_block] = STATE(420), - [sym_gen_block] = STATE(420), - [sym_try_block] = STATE(420), - [sym_block] = STATE(420), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym__statement] = STATE(778), + [sym_empty_statement] = STATE(781), + [sym_expression_statement] = STATE(781), + [sym_macro_definition] = STATE(781), + [sym_attribute_item] = STATE(781), + [sym_inner_attribute_item] = STATE(781), + [sym_mod_item] = STATE(781), + [sym_foreign_mod_item] = STATE(781), + [sym_struct_item] = STATE(781), + [sym_union_item] = STATE(781), + [sym_enum_item] = STATE(781), + [sym_extern_crate_declaration] = STATE(781), + [sym_const_item] = STATE(781), + [sym_static_item] = STATE(781), + [sym_type_item] = STATE(781), + [sym_function_item] = STATE(781), + [sym_function_signature_item] = STATE(781), + [sym_function_modifiers] = STATE(3712), + [aux_sym__item_modifiers] = STATE(2292), + [sym_impl_item] = STATE(781), + [sym_trait_item] = STATE(781), + [sym_associated_type] = STATE(781), + [sym_let_declaration] = STATE(781), + [sym_use_declaration] = STATE(781), + [sym_extern_modifier] = STATE(2897), + [sym_visibility_modifier] = STATE(2033), + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3031), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1793), + [sym_macro_invocation] = STATE(406), + [sym_scoped_identifier] = STATE(1630), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(408), + [sym_match_expression] = STATE(408), + [sym_while_expression] = STATE(408), + [sym_loop_expression] = STATE(408), + [sym_for_expression] = STATE(408), + [sym_const_block] = STATE(408), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3587), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(408), + [sym_async_block] = STATE(408), + [sym_gen_block] = STATE(408), + [sym_try_block] = STATE(408), + [sym_block] = STATE(408), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), [sym_line_comment] = STATE(13), [sym_block_comment] = STATE(13), [aux_sym_source_file_repeat1] = STATE(14), - [aux_sym_function_modifiers_repeat1] = STATE(2317), [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), @@ -16552,7 +16667,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), @@ -16580,107 +16695,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(14)] = { - [sym__statement] = STATE(573), - [sym_empty_statement] = STATE(593), - [sym_expression_statement] = STATE(593), - [sym_macro_definition] = STATE(593), - [sym_attribute_item] = STATE(593), - [sym_inner_attribute_item] = STATE(593), - [sym_mod_item] = STATE(593), - [sym_foreign_mod_item] = STATE(593), - [sym_struct_item] = STATE(593), - [sym_union_item] = STATE(593), - [sym_enum_item] = STATE(593), - [sym_extern_crate_declaration] = STATE(593), - [sym_const_item] = STATE(593), - [sym_static_item] = STATE(593), - [sym_type_item] = STATE(593), - [sym_function_item] = STATE(593), - [sym_function_signature_item] = STATE(593), - [sym_function_modifiers] = STATE(3559), - [sym_impl_item] = STATE(593), - [sym_trait_item] = STATE(593), - [sym_associated_type] = STATE(593), - [sym_let_declaration] = STATE(593), - [sym_use_declaration] = STATE(593), - [sym_extern_modifier] = STATE(2248), - [sym_visibility_modifier] = STATE(2023), - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1884), - [sym_macro_invocation] = STATE(399), - [sym_scoped_identifier] = STATE(1604), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(420), - [sym_match_expression] = STATE(420), - [sym_while_expression] = STATE(420), - [sym_loop_expression] = STATE(420), - [sym_for_expression] = STATE(420), - [sym_const_block] = STATE(420), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3562), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(420), - [sym_async_block] = STATE(420), - [sym_gen_block] = STATE(420), - [sym_try_block] = STATE(420), - [sym_block] = STATE(420), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym__statement] = STATE(778), + [sym_empty_statement] = STATE(781), + [sym_expression_statement] = STATE(781), + [sym_macro_definition] = STATE(781), + [sym_attribute_item] = STATE(781), + [sym_inner_attribute_item] = STATE(781), + [sym_mod_item] = STATE(781), + [sym_foreign_mod_item] = STATE(781), + [sym_struct_item] = STATE(781), + [sym_union_item] = STATE(781), + [sym_enum_item] = STATE(781), + [sym_extern_crate_declaration] = STATE(781), + [sym_const_item] = STATE(781), + [sym_static_item] = STATE(781), + [sym_type_item] = STATE(781), + [sym_function_item] = STATE(781), + [sym_function_signature_item] = STATE(781), + [sym_function_modifiers] = STATE(3712), + [aux_sym__item_modifiers] = STATE(2292), + [sym_impl_item] = STATE(781), + [sym_trait_item] = STATE(781), + [sym_associated_type] = STATE(781), + [sym_let_declaration] = STATE(781), + [sym_use_declaration] = STATE(781), + [sym_extern_modifier] = STATE(2897), + [sym_visibility_modifier] = STATE(2033), + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3031), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1801), + [sym_macro_invocation] = STATE(406), + [sym_scoped_identifier] = STATE(1630), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(408), + [sym_match_expression] = STATE(408), + [sym_while_expression] = STATE(408), + [sym_loop_expression] = STATE(408), + [sym_for_expression] = STATE(408), + [sym_const_block] = STATE(408), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3587), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(408), + [sym_async_block] = STATE(408), + [sym_gen_block] = STATE(408), + [sym_try_block] = STATE(408), + [sym_block] = STATE(408), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), [sym_line_comment] = STATE(14), [sym_block_comment] = STATE(14), [aux_sym_source_file_repeat1] = STATE(12), - [aux_sym_function_modifiers_repeat1] = STATE(2317), [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), @@ -16706,7 +16822,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), @@ -16734,107 +16850,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(573), - [sym_empty_statement] = STATE(593), - [sym_expression_statement] = STATE(593), - [sym_macro_definition] = STATE(593), - [sym_attribute_item] = STATE(593), - [sym_inner_attribute_item] = STATE(593), - [sym_mod_item] = STATE(593), - [sym_foreign_mod_item] = STATE(593), - [sym_struct_item] = STATE(593), - [sym_union_item] = STATE(593), - [sym_enum_item] = STATE(593), - [sym_extern_crate_declaration] = STATE(593), - [sym_const_item] = STATE(593), - [sym_static_item] = STATE(593), - [sym_type_item] = STATE(593), - [sym_function_item] = STATE(593), - [sym_function_signature_item] = STATE(593), - [sym_function_modifiers] = STATE(3559), - [sym_impl_item] = STATE(593), - [sym_trait_item] = STATE(593), - [sym_associated_type] = STATE(593), - [sym_let_declaration] = STATE(593), - [sym_use_declaration] = STATE(593), - [sym_extern_modifier] = STATE(2248), - [sym_visibility_modifier] = STATE(2023), - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1890), - [sym_macro_invocation] = STATE(399), - [sym_scoped_identifier] = STATE(1604), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(420), - [sym_match_expression] = STATE(420), - [sym_while_expression] = STATE(420), - [sym_loop_expression] = STATE(420), - [sym_for_expression] = STATE(420), - [sym_const_block] = STATE(420), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3562), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(420), - [sym_async_block] = STATE(420), - [sym_gen_block] = STATE(420), - [sym_try_block] = STATE(420), - [sym_block] = STATE(420), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym__statement] = STATE(778), + [sym_empty_statement] = STATE(781), + [sym_expression_statement] = STATE(781), + [sym_macro_definition] = STATE(781), + [sym_attribute_item] = STATE(781), + [sym_inner_attribute_item] = STATE(781), + [sym_mod_item] = STATE(781), + [sym_foreign_mod_item] = STATE(781), + [sym_struct_item] = STATE(781), + [sym_union_item] = STATE(781), + [sym_enum_item] = STATE(781), + [sym_extern_crate_declaration] = STATE(781), + [sym_const_item] = STATE(781), + [sym_static_item] = STATE(781), + [sym_type_item] = STATE(781), + [sym_function_item] = STATE(781), + [sym_function_signature_item] = STATE(781), + [sym_function_modifiers] = STATE(3712), + [aux_sym__item_modifiers] = STATE(2292), + [sym_impl_item] = STATE(781), + [sym_trait_item] = STATE(781), + [sym_associated_type] = STATE(781), + [sym_let_declaration] = STATE(781), + [sym_use_declaration] = STATE(781), + [sym_extern_modifier] = STATE(2897), + [sym_visibility_modifier] = STATE(2033), + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3031), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1816), + [sym_macro_invocation] = STATE(406), + [sym_scoped_identifier] = STATE(1630), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(408), + [sym_match_expression] = STATE(408), + [sym_while_expression] = STATE(408), + [sym_loop_expression] = STATE(408), + [sym_for_expression] = STATE(408), + [sym_const_block] = STATE(408), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3587), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(408), + [sym_async_block] = STATE(408), + [sym_gen_block] = STATE(408), + [sym_try_block] = STATE(408), + [sym_block] = STATE(408), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), [sym_line_comment] = STATE(15), [sym_block_comment] = STATE(15), [aux_sym_source_file_repeat1] = STATE(16), - [aux_sym_function_modifiers_repeat1] = STATE(2317), [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), @@ -16860,7 +16977,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), @@ -16888,107 +17005,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(573), - [sym_empty_statement] = STATE(593), - [sym_expression_statement] = STATE(593), - [sym_macro_definition] = STATE(593), - [sym_attribute_item] = STATE(593), - [sym_inner_attribute_item] = STATE(593), - [sym_mod_item] = STATE(593), - [sym_foreign_mod_item] = STATE(593), - [sym_struct_item] = STATE(593), - [sym_union_item] = STATE(593), - [sym_enum_item] = STATE(593), - [sym_extern_crate_declaration] = STATE(593), - [sym_const_item] = STATE(593), - [sym_static_item] = STATE(593), - [sym_type_item] = STATE(593), - [sym_function_item] = STATE(593), - [sym_function_signature_item] = STATE(593), - [sym_function_modifiers] = STATE(3559), - [sym_impl_item] = STATE(593), - [sym_trait_item] = STATE(593), - [sym_associated_type] = STATE(593), - [sym_let_declaration] = STATE(593), - [sym_use_declaration] = STATE(593), - [sym_extern_modifier] = STATE(2248), - [sym_visibility_modifier] = STATE(2023), - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1896), - [sym_macro_invocation] = STATE(399), - [sym_scoped_identifier] = STATE(1604), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(420), - [sym_match_expression] = STATE(420), - [sym_while_expression] = STATE(420), - [sym_loop_expression] = STATE(420), - [sym_for_expression] = STATE(420), - [sym_const_block] = STATE(420), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3562), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(420), - [sym_async_block] = STATE(420), - [sym_gen_block] = STATE(420), - [sym_try_block] = STATE(420), - [sym_block] = STATE(420), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym__statement] = STATE(778), + [sym_empty_statement] = STATE(781), + [sym_expression_statement] = STATE(781), + [sym_macro_definition] = STATE(781), + [sym_attribute_item] = STATE(781), + [sym_inner_attribute_item] = STATE(781), + [sym_mod_item] = STATE(781), + [sym_foreign_mod_item] = STATE(781), + [sym_struct_item] = STATE(781), + [sym_union_item] = STATE(781), + [sym_enum_item] = STATE(781), + [sym_extern_crate_declaration] = STATE(781), + [sym_const_item] = STATE(781), + [sym_static_item] = STATE(781), + [sym_type_item] = STATE(781), + [sym_function_item] = STATE(781), + [sym_function_signature_item] = STATE(781), + [sym_function_modifiers] = STATE(3712), + [aux_sym__item_modifiers] = STATE(2292), + [sym_impl_item] = STATE(781), + [sym_trait_item] = STATE(781), + [sym_associated_type] = STATE(781), + [sym_let_declaration] = STATE(781), + [sym_use_declaration] = STATE(781), + [sym_extern_modifier] = STATE(2897), + [sym_visibility_modifier] = STATE(2033), + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3031), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1826), + [sym_macro_invocation] = STATE(406), + [sym_scoped_identifier] = STATE(1630), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(408), + [sym_match_expression] = STATE(408), + [sym_while_expression] = STATE(408), + [sym_loop_expression] = STATE(408), + [sym_for_expression] = STATE(408), + [sym_const_block] = STATE(408), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3587), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(408), + [sym_async_block] = STATE(408), + [sym_gen_block] = STATE(408), + [sym_try_block] = STATE(408), + [sym_block] = STATE(408), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), [sym_line_comment] = STATE(16), [sym_block_comment] = STATE(16), [aux_sym_source_file_repeat1] = STATE(12), - [aux_sym_function_modifiers_repeat1] = STATE(2317), [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), @@ -17014,7 +17132,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), @@ -17042,107 +17160,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(573), - [sym_empty_statement] = STATE(593), - [sym_expression_statement] = STATE(593), - [sym_macro_definition] = STATE(593), - [sym_attribute_item] = STATE(593), - [sym_inner_attribute_item] = STATE(593), - [sym_mod_item] = STATE(593), - [sym_foreign_mod_item] = STATE(593), - [sym_struct_item] = STATE(593), - [sym_union_item] = STATE(593), - [sym_enum_item] = STATE(593), - [sym_extern_crate_declaration] = STATE(593), - [sym_const_item] = STATE(593), - [sym_static_item] = STATE(593), - [sym_type_item] = STATE(593), - [sym_function_item] = STATE(593), - [sym_function_signature_item] = STATE(593), - [sym_function_modifiers] = STATE(3559), - [sym_impl_item] = STATE(593), - [sym_trait_item] = STATE(593), - [sym_associated_type] = STATE(593), - [sym_let_declaration] = STATE(593), - [sym_use_declaration] = STATE(593), - [sym_extern_modifier] = STATE(2248), - [sym_visibility_modifier] = STATE(2023), - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1919), - [sym_macro_invocation] = STATE(399), - [sym_scoped_identifier] = STATE(1604), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(420), - [sym_match_expression] = STATE(420), - [sym_while_expression] = STATE(420), - [sym_loop_expression] = STATE(420), - [sym_for_expression] = STATE(420), - [sym_const_block] = STATE(420), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3562), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(420), - [sym_async_block] = STATE(420), - [sym_gen_block] = STATE(420), - [sym_try_block] = STATE(420), - [sym_block] = STATE(420), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym__statement] = STATE(778), + [sym_empty_statement] = STATE(781), + [sym_expression_statement] = STATE(781), + [sym_macro_definition] = STATE(781), + [sym_attribute_item] = STATE(781), + [sym_inner_attribute_item] = STATE(781), + [sym_mod_item] = STATE(781), + [sym_foreign_mod_item] = STATE(781), + [sym_struct_item] = STATE(781), + [sym_union_item] = STATE(781), + [sym_enum_item] = STATE(781), + [sym_extern_crate_declaration] = STATE(781), + [sym_const_item] = STATE(781), + [sym_static_item] = STATE(781), + [sym_type_item] = STATE(781), + [sym_function_item] = STATE(781), + [sym_function_signature_item] = STATE(781), + [sym_function_modifiers] = STATE(3712), + [aux_sym__item_modifiers] = STATE(2292), + [sym_impl_item] = STATE(781), + [sym_trait_item] = STATE(781), + [sym_associated_type] = STATE(781), + [sym_let_declaration] = STATE(781), + [sym_use_declaration] = STATE(781), + [sym_extern_modifier] = STATE(2897), + [sym_visibility_modifier] = STATE(2033), + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3031), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1838), + [sym_macro_invocation] = STATE(406), + [sym_scoped_identifier] = STATE(1630), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(408), + [sym_match_expression] = STATE(408), + [sym_while_expression] = STATE(408), + [sym_loop_expression] = STATE(408), + [sym_for_expression] = STATE(408), + [sym_const_block] = STATE(408), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3587), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(408), + [sym_async_block] = STATE(408), + [sym_gen_block] = STATE(408), + [sym_try_block] = STATE(408), + [sym_block] = STATE(408), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), [sym_line_comment] = STATE(17), [sym_block_comment] = STATE(17), - [aux_sym_source_file_repeat1] = STATE(12), - [aux_sym_function_modifiers_repeat1] = STATE(2317), + [aux_sym_source_file_repeat1] = STATE(18), [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), @@ -17168,7 +17287,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), @@ -17196,107 +17315,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(573), - [sym_empty_statement] = STATE(593), - [sym_expression_statement] = STATE(593), - [sym_macro_definition] = STATE(593), - [sym_attribute_item] = STATE(593), - [sym_inner_attribute_item] = STATE(593), - [sym_mod_item] = STATE(593), - [sym_foreign_mod_item] = STATE(593), - [sym_struct_item] = STATE(593), - [sym_union_item] = STATE(593), - [sym_enum_item] = STATE(593), - [sym_extern_crate_declaration] = STATE(593), - [sym_const_item] = STATE(593), - [sym_static_item] = STATE(593), - [sym_type_item] = STATE(593), - [sym_function_item] = STATE(593), - [sym_function_signature_item] = STATE(593), - [sym_function_modifiers] = STATE(3559), - [sym_impl_item] = STATE(593), - [sym_trait_item] = STATE(593), - [sym_associated_type] = STATE(593), - [sym_let_declaration] = STATE(593), - [sym_use_declaration] = STATE(593), - [sym_extern_modifier] = STATE(2248), - [sym_visibility_modifier] = STATE(2023), - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1898), - [sym_macro_invocation] = STATE(399), - [sym_scoped_identifier] = STATE(1604), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(420), - [sym_match_expression] = STATE(420), - [sym_while_expression] = STATE(420), - [sym_loop_expression] = STATE(420), - [sym_for_expression] = STATE(420), - [sym_const_block] = STATE(420), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3562), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(420), - [sym_async_block] = STATE(420), - [sym_gen_block] = STATE(420), - [sym_try_block] = STATE(420), - [sym_block] = STATE(420), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym__statement] = STATE(778), + [sym_empty_statement] = STATE(781), + [sym_expression_statement] = STATE(781), + [sym_macro_definition] = STATE(781), + [sym_attribute_item] = STATE(781), + [sym_inner_attribute_item] = STATE(781), + [sym_mod_item] = STATE(781), + [sym_foreign_mod_item] = STATE(781), + [sym_struct_item] = STATE(781), + [sym_union_item] = STATE(781), + [sym_enum_item] = STATE(781), + [sym_extern_crate_declaration] = STATE(781), + [sym_const_item] = STATE(781), + [sym_static_item] = STATE(781), + [sym_type_item] = STATE(781), + [sym_function_item] = STATE(781), + [sym_function_signature_item] = STATE(781), + [sym_function_modifiers] = STATE(3712), + [aux_sym__item_modifiers] = STATE(2292), + [sym_impl_item] = STATE(781), + [sym_trait_item] = STATE(781), + [sym_associated_type] = STATE(781), + [sym_let_declaration] = STATE(781), + [sym_use_declaration] = STATE(781), + [sym_extern_modifier] = STATE(2897), + [sym_visibility_modifier] = STATE(2033), + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3031), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1843), + [sym_macro_invocation] = STATE(406), + [sym_scoped_identifier] = STATE(1630), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(408), + [sym_match_expression] = STATE(408), + [sym_while_expression] = STATE(408), + [sym_loop_expression] = STATE(408), + [sym_for_expression] = STATE(408), + [sym_const_block] = STATE(408), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3587), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(408), + [sym_async_block] = STATE(408), + [sym_gen_block] = STATE(408), + [sym_try_block] = STATE(408), + [sym_block] = STATE(408), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), [sym_line_comment] = STATE(18), [sym_block_comment] = STATE(18), [aux_sym_source_file_repeat1] = STATE(12), - [aux_sym_function_modifiers_repeat1] = STATE(2317), [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), @@ -17322,7 +17442,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), @@ -17350,107 +17470,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(573), - [sym_empty_statement] = STATE(593), - [sym_expression_statement] = STATE(593), - [sym_macro_definition] = STATE(593), - [sym_attribute_item] = STATE(593), - [sym_inner_attribute_item] = STATE(593), - [sym_mod_item] = STATE(593), - [sym_foreign_mod_item] = STATE(593), - [sym_struct_item] = STATE(593), - [sym_union_item] = STATE(593), - [sym_enum_item] = STATE(593), - [sym_extern_crate_declaration] = STATE(593), - [sym_const_item] = STATE(593), - [sym_static_item] = STATE(593), - [sym_type_item] = STATE(593), - [sym_function_item] = STATE(593), - [sym_function_signature_item] = STATE(593), - [sym_function_modifiers] = STATE(3559), - [sym_impl_item] = STATE(593), - [sym_trait_item] = STATE(593), - [sym_associated_type] = STATE(593), - [sym_let_declaration] = STATE(593), - [sym_use_declaration] = STATE(593), - [sym_extern_modifier] = STATE(2248), - [sym_visibility_modifier] = STATE(2023), - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1899), - [sym_macro_invocation] = STATE(399), - [sym_scoped_identifier] = STATE(1604), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(420), - [sym_match_expression] = STATE(420), - [sym_while_expression] = STATE(420), - [sym_loop_expression] = STATE(420), - [sym_for_expression] = STATE(420), - [sym_const_block] = STATE(420), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3562), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(420), - [sym_async_block] = STATE(420), - [sym_gen_block] = STATE(420), - [sym_try_block] = STATE(420), - [sym_block] = STATE(420), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym__statement] = STATE(778), + [sym_empty_statement] = STATE(781), + [sym_expression_statement] = STATE(781), + [sym_macro_definition] = STATE(781), + [sym_attribute_item] = STATE(781), + [sym_inner_attribute_item] = STATE(781), + [sym_mod_item] = STATE(781), + [sym_foreign_mod_item] = STATE(781), + [sym_struct_item] = STATE(781), + [sym_union_item] = STATE(781), + [sym_enum_item] = STATE(781), + [sym_extern_crate_declaration] = STATE(781), + [sym_const_item] = STATE(781), + [sym_static_item] = STATE(781), + [sym_type_item] = STATE(781), + [sym_function_item] = STATE(781), + [sym_function_signature_item] = STATE(781), + [sym_function_modifiers] = STATE(3712), + [aux_sym__item_modifiers] = STATE(2292), + [sym_impl_item] = STATE(781), + [sym_trait_item] = STATE(781), + [sym_associated_type] = STATE(781), + [sym_let_declaration] = STATE(781), + [sym_use_declaration] = STATE(781), + [sym_extern_modifier] = STATE(2897), + [sym_visibility_modifier] = STATE(2033), + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3031), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1846), + [sym_macro_invocation] = STATE(406), + [sym_scoped_identifier] = STATE(1630), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(408), + [sym_match_expression] = STATE(408), + [sym_while_expression] = STATE(408), + [sym_loop_expression] = STATE(408), + [sym_for_expression] = STATE(408), + [sym_const_block] = STATE(408), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3587), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(408), + [sym_async_block] = STATE(408), + [sym_gen_block] = STATE(408), + [sym_try_block] = STATE(408), + [sym_block] = STATE(408), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), [sym_line_comment] = STATE(19), [sym_block_comment] = STATE(19), [aux_sym_source_file_repeat1] = STATE(20), - [aux_sym_function_modifiers_repeat1] = STATE(2317), [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), @@ -17476,7 +17597,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), @@ -17504,107 +17625,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(573), - [sym_empty_statement] = STATE(593), - [sym_expression_statement] = STATE(593), - [sym_macro_definition] = STATE(593), - [sym_attribute_item] = STATE(593), - [sym_inner_attribute_item] = STATE(593), - [sym_mod_item] = STATE(593), - [sym_foreign_mod_item] = STATE(593), - [sym_struct_item] = STATE(593), - [sym_union_item] = STATE(593), - [sym_enum_item] = STATE(593), - [sym_extern_crate_declaration] = STATE(593), - [sym_const_item] = STATE(593), - [sym_static_item] = STATE(593), - [sym_type_item] = STATE(593), - [sym_function_item] = STATE(593), - [sym_function_signature_item] = STATE(593), - [sym_function_modifiers] = STATE(3559), - [sym_impl_item] = STATE(593), - [sym_trait_item] = STATE(593), - [sym_associated_type] = STATE(593), - [sym_let_declaration] = STATE(593), - [sym_use_declaration] = STATE(593), - [sym_extern_modifier] = STATE(2248), - [sym_visibility_modifier] = STATE(2023), - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1901), - [sym_macro_invocation] = STATE(399), - [sym_scoped_identifier] = STATE(1604), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(420), - [sym_match_expression] = STATE(420), - [sym_while_expression] = STATE(420), - [sym_loop_expression] = STATE(420), - [sym_for_expression] = STATE(420), - [sym_const_block] = STATE(420), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3562), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(420), - [sym_async_block] = STATE(420), - [sym_gen_block] = STATE(420), - [sym_try_block] = STATE(420), - [sym_block] = STATE(420), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym__statement] = STATE(778), + [sym_empty_statement] = STATE(781), + [sym_expression_statement] = STATE(781), + [sym_macro_definition] = STATE(781), + [sym_attribute_item] = STATE(781), + [sym_inner_attribute_item] = STATE(781), + [sym_mod_item] = STATE(781), + [sym_foreign_mod_item] = STATE(781), + [sym_struct_item] = STATE(781), + [sym_union_item] = STATE(781), + [sym_enum_item] = STATE(781), + [sym_extern_crate_declaration] = STATE(781), + [sym_const_item] = STATE(781), + [sym_static_item] = STATE(781), + [sym_type_item] = STATE(781), + [sym_function_item] = STATE(781), + [sym_function_signature_item] = STATE(781), + [sym_function_modifiers] = STATE(3712), + [aux_sym__item_modifiers] = STATE(2292), + [sym_impl_item] = STATE(781), + [sym_trait_item] = STATE(781), + [sym_associated_type] = STATE(781), + [sym_let_declaration] = STATE(781), + [sym_use_declaration] = STATE(781), + [sym_extern_modifier] = STATE(2897), + [sym_visibility_modifier] = STATE(2033), + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3031), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1849), + [sym_macro_invocation] = STATE(406), + [sym_scoped_identifier] = STATE(1630), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(408), + [sym_match_expression] = STATE(408), + [sym_while_expression] = STATE(408), + [sym_loop_expression] = STATE(408), + [sym_for_expression] = STATE(408), + [sym_const_block] = STATE(408), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3587), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(408), + [sym_async_block] = STATE(408), + [sym_gen_block] = STATE(408), + [sym_try_block] = STATE(408), + [sym_block] = STATE(408), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), [sym_line_comment] = STATE(20), [sym_block_comment] = STATE(20), [aux_sym_source_file_repeat1] = STATE(12), - [aux_sym_function_modifiers_repeat1] = STATE(2317), [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), @@ -17630,7 +17752,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), @@ -17658,107 +17780,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(573), - [sym_empty_statement] = STATE(593), - [sym_expression_statement] = STATE(593), - [sym_macro_definition] = STATE(593), - [sym_attribute_item] = STATE(593), - [sym_inner_attribute_item] = STATE(593), - [sym_mod_item] = STATE(593), - [sym_foreign_mod_item] = STATE(593), - [sym_struct_item] = STATE(593), - [sym_union_item] = STATE(593), - [sym_enum_item] = STATE(593), - [sym_extern_crate_declaration] = STATE(593), - [sym_const_item] = STATE(593), - [sym_static_item] = STATE(593), - [sym_type_item] = STATE(593), - [sym_function_item] = STATE(593), - [sym_function_signature_item] = STATE(593), - [sym_function_modifiers] = STATE(3559), - [sym_impl_item] = STATE(593), - [sym_trait_item] = STATE(593), - [sym_associated_type] = STATE(593), - [sym_let_declaration] = STATE(593), - [sym_use_declaration] = STATE(593), - [sym_extern_modifier] = STATE(2248), - [sym_visibility_modifier] = STATE(2023), - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1903), - [sym_macro_invocation] = STATE(399), - [sym_scoped_identifier] = STATE(1604), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(420), - [sym_match_expression] = STATE(420), - [sym_while_expression] = STATE(420), - [sym_loop_expression] = STATE(420), - [sym_for_expression] = STATE(420), - [sym_const_block] = STATE(420), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3562), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(420), - [sym_async_block] = STATE(420), - [sym_gen_block] = STATE(420), - [sym_try_block] = STATE(420), - [sym_block] = STATE(420), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym__statement] = STATE(778), + [sym_empty_statement] = STATE(781), + [sym_expression_statement] = STATE(781), + [sym_macro_definition] = STATE(781), + [sym_attribute_item] = STATE(781), + [sym_inner_attribute_item] = STATE(781), + [sym_mod_item] = STATE(781), + [sym_foreign_mod_item] = STATE(781), + [sym_struct_item] = STATE(781), + [sym_union_item] = STATE(781), + [sym_enum_item] = STATE(781), + [sym_extern_crate_declaration] = STATE(781), + [sym_const_item] = STATE(781), + [sym_static_item] = STATE(781), + [sym_type_item] = STATE(781), + [sym_function_item] = STATE(781), + [sym_function_signature_item] = STATE(781), + [sym_function_modifiers] = STATE(3712), + [aux_sym__item_modifiers] = STATE(2292), + [sym_impl_item] = STATE(781), + [sym_trait_item] = STATE(781), + [sym_associated_type] = STATE(781), + [sym_let_declaration] = STATE(781), + [sym_use_declaration] = STATE(781), + [sym_extern_modifier] = STATE(2897), + [sym_visibility_modifier] = STATE(2033), + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3031), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1855), + [sym_macro_invocation] = STATE(406), + [sym_scoped_identifier] = STATE(1630), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(408), + [sym_match_expression] = STATE(408), + [sym_while_expression] = STATE(408), + [sym_loop_expression] = STATE(408), + [sym_for_expression] = STATE(408), + [sym_const_block] = STATE(408), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3587), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(408), + [sym_async_block] = STATE(408), + [sym_gen_block] = STATE(408), + [sym_try_block] = STATE(408), + [sym_block] = STATE(408), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), [sym_line_comment] = STATE(21), [sym_block_comment] = STATE(21), [aux_sym_source_file_repeat1] = STATE(22), - [aux_sym_function_modifiers_repeat1] = STATE(2317), [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), @@ -17784,7 +17907,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), @@ -17812,107 +17935,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(573), - [sym_empty_statement] = STATE(593), - [sym_expression_statement] = STATE(593), - [sym_macro_definition] = STATE(593), - [sym_attribute_item] = STATE(593), - [sym_inner_attribute_item] = STATE(593), - [sym_mod_item] = STATE(593), - [sym_foreign_mod_item] = STATE(593), - [sym_struct_item] = STATE(593), - [sym_union_item] = STATE(593), - [sym_enum_item] = STATE(593), - [sym_extern_crate_declaration] = STATE(593), - [sym_const_item] = STATE(593), - [sym_static_item] = STATE(593), - [sym_type_item] = STATE(593), - [sym_function_item] = STATE(593), - [sym_function_signature_item] = STATE(593), - [sym_function_modifiers] = STATE(3559), - [sym_impl_item] = STATE(593), - [sym_trait_item] = STATE(593), - [sym_associated_type] = STATE(593), - [sym_let_declaration] = STATE(593), - [sym_use_declaration] = STATE(593), - [sym_extern_modifier] = STATE(2248), - [sym_visibility_modifier] = STATE(2023), - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1904), - [sym_macro_invocation] = STATE(399), - [sym_scoped_identifier] = STATE(1604), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(420), - [sym_match_expression] = STATE(420), - [sym_while_expression] = STATE(420), - [sym_loop_expression] = STATE(420), - [sym_for_expression] = STATE(420), - [sym_const_block] = STATE(420), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3562), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(420), - [sym_async_block] = STATE(420), - [sym_gen_block] = STATE(420), - [sym_try_block] = STATE(420), - [sym_block] = STATE(420), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym__statement] = STATE(778), + [sym_empty_statement] = STATE(781), + [sym_expression_statement] = STATE(781), + [sym_macro_definition] = STATE(781), + [sym_attribute_item] = STATE(781), + [sym_inner_attribute_item] = STATE(781), + [sym_mod_item] = STATE(781), + [sym_foreign_mod_item] = STATE(781), + [sym_struct_item] = STATE(781), + [sym_union_item] = STATE(781), + [sym_enum_item] = STATE(781), + [sym_extern_crate_declaration] = STATE(781), + [sym_const_item] = STATE(781), + [sym_static_item] = STATE(781), + [sym_type_item] = STATE(781), + [sym_function_item] = STATE(781), + [sym_function_signature_item] = STATE(781), + [sym_function_modifiers] = STATE(3712), + [aux_sym__item_modifiers] = STATE(2292), + [sym_impl_item] = STATE(781), + [sym_trait_item] = STATE(781), + [sym_associated_type] = STATE(781), + [sym_let_declaration] = STATE(781), + [sym_use_declaration] = STATE(781), + [sym_extern_modifier] = STATE(2897), + [sym_visibility_modifier] = STATE(2033), + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3031), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1856), + [sym_macro_invocation] = STATE(406), + [sym_scoped_identifier] = STATE(1630), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(408), + [sym_match_expression] = STATE(408), + [sym_while_expression] = STATE(408), + [sym_loop_expression] = STATE(408), + [sym_for_expression] = STATE(408), + [sym_const_block] = STATE(408), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3587), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(408), + [sym_async_block] = STATE(408), + [sym_gen_block] = STATE(408), + [sym_try_block] = STATE(408), + [sym_block] = STATE(408), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), [sym_line_comment] = STATE(22), [sym_block_comment] = STATE(22), [aux_sym_source_file_repeat1] = STATE(12), - [aux_sym_function_modifiers_repeat1] = STATE(2317), [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), @@ -17938,7 +18062,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), @@ -17966,107 +18090,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(573), - [sym_empty_statement] = STATE(593), - [sym_expression_statement] = STATE(593), - [sym_macro_definition] = STATE(593), - [sym_attribute_item] = STATE(593), - [sym_inner_attribute_item] = STATE(593), - [sym_mod_item] = STATE(593), - [sym_foreign_mod_item] = STATE(593), - [sym_struct_item] = STATE(593), - [sym_union_item] = STATE(593), - [sym_enum_item] = STATE(593), - [sym_extern_crate_declaration] = STATE(593), - [sym_const_item] = STATE(593), - [sym_static_item] = STATE(593), - [sym_type_item] = STATE(593), - [sym_function_item] = STATE(593), - [sym_function_signature_item] = STATE(593), - [sym_function_modifiers] = STATE(3559), - [sym_impl_item] = STATE(593), - [sym_trait_item] = STATE(593), - [sym_associated_type] = STATE(593), - [sym_let_declaration] = STATE(593), - [sym_use_declaration] = STATE(593), - [sym_extern_modifier] = STATE(2248), - [sym_visibility_modifier] = STATE(2023), - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1905), - [sym_macro_invocation] = STATE(399), - [sym_scoped_identifier] = STATE(1604), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(420), - [sym_match_expression] = STATE(420), - [sym_while_expression] = STATE(420), - [sym_loop_expression] = STATE(420), - [sym_for_expression] = STATE(420), - [sym_const_block] = STATE(420), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3562), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(420), - [sym_async_block] = STATE(420), - [sym_gen_block] = STATE(420), - [sym_try_block] = STATE(420), - [sym_block] = STATE(420), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym__statement] = STATE(778), + [sym_empty_statement] = STATE(781), + [sym_expression_statement] = STATE(781), + [sym_macro_definition] = STATE(781), + [sym_attribute_item] = STATE(781), + [sym_inner_attribute_item] = STATE(781), + [sym_mod_item] = STATE(781), + [sym_foreign_mod_item] = STATE(781), + [sym_struct_item] = STATE(781), + [sym_union_item] = STATE(781), + [sym_enum_item] = STATE(781), + [sym_extern_crate_declaration] = STATE(781), + [sym_const_item] = STATE(781), + [sym_static_item] = STATE(781), + [sym_type_item] = STATE(781), + [sym_function_item] = STATE(781), + [sym_function_signature_item] = STATE(781), + [sym_function_modifiers] = STATE(3712), + [aux_sym__item_modifiers] = STATE(2292), + [sym_impl_item] = STATE(781), + [sym_trait_item] = STATE(781), + [sym_associated_type] = STATE(781), + [sym_let_declaration] = STATE(781), + [sym_use_declaration] = STATE(781), + [sym_extern_modifier] = STATE(2897), + [sym_visibility_modifier] = STATE(2033), + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3031), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1858), + [sym_macro_invocation] = STATE(406), + [sym_scoped_identifier] = STATE(1630), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(408), + [sym_match_expression] = STATE(408), + [sym_while_expression] = STATE(408), + [sym_loop_expression] = STATE(408), + [sym_for_expression] = STATE(408), + [sym_const_block] = STATE(408), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3587), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(408), + [sym_async_block] = STATE(408), + [sym_gen_block] = STATE(408), + [sym_try_block] = STATE(408), + [sym_block] = STATE(408), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), [sym_line_comment] = STATE(23), [sym_block_comment] = STATE(23), [aux_sym_source_file_repeat1] = STATE(24), - [aux_sym_function_modifiers_repeat1] = STATE(2317), [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), @@ -18092,7 +18217,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), @@ -18120,107 +18245,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(573), - [sym_empty_statement] = STATE(593), - [sym_expression_statement] = STATE(593), - [sym_macro_definition] = STATE(593), - [sym_attribute_item] = STATE(593), - [sym_inner_attribute_item] = STATE(593), - [sym_mod_item] = STATE(593), - [sym_foreign_mod_item] = STATE(593), - [sym_struct_item] = STATE(593), - [sym_union_item] = STATE(593), - [sym_enum_item] = STATE(593), - [sym_extern_crate_declaration] = STATE(593), - [sym_const_item] = STATE(593), - [sym_static_item] = STATE(593), - [sym_type_item] = STATE(593), - [sym_function_item] = STATE(593), - [sym_function_signature_item] = STATE(593), - [sym_function_modifiers] = STATE(3559), - [sym_impl_item] = STATE(593), - [sym_trait_item] = STATE(593), - [sym_associated_type] = STATE(593), - [sym_let_declaration] = STATE(593), - [sym_use_declaration] = STATE(593), - [sym_extern_modifier] = STATE(2248), - [sym_visibility_modifier] = STATE(2023), - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1906), - [sym_macro_invocation] = STATE(399), - [sym_scoped_identifier] = STATE(1604), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(420), - [sym_match_expression] = STATE(420), - [sym_while_expression] = STATE(420), - [sym_loop_expression] = STATE(420), - [sym_for_expression] = STATE(420), - [sym_const_block] = STATE(420), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3562), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(420), - [sym_async_block] = STATE(420), - [sym_gen_block] = STATE(420), - [sym_try_block] = STATE(420), - [sym_block] = STATE(420), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym__statement] = STATE(778), + [sym_empty_statement] = STATE(781), + [sym_expression_statement] = STATE(781), + [sym_macro_definition] = STATE(781), + [sym_attribute_item] = STATE(781), + [sym_inner_attribute_item] = STATE(781), + [sym_mod_item] = STATE(781), + [sym_foreign_mod_item] = STATE(781), + [sym_struct_item] = STATE(781), + [sym_union_item] = STATE(781), + [sym_enum_item] = STATE(781), + [sym_extern_crate_declaration] = STATE(781), + [sym_const_item] = STATE(781), + [sym_static_item] = STATE(781), + [sym_type_item] = STATE(781), + [sym_function_item] = STATE(781), + [sym_function_signature_item] = STATE(781), + [sym_function_modifiers] = STATE(3712), + [aux_sym__item_modifiers] = STATE(2292), + [sym_impl_item] = STATE(781), + [sym_trait_item] = STATE(781), + [sym_associated_type] = STATE(781), + [sym_let_declaration] = STATE(781), + [sym_use_declaration] = STATE(781), + [sym_extern_modifier] = STATE(2897), + [sym_visibility_modifier] = STATE(2033), + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3031), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1860), + [sym_macro_invocation] = STATE(406), + [sym_scoped_identifier] = STATE(1630), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(408), + [sym_match_expression] = STATE(408), + [sym_while_expression] = STATE(408), + [sym_loop_expression] = STATE(408), + [sym_for_expression] = STATE(408), + [sym_const_block] = STATE(408), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3587), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(408), + [sym_async_block] = STATE(408), + [sym_gen_block] = STATE(408), + [sym_try_block] = STATE(408), + [sym_block] = STATE(408), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), [sym_line_comment] = STATE(24), [sym_block_comment] = STATE(24), [aux_sym_source_file_repeat1] = STATE(12), - [aux_sym_function_modifiers_repeat1] = STATE(2317), [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), @@ -18246,7 +18372,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), @@ -18274,107 +18400,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(573), - [sym_empty_statement] = STATE(593), - [sym_expression_statement] = STATE(593), - [sym_macro_definition] = STATE(593), - [sym_attribute_item] = STATE(593), - [sym_inner_attribute_item] = STATE(593), - [sym_mod_item] = STATE(593), - [sym_foreign_mod_item] = STATE(593), - [sym_struct_item] = STATE(593), - [sym_union_item] = STATE(593), - [sym_enum_item] = STATE(593), - [sym_extern_crate_declaration] = STATE(593), - [sym_const_item] = STATE(593), - [sym_static_item] = STATE(593), - [sym_type_item] = STATE(593), - [sym_function_item] = STATE(593), - [sym_function_signature_item] = STATE(593), - [sym_function_modifiers] = STATE(3559), - [sym_impl_item] = STATE(593), - [sym_trait_item] = STATE(593), - [sym_associated_type] = STATE(593), - [sym_let_declaration] = STATE(593), - [sym_use_declaration] = STATE(593), - [sym_extern_modifier] = STATE(2248), - [sym_visibility_modifier] = STATE(2023), - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1908), - [sym_macro_invocation] = STATE(399), - [sym_scoped_identifier] = STATE(1604), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(420), - [sym_match_expression] = STATE(420), - [sym_while_expression] = STATE(420), - [sym_loop_expression] = STATE(420), - [sym_for_expression] = STATE(420), - [sym_const_block] = STATE(420), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3562), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(420), - [sym_async_block] = STATE(420), - [sym_gen_block] = STATE(420), - [sym_try_block] = STATE(420), - [sym_block] = STATE(420), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym__statement] = STATE(778), + [sym_empty_statement] = STATE(781), + [sym_expression_statement] = STATE(781), + [sym_macro_definition] = STATE(781), + [sym_attribute_item] = STATE(781), + [sym_inner_attribute_item] = STATE(781), + [sym_mod_item] = STATE(781), + [sym_foreign_mod_item] = STATE(781), + [sym_struct_item] = STATE(781), + [sym_union_item] = STATE(781), + [sym_enum_item] = STATE(781), + [sym_extern_crate_declaration] = STATE(781), + [sym_const_item] = STATE(781), + [sym_static_item] = STATE(781), + [sym_type_item] = STATE(781), + [sym_function_item] = STATE(781), + [sym_function_signature_item] = STATE(781), + [sym_function_modifiers] = STATE(3712), + [aux_sym__item_modifiers] = STATE(2292), + [sym_impl_item] = STATE(781), + [sym_trait_item] = STATE(781), + [sym_associated_type] = STATE(781), + [sym_let_declaration] = STATE(781), + [sym_use_declaration] = STATE(781), + [sym_extern_modifier] = STATE(2897), + [sym_visibility_modifier] = STATE(2033), + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3031), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1863), + [sym_macro_invocation] = STATE(406), + [sym_scoped_identifier] = STATE(1630), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(408), + [sym_match_expression] = STATE(408), + [sym_while_expression] = STATE(408), + [sym_loop_expression] = STATE(408), + [sym_for_expression] = STATE(408), + [sym_const_block] = STATE(408), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3587), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(408), + [sym_async_block] = STATE(408), + [sym_gen_block] = STATE(408), + [sym_try_block] = STATE(408), + [sym_block] = STATE(408), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), [sym_line_comment] = STATE(25), [sym_block_comment] = STATE(25), [aux_sym_source_file_repeat1] = STATE(26), - [aux_sym_function_modifiers_repeat1] = STATE(2317), [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), @@ -18400,7 +18527,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), @@ -18428,107 +18555,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(573), - [sym_empty_statement] = STATE(593), - [sym_expression_statement] = STATE(593), - [sym_macro_definition] = STATE(593), - [sym_attribute_item] = STATE(593), - [sym_inner_attribute_item] = STATE(593), - [sym_mod_item] = STATE(593), - [sym_foreign_mod_item] = STATE(593), - [sym_struct_item] = STATE(593), - [sym_union_item] = STATE(593), - [sym_enum_item] = STATE(593), - [sym_extern_crate_declaration] = STATE(593), - [sym_const_item] = STATE(593), - [sym_static_item] = STATE(593), - [sym_type_item] = STATE(593), - [sym_function_item] = STATE(593), - [sym_function_signature_item] = STATE(593), - [sym_function_modifiers] = STATE(3559), - [sym_impl_item] = STATE(593), - [sym_trait_item] = STATE(593), - [sym_associated_type] = STATE(593), - [sym_let_declaration] = STATE(593), - [sym_use_declaration] = STATE(593), - [sym_extern_modifier] = STATE(2248), - [sym_visibility_modifier] = STATE(2023), - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1909), - [sym_macro_invocation] = STATE(399), - [sym_scoped_identifier] = STATE(1604), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(420), - [sym_match_expression] = STATE(420), - [sym_while_expression] = STATE(420), - [sym_loop_expression] = STATE(420), - [sym_for_expression] = STATE(420), - [sym_const_block] = STATE(420), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3562), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(420), - [sym_async_block] = STATE(420), - [sym_gen_block] = STATE(420), - [sym_try_block] = STATE(420), - [sym_block] = STATE(420), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym__statement] = STATE(778), + [sym_empty_statement] = STATE(781), + [sym_expression_statement] = STATE(781), + [sym_macro_definition] = STATE(781), + [sym_attribute_item] = STATE(781), + [sym_inner_attribute_item] = STATE(781), + [sym_mod_item] = STATE(781), + [sym_foreign_mod_item] = STATE(781), + [sym_struct_item] = STATE(781), + [sym_union_item] = STATE(781), + [sym_enum_item] = STATE(781), + [sym_extern_crate_declaration] = STATE(781), + [sym_const_item] = STATE(781), + [sym_static_item] = STATE(781), + [sym_type_item] = STATE(781), + [sym_function_item] = STATE(781), + [sym_function_signature_item] = STATE(781), + [sym_function_modifiers] = STATE(3712), + [aux_sym__item_modifiers] = STATE(2292), + [sym_impl_item] = STATE(781), + [sym_trait_item] = STATE(781), + [sym_associated_type] = STATE(781), + [sym_let_declaration] = STATE(781), + [sym_use_declaration] = STATE(781), + [sym_extern_modifier] = STATE(2897), + [sym_visibility_modifier] = STATE(2033), + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3031), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1865), + [sym_macro_invocation] = STATE(406), + [sym_scoped_identifier] = STATE(1630), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(408), + [sym_match_expression] = STATE(408), + [sym_while_expression] = STATE(408), + [sym_loop_expression] = STATE(408), + [sym_for_expression] = STATE(408), + [sym_const_block] = STATE(408), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3587), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(408), + [sym_async_block] = STATE(408), + [sym_gen_block] = STATE(408), + [sym_try_block] = STATE(408), + [sym_block] = STATE(408), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), [sym_line_comment] = STATE(26), [sym_block_comment] = STATE(26), [aux_sym_source_file_repeat1] = STATE(12), - [aux_sym_function_modifiers_repeat1] = STATE(2317), [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), @@ -18554,7 +18682,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), @@ -18582,107 +18710,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(573), - [sym_empty_statement] = STATE(593), - [sym_expression_statement] = STATE(593), - [sym_macro_definition] = STATE(593), - [sym_attribute_item] = STATE(593), - [sym_inner_attribute_item] = STATE(593), - [sym_mod_item] = STATE(593), - [sym_foreign_mod_item] = STATE(593), - [sym_struct_item] = STATE(593), - [sym_union_item] = STATE(593), - [sym_enum_item] = STATE(593), - [sym_extern_crate_declaration] = STATE(593), - [sym_const_item] = STATE(593), - [sym_static_item] = STATE(593), - [sym_type_item] = STATE(593), - [sym_function_item] = STATE(593), - [sym_function_signature_item] = STATE(593), - [sym_function_modifiers] = STATE(3559), - [sym_impl_item] = STATE(593), - [sym_trait_item] = STATE(593), - [sym_associated_type] = STATE(593), - [sym_let_declaration] = STATE(593), - [sym_use_declaration] = STATE(593), - [sym_extern_modifier] = STATE(2248), - [sym_visibility_modifier] = STATE(2023), - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1910), - [sym_macro_invocation] = STATE(399), - [sym_scoped_identifier] = STATE(1604), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(420), - [sym_match_expression] = STATE(420), - [sym_while_expression] = STATE(420), - [sym_loop_expression] = STATE(420), - [sym_for_expression] = STATE(420), - [sym_const_block] = STATE(420), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3562), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(420), - [sym_async_block] = STATE(420), - [sym_gen_block] = STATE(420), - [sym_try_block] = STATE(420), - [sym_block] = STATE(420), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym__statement] = STATE(778), + [sym_empty_statement] = STATE(781), + [sym_expression_statement] = STATE(781), + [sym_macro_definition] = STATE(781), + [sym_attribute_item] = STATE(781), + [sym_inner_attribute_item] = STATE(781), + [sym_mod_item] = STATE(781), + [sym_foreign_mod_item] = STATE(781), + [sym_struct_item] = STATE(781), + [sym_union_item] = STATE(781), + [sym_enum_item] = STATE(781), + [sym_extern_crate_declaration] = STATE(781), + [sym_const_item] = STATE(781), + [sym_static_item] = STATE(781), + [sym_type_item] = STATE(781), + [sym_function_item] = STATE(781), + [sym_function_signature_item] = STATE(781), + [sym_function_modifiers] = STATE(3712), + [aux_sym__item_modifiers] = STATE(2292), + [sym_impl_item] = STATE(781), + [sym_trait_item] = STATE(781), + [sym_associated_type] = STATE(781), + [sym_let_declaration] = STATE(781), + [sym_use_declaration] = STATE(781), + [sym_extern_modifier] = STATE(2897), + [sym_visibility_modifier] = STATE(2033), + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3031), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1867), + [sym_macro_invocation] = STATE(406), + [sym_scoped_identifier] = STATE(1630), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(408), + [sym_match_expression] = STATE(408), + [sym_while_expression] = STATE(408), + [sym_loop_expression] = STATE(408), + [sym_for_expression] = STATE(408), + [sym_const_block] = STATE(408), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3587), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(408), + [sym_async_block] = STATE(408), + [sym_gen_block] = STATE(408), + [sym_try_block] = STATE(408), + [sym_block] = STATE(408), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), [sym_line_comment] = STATE(27), [sym_block_comment] = STATE(27), [aux_sym_source_file_repeat1] = STATE(28), - [aux_sym_function_modifiers_repeat1] = STATE(2317), [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), @@ -18708,7 +18837,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), @@ -18736,107 +18865,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(573), - [sym_empty_statement] = STATE(593), - [sym_expression_statement] = STATE(593), - [sym_macro_definition] = STATE(593), - [sym_attribute_item] = STATE(593), - [sym_inner_attribute_item] = STATE(593), - [sym_mod_item] = STATE(593), - [sym_foreign_mod_item] = STATE(593), - [sym_struct_item] = STATE(593), - [sym_union_item] = STATE(593), - [sym_enum_item] = STATE(593), - [sym_extern_crate_declaration] = STATE(593), - [sym_const_item] = STATE(593), - [sym_static_item] = STATE(593), - [sym_type_item] = STATE(593), - [sym_function_item] = STATE(593), - [sym_function_signature_item] = STATE(593), - [sym_function_modifiers] = STATE(3559), - [sym_impl_item] = STATE(593), - [sym_trait_item] = STATE(593), - [sym_associated_type] = STATE(593), - [sym_let_declaration] = STATE(593), - [sym_use_declaration] = STATE(593), - [sym_extern_modifier] = STATE(2248), - [sym_visibility_modifier] = STATE(2023), - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1911), - [sym_macro_invocation] = STATE(399), - [sym_scoped_identifier] = STATE(1604), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(420), - [sym_match_expression] = STATE(420), - [sym_while_expression] = STATE(420), - [sym_loop_expression] = STATE(420), - [sym_for_expression] = STATE(420), - [sym_const_block] = STATE(420), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3562), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(420), - [sym_async_block] = STATE(420), - [sym_gen_block] = STATE(420), - [sym_try_block] = STATE(420), - [sym_block] = STATE(420), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym__statement] = STATE(778), + [sym_empty_statement] = STATE(781), + [sym_expression_statement] = STATE(781), + [sym_macro_definition] = STATE(781), + [sym_attribute_item] = STATE(781), + [sym_inner_attribute_item] = STATE(781), + [sym_mod_item] = STATE(781), + [sym_foreign_mod_item] = STATE(781), + [sym_struct_item] = STATE(781), + [sym_union_item] = STATE(781), + [sym_enum_item] = STATE(781), + [sym_extern_crate_declaration] = STATE(781), + [sym_const_item] = STATE(781), + [sym_static_item] = STATE(781), + [sym_type_item] = STATE(781), + [sym_function_item] = STATE(781), + [sym_function_signature_item] = STATE(781), + [sym_function_modifiers] = STATE(3712), + [aux_sym__item_modifiers] = STATE(2292), + [sym_impl_item] = STATE(781), + [sym_trait_item] = STATE(781), + [sym_associated_type] = STATE(781), + [sym_let_declaration] = STATE(781), + [sym_use_declaration] = STATE(781), + [sym_extern_modifier] = STATE(2897), + [sym_visibility_modifier] = STATE(2033), + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3031), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1869), + [sym_macro_invocation] = STATE(406), + [sym_scoped_identifier] = STATE(1630), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(408), + [sym_match_expression] = STATE(408), + [sym_while_expression] = STATE(408), + [sym_loop_expression] = STATE(408), + [sym_for_expression] = STATE(408), + [sym_const_block] = STATE(408), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3587), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(408), + [sym_async_block] = STATE(408), + [sym_gen_block] = STATE(408), + [sym_try_block] = STATE(408), + [sym_block] = STATE(408), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), [sym_line_comment] = STATE(28), [sym_block_comment] = STATE(28), [aux_sym_source_file_repeat1] = STATE(12), - [aux_sym_function_modifiers_repeat1] = STATE(2317), [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), @@ -18862,7 +18992,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), @@ -18890,107 +19020,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(573), - [sym_empty_statement] = STATE(593), - [sym_expression_statement] = STATE(593), - [sym_macro_definition] = STATE(593), - [sym_attribute_item] = STATE(593), - [sym_inner_attribute_item] = STATE(593), - [sym_mod_item] = STATE(593), - [sym_foreign_mod_item] = STATE(593), - [sym_struct_item] = STATE(593), - [sym_union_item] = STATE(593), - [sym_enum_item] = STATE(593), - [sym_extern_crate_declaration] = STATE(593), - [sym_const_item] = STATE(593), - [sym_static_item] = STATE(593), - [sym_type_item] = STATE(593), - [sym_function_item] = STATE(593), - [sym_function_signature_item] = STATE(593), - [sym_function_modifiers] = STATE(3559), - [sym_impl_item] = STATE(593), - [sym_trait_item] = STATE(593), - [sym_associated_type] = STATE(593), - [sym_let_declaration] = STATE(593), - [sym_use_declaration] = STATE(593), - [sym_extern_modifier] = STATE(2248), - [sym_visibility_modifier] = STATE(2023), - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1914), - [sym_macro_invocation] = STATE(399), - [sym_scoped_identifier] = STATE(1604), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(420), - [sym_match_expression] = STATE(420), - [sym_while_expression] = STATE(420), - [sym_loop_expression] = STATE(420), - [sym_for_expression] = STATE(420), - [sym_const_block] = STATE(420), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3562), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(420), - [sym_async_block] = STATE(420), - [sym_gen_block] = STATE(420), - [sym_try_block] = STATE(420), - [sym_block] = STATE(420), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym__statement] = STATE(778), + [sym_empty_statement] = STATE(781), + [sym_expression_statement] = STATE(781), + [sym_macro_definition] = STATE(781), + [sym_attribute_item] = STATE(781), + [sym_inner_attribute_item] = STATE(781), + [sym_mod_item] = STATE(781), + [sym_foreign_mod_item] = STATE(781), + [sym_struct_item] = STATE(781), + [sym_union_item] = STATE(781), + [sym_enum_item] = STATE(781), + [sym_extern_crate_declaration] = STATE(781), + [sym_const_item] = STATE(781), + [sym_static_item] = STATE(781), + [sym_type_item] = STATE(781), + [sym_function_item] = STATE(781), + [sym_function_signature_item] = STATE(781), + [sym_function_modifiers] = STATE(3712), + [aux_sym__item_modifiers] = STATE(2292), + [sym_impl_item] = STATE(781), + [sym_trait_item] = STATE(781), + [sym_associated_type] = STATE(781), + [sym_let_declaration] = STATE(781), + [sym_use_declaration] = STATE(781), + [sym_extern_modifier] = STATE(2897), + [sym_visibility_modifier] = STATE(2033), + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3031), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1872), + [sym_macro_invocation] = STATE(406), + [sym_scoped_identifier] = STATE(1630), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(408), + [sym_match_expression] = STATE(408), + [sym_while_expression] = STATE(408), + [sym_loop_expression] = STATE(408), + [sym_for_expression] = STATE(408), + [sym_const_block] = STATE(408), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3587), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(408), + [sym_async_block] = STATE(408), + [sym_gen_block] = STATE(408), + [sym_try_block] = STATE(408), + [sym_block] = STATE(408), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), [sym_line_comment] = STATE(29), [sym_block_comment] = STATE(29), [aux_sym_source_file_repeat1] = STATE(30), - [aux_sym_function_modifiers_repeat1] = STATE(2317), [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), @@ -19016,7 +19147,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), @@ -19044,107 +19175,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(573), - [sym_empty_statement] = STATE(593), - [sym_expression_statement] = STATE(593), - [sym_macro_definition] = STATE(593), - [sym_attribute_item] = STATE(593), - [sym_inner_attribute_item] = STATE(593), - [sym_mod_item] = STATE(593), - [sym_foreign_mod_item] = STATE(593), - [sym_struct_item] = STATE(593), - [sym_union_item] = STATE(593), - [sym_enum_item] = STATE(593), - [sym_extern_crate_declaration] = STATE(593), - [sym_const_item] = STATE(593), - [sym_static_item] = STATE(593), - [sym_type_item] = STATE(593), - [sym_function_item] = STATE(593), - [sym_function_signature_item] = STATE(593), - [sym_function_modifiers] = STATE(3559), - [sym_impl_item] = STATE(593), - [sym_trait_item] = STATE(593), - [sym_associated_type] = STATE(593), - [sym_let_declaration] = STATE(593), - [sym_use_declaration] = STATE(593), - [sym_extern_modifier] = STATE(2248), - [sym_visibility_modifier] = STATE(2023), - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1915), - [sym_macro_invocation] = STATE(399), - [sym_scoped_identifier] = STATE(1604), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(420), - [sym_match_expression] = STATE(420), - [sym_while_expression] = STATE(420), - [sym_loop_expression] = STATE(420), - [sym_for_expression] = STATE(420), - [sym_const_block] = STATE(420), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3562), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(420), - [sym_async_block] = STATE(420), - [sym_gen_block] = STATE(420), - [sym_try_block] = STATE(420), - [sym_block] = STATE(420), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym__statement] = STATE(778), + [sym_empty_statement] = STATE(781), + [sym_expression_statement] = STATE(781), + [sym_macro_definition] = STATE(781), + [sym_attribute_item] = STATE(781), + [sym_inner_attribute_item] = STATE(781), + [sym_mod_item] = STATE(781), + [sym_foreign_mod_item] = STATE(781), + [sym_struct_item] = STATE(781), + [sym_union_item] = STATE(781), + [sym_enum_item] = STATE(781), + [sym_extern_crate_declaration] = STATE(781), + [sym_const_item] = STATE(781), + [sym_static_item] = STATE(781), + [sym_type_item] = STATE(781), + [sym_function_item] = STATE(781), + [sym_function_signature_item] = STATE(781), + [sym_function_modifiers] = STATE(3712), + [aux_sym__item_modifiers] = STATE(2292), + [sym_impl_item] = STATE(781), + [sym_trait_item] = STATE(781), + [sym_associated_type] = STATE(781), + [sym_let_declaration] = STATE(781), + [sym_use_declaration] = STATE(781), + [sym_extern_modifier] = STATE(2897), + [sym_visibility_modifier] = STATE(2033), + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3031), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1873), + [sym_macro_invocation] = STATE(406), + [sym_scoped_identifier] = STATE(1630), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(408), + [sym_match_expression] = STATE(408), + [sym_while_expression] = STATE(408), + [sym_loop_expression] = STATE(408), + [sym_for_expression] = STATE(408), + [sym_const_block] = STATE(408), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3587), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(408), + [sym_async_block] = STATE(408), + [sym_gen_block] = STATE(408), + [sym_try_block] = STATE(408), + [sym_block] = STATE(408), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), [sym_line_comment] = STATE(30), [sym_block_comment] = STATE(30), [aux_sym_source_file_repeat1] = STATE(12), - [aux_sym_function_modifiers_repeat1] = STATE(2317), [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), @@ -19170,7 +19302,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), @@ -19198,107 +19330,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(573), - [sym_empty_statement] = STATE(593), - [sym_expression_statement] = STATE(593), - [sym_macro_definition] = STATE(593), - [sym_attribute_item] = STATE(593), - [sym_inner_attribute_item] = STATE(593), - [sym_mod_item] = STATE(593), - [sym_foreign_mod_item] = STATE(593), - [sym_struct_item] = STATE(593), - [sym_union_item] = STATE(593), - [sym_enum_item] = STATE(593), - [sym_extern_crate_declaration] = STATE(593), - [sym_const_item] = STATE(593), - [sym_static_item] = STATE(593), - [sym_type_item] = STATE(593), - [sym_function_item] = STATE(593), - [sym_function_signature_item] = STATE(593), - [sym_function_modifiers] = STATE(3559), - [sym_impl_item] = STATE(593), - [sym_trait_item] = STATE(593), - [sym_associated_type] = STATE(593), - [sym_let_declaration] = STATE(593), - [sym_use_declaration] = STATE(593), - [sym_extern_modifier] = STATE(2248), - [sym_visibility_modifier] = STATE(2023), - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1916), - [sym_macro_invocation] = STATE(399), - [sym_scoped_identifier] = STATE(1604), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(420), - [sym_match_expression] = STATE(420), - [sym_while_expression] = STATE(420), - [sym_loop_expression] = STATE(420), - [sym_for_expression] = STATE(420), - [sym_const_block] = STATE(420), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3562), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(420), - [sym_async_block] = STATE(420), - [sym_gen_block] = STATE(420), - [sym_try_block] = STATE(420), - [sym_block] = STATE(420), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym__statement] = STATE(778), + [sym_empty_statement] = STATE(781), + [sym_expression_statement] = STATE(781), + [sym_macro_definition] = STATE(781), + [sym_attribute_item] = STATE(781), + [sym_inner_attribute_item] = STATE(781), + [sym_mod_item] = STATE(781), + [sym_foreign_mod_item] = STATE(781), + [sym_struct_item] = STATE(781), + [sym_union_item] = STATE(781), + [sym_enum_item] = STATE(781), + [sym_extern_crate_declaration] = STATE(781), + [sym_const_item] = STATE(781), + [sym_static_item] = STATE(781), + [sym_type_item] = STATE(781), + [sym_function_item] = STATE(781), + [sym_function_signature_item] = STATE(781), + [sym_function_modifiers] = STATE(3712), + [aux_sym__item_modifiers] = STATE(2292), + [sym_impl_item] = STATE(781), + [sym_trait_item] = STATE(781), + [sym_associated_type] = STATE(781), + [sym_let_declaration] = STATE(781), + [sym_use_declaration] = STATE(781), + [sym_extern_modifier] = STATE(2897), + [sym_visibility_modifier] = STATE(2033), + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3031), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1874), + [sym_macro_invocation] = STATE(406), + [sym_scoped_identifier] = STATE(1630), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(408), + [sym_match_expression] = STATE(408), + [sym_while_expression] = STATE(408), + [sym_loop_expression] = STATE(408), + [sym_for_expression] = STATE(408), + [sym_const_block] = STATE(408), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3587), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(408), + [sym_async_block] = STATE(408), + [sym_gen_block] = STATE(408), + [sym_try_block] = STATE(408), + [sym_block] = STATE(408), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), [sym_line_comment] = STATE(31), [sym_block_comment] = STATE(31), [aux_sym_source_file_repeat1] = STATE(32), - [aux_sym_function_modifiers_repeat1] = STATE(2317), [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), @@ -19324,7 +19457,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), @@ -19352,107 +19485,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(573), - [sym_empty_statement] = STATE(593), - [sym_expression_statement] = STATE(593), - [sym_macro_definition] = STATE(593), - [sym_attribute_item] = STATE(593), - [sym_inner_attribute_item] = STATE(593), - [sym_mod_item] = STATE(593), - [sym_foreign_mod_item] = STATE(593), - [sym_struct_item] = STATE(593), - [sym_union_item] = STATE(593), - [sym_enum_item] = STATE(593), - [sym_extern_crate_declaration] = STATE(593), - [sym_const_item] = STATE(593), - [sym_static_item] = STATE(593), - [sym_type_item] = STATE(593), - [sym_function_item] = STATE(593), - [sym_function_signature_item] = STATE(593), - [sym_function_modifiers] = STATE(3559), - [sym_impl_item] = STATE(593), - [sym_trait_item] = STATE(593), - [sym_associated_type] = STATE(593), - [sym_let_declaration] = STATE(593), - [sym_use_declaration] = STATE(593), - [sym_extern_modifier] = STATE(2248), - [sym_visibility_modifier] = STATE(2023), - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1917), - [sym_macro_invocation] = STATE(399), - [sym_scoped_identifier] = STATE(1604), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(420), - [sym_match_expression] = STATE(420), - [sym_while_expression] = STATE(420), - [sym_loop_expression] = STATE(420), - [sym_for_expression] = STATE(420), - [sym_const_block] = STATE(420), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3562), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(420), - [sym_async_block] = STATE(420), - [sym_gen_block] = STATE(420), - [sym_try_block] = STATE(420), - [sym_block] = STATE(420), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym__statement] = STATE(778), + [sym_empty_statement] = STATE(781), + [sym_expression_statement] = STATE(781), + [sym_macro_definition] = STATE(781), + [sym_attribute_item] = STATE(781), + [sym_inner_attribute_item] = STATE(781), + [sym_mod_item] = STATE(781), + [sym_foreign_mod_item] = STATE(781), + [sym_struct_item] = STATE(781), + [sym_union_item] = STATE(781), + [sym_enum_item] = STATE(781), + [sym_extern_crate_declaration] = STATE(781), + [sym_const_item] = STATE(781), + [sym_static_item] = STATE(781), + [sym_type_item] = STATE(781), + [sym_function_item] = STATE(781), + [sym_function_signature_item] = STATE(781), + [sym_function_modifiers] = STATE(3712), + [aux_sym__item_modifiers] = STATE(2292), + [sym_impl_item] = STATE(781), + [sym_trait_item] = STATE(781), + [sym_associated_type] = STATE(781), + [sym_let_declaration] = STATE(781), + [sym_use_declaration] = STATE(781), + [sym_extern_modifier] = STATE(2897), + [sym_visibility_modifier] = STATE(2033), + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3031), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1876), + [sym_macro_invocation] = STATE(406), + [sym_scoped_identifier] = STATE(1630), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(408), + [sym_match_expression] = STATE(408), + [sym_while_expression] = STATE(408), + [sym_loop_expression] = STATE(408), + [sym_for_expression] = STATE(408), + [sym_const_block] = STATE(408), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3587), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(408), + [sym_async_block] = STATE(408), + [sym_gen_block] = STATE(408), + [sym_try_block] = STATE(408), + [sym_block] = STATE(408), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), [sym_line_comment] = STATE(32), [sym_block_comment] = STATE(32), [aux_sym_source_file_repeat1] = STATE(12), - [aux_sym_function_modifiers_repeat1] = STATE(2317), [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), @@ -19478,7 +19612,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), @@ -19506,107 +19640,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(573), - [sym_empty_statement] = STATE(593), - [sym_expression_statement] = STATE(593), - [sym_macro_definition] = STATE(593), - [sym_attribute_item] = STATE(593), - [sym_inner_attribute_item] = STATE(593), - [sym_mod_item] = STATE(593), - [sym_foreign_mod_item] = STATE(593), - [sym_struct_item] = STATE(593), - [sym_union_item] = STATE(593), - [sym_enum_item] = STATE(593), - [sym_extern_crate_declaration] = STATE(593), - [sym_const_item] = STATE(593), - [sym_static_item] = STATE(593), - [sym_type_item] = STATE(593), - [sym_function_item] = STATE(593), - [sym_function_signature_item] = STATE(593), - [sym_function_modifiers] = STATE(3559), - [sym_impl_item] = STATE(593), - [sym_trait_item] = STATE(593), - [sym_associated_type] = STATE(593), - [sym_let_declaration] = STATE(593), - [sym_use_declaration] = STATE(593), - [sym_extern_modifier] = STATE(2248), - [sym_visibility_modifier] = STATE(2023), - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1918), - [sym_macro_invocation] = STATE(399), - [sym_scoped_identifier] = STATE(1604), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(420), - [sym_match_expression] = STATE(420), - [sym_while_expression] = STATE(420), - [sym_loop_expression] = STATE(420), - [sym_for_expression] = STATE(420), - [sym_const_block] = STATE(420), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3562), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(420), - [sym_async_block] = STATE(420), - [sym_gen_block] = STATE(420), - [sym_try_block] = STATE(420), - [sym_block] = STATE(420), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym__statement] = STATE(778), + [sym_empty_statement] = STATE(781), + [sym_expression_statement] = STATE(781), + [sym_macro_definition] = STATE(781), + [sym_attribute_item] = STATE(781), + [sym_inner_attribute_item] = STATE(781), + [sym_mod_item] = STATE(781), + [sym_foreign_mod_item] = STATE(781), + [sym_struct_item] = STATE(781), + [sym_union_item] = STATE(781), + [sym_enum_item] = STATE(781), + [sym_extern_crate_declaration] = STATE(781), + [sym_const_item] = STATE(781), + [sym_static_item] = STATE(781), + [sym_type_item] = STATE(781), + [sym_function_item] = STATE(781), + [sym_function_signature_item] = STATE(781), + [sym_function_modifiers] = STATE(3712), + [aux_sym__item_modifiers] = STATE(2292), + [sym_impl_item] = STATE(781), + [sym_trait_item] = STATE(781), + [sym_associated_type] = STATE(781), + [sym_let_declaration] = STATE(781), + [sym_use_declaration] = STATE(781), + [sym_extern_modifier] = STATE(2897), + [sym_visibility_modifier] = STATE(2033), + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3031), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1877), + [sym_macro_invocation] = STATE(406), + [sym_scoped_identifier] = STATE(1630), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(408), + [sym_match_expression] = STATE(408), + [sym_while_expression] = STATE(408), + [sym_loop_expression] = STATE(408), + [sym_for_expression] = STATE(408), + [sym_const_block] = STATE(408), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3587), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(408), + [sym_async_block] = STATE(408), + [sym_gen_block] = STATE(408), + [sym_try_block] = STATE(408), + [sym_block] = STATE(408), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), [sym_line_comment] = STATE(33), [sym_block_comment] = STATE(33), - [aux_sym_source_file_repeat1] = STATE(17), - [aux_sym_function_modifiers_repeat1] = STATE(2317), + [aux_sym_source_file_repeat1] = STATE(3), [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), @@ -19632,7 +19767,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), @@ -19660,107 +19795,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(573), - [sym_empty_statement] = STATE(593), - [sym_expression_statement] = STATE(593), - [sym_macro_definition] = STATE(593), - [sym_attribute_item] = STATE(593), - [sym_inner_attribute_item] = STATE(593), - [sym_mod_item] = STATE(593), - [sym_foreign_mod_item] = STATE(593), - [sym_struct_item] = STATE(593), - [sym_union_item] = STATE(593), - [sym_enum_item] = STATE(593), - [sym_extern_crate_declaration] = STATE(593), - [sym_const_item] = STATE(593), - [sym_static_item] = STATE(593), - [sym_type_item] = STATE(593), - [sym_function_item] = STATE(593), - [sym_function_signature_item] = STATE(593), - [sym_function_modifiers] = STATE(3559), - [sym_impl_item] = STATE(593), - [sym_trait_item] = STATE(593), - [sym_associated_type] = STATE(593), - [sym_let_declaration] = STATE(593), - [sym_use_declaration] = STATE(593), - [sym_extern_modifier] = STATE(2248), - [sym_visibility_modifier] = STATE(2023), - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1897), - [sym_macro_invocation] = STATE(399), - [sym_scoped_identifier] = STATE(1604), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(420), - [sym_match_expression] = STATE(420), - [sym_while_expression] = STATE(420), - [sym_loop_expression] = STATE(420), - [sym_for_expression] = STATE(420), - [sym_const_block] = STATE(420), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3562), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(420), - [sym_async_block] = STATE(420), - [sym_gen_block] = STATE(420), - [sym_try_block] = STATE(420), - [sym_block] = STATE(420), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym__statement] = STATE(778), + [sym_empty_statement] = STATE(781), + [sym_expression_statement] = STATE(781), + [sym_macro_definition] = STATE(781), + [sym_attribute_item] = STATE(781), + [sym_inner_attribute_item] = STATE(781), + [sym_mod_item] = STATE(781), + [sym_foreign_mod_item] = STATE(781), + [sym_struct_item] = STATE(781), + [sym_union_item] = STATE(781), + [sym_enum_item] = STATE(781), + [sym_extern_crate_declaration] = STATE(781), + [sym_const_item] = STATE(781), + [sym_static_item] = STATE(781), + [sym_type_item] = STATE(781), + [sym_function_item] = STATE(781), + [sym_function_signature_item] = STATE(781), + [sym_function_modifiers] = STATE(3712), + [aux_sym__item_modifiers] = STATE(2292), + [sym_impl_item] = STATE(781), + [sym_trait_item] = STATE(781), + [sym_associated_type] = STATE(781), + [sym_let_declaration] = STATE(781), + [sym_use_declaration] = STATE(781), + [sym_extern_modifier] = STATE(2897), + [sym_visibility_modifier] = STATE(2033), + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3031), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1781), + [sym_macro_invocation] = STATE(406), + [sym_scoped_identifier] = STATE(1630), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(408), + [sym_match_expression] = STATE(408), + [sym_while_expression] = STATE(408), + [sym_loop_expression] = STATE(408), + [sym_for_expression] = STATE(408), + [sym_const_block] = STATE(408), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3587), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(408), + [sym_async_block] = STATE(408), + [sym_gen_block] = STATE(408), + [sym_try_block] = STATE(408), + [sym_block] = STATE(408), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), [sym_line_comment] = STATE(34), [sym_block_comment] = STATE(34), - [aux_sym_source_file_repeat1] = STATE(18), - [aux_sym_function_modifiers_repeat1] = STATE(2317), + [aux_sym_source_file_repeat1] = STATE(5), [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), @@ -19786,7 +19922,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), @@ -19814,85 +19950,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(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1578), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3031), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1599), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1491), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), [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), @@ -19910,136 +20047,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(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1582), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3031), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1592), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1491), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(237), [sym_label] = STATE(35), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), [sym_line_comment] = STATE(36), [sym_block_comment] = STATE(36), - [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(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), @@ -20057,136 +20194,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(379), - [anon_sym_as] = ACTIONS(377), - [anon_sym_async] = ACTIONS(351), + [anon_sym_SQUOTE] = ACTIONS(384), + [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(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1560), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3031), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1590), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1491), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), [sym_line_comment] = STATE(37), [sym_block_comment] = STATE(37), - [sym_identifier] = ACTIONS(339), - [anon_sym_SEMI] = ACTIONS(381), + [sym_identifier] = ACTIONS(344), + [anon_sym_SEMI] = ACTIONS(386), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(381), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(381), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_RBRACE] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_STAR] = ACTIONS(349), - [anon_sym_QMARK] = ACTIONS(381), + [anon_sym_RPAREN] = ACTIONS(386), + [anon_sym_LBRACK] = ACTIONS(386), + [anon_sym_RBRACK] = ACTIONS(386), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_RBRACE] = ACTIONS(386), + [anon_sym_PLUS] = ACTIONS(388), + [anon_sym_STAR] = ACTIONS(388), + [anon_sym_QMARK] = ACTIONS(386), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), [anon_sym_u16] = ACTIONS(23), @@ -20204,136 +20341,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(383), - [anon_sym_PERCENT] = ACTIONS(383), - [anon_sym_CARET] = ACTIONS(383), - [anon_sym_BANG] = ACTIONS(349), - [anon_sym_AMP] = ACTIONS(385), - [anon_sym_PIPE] = ACTIONS(387), - [anon_sym_AMP_AMP] = ACTIONS(381), - [anon_sym_PIPE_PIPE] = ACTIONS(381), - [anon_sym_LT_LT] = ACTIONS(383), - [anon_sym_GT_GT] = ACTIONS(383), - [anon_sym_PLUS_EQ] = ACTIONS(381), - [anon_sym_DASH_EQ] = ACTIONS(381), - [anon_sym_STAR_EQ] = ACTIONS(381), - [anon_sym_SLASH_EQ] = ACTIONS(381), - [anon_sym_PERCENT_EQ] = ACTIONS(381), - [anon_sym_CARET_EQ] = ACTIONS(381), - [anon_sym_AMP_EQ] = ACTIONS(381), - [anon_sym_PIPE_EQ] = ACTIONS(381), - [anon_sym_LT_LT_EQ] = ACTIONS(381), - [anon_sym_GT_GT_EQ] = ACTIONS(381), - [anon_sym_EQ] = ACTIONS(383), - [anon_sym_EQ_EQ] = ACTIONS(381), - [anon_sym_BANG_EQ] = ACTIONS(381), - [anon_sym_GT] = ACTIONS(383), - [anon_sym_LT] = ACTIONS(389), - [anon_sym_GT_EQ] = ACTIONS(381), - [anon_sym_LT_EQ] = ACTIONS(381), - [anon_sym_DOT] = ACTIONS(383), - [anon_sym_DOT_DOT] = ACTIONS(391), - [anon_sym_DOT_DOT_DOT] = ACTIONS(381), - [anon_sym_DOT_DOT_EQ] = ACTIONS(381), - [anon_sym_COMMA] = ACTIONS(381), + [anon_sym_DASH] = ACTIONS(388), + [anon_sym_SLASH] = ACTIONS(388), + [anon_sym_PERCENT] = ACTIONS(388), + [anon_sym_CARET] = ACTIONS(388), + [anon_sym_BANG] = ACTIONS(354), + [anon_sym_AMP] = ACTIONS(388), + [anon_sym_PIPE] = ACTIONS(388), + [anon_sym_AMP_AMP] = ACTIONS(386), + [anon_sym_PIPE_PIPE] = ACTIONS(386), + [anon_sym_LT_LT] = ACTIONS(388), + [anon_sym_GT_GT] = ACTIONS(388), + [anon_sym_PLUS_EQ] = ACTIONS(386), + [anon_sym_DASH_EQ] = ACTIONS(386), + [anon_sym_STAR_EQ] = ACTIONS(386), + [anon_sym_SLASH_EQ] = ACTIONS(386), + [anon_sym_PERCENT_EQ] = ACTIONS(386), + [anon_sym_CARET_EQ] = ACTIONS(386), + [anon_sym_AMP_EQ] = ACTIONS(386), + [anon_sym_PIPE_EQ] = ACTIONS(386), + [anon_sym_LT_LT_EQ] = ACTIONS(386), + [anon_sym_GT_GT_EQ] = ACTIONS(386), + [anon_sym_EQ] = ACTIONS(388), + [anon_sym_EQ_EQ] = ACTIONS(386), + [anon_sym_BANG_EQ] = ACTIONS(386), + [anon_sym_GT] = ACTIONS(388), + [anon_sym_LT] = ACTIONS(388), + [anon_sym_GT_EQ] = ACTIONS(386), + [anon_sym_LT_EQ] = ACTIONS(386), + [anon_sym_DOT] = ACTIONS(388), + [anon_sym_DOT_DOT] = ACTIONS(388), + [anon_sym_DOT_DOT_DOT] = ACTIONS(386), + [anon_sym_DOT_DOT_EQ] = ACTIONS(386), + [anon_sym_COMMA] = ACTIONS(386), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(383), - [anon_sym_async] = ACTIONS(351), + [anon_sym_as] = ACTIONS(388), + [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(383), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_static] = ACTIONS(372), + [anon_sym_union] = ACTIONS(360), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_else] = ACTIONS(388), + [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(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1581), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3031), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1604), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1491), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), [sym_line_comment] = STATE(38), [sym_block_comment] = STATE(38), - [sym_identifier] = ACTIONS(339), - [anon_sym_SEMI] = ACTIONS(393), + [sym_identifier] = ACTIONS(344), + [anon_sym_SEMI] = ACTIONS(390), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(393), - [anon_sym_LBRACK] = ACTIONS(393), - [anon_sym_RBRACK] = ACTIONS(393), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_RBRACE] = ACTIONS(393), - [anon_sym_PLUS] = ACTIONS(395), - [anon_sym_STAR] = ACTIONS(395), - [anon_sym_QMARK] = ACTIONS(393), + [anon_sym_RPAREN] = ACTIONS(390), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(390), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_RBRACE] = ACTIONS(390), + [anon_sym_PLUS] = ACTIONS(392), + [anon_sym_STAR] = ACTIONS(354), + [anon_sym_QMARK] = ACTIONS(390), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), [anon_sym_u16] = ACTIONS(23), @@ -20351,136 +20488,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(395), - [anon_sym_SLASH] = ACTIONS(395), - [anon_sym_PERCENT] = ACTIONS(395), - [anon_sym_CARET] = ACTIONS(395), - [anon_sym_BANG] = ACTIONS(349), - [anon_sym_AMP] = ACTIONS(395), - [anon_sym_PIPE] = ACTIONS(395), - [anon_sym_AMP_AMP] = ACTIONS(393), - [anon_sym_PIPE_PIPE] = ACTIONS(393), - [anon_sym_LT_LT] = ACTIONS(395), - [anon_sym_GT_GT] = ACTIONS(395), - [anon_sym_PLUS_EQ] = ACTIONS(393), - [anon_sym_DASH_EQ] = ACTIONS(393), - [anon_sym_STAR_EQ] = ACTIONS(393), - [anon_sym_SLASH_EQ] = ACTIONS(393), - [anon_sym_PERCENT_EQ] = ACTIONS(393), - [anon_sym_CARET_EQ] = ACTIONS(393), - [anon_sym_AMP_EQ] = ACTIONS(393), - [anon_sym_PIPE_EQ] = ACTIONS(393), - [anon_sym_LT_LT_EQ] = ACTIONS(393), - [anon_sym_GT_GT_EQ] = ACTIONS(393), - [anon_sym_EQ] = ACTIONS(395), - [anon_sym_EQ_EQ] = ACTIONS(393), - [anon_sym_BANG_EQ] = ACTIONS(393), - [anon_sym_GT] = ACTIONS(395), - [anon_sym_LT] = ACTIONS(395), - [anon_sym_GT_EQ] = ACTIONS(393), - [anon_sym_LT_EQ] = ACTIONS(393), - [anon_sym_DOT] = ACTIONS(395), - [anon_sym_DOT_DOT] = ACTIONS(395), - [anon_sym_DOT_DOT_DOT] = ACTIONS(393), - [anon_sym_DOT_DOT_EQ] = ACTIONS(393), - [anon_sym_COMMA] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(354), + [anon_sym_SLASH] = ACTIONS(392), + [anon_sym_PERCENT] = ACTIONS(392), + [anon_sym_CARET] = ACTIONS(392), + [anon_sym_BANG] = ACTIONS(354), + [anon_sym_AMP] = ACTIONS(394), + [anon_sym_PIPE] = ACTIONS(396), + [anon_sym_AMP_AMP] = ACTIONS(390), + [anon_sym_PIPE_PIPE] = ACTIONS(390), + [anon_sym_LT_LT] = ACTIONS(392), + [anon_sym_GT_GT] = ACTIONS(392), + [anon_sym_PLUS_EQ] = ACTIONS(390), + [anon_sym_DASH_EQ] = ACTIONS(390), + [anon_sym_STAR_EQ] = ACTIONS(390), + [anon_sym_SLASH_EQ] = ACTIONS(390), + [anon_sym_PERCENT_EQ] = ACTIONS(390), + [anon_sym_CARET_EQ] = ACTIONS(390), + [anon_sym_AMP_EQ] = ACTIONS(390), + [anon_sym_PIPE_EQ] = ACTIONS(390), + [anon_sym_LT_LT_EQ] = ACTIONS(390), + [anon_sym_GT_GT_EQ] = ACTIONS(390), + [anon_sym_EQ] = ACTIONS(392), + [anon_sym_EQ_EQ] = ACTIONS(390), + [anon_sym_BANG_EQ] = ACTIONS(390), + [anon_sym_GT] = ACTIONS(392), + [anon_sym_LT] = ACTIONS(398), + [anon_sym_GT_EQ] = ACTIONS(390), + [anon_sym_LT_EQ] = ACTIONS(390), + [anon_sym_DOT] = ACTIONS(392), + [anon_sym_DOT_DOT] = ACTIONS(400), + [anon_sym_DOT_DOT_DOT] = ACTIONS(390), + [anon_sym_DOT_DOT_EQ] = ACTIONS(390), + [anon_sym_COMMA] = ACTIONS(390), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(395), - [anon_sym_async] = ACTIONS(351), + [anon_sym_as] = ACTIONS(392), + [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(395), - [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(392), + [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(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1593), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3031), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1590), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1491), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), [sym_line_comment] = STATE(39), [sym_block_comment] = STATE(39), - [sym_identifier] = ACTIONS(339), - [anon_sym_SEMI] = ACTIONS(397), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(397), - [anon_sym_LBRACK] = ACTIONS(397), - [anon_sym_RBRACK] = ACTIONS(397), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_RBRACE] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_STAR] = ACTIONS(399), - [anon_sym_QMARK] = ACTIONS(397), + [sym_identifier] = ACTIONS(344), + [anon_sym_SEMI] = ACTIONS(386), + [anon_sym_LPAREN] = ACTIONS(386), + [anon_sym_RPAREN] = ACTIONS(386), + [anon_sym_LBRACK] = ACTIONS(386), + [anon_sym_RBRACK] = ACTIONS(386), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_RBRACE] = ACTIONS(386), + [anon_sym_PLUS] = ACTIONS(388), + [anon_sym_STAR] = ACTIONS(388), + [anon_sym_QMARK] = ACTIONS(386), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), [anon_sym_u16] = ACTIONS(23), @@ -20498,136 +20635,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(399), - [anon_sym_SLASH] = ACTIONS(399), - [anon_sym_PERCENT] = ACTIONS(399), - [anon_sym_CARET] = ACTIONS(399), - [anon_sym_BANG] = ACTIONS(349), - [anon_sym_AMP] = ACTIONS(399), - [anon_sym_PIPE] = ACTIONS(399), - [anon_sym_AMP_AMP] = ACTIONS(397), - [anon_sym_PIPE_PIPE] = ACTIONS(397), - [anon_sym_LT_LT] = ACTIONS(399), - [anon_sym_GT_GT] = ACTIONS(399), - [anon_sym_PLUS_EQ] = ACTIONS(397), - [anon_sym_DASH_EQ] = ACTIONS(397), - [anon_sym_STAR_EQ] = ACTIONS(397), - [anon_sym_SLASH_EQ] = ACTIONS(397), - [anon_sym_PERCENT_EQ] = ACTIONS(397), - [anon_sym_CARET_EQ] = ACTIONS(397), - [anon_sym_AMP_EQ] = ACTIONS(397), - [anon_sym_PIPE_EQ] = ACTIONS(397), - [anon_sym_LT_LT_EQ] = ACTIONS(397), - [anon_sym_GT_GT_EQ] = ACTIONS(397), - [anon_sym_EQ] = ACTIONS(399), - [anon_sym_EQ_EQ] = ACTIONS(397), - [anon_sym_BANG_EQ] = ACTIONS(397), - [anon_sym_GT] = ACTIONS(399), - [anon_sym_LT] = ACTIONS(399), - [anon_sym_GT_EQ] = ACTIONS(397), - [anon_sym_LT_EQ] = ACTIONS(397), - [anon_sym_DOT] = ACTIONS(399), - [anon_sym_DOT_DOT] = ACTIONS(399), - [anon_sym_DOT_DOT_DOT] = ACTIONS(397), - [anon_sym_DOT_DOT_EQ] = ACTIONS(397), - [anon_sym_COMMA] = ACTIONS(397), + [anon_sym_DASH] = ACTIONS(388), + [anon_sym_SLASH] = ACTIONS(388), + [anon_sym_PERCENT] = ACTIONS(388), + [anon_sym_CARET] = ACTIONS(388), + [anon_sym_BANG] = ACTIONS(354), + [anon_sym_AMP] = ACTIONS(388), + [anon_sym_PIPE] = ACTIONS(388), + [anon_sym_AMP_AMP] = ACTIONS(386), + [anon_sym_PIPE_PIPE] = ACTIONS(386), + [anon_sym_LT_LT] = ACTIONS(388), + [anon_sym_GT_GT] = ACTIONS(388), + [anon_sym_PLUS_EQ] = ACTIONS(386), + [anon_sym_DASH_EQ] = ACTIONS(386), + [anon_sym_STAR_EQ] = ACTIONS(386), + [anon_sym_SLASH_EQ] = ACTIONS(386), + [anon_sym_PERCENT_EQ] = ACTIONS(386), + [anon_sym_CARET_EQ] = ACTIONS(386), + [anon_sym_AMP_EQ] = ACTIONS(386), + [anon_sym_PIPE_EQ] = ACTIONS(386), + [anon_sym_LT_LT_EQ] = ACTIONS(386), + [anon_sym_GT_GT_EQ] = ACTIONS(386), + [anon_sym_EQ] = ACTIONS(388), + [anon_sym_EQ_EQ] = ACTIONS(386), + [anon_sym_BANG_EQ] = ACTIONS(386), + [anon_sym_GT] = ACTIONS(388), + [anon_sym_LT] = ACTIONS(388), + [anon_sym_GT_EQ] = ACTIONS(386), + [anon_sym_LT_EQ] = ACTIONS(386), + [anon_sym_DOT] = ACTIONS(388), + [anon_sym_DOT_DOT] = ACTIONS(388), + [anon_sym_DOT_DOT_DOT] = ACTIONS(386), + [anon_sym_DOT_DOT_EQ] = ACTIONS(386), + [anon_sym_COMMA] = ACTIONS(386), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(399), - [anon_sym_async] = ACTIONS(351), + [anon_sym_as] = ACTIONS(388), + [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(399), - [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(388), + [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(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1561), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3031), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1595), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1491), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), [sym_line_comment] = STATE(40), [sym_block_comment] = STATE(40), - [sym_identifier] = ACTIONS(339), - [anon_sym_SEMI] = ACTIONS(401), + [sym_identifier] = ACTIONS(344), + [anon_sym_SEMI] = ACTIONS(402), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(401), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_RBRACE] = ACTIONS(401), - [anon_sym_PLUS] = ACTIONS(403), - [anon_sym_STAR] = ACTIONS(349), - [anon_sym_QMARK] = ACTIONS(401), + [anon_sym_RPAREN] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(402), + [anon_sym_RBRACK] = ACTIONS(402), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_RBRACE] = ACTIONS(402), + [anon_sym_PLUS] = ACTIONS(404), + [anon_sym_STAR] = ACTIONS(404), + [anon_sym_QMARK] = ACTIONS(402), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), [anon_sym_u16] = ACTIONS(23), @@ -20645,136 +20782,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(403), - [anon_sym_PERCENT] = ACTIONS(403), - [anon_sym_CARET] = ACTIONS(403), - [anon_sym_BANG] = ACTIONS(349), - [anon_sym_AMP] = ACTIONS(385), - [anon_sym_PIPE] = ACTIONS(387), - [anon_sym_AMP_AMP] = ACTIONS(401), - [anon_sym_PIPE_PIPE] = ACTIONS(401), - [anon_sym_LT_LT] = ACTIONS(403), - [anon_sym_GT_GT] = ACTIONS(403), - [anon_sym_PLUS_EQ] = ACTIONS(401), - [anon_sym_DASH_EQ] = ACTIONS(401), - [anon_sym_STAR_EQ] = ACTIONS(401), - [anon_sym_SLASH_EQ] = ACTIONS(401), - [anon_sym_PERCENT_EQ] = ACTIONS(401), - [anon_sym_CARET_EQ] = ACTIONS(401), - [anon_sym_AMP_EQ] = ACTIONS(401), - [anon_sym_PIPE_EQ] = ACTIONS(401), - [anon_sym_LT_LT_EQ] = ACTIONS(401), - [anon_sym_GT_GT_EQ] = ACTIONS(401), - [anon_sym_EQ] = ACTIONS(403), - [anon_sym_EQ_EQ] = ACTIONS(401), - [anon_sym_BANG_EQ] = ACTIONS(401), - [anon_sym_GT] = ACTIONS(403), - [anon_sym_LT] = ACTIONS(389), - [anon_sym_GT_EQ] = ACTIONS(401), - [anon_sym_LT_EQ] = ACTIONS(401), - [anon_sym_DOT] = ACTIONS(403), - [anon_sym_DOT_DOT] = ACTIONS(391), - [anon_sym_DOT_DOT_DOT] = ACTIONS(401), - [anon_sym_DOT_DOT_EQ] = ACTIONS(401), - [anon_sym_COMMA] = ACTIONS(401), + [anon_sym_DASH] = ACTIONS(404), + [anon_sym_SLASH] = ACTIONS(404), + [anon_sym_PERCENT] = ACTIONS(404), + [anon_sym_CARET] = ACTIONS(404), + [anon_sym_BANG] = ACTIONS(354), + [anon_sym_AMP] = ACTIONS(404), + [anon_sym_PIPE] = ACTIONS(404), + [anon_sym_AMP_AMP] = ACTIONS(402), + [anon_sym_PIPE_PIPE] = ACTIONS(402), + [anon_sym_LT_LT] = ACTIONS(404), + [anon_sym_GT_GT] = ACTIONS(404), + [anon_sym_PLUS_EQ] = ACTIONS(402), + [anon_sym_DASH_EQ] = ACTIONS(402), + [anon_sym_STAR_EQ] = ACTIONS(402), + [anon_sym_SLASH_EQ] = ACTIONS(402), + [anon_sym_PERCENT_EQ] = ACTIONS(402), + [anon_sym_CARET_EQ] = ACTIONS(402), + [anon_sym_AMP_EQ] = ACTIONS(402), + [anon_sym_PIPE_EQ] = ACTIONS(402), + [anon_sym_LT_LT_EQ] = ACTIONS(402), + [anon_sym_GT_GT_EQ] = ACTIONS(402), + [anon_sym_EQ] = ACTIONS(404), + [anon_sym_EQ_EQ] = ACTIONS(402), + [anon_sym_BANG_EQ] = ACTIONS(402), + [anon_sym_GT] = ACTIONS(404), + [anon_sym_LT] = ACTIONS(404), + [anon_sym_GT_EQ] = ACTIONS(402), + [anon_sym_LT_EQ] = ACTIONS(402), + [anon_sym_DOT] = ACTIONS(404), + [anon_sym_DOT_DOT] = ACTIONS(404), + [anon_sym_DOT_DOT_DOT] = ACTIONS(402), + [anon_sym_DOT_DOT_EQ] = ACTIONS(402), + [anon_sym_COMMA] = ACTIONS(402), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(403), - [anon_sym_async] = ACTIONS(351), + [anon_sym_as] = ACTIONS(404), + [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(403), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_static] = ACTIONS(372), + [anon_sym_union] = ACTIONS(360), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_else] = ACTIONS(404), + [anon_sym_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(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1581), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3031), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1595), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1491), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), [sym_line_comment] = STATE(41), [sym_block_comment] = STATE(41), - [sym_identifier] = ACTIONS(339), - [anon_sym_SEMI] = ACTIONS(393), - [anon_sym_LPAREN] = ACTIONS(393), - [anon_sym_RPAREN] = ACTIONS(393), - [anon_sym_LBRACK] = ACTIONS(393), - [anon_sym_RBRACK] = ACTIONS(393), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_RBRACE] = ACTIONS(393), - [anon_sym_PLUS] = ACTIONS(395), - [anon_sym_STAR] = ACTIONS(395), - [anon_sym_QMARK] = ACTIONS(393), + [sym_identifier] = ACTIONS(344), + [anon_sym_SEMI] = ACTIONS(402), + [anon_sym_LPAREN] = ACTIONS(402), + [anon_sym_RPAREN] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(402), + [anon_sym_RBRACK] = ACTIONS(402), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_RBRACE] = ACTIONS(402), + [anon_sym_PLUS] = ACTIONS(404), + [anon_sym_STAR] = ACTIONS(404), + [anon_sym_QMARK] = ACTIONS(402), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), [anon_sym_u16] = ACTIONS(23), @@ -20792,136 +20929,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(395), - [anon_sym_SLASH] = ACTIONS(395), - [anon_sym_PERCENT] = ACTIONS(395), - [anon_sym_CARET] = ACTIONS(395), - [anon_sym_BANG] = ACTIONS(349), - [anon_sym_AMP] = ACTIONS(395), - [anon_sym_PIPE] = ACTIONS(395), - [anon_sym_AMP_AMP] = ACTIONS(393), - [anon_sym_PIPE_PIPE] = ACTIONS(393), - [anon_sym_LT_LT] = ACTIONS(395), - [anon_sym_GT_GT] = ACTIONS(395), - [anon_sym_PLUS_EQ] = ACTIONS(393), - [anon_sym_DASH_EQ] = ACTIONS(393), - [anon_sym_STAR_EQ] = ACTIONS(393), - [anon_sym_SLASH_EQ] = ACTIONS(393), - [anon_sym_PERCENT_EQ] = ACTIONS(393), - [anon_sym_CARET_EQ] = ACTIONS(393), - [anon_sym_AMP_EQ] = ACTIONS(393), - [anon_sym_PIPE_EQ] = ACTIONS(393), - [anon_sym_LT_LT_EQ] = ACTIONS(393), - [anon_sym_GT_GT_EQ] = ACTIONS(393), - [anon_sym_EQ] = ACTIONS(395), - [anon_sym_EQ_EQ] = ACTIONS(393), - [anon_sym_BANG_EQ] = ACTIONS(393), - [anon_sym_GT] = ACTIONS(395), - [anon_sym_LT] = ACTIONS(395), - [anon_sym_GT_EQ] = ACTIONS(393), - [anon_sym_LT_EQ] = ACTIONS(393), - [anon_sym_DOT] = ACTIONS(395), - [anon_sym_DOT_DOT] = ACTIONS(395), - [anon_sym_DOT_DOT_DOT] = ACTIONS(393), - [anon_sym_DOT_DOT_EQ] = ACTIONS(393), - [anon_sym_COMMA] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(404), + [anon_sym_SLASH] = ACTIONS(404), + [anon_sym_PERCENT] = ACTIONS(404), + [anon_sym_CARET] = ACTIONS(404), + [anon_sym_BANG] = ACTIONS(354), + [anon_sym_AMP] = ACTIONS(404), + [anon_sym_PIPE] = ACTIONS(404), + [anon_sym_AMP_AMP] = ACTIONS(402), + [anon_sym_PIPE_PIPE] = ACTIONS(402), + [anon_sym_LT_LT] = ACTIONS(404), + [anon_sym_GT_GT] = ACTIONS(404), + [anon_sym_PLUS_EQ] = ACTIONS(402), + [anon_sym_DASH_EQ] = ACTIONS(402), + [anon_sym_STAR_EQ] = ACTIONS(402), + [anon_sym_SLASH_EQ] = ACTIONS(402), + [anon_sym_PERCENT_EQ] = ACTIONS(402), + [anon_sym_CARET_EQ] = ACTIONS(402), + [anon_sym_AMP_EQ] = ACTIONS(402), + [anon_sym_PIPE_EQ] = ACTIONS(402), + [anon_sym_LT_LT_EQ] = ACTIONS(402), + [anon_sym_GT_GT_EQ] = ACTIONS(402), + [anon_sym_EQ] = ACTIONS(404), + [anon_sym_EQ_EQ] = ACTIONS(402), + [anon_sym_BANG_EQ] = ACTIONS(402), + [anon_sym_GT] = ACTIONS(404), + [anon_sym_LT] = ACTIONS(404), + [anon_sym_GT_EQ] = ACTIONS(402), + [anon_sym_LT_EQ] = ACTIONS(402), + [anon_sym_DOT] = ACTIONS(404), + [anon_sym_DOT_DOT] = ACTIONS(404), + [anon_sym_DOT_DOT_DOT] = ACTIONS(402), + [anon_sym_DOT_DOT_EQ] = ACTIONS(402), + [anon_sym_COMMA] = ACTIONS(402), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(395), - [anon_sym_async] = ACTIONS(351), + [anon_sym_as] = ACTIONS(404), + [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(395), - [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(404), + [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(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1593), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3031), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1594), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1491), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), [sym_line_comment] = STATE(42), [sym_block_comment] = STATE(42), - [sym_identifier] = ACTIONS(339), - [anon_sym_SEMI] = ACTIONS(397), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_RPAREN] = ACTIONS(397), - [anon_sym_LBRACK] = ACTIONS(397), - [anon_sym_RBRACK] = ACTIONS(397), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_RBRACE] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_STAR] = ACTIONS(399), - [anon_sym_QMARK] = ACTIONS(397), + [sym_identifier] = ACTIONS(344), + [anon_sym_SEMI] = ACTIONS(406), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(406), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(406), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_RBRACE] = ACTIONS(406), + [anon_sym_PLUS] = ACTIONS(408), + [anon_sym_STAR] = ACTIONS(354), + [anon_sym_QMARK] = ACTIONS(406), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), [anon_sym_u16] = ACTIONS(23), @@ -20939,3638 +21076,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(399), - [anon_sym_SLASH] = ACTIONS(399), - [anon_sym_PERCENT] = ACTIONS(399), - [anon_sym_CARET] = ACTIONS(399), - [anon_sym_BANG] = ACTIONS(349), - [anon_sym_AMP] = ACTIONS(399), - [anon_sym_PIPE] = ACTIONS(399), - [anon_sym_AMP_AMP] = ACTIONS(397), - [anon_sym_PIPE_PIPE] = ACTIONS(397), - [anon_sym_LT_LT] = ACTIONS(399), - [anon_sym_GT_GT] = ACTIONS(399), - [anon_sym_PLUS_EQ] = ACTIONS(397), - [anon_sym_DASH_EQ] = ACTIONS(397), - [anon_sym_STAR_EQ] = ACTIONS(397), - [anon_sym_SLASH_EQ] = ACTIONS(397), - [anon_sym_PERCENT_EQ] = ACTIONS(397), - [anon_sym_CARET_EQ] = ACTIONS(397), - [anon_sym_AMP_EQ] = ACTIONS(397), - [anon_sym_PIPE_EQ] = ACTIONS(397), - [anon_sym_LT_LT_EQ] = ACTIONS(397), - [anon_sym_GT_GT_EQ] = ACTIONS(397), - [anon_sym_EQ] = ACTIONS(399), - [anon_sym_EQ_EQ] = ACTIONS(397), - [anon_sym_BANG_EQ] = ACTIONS(397), - [anon_sym_GT] = ACTIONS(399), - [anon_sym_LT] = ACTIONS(399), - [anon_sym_GT_EQ] = ACTIONS(397), - [anon_sym_LT_EQ] = ACTIONS(397), - [anon_sym_DOT] = ACTIONS(399), - [anon_sym_DOT_DOT] = ACTIONS(399), - [anon_sym_DOT_DOT_DOT] = ACTIONS(397), - [anon_sym_DOT_DOT_EQ] = ACTIONS(397), - [anon_sym_COMMA] = ACTIONS(397), + [anon_sym_DASH] = ACTIONS(354), + [anon_sym_SLASH] = ACTIONS(408), + [anon_sym_PERCENT] = ACTIONS(408), + [anon_sym_CARET] = ACTIONS(408), + [anon_sym_BANG] = ACTIONS(354), + [anon_sym_AMP] = ACTIONS(394), + [anon_sym_PIPE] = ACTIONS(396), + [anon_sym_AMP_AMP] = ACTIONS(406), + [anon_sym_PIPE_PIPE] = ACTIONS(406), + [anon_sym_LT_LT] = ACTIONS(408), + [anon_sym_GT_GT] = ACTIONS(408), + [anon_sym_PLUS_EQ] = ACTIONS(406), + [anon_sym_DASH_EQ] = ACTIONS(406), + [anon_sym_STAR_EQ] = ACTIONS(406), + [anon_sym_SLASH_EQ] = ACTIONS(406), + [anon_sym_PERCENT_EQ] = ACTIONS(406), + [anon_sym_CARET_EQ] = ACTIONS(406), + [anon_sym_AMP_EQ] = ACTIONS(406), + [anon_sym_PIPE_EQ] = ACTIONS(406), + [anon_sym_LT_LT_EQ] = ACTIONS(406), + [anon_sym_GT_GT_EQ] = ACTIONS(406), + [anon_sym_EQ] = ACTIONS(408), + [anon_sym_EQ_EQ] = ACTIONS(406), + [anon_sym_BANG_EQ] = ACTIONS(406), + [anon_sym_GT] = ACTIONS(408), + [anon_sym_LT] = ACTIONS(398), + [anon_sym_GT_EQ] = ACTIONS(406), + [anon_sym_LT_EQ] = ACTIONS(406), + [anon_sym_DOT] = ACTIONS(408), + [anon_sym_DOT_DOT] = ACTIONS(400), + [anon_sym_DOT_DOT_DOT] = ACTIONS(406), + [anon_sym_DOT_DOT_EQ] = ACTIONS(406), + [anon_sym_COMMA] = ACTIONS(406), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(399), - [anon_sym_async] = ACTIONS(351), + [anon_sym_as] = ACTIONS(408), + [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(399), - [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(408), + [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(3667), - [sym_generic_function] = STATE(1921), - [sym_generic_type_with_turbofish] = STATE(3104), - [sym__expression_except_range] = STATE(1706), - [sym__expression] = STATE(1821), - [sym_macro_invocation] = STATE(1722), - [sym_scoped_identifier] = STATE(1634), - [sym_scoped_type_identifier_in_expression_position] = STATE(3327), - [sym_range_expression] = STATE(1718), - [sym_unary_expression] = STATE(1921), - [sym_try_expression] = STATE(1921), - [sym_reference_expression] = STATE(1921), - [sym_binary_expression] = STATE(1921), - [sym_assignment_expression] = STATE(1921), - [sym_compound_assignment_expr] = STATE(1921), - [sym_type_cast_expression] = STATE(1921), - [sym_return_expression] = STATE(1921), - [sym_yield_expression] = STATE(1921), - [sym_call_expression] = STATE(1921), - [sym_array_expression] = STATE(1921), - [sym_parenthesized_expression] = STATE(1921), - [sym_tuple_expression] = STATE(1921), - [sym_unit_expression] = STATE(1921), - [sym_struct_expression] = STATE(1921), - [sym_if_expression] = STATE(1921), - [sym_match_expression] = STATE(1921), - [sym_while_expression] = STATE(1921), - [sym_loop_expression] = STATE(1921), - [sym_for_expression] = STATE(1921), - [sym_const_block] = STATE(1921), - [sym_closure_expression] = STATE(1921), - [sym_closure_parameters] = STATE(245), - [sym_label] = STATE(3773), - [sym_break_expression] = STATE(1921), - [sym_continue_expression] = STATE(1921), - [sym_index_expression] = STATE(1921), - [sym_await_expression] = STATE(1921), - [sym_field_expression] = STATE(1693), - [sym_unsafe_block] = STATE(1921), - [sym_async_block] = STATE(1921), - [sym_gen_block] = STATE(1921), - [sym_try_block] = STATE(1921), - [sym_block] = STATE(1921), - [sym__literal] = STATE(1921), - [sym_string_literal] = STATE(1852), - [sym_raw_string_literal] = STATE(1852), - [sym_boolean_literal] = STATE(1852), + [sym_bracketed_type] = STATE(3702), + [sym_generic_function] = STATE(1815), + [sym_generic_type_with_turbofish] = STATE(2969), + [sym__expression_except_range] = STATE(1694), + [sym__expression] = STATE(1831), + [sym_macro_invocation] = STATE(1832), + [sym_scoped_identifier] = STATE(1654), + [sym_scoped_type_identifier_in_expression_position] = STATE(3227), + [sym_range_expression] = STATE(1820), + [sym_unary_expression] = STATE(1815), + [sym_try_expression] = STATE(1815), + [sym_reference_expression] = STATE(1815), + [sym_binary_expression] = STATE(1815), + [sym_assignment_expression] = STATE(1815), + [sym_compound_assignment_expr] = STATE(1815), + [sym_type_cast_expression] = STATE(1815), + [sym_return_expression] = STATE(1815), + [sym_yield_expression] = STATE(1815), + [sym_call_expression] = STATE(1815), + [sym_array_expression] = STATE(1815), + [sym_parenthesized_expression] = STATE(1815), + [sym_tuple_expression] = STATE(1815), + [sym_unit_expression] = STATE(1815), + [sym_struct_expression] = STATE(1815), + [sym_if_expression] = STATE(1815), + [sym_match_expression] = STATE(1815), + [sym_while_expression] = STATE(1815), + [sym_loop_expression] = STATE(1815), + [sym_for_expression] = STATE(1815), + [sym_const_block] = STATE(1815), + [sym_closure_expression] = STATE(1815), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3807), + [sym_break_expression] = STATE(1815), + [sym_continue_expression] = STATE(1815), + [sym_index_expression] = STATE(1815), + [sym_await_expression] = STATE(1815), + [sym_field_expression] = STATE(1695), + [sym_unsafe_block] = STATE(1815), + [sym_async_block] = STATE(1815), + [sym_gen_block] = STATE(1815), + [sym_try_block] = STATE(1815), + [sym_block] = STATE(1815), + [sym__literal] = STATE(1815), + [sym_string_literal] = STATE(1733), + [sym_raw_string_literal] = STATE(1733), + [sym_boolean_literal] = STATE(1733), [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(3667), - [sym_generic_function] = STATE(1921), - [sym_generic_type_with_turbofish] = STATE(3104), - [sym__expression_except_range] = STATE(1706), - [sym__expression] = STATE(1746), - [sym_macro_invocation] = STATE(1722), - [sym_scoped_identifier] = STATE(1634), - [sym_scoped_type_identifier_in_expression_position] = STATE(3327), - [sym_range_expression] = STATE(1718), - [sym_unary_expression] = STATE(1921), - [sym_try_expression] = STATE(1921), - [sym_reference_expression] = STATE(1921), - [sym_binary_expression] = STATE(1921), - [sym_assignment_expression] = STATE(1921), - [sym_compound_assignment_expr] = STATE(1921), - [sym_type_cast_expression] = STATE(1921), - [sym_return_expression] = STATE(1921), - [sym_yield_expression] = STATE(1921), - [sym_call_expression] = STATE(1921), - [sym_array_expression] = STATE(1921), - [sym_parenthesized_expression] = STATE(1921), - [sym_tuple_expression] = STATE(1921), - [sym_unit_expression] = STATE(1921), - [sym_struct_expression] = STATE(1921), - [sym_if_expression] = STATE(1921), - [sym_match_expression] = STATE(1921), - [sym_while_expression] = STATE(1921), - [sym_loop_expression] = STATE(1921), - [sym_for_expression] = STATE(1921), - [sym_const_block] = STATE(1921), - [sym_closure_expression] = STATE(1921), - [sym_closure_parameters] = STATE(245), - [sym_label] = STATE(43), - [sym_break_expression] = STATE(1921), - [sym_continue_expression] = STATE(1921), - [sym_index_expression] = STATE(1921), - [sym_await_expression] = STATE(1921), - [sym_field_expression] = STATE(1693), - [sym_unsafe_block] = STATE(1921), - [sym_async_block] = STATE(1921), - [sym_gen_block] = STATE(1921), - [sym_try_block] = STATE(1921), - [sym_block] = STATE(1921), - [sym__literal] = STATE(1921), - [sym_string_literal] = STATE(1852), - [sym_raw_string_literal] = STATE(1852), - [sym_boolean_literal] = STATE(1852), + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3114), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1857), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1631), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(262), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), [sym_line_comment] = STATE(44), [sym_block_comment] = STATE(44), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(375), - [anon_sym_LBRACK] = ACTIONS(375), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_EQ_GT] = ACTIONS(375), - [anon_sym_PLUS] = ACTIONS(377), - [anon_sym_STAR] = ACTIONS(377), - [anon_sym_QMARK] = ACTIONS(375), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(377), - [anon_sym_SLASH] = ACTIONS(377), - [anon_sym_PERCENT] = ACTIONS(377), - [anon_sym_CARET] = ACTIONS(377), - [anon_sym_BANG] = ACTIONS(413), - [anon_sym_AMP] = ACTIONS(377), - [anon_sym_PIPE] = ACTIONS(377), - [anon_sym_AMP_AMP] = ACTIONS(375), - [anon_sym_PIPE_PIPE] = ACTIONS(375), - [anon_sym_LT_LT] = ACTIONS(377), - [anon_sym_GT_GT] = ACTIONS(377), - [anon_sym_PLUS_EQ] = ACTIONS(375), - [anon_sym_DASH_EQ] = ACTIONS(375), - [anon_sym_STAR_EQ] = ACTIONS(375), - [anon_sym_SLASH_EQ] = ACTIONS(375), - [anon_sym_PERCENT_EQ] = ACTIONS(375), - [anon_sym_CARET_EQ] = ACTIONS(375), - [anon_sym_AMP_EQ] = ACTIONS(375), - [anon_sym_PIPE_EQ] = ACTIONS(375), - [anon_sym_LT_LT_EQ] = ACTIONS(375), - [anon_sym_GT_GT_EQ] = ACTIONS(375), - [anon_sym_EQ] = ACTIONS(377), - [anon_sym_EQ_EQ] = ACTIONS(375), - [anon_sym_BANG_EQ] = ACTIONS(375), - [anon_sym_GT] = ACTIONS(377), - [anon_sym_LT] = ACTIONS(377), - [anon_sym_GT_EQ] = ACTIONS(375), - [anon_sym_LT_EQ] = ACTIONS(375), - [anon_sym_DOT] = ACTIONS(377), - [anon_sym_DOT_DOT] = ACTIONS(377), - [anon_sym_DOT_DOT_DOT] = ACTIONS(375), - [anon_sym_DOT_DOT_EQ] = ACTIONS(375), - [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(465), - [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), + [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(478), + [anon_sym_break] = ACTIONS(480), + [anon_sym_const] = ACTIONS(358), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(482), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(484), + [anon_sym_if] = ACTIONS(366), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(486), + [anon_sym_static] = ACTIONS(488), + [anon_sym_union] = ACTIONS(482), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_yield] = ACTIONS(490), + [anon_sym_move] = ACTIONS(492), + [anon_sym_try] = ACTIONS(378), + [sym_integer_literal] = ACTIONS(99), + [aux_sym_string_literal_token1] = ACTIONS(101), + [sym_char_literal] = ACTIONS(99), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(494), + [sym_super] = ACTIONS(496), + [sym_crate] = ACTIONS(496), + [sym_metavariable] = ACTIONS(498), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), }, [STATE(45)] = { - [sym_bracketed_type] = STATE(3667), - [sym_generic_function] = STATE(1921), - [sym_generic_type_with_turbofish] = STATE(3104), - [sym__expression_except_range] = STATE(1706), - [sym__expression] = STATE(1836), - [sym_macro_invocation] = STATE(1722), - [sym_scoped_identifier] = STATE(1634), - [sym_scoped_type_identifier_in_expression_position] = STATE(3327), - [sym_range_expression] = STATE(1718), - [sym_unary_expression] = STATE(1921), - [sym_try_expression] = STATE(1921), - [sym_reference_expression] = STATE(1921), - [sym_binary_expression] = STATE(1921), - [sym_assignment_expression] = STATE(1921), - [sym_compound_assignment_expr] = STATE(1921), - [sym_type_cast_expression] = STATE(1921), - [sym_return_expression] = STATE(1921), - [sym_yield_expression] = STATE(1921), - [sym_call_expression] = STATE(1921), - [sym_array_expression] = STATE(1921), - [sym_parenthesized_expression] = STATE(1921), - [sym_tuple_expression] = STATE(1921), - [sym_unit_expression] = STATE(1921), - [sym_struct_expression] = STATE(1921), - [sym_if_expression] = STATE(1921), - [sym_match_expression] = STATE(1921), - [sym_while_expression] = STATE(1921), - [sym_loop_expression] = STATE(1921), - [sym_for_expression] = STATE(1921), - [sym_const_block] = STATE(1921), - [sym_closure_expression] = STATE(1921), - [sym_closure_parameters] = STATE(245), - [sym_label] = STATE(3773), - [sym_break_expression] = STATE(1921), - [sym_continue_expression] = STATE(1921), - [sym_index_expression] = STATE(1921), - [sym_await_expression] = STATE(1921), - [sym_field_expression] = STATE(1693), - [sym_unsafe_block] = STATE(1921), - [sym_async_block] = STATE(1921), - [sym_gen_block] = STATE(1921), - [sym_try_block] = STATE(1921), - [sym_block] = STATE(1921), - [sym__literal] = STATE(1921), - [sym_string_literal] = STATE(1852), - [sym_raw_string_literal] = STATE(1852), - [sym_boolean_literal] = STATE(1852), + [sym_bracketed_type] = STATE(3702), + [sym_generic_function] = STATE(1815), + [sym_generic_type_with_turbofish] = STATE(2969), + [sym__expression_except_range] = STATE(1694), + [sym__expression] = STATE(1762), + [sym_macro_invocation] = STATE(1832), + [sym_scoped_identifier] = STATE(1654), + [sym_scoped_type_identifier_in_expression_position] = STATE(3227), + [sym_range_expression] = STATE(1820), + [sym_unary_expression] = STATE(1815), + [sym_try_expression] = STATE(1815), + [sym_reference_expression] = STATE(1815), + [sym_binary_expression] = STATE(1815), + [sym_assignment_expression] = STATE(1815), + [sym_compound_assignment_expr] = STATE(1815), + [sym_type_cast_expression] = STATE(1815), + [sym_return_expression] = STATE(1815), + [sym_yield_expression] = STATE(1815), + [sym_call_expression] = STATE(1815), + [sym_array_expression] = STATE(1815), + [sym_parenthesized_expression] = STATE(1815), + [sym_tuple_expression] = STATE(1815), + [sym_unit_expression] = STATE(1815), + [sym_struct_expression] = STATE(1815), + [sym_if_expression] = STATE(1815), + [sym_match_expression] = STATE(1815), + [sym_while_expression] = STATE(1815), + [sym_loop_expression] = STATE(1815), + [sym_for_expression] = STATE(1815), + [sym_const_block] = STATE(1815), + [sym_closure_expression] = STATE(1815), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3807), + [sym_break_expression] = STATE(1815), + [sym_continue_expression] = STATE(1815), + [sym_index_expression] = STATE(1815), + [sym_await_expression] = STATE(1815), + [sym_field_expression] = STATE(1695), + [sym_unsafe_block] = STATE(1815), + [sym_async_block] = STATE(1815), + [sym_gen_block] = STATE(1815), + [sym_try_block] = STATE(1815), + [sym_block] = STATE(1815), + [sym__literal] = STATE(1815), + [sym_string_literal] = STATE(1733), + [sym_raw_string_literal] = STATE(1733), + [sym_boolean_literal] = STATE(1733), [sym_line_comment] = STATE(45), [sym_block_comment] = STATE(45), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_LBRACK] = ACTIONS(397), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_EQ_GT] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_STAR] = ACTIONS(399), - [anon_sym_QMARK] = ACTIONS(397), - [anon_sym_u8] = ACTIONS(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(399), - [anon_sym_SLASH] = ACTIONS(399), - [anon_sym_PERCENT] = ACTIONS(399), - [anon_sym_CARET] = ACTIONS(399), - [anon_sym_BANG] = ACTIONS(413), - [anon_sym_AMP] = ACTIONS(399), - [anon_sym_PIPE] = ACTIONS(399), - [anon_sym_AMP_AMP] = ACTIONS(397), - [anon_sym_PIPE_PIPE] = ACTIONS(397), - [anon_sym_LT_LT] = ACTIONS(399), - [anon_sym_GT_GT] = ACTIONS(399), - [anon_sym_PLUS_EQ] = ACTIONS(397), - [anon_sym_DASH_EQ] = ACTIONS(397), - [anon_sym_STAR_EQ] = ACTIONS(397), - [anon_sym_SLASH_EQ] = ACTIONS(397), - [anon_sym_PERCENT_EQ] = ACTIONS(397), - [anon_sym_CARET_EQ] = ACTIONS(397), - [anon_sym_AMP_EQ] = ACTIONS(397), - [anon_sym_PIPE_EQ] = ACTIONS(397), - [anon_sym_LT_LT_EQ] = ACTIONS(397), - [anon_sym_GT_GT_EQ] = ACTIONS(397), - [anon_sym_EQ] = ACTIONS(399), - [anon_sym_EQ_EQ] = ACTIONS(397), - [anon_sym_BANG_EQ] = ACTIONS(397), - [anon_sym_GT] = ACTIONS(399), - [anon_sym_LT] = ACTIONS(399), - [anon_sym_GT_EQ] = ACTIONS(397), - [anon_sym_LT_EQ] = ACTIONS(397), - [anon_sym_DOT] = ACTIONS(399), - [anon_sym_DOT_DOT] = ACTIONS(399), - [anon_sym_DOT_DOT_DOT] = ACTIONS(397), - [anon_sym_DOT_DOT_EQ] = ACTIONS(397), - [anon_sym_COLON_COLON] = ACTIONS(415), + [sym_identifier] = ACTIONS(410), + [anon_sym_LPAREN] = ACTIONS(500), + [anon_sym_LBRACK] = ACTIONS(502), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_EQ_GT] = ACTIONS(390), + [anon_sym_PLUS] = ACTIONS(392), + [anon_sym_STAR] = ACTIONS(418), + [anon_sym_QMARK] = ACTIONS(390), + [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(392), + [anon_sym_PERCENT] = ACTIONS(392), + [anon_sym_CARET] = ACTIONS(392), + [anon_sym_BANG] = ACTIONS(418), + [anon_sym_AMP] = ACTIONS(504), + [anon_sym_PIPE] = ACTIONS(396), + [anon_sym_AMP_AMP] = ACTIONS(390), + [anon_sym_PIPE_PIPE] = ACTIONS(390), + [anon_sym_LT_LT] = ACTIONS(392), + [anon_sym_GT_GT] = ACTIONS(392), + [anon_sym_PLUS_EQ] = ACTIONS(390), + [anon_sym_DASH_EQ] = ACTIONS(390), + [anon_sym_STAR_EQ] = ACTIONS(390), + [anon_sym_SLASH_EQ] = ACTIONS(390), + [anon_sym_PERCENT_EQ] = ACTIONS(390), + [anon_sym_CARET_EQ] = ACTIONS(390), + [anon_sym_AMP_EQ] = ACTIONS(390), + [anon_sym_PIPE_EQ] = ACTIONS(390), + [anon_sym_LT_LT_EQ] = ACTIONS(390), + [anon_sym_GT_GT_EQ] = ACTIONS(390), + [anon_sym_EQ] = ACTIONS(392), + [anon_sym_EQ_EQ] = ACTIONS(390), + [anon_sym_BANG_EQ] = ACTIONS(390), + [anon_sym_GT] = ACTIONS(392), + [anon_sym_LT] = ACTIONS(398), + [anon_sym_GT_EQ] = ACTIONS(390), + [anon_sym_LT_EQ] = ACTIONS(390), + [anon_sym_DOT] = ACTIONS(392), + [anon_sym_DOT_DOT] = ACTIONS(506), + [anon_sym_DOT_DOT_DOT] = ACTIONS(390), + [anon_sym_DOT_DOT_EQ] = ACTIONS(390), + [anon_sym_COLON_COLON] = ACTIONS(420), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(399), - [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(392), + [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(3667), - [sym_generic_function] = STATE(1921), - [sym_generic_type_with_turbofish] = STATE(3104), - [sym__expression_except_range] = STATE(1706), - [sym__expression] = STATE(1748), - [sym_macro_invocation] = STATE(1722), - [sym_scoped_identifier] = STATE(1634), - [sym_scoped_type_identifier_in_expression_position] = STATE(3327), - [sym_range_expression] = STATE(1718), - [sym_unary_expression] = STATE(1921), - [sym_try_expression] = STATE(1921), - [sym_reference_expression] = STATE(1921), - [sym_binary_expression] = STATE(1921), - [sym_assignment_expression] = STATE(1921), - [sym_compound_assignment_expr] = STATE(1921), - [sym_type_cast_expression] = STATE(1921), - [sym_return_expression] = STATE(1921), - [sym_yield_expression] = STATE(1921), - [sym_call_expression] = STATE(1921), - [sym_array_expression] = STATE(1921), - [sym_parenthesized_expression] = STATE(1921), - [sym_tuple_expression] = STATE(1921), - [sym_unit_expression] = STATE(1921), - [sym_struct_expression] = STATE(1921), - [sym_if_expression] = STATE(1921), - [sym_match_expression] = STATE(1921), - [sym_while_expression] = STATE(1921), - [sym_loop_expression] = STATE(1921), - [sym_for_expression] = STATE(1921), - [sym_const_block] = STATE(1921), - [sym_closure_expression] = STATE(1921), - [sym_closure_parameters] = STATE(245), - [sym_label] = STATE(3773), - [sym_break_expression] = STATE(1921), - [sym_continue_expression] = STATE(1921), - [sym_index_expression] = STATE(1921), - [sym_await_expression] = STATE(1921), - [sym_field_expression] = STATE(1693), - [sym_unsafe_block] = STATE(1921), - [sym_async_block] = STATE(1921), - [sym_gen_block] = STATE(1921), - [sym_try_block] = STATE(1921), - [sym_block] = STATE(1921), - [sym__literal] = STATE(1921), - [sym_string_literal] = STATE(1852), - [sym_raw_string_literal] = STATE(1852), - [sym_boolean_literal] = STATE(1852), + [sym_bracketed_type] = STATE(3702), + [sym_generic_function] = STATE(1815), + [sym_generic_type_with_turbofish] = STATE(2969), + [sym__expression_except_range] = STATE(1694), + [sym__expression] = STATE(1929), + [sym_macro_invocation] = STATE(1832), + [sym_scoped_identifier] = STATE(1654), + [sym_scoped_type_identifier_in_expression_position] = STATE(3227), + [sym_range_expression] = STATE(1820), + [sym_unary_expression] = STATE(1815), + [sym_try_expression] = STATE(1815), + [sym_reference_expression] = STATE(1815), + [sym_binary_expression] = STATE(1815), + [sym_assignment_expression] = STATE(1815), + [sym_compound_assignment_expr] = STATE(1815), + [sym_type_cast_expression] = STATE(1815), + [sym_return_expression] = STATE(1815), + [sym_yield_expression] = STATE(1815), + [sym_call_expression] = STATE(1815), + [sym_array_expression] = STATE(1815), + [sym_parenthesized_expression] = STATE(1815), + [sym_tuple_expression] = STATE(1815), + [sym_unit_expression] = STATE(1815), + [sym_struct_expression] = STATE(1815), + [sym_if_expression] = STATE(1815), + [sym_match_expression] = STATE(1815), + [sym_while_expression] = STATE(1815), + [sym_loop_expression] = STATE(1815), + [sym_for_expression] = STATE(1815), + [sym_const_block] = STATE(1815), + [sym_closure_expression] = STATE(1815), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(43), + [sym_break_expression] = STATE(1815), + [sym_continue_expression] = STATE(1815), + [sym_index_expression] = STATE(1815), + [sym_await_expression] = STATE(1815), + [sym_field_expression] = STATE(1695), + [sym_unsafe_block] = STATE(1815), + [sym_async_block] = STATE(1815), + [sym_gen_block] = STATE(1815), + [sym_try_block] = STATE(1815), + [sym_block] = STATE(1815), + [sym__literal] = STATE(1815), + [sym_string_literal] = STATE(1733), + [sym_raw_string_literal] = STATE(1733), + [sym_boolean_literal] = STATE(1733), [sym_line_comment] = STATE(46), [sym_block_comment] = STATE(46), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_EQ_GT] = ACTIONS(401), - [anon_sym_PLUS] = ACTIONS(403), - [anon_sym_STAR] = ACTIONS(413), - [anon_sym_QMARK] = ACTIONS(401), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(413), - [anon_sym_SLASH] = ACTIONS(403), - [anon_sym_PERCENT] = ACTIONS(403), - [anon_sym_CARET] = ACTIONS(403), - [anon_sym_BANG] = ACTIONS(413), - [anon_sym_AMP] = ACTIONS(471), - [anon_sym_PIPE] = ACTIONS(387), - [anon_sym_AMP_AMP] = ACTIONS(401), - [anon_sym_PIPE_PIPE] = ACTIONS(401), - [anon_sym_LT_LT] = ACTIONS(403), - [anon_sym_GT_GT] = ACTIONS(403), - [anon_sym_PLUS_EQ] = ACTIONS(401), - [anon_sym_DASH_EQ] = ACTIONS(401), - [anon_sym_STAR_EQ] = ACTIONS(401), - [anon_sym_SLASH_EQ] = ACTIONS(401), - [anon_sym_PERCENT_EQ] = ACTIONS(401), - [anon_sym_CARET_EQ] = ACTIONS(401), - [anon_sym_AMP_EQ] = ACTIONS(401), - [anon_sym_PIPE_EQ] = ACTIONS(401), - [anon_sym_LT_LT_EQ] = ACTIONS(401), - [anon_sym_GT_GT_EQ] = ACTIONS(401), - [anon_sym_EQ] = ACTIONS(403), - [anon_sym_EQ_EQ] = ACTIONS(401), - [anon_sym_BANG_EQ] = ACTIONS(401), - [anon_sym_GT] = ACTIONS(403), - [anon_sym_LT] = ACTIONS(389), - [anon_sym_GT_EQ] = ACTIONS(401), - [anon_sym_LT_EQ] = ACTIONS(401), - [anon_sym_DOT] = ACTIONS(403), - [anon_sym_DOT_DOT] = ACTIONS(473), - [anon_sym_DOT_DOT_DOT] = ACTIONS(401), - [anon_sym_DOT_DOT_EQ] = ACTIONS(401), - [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(403), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), + [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(508), + [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(47)] = { - [sym_bracketed_type] = STATE(3667), - [sym_generic_function] = STATE(1921), - [sym_generic_type_with_turbofish] = STATE(3104), - [sym__expression_except_range] = STATE(1706), - [sym__expression] = STATE(1749), - [sym_macro_invocation] = STATE(1722), - [sym_scoped_identifier] = STATE(1634), - [sym_scoped_type_identifier_in_expression_position] = STATE(3327), - [sym_range_expression] = STATE(1718), - [sym_unary_expression] = STATE(1921), - [sym_try_expression] = STATE(1921), - [sym_reference_expression] = STATE(1921), - [sym_binary_expression] = STATE(1921), - [sym_assignment_expression] = STATE(1921), - [sym_compound_assignment_expr] = STATE(1921), - [sym_type_cast_expression] = STATE(1921), - [sym_return_expression] = STATE(1921), - [sym_yield_expression] = STATE(1921), - [sym_call_expression] = STATE(1921), - [sym_array_expression] = STATE(1921), - [sym_parenthesized_expression] = STATE(1921), - [sym_tuple_expression] = STATE(1921), - [sym_unit_expression] = STATE(1921), - [sym_struct_expression] = STATE(1921), - [sym_if_expression] = STATE(1921), - [sym_match_expression] = STATE(1921), - [sym_while_expression] = STATE(1921), - [sym_loop_expression] = STATE(1921), - [sym_for_expression] = STATE(1921), - [sym_const_block] = STATE(1921), - [sym_closure_expression] = STATE(1921), - [sym_closure_parameters] = STATE(245), - [sym_label] = STATE(3773), - [sym_break_expression] = STATE(1921), - [sym_continue_expression] = STATE(1921), - [sym_index_expression] = STATE(1921), - [sym_await_expression] = STATE(1921), - [sym_field_expression] = STATE(1693), - [sym_unsafe_block] = STATE(1921), - [sym_async_block] = STATE(1921), - [sym_gen_block] = STATE(1921), - [sym_try_block] = STATE(1921), - [sym_block] = STATE(1921), - [sym__literal] = STATE(1921), - [sym_string_literal] = STATE(1852), - [sym_raw_string_literal] = STATE(1852), - [sym_boolean_literal] = STATE(1852), + [sym_bracketed_type] = STATE(3702), + [sym_generic_function] = STATE(1815), + [sym_generic_type_with_turbofish] = STATE(2969), + [sym__expression_except_range] = STATE(1694), + [sym__expression] = STATE(1761), + [sym_macro_invocation] = STATE(1832), + [sym_scoped_identifier] = STATE(1654), + [sym_scoped_type_identifier_in_expression_position] = STATE(3227), + [sym_range_expression] = STATE(1820), + [sym_unary_expression] = STATE(1815), + [sym_try_expression] = STATE(1815), + [sym_reference_expression] = STATE(1815), + [sym_binary_expression] = STATE(1815), + [sym_assignment_expression] = STATE(1815), + [sym_compound_assignment_expr] = STATE(1815), + [sym_type_cast_expression] = STATE(1815), + [sym_return_expression] = STATE(1815), + [sym_yield_expression] = STATE(1815), + [sym_call_expression] = STATE(1815), + [sym_array_expression] = STATE(1815), + [sym_parenthesized_expression] = STATE(1815), + [sym_tuple_expression] = STATE(1815), + [sym_unit_expression] = STATE(1815), + [sym_struct_expression] = STATE(1815), + [sym_if_expression] = STATE(1815), + [sym_match_expression] = STATE(1815), + [sym_while_expression] = STATE(1815), + [sym_loop_expression] = STATE(1815), + [sym_for_expression] = STATE(1815), + [sym_const_block] = STATE(1815), + [sym_closure_expression] = STATE(1815), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3807), + [sym_break_expression] = STATE(1815), + [sym_continue_expression] = STATE(1815), + [sym_index_expression] = STATE(1815), + [sym_await_expression] = STATE(1815), + [sym_field_expression] = STATE(1695), + [sym_unsafe_block] = STATE(1815), + [sym_async_block] = STATE(1815), + [sym_gen_block] = STATE(1815), + [sym_try_block] = STATE(1815), + [sym_block] = STATE(1815), + [sym__literal] = STATE(1815), + [sym_string_literal] = STATE(1733), + [sym_raw_string_literal] = STATE(1733), + [sym_boolean_literal] = STATE(1733), [sym_line_comment] = STATE(47), [sym_block_comment] = STATE(47), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_EQ_GT] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_STAR] = ACTIONS(413), - [anon_sym_QMARK] = ACTIONS(381), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(413), - [anon_sym_SLASH] = ACTIONS(383), - [anon_sym_PERCENT] = ACTIONS(383), - [anon_sym_CARET] = ACTIONS(383), - [anon_sym_BANG] = ACTIONS(413), - [anon_sym_AMP] = ACTIONS(471), - [anon_sym_PIPE] = ACTIONS(387), - [anon_sym_AMP_AMP] = ACTIONS(381), - [anon_sym_PIPE_PIPE] = ACTIONS(381), - [anon_sym_LT_LT] = ACTIONS(383), - [anon_sym_GT_GT] = ACTIONS(383), - [anon_sym_PLUS_EQ] = ACTIONS(381), - [anon_sym_DASH_EQ] = ACTIONS(381), - [anon_sym_STAR_EQ] = ACTIONS(381), - [anon_sym_SLASH_EQ] = ACTIONS(381), - [anon_sym_PERCENT_EQ] = ACTIONS(381), - [anon_sym_CARET_EQ] = ACTIONS(381), - [anon_sym_AMP_EQ] = ACTIONS(381), - [anon_sym_PIPE_EQ] = ACTIONS(381), - [anon_sym_LT_LT_EQ] = ACTIONS(381), - [anon_sym_GT_GT_EQ] = ACTIONS(381), - [anon_sym_EQ] = ACTIONS(383), - [anon_sym_EQ_EQ] = ACTIONS(381), - [anon_sym_BANG_EQ] = ACTIONS(381), - [anon_sym_GT] = ACTIONS(383), - [anon_sym_LT] = ACTIONS(389), - [anon_sym_GT_EQ] = ACTIONS(381), - [anon_sym_LT_EQ] = ACTIONS(381), - [anon_sym_DOT] = ACTIONS(383), - [anon_sym_DOT_DOT] = ACTIONS(473), - [anon_sym_DOT_DOT_DOT] = ACTIONS(381), - [anon_sym_DOT_DOT_EQ] = ACTIONS(381), - [anon_sym_COLON_COLON] = ACTIONS(415), + [sym_identifier] = ACTIONS(410), + [anon_sym_LPAREN] = ACTIONS(500), + [anon_sym_LBRACK] = ACTIONS(502), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_EQ_GT] = ACTIONS(406), + [anon_sym_PLUS] = ACTIONS(408), + [anon_sym_STAR] = ACTIONS(418), + [anon_sym_QMARK] = ACTIONS(406), + [anon_sym_u8] = ACTIONS(416), + [anon_sym_i8] = ACTIONS(416), + [anon_sym_u16] = ACTIONS(416), + [anon_sym_i16] = ACTIONS(416), + [anon_sym_u32] = ACTIONS(416), + [anon_sym_i32] = ACTIONS(416), + [anon_sym_u64] = ACTIONS(416), + [anon_sym_i64] = ACTIONS(416), + [anon_sym_u128] = ACTIONS(416), + [anon_sym_i128] = ACTIONS(416), + [anon_sym_isize] = ACTIONS(416), + [anon_sym_usize] = ACTIONS(416), + [anon_sym_f32] = ACTIONS(416), + [anon_sym_f64] = ACTIONS(416), + [anon_sym_bool] = ACTIONS(416), + [anon_sym_str] = ACTIONS(416), + [anon_sym_char] = ACTIONS(416), + [anon_sym_DASH] = ACTIONS(418), + [anon_sym_SLASH] = ACTIONS(408), + [anon_sym_PERCENT] = ACTIONS(408), + [anon_sym_CARET] = ACTIONS(408), + [anon_sym_BANG] = ACTIONS(418), + [anon_sym_AMP] = ACTIONS(504), + [anon_sym_PIPE] = ACTIONS(396), + [anon_sym_AMP_AMP] = ACTIONS(406), + [anon_sym_PIPE_PIPE] = ACTIONS(406), + [anon_sym_LT_LT] = ACTIONS(408), + [anon_sym_GT_GT] = ACTIONS(408), + [anon_sym_PLUS_EQ] = ACTIONS(406), + [anon_sym_DASH_EQ] = ACTIONS(406), + [anon_sym_STAR_EQ] = ACTIONS(406), + [anon_sym_SLASH_EQ] = ACTIONS(406), + [anon_sym_PERCENT_EQ] = ACTIONS(406), + [anon_sym_CARET_EQ] = ACTIONS(406), + [anon_sym_AMP_EQ] = ACTIONS(406), + [anon_sym_PIPE_EQ] = ACTIONS(406), + [anon_sym_LT_LT_EQ] = ACTIONS(406), + [anon_sym_GT_GT_EQ] = ACTIONS(406), + [anon_sym_EQ] = ACTIONS(408), + [anon_sym_EQ_EQ] = ACTIONS(406), + [anon_sym_BANG_EQ] = ACTIONS(406), + [anon_sym_GT] = ACTIONS(408), + [anon_sym_LT] = ACTIONS(398), + [anon_sym_GT_EQ] = ACTIONS(406), + [anon_sym_LT_EQ] = ACTIONS(406), + [anon_sym_DOT] = ACTIONS(408), + [anon_sym_DOT_DOT] = ACTIONS(506), + [anon_sym_DOT_DOT_DOT] = ACTIONS(406), + [anon_sym_DOT_DOT_EQ] = ACTIONS(406), + [anon_sym_COLON_COLON] = ACTIONS(420), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(383), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), + [anon_sym_as] = ACTIONS(408), + [anon_sym_async] = ACTIONS(422), + [anon_sym_break] = ACTIONS(424), + [anon_sym_const] = ACTIONS(426), + [anon_sym_continue] = ACTIONS(428), + [anon_sym_default] = ACTIONS(430), + [anon_sym_for] = ACTIONS(432), + [anon_sym_gen] = ACTIONS(434), + [anon_sym_if] = ACTIONS(436), + [anon_sym_loop] = ACTIONS(438), + [anon_sym_match] = ACTIONS(440), + [anon_sym_return] = ACTIONS(442), + [anon_sym_static] = ACTIONS(444), + [anon_sym_union] = ACTIONS(430), + [anon_sym_unsafe] = ACTIONS(446), + [anon_sym_while] = ACTIONS(448), + [anon_sym_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(3667), - [sym_generic_function] = STATE(1921), - [sym_generic_type_with_turbofish] = STATE(3104), - [sym__expression_except_range] = STATE(1706), - [sym__expression] = STATE(1743), - [sym_macro_invocation] = STATE(1722), - [sym_scoped_identifier] = STATE(1634), - [sym_scoped_type_identifier_in_expression_position] = STATE(3327), - [sym_range_expression] = STATE(1718), - [sym_unary_expression] = STATE(1921), - [sym_try_expression] = STATE(1921), - [sym_reference_expression] = STATE(1921), - [sym_binary_expression] = STATE(1921), - [sym_assignment_expression] = STATE(1921), - [sym_compound_assignment_expr] = STATE(1921), - [sym_type_cast_expression] = STATE(1921), - [sym_return_expression] = STATE(1921), - [sym_yield_expression] = STATE(1921), - [sym_call_expression] = STATE(1921), - [sym_array_expression] = STATE(1921), - [sym_parenthesized_expression] = STATE(1921), - [sym_tuple_expression] = STATE(1921), - [sym_unit_expression] = STATE(1921), - [sym_struct_expression] = STATE(1921), - [sym_if_expression] = STATE(1921), - [sym_match_expression] = STATE(1921), - [sym_while_expression] = STATE(1921), - [sym_loop_expression] = STATE(1921), - [sym_for_expression] = STATE(1921), - [sym_const_block] = STATE(1921), - [sym_closure_expression] = STATE(1921), - [sym_closure_parameters] = STATE(245), - [sym_label] = STATE(3773), - [sym_break_expression] = STATE(1921), - [sym_continue_expression] = STATE(1921), - [sym_index_expression] = STATE(1921), - [sym_await_expression] = STATE(1921), - [sym_field_expression] = STATE(1693), - [sym_unsafe_block] = STATE(1921), - [sym_async_block] = STATE(1921), - [sym_gen_block] = STATE(1921), - [sym_try_block] = STATE(1921), - [sym_block] = STATE(1921), - [sym__literal] = STATE(1921), - [sym_string_literal] = STATE(1852), - [sym_raw_string_literal] = STATE(1852), - [sym_boolean_literal] = STATE(1852), + [sym_bracketed_type] = STATE(3702), + [sym_generic_function] = STATE(1815), + [sym_generic_type_with_turbofish] = STATE(2969), + [sym__expression_except_range] = STATE(1694), + [sym__expression] = STATE(1926), + [sym_macro_invocation] = STATE(1832), + [sym_scoped_identifier] = STATE(1654), + [sym_scoped_type_identifier_in_expression_position] = STATE(3227), + [sym_range_expression] = STATE(1820), + [sym_unary_expression] = STATE(1815), + [sym_try_expression] = STATE(1815), + [sym_reference_expression] = STATE(1815), + [sym_binary_expression] = STATE(1815), + [sym_assignment_expression] = STATE(1815), + [sym_compound_assignment_expr] = STATE(1815), + [sym_type_cast_expression] = STATE(1815), + [sym_return_expression] = STATE(1815), + [sym_yield_expression] = STATE(1815), + [sym_call_expression] = STATE(1815), + [sym_array_expression] = STATE(1815), + [sym_parenthesized_expression] = STATE(1815), + [sym_tuple_expression] = STATE(1815), + [sym_unit_expression] = STATE(1815), + [sym_struct_expression] = STATE(1815), + [sym_if_expression] = STATE(1815), + [sym_match_expression] = STATE(1815), + [sym_while_expression] = STATE(1815), + [sym_loop_expression] = STATE(1815), + [sym_for_expression] = STATE(1815), + [sym_const_block] = STATE(1815), + [sym_closure_expression] = STATE(1815), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3807), + [sym_break_expression] = STATE(1815), + [sym_continue_expression] = STATE(1815), + [sym_index_expression] = STATE(1815), + [sym_await_expression] = STATE(1815), + [sym_field_expression] = STATE(1695), + [sym_unsafe_block] = STATE(1815), + [sym_async_block] = STATE(1815), + [sym_gen_block] = STATE(1815), + [sym_try_block] = STATE(1815), + [sym_block] = STATE(1815), + [sym__literal] = STATE(1815), + [sym_string_literal] = STATE(1733), + [sym_raw_string_literal] = STATE(1733), + [sym_boolean_literal] = STATE(1733), [sym_line_comment] = STATE(48), [sym_block_comment] = STATE(48), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_LBRACK] = ACTIONS(393), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_EQ_GT] = ACTIONS(393), - [anon_sym_PLUS] = ACTIONS(395), - [anon_sym_STAR] = ACTIONS(395), - [anon_sym_QMARK] = ACTIONS(393), - [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(395), - [anon_sym_SLASH] = ACTIONS(395), - [anon_sym_PERCENT] = ACTIONS(395), - [anon_sym_CARET] = ACTIONS(395), - [anon_sym_BANG] = ACTIONS(413), - [anon_sym_AMP] = ACTIONS(395), - [anon_sym_PIPE] = ACTIONS(395), - [anon_sym_AMP_AMP] = ACTIONS(393), - [anon_sym_PIPE_PIPE] = ACTIONS(393), - [anon_sym_LT_LT] = ACTIONS(395), - [anon_sym_GT_GT] = ACTIONS(395), - [anon_sym_PLUS_EQ] = ACTIONS(393), - [anon_sym_DASH_EQ] = ACTIONS(393), - [anon_sym_STAR_EQ] = ACTIONS(393), - [anon_sym_SLASH_EQ] = ACTIONS(393), - [anon_sym_PERCENT_EQ] = ACTIONS(393), - [anon_sym_CARET_EQ] = ACTIONS(393), - [anon_sym_AMP_EQ] = ACTIONS(393), - [anon_sym_PIPE_EQ] = ACTIONS(393), - [anon_sym_LT_LT_EQ] = ACTIONS(393), - [anon_sym_GT_GT_EQ] = ACTIONS(393), - [anon_sym_EQ] = ACTIONS(395), - [anon_sym_EQ_EQ] = ACTIONS(393), - [anon_sym_BANG_EQ] = ACTIONS(393), - [anon_sym_GT] = ACTIONS(395), - [anon_sym_LT] = ACTIONS(395), - [anon_sym_GT_EQ] = ACTIONS(393), - [anon_sym_LT_EQ] = ACTIONS(393), - [anon_sym_DOT] = ACTIONS(395), - [anon_sym_DOT_DOT] = ACTIONS(395), - [anon_sym_DOT_DOT_DOT] = ACTIONS(393), - [anon_sym_DOT_DOT_EQ] = ACTIONS(393), - [anon_sym_COLON_COLON] = ACTIONS(415), + [sym_identifier] = ACTIONS(410), + [anon_sym_LPAREN] = ACTIONS(500), + [anon_sym_LBRACK] = ACTIONS(402), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_EQ_GT] = ACTIONS(402), + [anon_sym_PLUS] = ACTIONS(404), + [anon_sym_STAR] = ACTIONS(404), + [anon_sym_QMARK] = ACTIONS(402), + [anon_sym_u8] = ACTIONS(416), + [anon_sym_i8] = ACTIONS(416), + [anon_sym_u16] = ACTIONS(416), + [anon_sym_i16] = ACTIONS(416), + [anon_sym_u32] = ACTIONS(416), + [anon_sym_i32] = ACTIONS(416), + [anon_sym_u64] = ACTIONS(416), + [anon_sym_i64] = ACTIONS(416), + [anon_sym_u128] = ACTIONS(416), + [anon_sym_i128] = ACTIONS(416), + [anon_sym_isize] = ACTIONS(416), + [anon_sym_usize] = ACTIONS(416), + [anon_sym_f32] = ACTIONS(416), + [anon_sym_f64] = ACTIONS(416), + [anon_sym_bool] = ACTIONS(416), + [anon_sym_str] = ACTIONS(416), + [anon_sym_char] = ACTIONS(416), + [anon_sym_DASH] = ACTIONS(404), + [anon_sym_SLASH] = ACTIONS(404), + [anon_sym_PERCENT] = ACTIONS(404), + [anon_sym_CARET] = ACTIONS(404), + [anon_sym_BANG] = ACTIONS(418), + [anon_sym_AMP] = ACTIONS(404), + [anon_sym_PIPE] = ACTIONS(404), + [anon_sym_AMP_AMP] = ACTIONS(402), + [anon_sym_PIPE_PIPE] = ACTIONS(402), + [anon_sym_LT_LT] = ACTIONS(404), + [anon_sym_GT_GT] = ACTIONS(404), + [anon_sym_PLUS_EQ] = ACTIONS(402), + [anon_sym_DASH_EQ] = ACTIONS(402), + [anon_sym_STAR_EQ] = ACTIONS(402), + [anon_sym_SLASH_EQ] = ACTIONS(402), + [anon_sym_PERCENT_EQ] = ACTIONS(402), + [anon_sym_CARET_EQ] = ACTIONS(402), + [anon_sym_AMP_EQ] = ACTIONS(402), + [anon_sym_PIPE_EQ] = ACTIONS(402), + [anon_sym_LT_LT_EQ] = ACTIONS(402), + [anon_sym_GT_GT_EQ] = ACTIONS(402), + [anon_sym_EQ] = ACTIONS(404), + [anon_sym_EQ_EQ] = ACTIONS(402), + [anon_sym_BANG_EQ] = ACTIONS(402), + [anon_sym_GT] = ACTIONS(404), + [anon_sym_LT] = ACTIONS(404), + [anon_sym_GT_EQ] = ACTIONS(402), + [anon_sym_LT_EQ] = ACTIONS(402), + [anon_sym_DOT] = ACTIONS(404), + [anon_sym_DOT_DOT] = ACTIONS(404), + [anon_sym_DOT_DOT_DOT] = ACTIONS(402), + [anon_sym_DOT_DOT_EQ] = ACTIONS(402), + [anon_sym_COLON_COLON] = ACTIONS(420), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(395), - [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(404), + [anon_sym_async] = ACTIONS(422), + [anon_sym_break] = ACTIONS(424), + [anon_sym_const] = ACTIONS(426), + [anon_sym_continue] = ACTIONS(428), + [anon_sym_default] = ACTIONS(430), + [anon_sym_for] = ACTIONS(432), + [anon_sym_gen] = ACTIONS(434), + [anon_sym_if] = ACTIONS(436), + [anon_sym_loop] = ACTIONS(438), + [anon_sym_match] = ACTIONS(440), + [anon_sym_return] = ACTIONS(442), + [anon_sym_static] = ACTIONS(444), + [anon_sym_union] = ACTIONS(430), + [anon_sym_unsafe] = ACTIONS(446), + [anon_sym_while] = ACTIONS(448), + [anon_sym_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(3667), - [sym_generic_function] = STATE(1921), - [sym_generic_type_with_turbofish] = STATE(3104), - [sym__expression_except_range] = STATE(1706), - [sym__expression] = STATE(1743), - [sym_macro_invocation] = STATE(1722), - [sym_scoped_identifier] = STATE(1634), - [sym_scoped_type_identifier_in_expression_position] = STATE(3327), - [sym_range_expression] = STATE(1718), - [sym_unary_expression] = STATE(1921), - [sym_try_expression] = STATE(1921), - [sym_reference_expression] = STATE(1921), - [sym_binary_expression] = STATE(1921), - [sym_assignment_expression] = STATE(1921), - [sym_compound_assignment_expr] = STATE(1921), - [sym_type_cast_expression] = STATE(1921), - [sym_return_expression] = STATE(1921), - [sym_yield_expression] = STATE(1921), - [sym_call_expression] = STATE(1921), - [sym_array_expression] = STATE(1921), - [sym_parenthesized_expression] = STATE(1921), - [sym_tuple_expression] = STATE(1921), - [sym_unit_expression] = STATE(1921), - [sym_struct_expression] = STATE(1921), - [sym_if_expression] = STATE(1921), - [sym_match_expression] = STATE(1921), - [sym_while_expression] = STATE(1921), - [sym_loop_expression] = STATE(1921), - [sym_for_expression] = STATE(1921), - [sym_const_block] = STATE(1921), - [sym_closure_expression] = STATE(1921), - [sym_closure_parameters] = STATE(245), - [sym_label] = STATE(3773), - [sym_break_expression] = STATE(1921), - [sym_continue_expression] = STATE(1921), - [sym_index_expression] = STATE(1921), - [sym_await_expression] = STATE(1921), - [sym_field_expression] = STATE(1693), - [sym_unsafe_block] = STATE(1921), - [sym_async_block] = STATE(1921), - [sym_gen_block] = STATE(1921), - [sym_try_block] = STATE(1921), - [sym_block] = STATE(1921), - [sym__literal] = STATE(1921), - [sym_string_literal] = STATE(1852), - [sym_raw_string_literal] = STATE(1852), - [sym_boolean_literal] = STATE(1852), + [sym_bracketed_type] = STATE(3702), + [sym_generic_function] = STATE(1815), + [sym_generic_type_with_turbofish] = STATE(2969), + [sym__expression_except_range] = STATE(1694), + [sym__expression] = STATE(1898), + [sym_macro_invocation] = STATE(1832), + [sym_scoped_identifier] = STATE(1654), + [sym_scoped_type_identifier_in_expression_position] = STATE(3227), + [sym_range_expression] = STATE(1820), + [sym_unary_expression] = STATE(1815), + [sym_try_expression] = STATE(1815), + [sym_reference_expression] = STATE(1815), + [sym_binary_expression] = STATE(1815), + [sym_assignment_expression] = STATE(1815), + [sym_compound_assignment_expr] = STATE(1815), + [sym_type_cast_expression] = STATE(1815), + [sym_return_expression] = STATE(1815), + [sym_yield_expression] = STATE(1815), + [sym_call_expression] = STATE(1815), + [sym_array_expression] = STATE(1815), + [sym_parenthesized_expression] = STATE(1815), + [sym_tuple_expression] = STATE(1815), + [sym_unit_expression] = STATE(1815), + [sym_struct_expression] = STATE(1815), + [sym_if_expression] = STATE(1815), + [sym_match_expression] = STATE(1815), + [sym_while_expression] = STATE(1815), + [sym_loop_expression] = STATE(1815), + [sym_for_expression] = STATE(1815), + [sym_const_block] = STATE(1815), + [sym_closure_expression] = STATE(1815), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3807), + [sym_break_expression] = STATE(1815), + [sym_continue_expression] = STATE(1815), + [sym_index_expression] = STATE(1815), + [sym_await_expression] = STATE(1815), + [sym_field_expression] = STATE(1695), + [sym_unsafe_block] = STATE(1815), + [sym_async_block] = STATE(1815), + [sym_gen_block] = STATE(1815), + [sym_try_block] = STATE(1815), + [sym_block] = STATE(1815), + [sym__literal] = STATE(1815), + [sym_string_literal] = STATE(1733), + [sym_raw_string_literal] = STATE(1733), + [sym_boolean_literal] = STATE(1733), [sym_line_comment] = STATE(49), [sym_block_comment] = STATE(49), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(393), - [anon_sym_LBRACK] = ACTIONS(393), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_EQ_GT] = ACTIONS(393), - [anon_sym_PLUS] = ACTIONS(395), - [anon_sym_STAR] = ACTIONS(395), - [anon_sym_QMARK] = ACTIONS(393), - [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(395), - [anon_sym_SLASH] = ACTIONS(395), - [anon_sym_PERCENT] = ACTIONS(395), - [anon_sym_CARET] = ACTIONS(395), - [anon_sym_BANG] = ACTIONS(413), - [anon_sym_AMP] = ACTIONS(395), - [anon_sym_PIPE] = ACTIONS(395), - [anon_sym_AMP_AMP] = ACTIONS(393), - [anon_sym_PIPE_PIPE] = ACTIONS(393), - [anon_sym_LT_LT] = ACTIONS(395), - [anon_sym_GT_GT] = ACTIONS(395), - [anon_sym_PLUS_EQ] = ACTIONS(393), - [anon_sym_DASH_EQ] = ACTIONS(393), - [anon_sym_STAR_EQ] = ACTIONS(393), - [anon_sym_SLASH_EQ] = ACTIONS(393), - [anon_sym_PERCENT_EQ] = ACTIONS(393), - [anon_sym_CARET_EQ] = ACTIONS(393), - [anon_sym_AMP_EQ] = ACTIONS(393), - [anon_sym_PIPE_EQ] = ACTIONS(393), - [anon_sym_LT_LT_EQ] = ACTIONS(393), - [anon_sym_GT_GT_EQ] = ACTIONS(393), - [anon_sym_EQ] = ACTIONS(395), - [anon_sym_EQ_EQ] = ACTIONS(393), - [anon_sym_BANG_EQ] = ACTIONS(393), - [anon_sym_GT] = ACTIONS(395), - [anon_sym_LT] = ACTIONS(395), - [anon_sym_GT_EQ] = ACTIONS(393), - [anon_sym_LT_EQ] = ACTIONS(393), - [anon_sym_DOT] = ACTIONS(395), - [anon_sym_DOT_DOT] = ACTIONS(395), - [anon_sym_DOT_DOT_DOT] = ACTIONS(393), - [anon_sym_DOT_DOT_EQ] = ACTIONS(393), - [anon_sym_COLON_COLON] = ACTIONS(415), + [sym_identifier] = ACTIONS(410), + [anon_sym_LPAREN] = ACTIONS(500), + [anon_sym_LBRACK] = ACTIONS(386), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_EQ_GT] = ACTIONS(386), + [anon_sym_PLUS] = ACTIONS(388), + [anon_sym_STAR] = ACTIONS(388), + [anon_sym_QMARK] = ACTIONS(386), + [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(388), + [anon_sym_SLASH] = ACTIONS(388), + [anon_sym_PERCENT] = ACTIONS(388), + [anon_sym_CARET] = ACTIONS(388), + [anon_sym_BANG] = ACTIONS(418), + [anon_sym_AMP] = ACTIONS(388), + [anon_sym_PIPE] = ACTIONS(388), + [anon_sym_AMP_AMP] = ACTIONS(386), + [anon_sym_PIPE_PIPE] = ACTIONS(386), + [anon_sym_LT_LT] = ACTIONS(388), + [anon_sym_GT_GT] = ACTIONS(388), + [anon_sym_PLUS_EQ] = ACTIONS(386), + [anon_sym_DASH_EQ] = ACTIONS(386), + [anon_sym_STAR_EQ] = ACTIONS(386), + [anon_sym_SLASH_EQ] = ACTIONS(386), + [anon_sym_PERCENT_EQ] = ACTIONS(386), + [anon_sym_CARET_EQ] = ACTIONS(386), + [anon_sym_AMP_EQ] = ACTIONS(386), + [anon_sym_PIPE_EQ] = ACTIONS(386), + [anon_sym_LT_LT_EQ] = ACTIONS(386), + [anon_sym_GT_GT_EQ] = ACTIONS(386), + [anon_sym_EQ] = ACTIONS(388), + [anon_sym_EQ_EQ] = ACTIONS(386), + [anon_sym_BANG_EQ] = ACTIONS(386), + [anon_sym_GT] = ACTIONS(388), + [anon_sym_LT] = ACTIONS(388), + [anon_sym_GT_EQ] = ACTIONS(386), + [anon_sym_LT_EQ] = ACTIONS(386), + [anon_sym_DOT] = ACTIONS(388), + [anon_sym_DOT_DOT] = ACTIONS(388), + [anon_sym_DOT_DOT_DOT] = ACTIONS(386), + [anon_sym_DOT_DOT_EQ] = ACTIONS(386), + [anon_sym_COLON_COLON] = ACTIONS(420), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(395), - [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(388), + [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(3667), - [sym_generic_function] = STATE(1921), - [sym_generic_type_with_turbofish] = STATE(3104), - [sym__expression_except_range] = STATE(1706), - [sym__expression] = STATE(1836), - [sym_macro_invocation] = STATE(1722), - [sym_scoped_identifier] = STATE(1634), - [sym_scoped_type_identifier_in_expression_position] = STATE(3327), - [sym_range_expression] = STATE(1718), - [sym_unary_expression] = STATE(1921), - [sym_try_expression] = STATE(1921), - [sym_reference_expression] = STATE(1921), - [sym_binary_expression] = STATE(1921), - [sym_assignment_expression] = STATE(1921), - [sym_compound_assignment_expr] = STATE(1921), - [sym_type_cast_expression] = STATE(1921), - [sym_return_expression] = STATE(1921), - [sym_yield_expression] = STATE(1921), - [sym_call_expression] = STATE(1921), - [sym_array_expression] = STATE(1921), - [sym_parenthesized_expression] = STATE(1921), - [sym_tuple_expression] = STATE(1921), - [sym_unit_expression] = STATE(1921), - [sym_struct_expression] = STATE(1921), - [sym_if_expression] = STATE(1921), - [sym_match_expression] = STATE(1921), - [sym_while_expression] = STATE(1921), - [sym_loop_expression] = STATE(1921), - [sym_for_expression] = STATE(1921), - [sym_const_block] = STATE(1921), - [sym_closure_expression] = STATE(1921), - [sym_closure_parameters] = STATE(245), - [sym_label] = STATE(3773), - [sym_break_expression] = STATE(1921), - [sym_continue_expression] = STATE(1921), - [sym_index_expression] = STATE(1921), - [sym_await_expression] = STATE(1921), - [sym_field_expression] = STATE(1693), - [sym_unsafe_block] = STATE(1921), - [sym_async_block] = STATE(1921), - [sym_gen_block] = STATE(1921), - [sym_try_block] = STATE(1921), - [sym_block] = STATE(1921), - [sym__literal] = STATE(1921), - [sym_string_literal] = STATE(1852), - [sym_raw_string_literal] = STATE(1852), - [sym_boolean_literal] = STATE(1852), + [sym_bracketed_type] = STATE(3702), + [sym_generic_function] = STATE(1815), + [sym_generic_type_with_turbofish] = STATE(2969), + [sym__expression_except_range] = STATE(1694), + [sym__expression] = STATE(1926), + [sym_macro_invocation] = STATE(1832), + [sym_scoped_identifier] = STATE(1654), + [sym_scoped_type_identifier_in_expression_position] = STATE(3227), + [sym_range_expression] = STATE(1820), + [sym_unary_expression] = STATE(1815), + [sym_try_expression] = STATE(1815), + [sym_reference_expression] = STATE(1815), + [sym_binary_expression] = STATE(1815), + [sym_assignment_expression] = STATE(1815), + [sym_compound_assignment_expr] = STATE(1815), + [sym_type_cast_expression] = STATE(1815), + [sym_return_expression] = STATE(1815), + [sym_yield_expression] = STATE(1815), + [sym_call_expression] = STATE(1815), + [sym_array_expression] = STATE(1815), + [sym_parenthesized_expression] = STATE(1815), + [sym_tuple_expression] = STATE(1815), + [sym_unit_expression] = STATE(1815), + [sym_struct_expression] = STATE(1815), + [sym_if_expression] = STATE(1815), + [sym_match_expression] = STATE(1815), + [sym_while_expression] = STATE(1815), + [sym_loop_expression] = STATE(1815), + [sym_for_expression] = STATE(1815), + [sym_const_block] = STATE(1815), + [sym_closure_expression] = STATE(1815), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3807), + [sym_break_expression] = STATE(1815), + [sym_continue_expression] = STATE(1815), + [sym_index_expression] = STATE(1815), + [sym_await_expression] = STATE(1815), + [sym_field_expression] = STATE(1695), + [sym_unsafe_block] = STATE(1815), + [sym_async_block] = STATE(1815), + [sym_gen_block] = STATE(1815), + [sym_try_block] = STATE(1815), + [sym_block] = STATE(1815), + [sym__literal] = STATE(1815), + [sym_string_literal] = STATE(1733), + [sym_raw_string_literal] = STATE(1733), + [sym_boolean_literal] = STATE(1733), [sym_line_comment] = STATE(50), [sym_block_comment] = STATE(50), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_LBRACK] = ACTIONS(397), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_EQ_GT] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_STAR] = ACTIONS(399), - [anon_sym_QMARK] = ACTIONS(397), - [anon_sym_u8] = ACTIONS(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(399), - [anon_sym_SLASH] = ACTIONS(399), - [anon_sym_PERCENT] = ACTIONS(399), - [anon_sym_CARET] = ACTIONS(399), - [anon_sym_BANG] = ACTIONS(413), - [anon_sym_AMP] = ACTIONS(399), - [anon_sym_PIPE] = ACTIONS(399), - [anon_sym_AMP_AMP] = ACTIONS(397), - [anon_sym_PIPE_PIPE] = ACTIONS(397), - [anon_sym_LT_LT] = ACTIONS(399), - [anon_sym_GT_GT] = ACTIONS(399), - [anon_sym_PLUS_EQ] = ACTIONS(397), - [anon_sym_DASH_EQ] = ACTIONS(397), - [anon_sym_STAR_EQ] = ACTIONS(397), - [anon_sym_SLASH_EQ] = ACTIONS(397), - [anon_sym_PERCENT_EQ] = ACTIONS(397), - [anon_sym_CARET_EQ] = ACTIONS(397), - [anon_sym_AMP_EQ] = ACTIONS(397), - [anon_sym_PIPE_EQ] = ACTIONS(397), - [anon_sym_LT_LT_EQ] = ACTIONS(397), - [anon_sym_GT_GT_EQ] = ACTIONS(397), - [anon_sym_EQ] = ACTIONS(399), - [anon_sym_EQ_EQ] = ACTIONS(397), - [anon_sym_BANG_EQ] = ACTIONS(397), - [anon_sym_GT] = ACTIONS(399), - [anon_sym_LT] = ACTIONS(399), - [anon_sym_GT_EQ] = ACTIONS(397), - [anon_sym_LT_EQ] = ACTIONS(397), - [anon_sym_DOT] = ACTIONS(399), - [anon_sym_DOT_DOT] = ACTIONS(399), - [anon_sym_DOT_DOT_DOT] = ACTIONS(397), - [anon_sym_DOT_DOT_EQ] = ACTIONS(397), - [anon_sym_COLON_COLON] = ACTIONS(415), + [sym_identifier] = ACTIONS(410), + [anon_sym_LPAREN] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(402), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_EQ_GT] = ACTIONS(402), + [anon_sym_PLUS] = ACTIONS(404), + [anon_sym_STAR] = ACTIONS(404), + [anon_sym_QMARK] = ACTIONS(402), + [anon_sym_u8] = ACTIONS(416), + [anon_sym_i8] = ACTIONS(416), + [anon_sym_u16] = ACTIONS(416), + [anon_sym_i16] = ACTIONS(416), + [anon_sym_u32] = ACTIONS(416), + [anon_sym_i32] = ACTIONS(416), + [anon_sym_u64] = ACTIONS(416), + [anon_sym_i64] = ACTIONS(416), + [anon_sym_u128] = ACTIONS(416), + [anon_sym_i128] = ACTIONS(416), + [anon_sym_isize] = ACTIONS(416), + [anon_sym_usize] = ACTIONS(416), + [anon_sym_f32] = ACTIONS(416), + [anon_sym_f64] = ACTIONS(416), + [anon_sym_bool] = ACTIONS(416), + [anon_sym_str] = ACTIONS(416), + [anon_sym_char] = ACTIONS(416), + [anon_sym_DASH] = ACTIONS(404), + [anon_sym_SLASH] = ACTIONS(404), + [anon_sym_PERCENT] = ACTIONS(404), + [anon_sym_CARET] = ACTIONS(404), + [anon_sym_BANG] = ACTIONS(418), + [anon_sym_AMP] = ACTIONS(404), + [anon_sym_PIPE] = ACTIONS(404), + [anon_sym_AMP_AMP] = ACTIONS(402), + [anon_sym_PIPE_PIPE] = ACTIONS(402), + [anon_sym_LT_LT] = ACTIONS(404), + [anon_sym_GT_GT] = ACTIONS(404), + [anon_sym_PLUS_EQ] = ACTIONS(402), + [anon_sym_DASH_EQ] = ACTIONS(402), + [anon_sym_STAR_EQ] = ACTIONS(402), + [anon_sym_SLASH_EQ] = ACTIONS(402), + [anon_sym_PERCENT_EQ] = ACTIONS(402), + [anon_sym_CARET_EQ] = ACTIONS(402), + [anon_sym_AMP_EQ] = ACTIONS(402), + [anon_sym_PIPE_EQ] = ACTIONS(402), + [anon_sym_LT_LT_EQ] = ACTIONS(402), + [anon_sym_GT_GT_EQ] = ACTIONS(402), + [anon_sym_EQ] = ACTIONS(404), + [anon_sym_EQ_EQ] = ACTIONS(402), + [anon_sym_BANG_EQ] = ACTIONS(402), + [anon_sym_GT] = ACTIONS(404), + [anon_sym_LT] = ACTIONS(404), + [anon_sym_GT_EQ] = ACTIONS(402), + [anon_sym_LT_EQ] = ACTIONS(402), + [anon_sym_DOT] = ACTIONS(404), + [anon_sym_DOT_DOT] = ACTIONS(404), + [anon_sym_DOT_DOT_DOT] = ACTIONS(402), + [anon_sym_DOT_DOT_EQ] = ACTIONS(402), + [anon_sym_COLON_COLON] = ACTIONS(420), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(399), - [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(404), + [anon_sym_async] = ACTIONS(422), + [anon_sym_break] = ACTIONS(424), + [anon_sym_const] = ACTIONS(426), + [anon_sym_continue] = ACTIONS(428), + [anon_sym_default] = ACTIONS(430), + [anon_sym_for] = ACTIONS(432), + [anon_sym_gen] = ACTIONS(434), + [anon_sym_if] = ACTIONS(436), + [anon_sym_loop] = ACTIONS(438), + [anon_sym_match] = ACTIONS(440), + [anon_sym_return] = ACTIONS(442), + [anon_sym_static] = ACTIONS(444), + [anon_sym_union] = ACTIONS(430), + [anon_sym_unsafe] = ACTIONS(446), + [anon_sym_while] = ACTIONS(448), + [anon_sym_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(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3105), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1711), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1607), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(254), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3114), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1692), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1631), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(244), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), [sym_line_comment] = STATE(51), [sym_block_comment] = STATE(51), - [sym_identifier] = ACTIONS(475), - [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(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(347), - [anon_sym_SLASH] = ACTIONS(347), - [anon_sym_PERCENT] = ACTIONS(347), - [anon_sym_CARET] = ACTIONS(347), - [anon_sym_BANG] = ACTIONS(479), - [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(481), - [anon_sym_SQUOTE] = ACTIONS(347), - [anon_sym_as] = ACTIONS(347), - [anon_sym_async] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_default] = ACTIONS(489), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(491), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(493), - [anon_sym_static] = ACTIONS(495), - [anon_sym_union] = ACTIONS(489), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(497), - [anon_sym_move] = ACTIONS(499), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(501), - [sym_super] = ACTIONS(503), - [sym_crate] = ACTIONS(503), - [sym_metavariable] = ACTIONS(505), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [sym_identifier] = ACTIONS(470), + [anon_sym_LPAREN] = ACTIONS(346), + [anon_sym_LBRACK] = ACTIONS(346), + [anon_sym_LBRACE] = ACTIONS(346), + [anon_sym_COLON] = ACTIONS(350), + [anon_sym_PLUS] = ACTIONS(352), + [anon_sym_STAR] = ACTIONS(352), + [anon_sym_QMARK] = ACTIONS(346), + [anon_sym_u8] = ACTIONS(472), + [anon_sym_i8] = ACTIONS(472), + [anon_sym_u16] = ACTIONS(472), + [anon_sym_i16] = ACTIONS(472), + [anon_sym_u32] = ACTIONS(472), + [anon_sym_i32] = ACTIONS(472), + [anon_sym_u64] = ACTIONS(472), + [anon_sym_i64] = ACTIONS(472), + [anon_sym_u128] = ACTIONS(472), + [anon_sym_i128] = ACTIONS(472), + [anon_sym_isize] = ACTIONS(472), + [anon_sym_usize] = ACTIONS(472), + [anon_sym_f32] = ACTIONS(472), + [anon_sym_f64] = ACTIONS(472), + [anon_sym_bool] = ACTIONS(472), + [anon_sym_str] = ACTIONS(472), + [anon_sym_char] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(352), + [anon_sym_SLASH] = ACTIONS(352), + [anon_sym_PERCENT] = ACTIONS(352), + [anon_sym_CARET] = ACTIONS(352), + [anon_sym_BANG] = ACTIONS(510), + [anon_sym_AMP] = ACTIONS(352), + [anon_sym_PIPE] = ACTIONS(352), + [anon_sym_AMP_AMP] = ACTIONS(346), + [anon_sym_PIPE_PIPE] = ACTIONS(346), + [anon_sym_LT_LT] = ACTIONS(352), + [anon_sym_GT_GT] = ACTIONS(352), + [anon_sym_PLUS_EQ] = ACTIONS(346), + [anon_sym_DASH_EQ] = ACTIONS(346), + [anon_sym_STAR_EQ] = ACTIONS(346), + [anon_sym_SLASH_EQ] = ACTIONS(346), + [anon_sym_PERCENT_EQ] = ACTIONS(346), + [anon_sym_CARET_EQ] = ACTIONS(346), + [anon_sym_AMP_EQ] = ACTIONS(346), + [anon_sym_PIPE_EQ] = ACTIONS(346), + [anon_sym_LT_LT_EQ] = ACTIONS(346), + [anon_sym_GT_GT_EQ] = ACTIONS(346), + [anon_sym_EQ] = ACTIONS(352), + [anon_sym_EQ_EQ] = ACTIONS(346), + [anon_sym_BANG_EQ] = ACTIONS(346), + [anon_sym_GT] = ACTIONS(352), + [anon_sym_LT] = ACTIONS(352), + [anon_sym_GT_EQ] = ACTIONS(346), + [anon_sym_LT_EQ] = ACTIONS(346), + [anon_sym_DOT] = ACTIONS(352), + [anon_sym_DOT_DOT] = ACTIONS(352), + [anon_sym_DOT_DOT_DOT] = ACTIONS(346), + [anon_sym_DOT_DOT_EQ] = ACTIONS(346), + [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_SQUOTE] = ACTIONS(352), + [anon_sym_as] = ACTIONS(352), + [anon_sym_async] = ACTIONS(512), + [anon_sym_break] = ACTIONS(514), + [anon_sym_const] = ACTIONS(358), + [anon_sym_continue] = ACTIONS(516), + [anon_sym_default] = ACTIONS(482), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(518), + [anon_sym_if] = ACTIONS(366), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(520), + [anon_sym_static] = ACTIONS(522), + [anon_sym_union] = ACTIONS(482), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_yield] = ACTIONS(524), + [anon_sym_move] = ACTIONS(526), + [anon_sym_try] = ACTIONS(378), + [sym_integer_literal] = ACTIONS(99), + [aux_sym_string_literal_token1] = ACTIONS(101), + [sym_char_literal] = ACTIONS(99), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(494), + [sym_super] = ACTIONS(496), + [sym_crate] = ACTIONS(496), + [sym_metavariable] = ACTIONS(498), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), }, [STATE(52)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3105), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1767), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1607), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), + [sym_bracketed_type] = STATE(3702), + [sym_generic_function] = STATE(1815), + [sym_generic_type_with_turbofish] = STATE(2969), + [sym__expression_except_range] = STATE(1694), + [sym__expression] = STATE(1898), + [sym_macro_invocation] = STATE(1832), + [sym_scoped_identifier] = STATE(1654), + [sym_scoped_type_identifier_in_expression_position] = STATE(3227), + [sym_range_expression] = STATE(1820), + [sym_unary_expression] = STATE(1815), + [sym_try_expression] = STATE(1815), + [sym_reference_expression] = STATE(1815), + [sym_binary_expression] = STATE(1815), + [sym_assignment_expression] = STATE(1815), + [sym_compound_assignment_expr] = STATE(1815), + [sym_type_cast_expression] = STATE(1815), + [sym_return_expression] = STATE(1815), + [sym_yield_expression] = STATE(1815), + [sym_call_expression] = STATE(1815), + [sym_array_expression] = STATE(1815), + [sym_parenthesized_expression] = STATE(1815), + [sym_tuple_expression] = STATE(1815), + [sym_unit_expression] = STATE(1815), + [sym_struct_expression] = STATE(1815), + [sym_if_expression] = STATE(1815), + [sym_match_expression] = STATE(1815), + [sym_while_expression] = STATE(1815), + [sym_loop_expression] = STATE(1815), + [sym_for_expression] = STATE(1815), + [sym_const_block] = STATE(1815), + [sym_closure_expression] = STATE(1815), [sym_closure_parameters] = STATE(226), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym_label] = STATE(3807), + [sym_break_expression] = STATE(1815), + [sym_continue_expression] = STATE(1815), + [sym_index_expression] = STATE(1815), + [sym_await_expression] = STATE(1815), + [sym_field_expression] = STATE(1695), + [sym_unsafe_block] = STATE(1815), + [sym_async_block] = STATE(1815), + [sym_gen_block] = STATE(1815), + [sym_try_block] = STATE(1815), + [sym_block] = STATE(1815), + [sym__literal] = STATE(1815), + [sym_string_literal] = STATE(1733), + [sym_raw_string_literal] = STATE(1733), + [sym_boolean_literal] = STATE(1733), [sym_line_comment] = STATE(52), [sym_block_comment] = STATE(52), - [sym_identifier] = ACTIONS(475), - [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(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(347), - [anon_sym_SLASH] = ACTIONS(347), - [anon_sym_PERCENT] = ACTIONS(347), - [anon_sym_CARET] = ACTIONS(347), - [anon_sym_BANG] = ACTIONS(507), - [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(481), + [sym_identifier] = ACTIONS(410), + [anon_sym_LPAREN] = ACTIONS(386), + [anon_sym_LBRACK] = ACTIONS(386), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_EQ_GT] = ACTIONS(386), + [anon_sym_PLUS] = ACTIONS(388), + [anon_sym_STAR] = ACTIONS(388), + [anon_sym_QMARK] = ACTIONS(386), + [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(388), + [anon_sym_SLASH] = ACTIONS(388), + [anon_sym_PERCENT] = ACTIONS(388), + [anon_sym_CARET] = ACTIONS(388), + [anon_sym_BANG] = ACTIONS(418), + [anon_sym_AMP] = ACTIONS(388), + [anon_sym_PIPE] = ACTIONS(388), + [anon_sym_AMP_AMP] = ACTIONS(386), + [anon_sym_PIPE_PIPE] = ACTIONS(386), + [anon_sym_LT_LT] = ACTIONS(388), + [anon_sym_GT_GT] = ACTIONS(388), + [anon_sym_PLUS_EQ] = ACTIONS(386), + [anon_sym_DASH_EQ] = ACTIONS(386), + [anon_sym_STAR_EQ] = ACTIONS(386), + [anon_sym_SLASH_EQ] = ACTIONS(386), + [anon_sym_PERCENT_EQ] = ACTIONS(386), + [anon_sym_CARET_EQ] = ACTIONS(386), + [anon_sym_AMP_EQ] = ACTIONS(386), + [anon_sym_PIPE_EQ] = ACTIONS(386), + [anon_sym_LT_LT_EQ] = ACTIONS(386), + [anon_sym_GT_GT_EQ] = ACTIONS(386), + [anon_sym_EQ] = ACTIONS(388), + [anon_sym_EQ_EQ] = ACTIONS(386), + [anon_sym_BANG_EQ] = ACTIONS(386), + [anon_sym_GT] = ACTIONS(388), + [anon_sym_LT] = ACTIONS(388), + [anon_sym_GT_EQ] = ACTIONS(386), + [anon_sym_LT_EQ] = ACTIONS(386), + [anon_sym_DOT] = ACTIONS(388), + [anon_sym_DOT_DOT] = ACTIONS(388), + [anon_sym_DOT_DOT_DOT] = ACTIONS(386), + [anon_sym_DOT_DOT_EQ] = ACTIONS(386), + [anon_sym_COLON_COLON] = ACTIONS(420), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(347), - [anon_sym_async] = ACTIONS(509), - [anon_sym_break] = ACTIONS(511), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(489), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(513), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(515), - [anon_sym_static] = ACTIONS(517), - [anon_sym_union] = ACTIONS(489), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(519), - [anon_sym_move] = ACTIONS(521), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(501), - [sym_super] = ACTIONS(503), - [sym_crate] = ACTIONS(503), - [sym_metavariable] = ACTIONS(505), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_as] = ACTIONS(388), + [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(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3105), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1780), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1607), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(226), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3114), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1682), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1631), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(244), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), [sym_line_comment] = STATE(53), [sym_block_comment] = STATE(53), - [sym_identifier] = ACTIONS(475), + [sym_identifier] = ACTIONS(470), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(397), - [anon_sym_LBRACE] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_STAR] = ACTIONS(399), - [anon_sym_QMARK] = ACTIONS(397), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_SLASH] = ACTIONS(399), - [anon_sym_PERCENT] = ACTIONS(399), - [anon_sym_CARET] = ACTIONS(399), - [anon_sym_BANG] = ACTIONS(507), - [anon_sym_AMP] = ACTIONS(399), - [anon_sym_PIPE] = ACTIONS(399), - [anon_sym_AMP_AMP] = ACTIONS(397), - [anon_sym_PIPE_PIPE] = ACTIONS(397), - [anon_sym_LT_LT] = ACTIONS(399), - [anon_sym_GT_GT] = ACTIONS(399), - [anon_sym_PLUS_EQ] = ACTIONS(397), - [anon_sym_DASH_EQ] = ACTIONS(397), - [anon_sym_STAR_EQ] = ACTIONS(397), - [anon_sym_SLASH_EQ] = ACTIONS(397), - [anon_sym_PERCENT_EQ] = ACTIONS(397), - [anon_sym_CARET_EQ] = ACTIONS(397), - [anon_sym_AMP_EQ] = ACTIONS(397), - [anon_sym_PIPE_EQ] = ACTIONS(397), - [anon_sym_LT_LT_EQ] = ACTIONS(397), - [anon_sym_GT_GT_EQ] = ACTIONS(397), - [anon_sym_EQ] = ACTIONS(399), - [anon_sym_EQ_EQ] = ACTIONS(397), - [anon_sym_BANG_EQ] = ACTIONS(397), - [anon_sym_GT] = ACTIONS(399), - [anon_sym_LT] = ACTIONS(399), - [anon_sym_GT_EQ] = ACTIONS(397), - [anon_sym_LT_EQ] = ACTIONS(397), - [anon_sym_DOT] = ACTIONS(399), - [anon_sym_DOT_DOT] = ACTIONS(399), - [anon_sym_DOT_DOT_DOT] = ACTIONS(397), - [anon_sym_DOT_DOT_EQ] = ACTIONS(397), - [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_PLUS] = ACTIONS(392), + [anon_sym_STAR] = ACTIONS(510), + [anon_sym_QMARK] = ACTIONS(390), + [anon_sym_u8] = ACTIONS(472), + [anon_sym_i8] = ACTIONS(472), + [anon_sym_u16] = ACTIONS(472), + [anon_sym_i16] = ACTIONS(472), + [anon_sym_u32] = ACTIONS(472), + [anon_sym_i32] = ACTIONS(472), + [anon_sym_u64] = ACTIONS(472), + [anon_sym_i64] = ACTIONS(472), + [anon_sym_u128] = ACTIONS(472), + [anon_sym_i128] = ACTIONS(472), + [anon_sym_isize] = ACTIONS(472), + [anon_sym_usize] = ACTIONS(472), + [anon_sym_f32] = ACTIONS(472), + [anon_sym_f64] = ACTIONS(472), + [anon_sym_bool] = ACTIONS(472), + [anon_sym_str] = ACTIONS(472), + [anon_sym_char] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(510), + [anon_sym_SLASH] = ACTIONS(392), + [anon_sym_PERCENT] = ACTIONS(392), + [anon_sym_CARET] = ACTIONS(392), + [anon_sym_BANG] = ACTIONS(510), + [anon_sym_AMP] = ACTIONS(528), + [anon_sym_PIPE] = ACTIONS(396), + [anon_sym_AMP_AMP] = ACTIONS(390), + [anon_sym_PIPE_PIPE] = ACTIONS(390), + [anon_sym_LT_LT] = ACTIONS(392), + [anon_sym_GT_GT] = ACTIONS(392), + [anon_sym_PLUS_EQ] = ACTIONS(390), + [anon_sym_DASH_EQ] = ACTIONS(390), + [anon_sym_STAR_EQ] = ACTIONS(390), + [anon_sym_SLASH_EQ] = ACTIONS(390), + [anon_sym_PERCENT_EQ] = ACTIONS(390), + [anon_sym_CARET_EQ] = ACTIONS(390), + [anon_sym_AMP_EQ] = ACTIONS(390), + [anon_sym_PIPE_EQ] = ACTIONS(390), + [anon_sym_LT_LT_EQ] = ACTIONS(390), + [anon_sym_GT_GT_EQ] = ACTIONS(390), + [anon_sym_EQ] = ACTIONS(392), + [anon_sym_EQ_EQ] = ACTIONS(390), + [anon_sym_BANG_EQ] = ACTIONS(390), + [anon_sym_GT] = ACTIONS(392), + [anon_sym_LT] = ACTIONS(398), + [anon_sym_GT_EQ] = ACTIONS(390), + [anon_sym_LT_EQ] = ACTIONS(390), + [anon_sym_DOT] = ACTIONS(392), + [anon_sym_DOT_DOT] = ACTIONS(530), + [anon_sym_DOT_DOT_DOT] = ACTIONS(390), + [anon_sym_DOT_DOT_EQ] = ACTIONS(390), + [anon_sym_COLON_COLON] = ACTIONS(476), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(399), - [anon_sym_async] = ACTIONS(509), - [anon_sym_break] = ACTIONS(511), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(489), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(513), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(515), - [anon_sym_static] = ACTIONS(517), - [anon_sym_union] = ACTIONS(489), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(519), - [anon_sym_move] = ACTIONS(521), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(501), - [sym_super] = ACTIONS(503), - [sym_crate] = ACTIONS(503), - [sym_metavariable] = ACTIONS(505), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_as] = ACTIONS(392), + [anon_sym_async] = ACTIONS(512), + [anon_sym_break] = ACTIONS(514), + [anon_sym_const] = ACTIONS(358), + [anon_sym_continue] = ACTIONS(516), + [anon_sym_default] = ACTIONS(482), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(518), + [anon_sym_if] = ACTIONS(366), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(520), + [anon_sym_static] = ACTIONS(522), + [anon_sym_union] = ACTIONS(482), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_yield] = ACTIONS(524), + [anon_sym_move] = ACTIONS(526), + [anon_sym_try] = ACTIONS(378), + [sym_integer_literal] = ACTIONS(99), + [aux_sym_string_literal_token1] = ACTIONS(101), + [sym_char_literal] = ACTIONS(99), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(494), + [sym_super] = ACTIONS(496), + [sym_crate] = ACTIONS(496), + [sym_metavariable] = ACTIONS(498), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), }, [STATE(54)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3105), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1891), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1607), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(226), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3114), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1727), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1631), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(262), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), [sym_line_comment] = STATE(54), [sym_block_comment] = STATE(54), - [sym_identifier] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(393), - [anon_sym_LBRACE] = ACTIONS(393), - [anon_sym_PLUS] = ACTIONS(395), - [anon_sym_STAR] = ACTIONS(395), - [anon_sym_QMARK] = ACTIONS(393), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_SLASH] = ACTIONS(395), - [anon_sym_PERCENT] = ACTIONS(395), - [anon_sym_CARET] = ACTIONS(395), - [anon_sym_BANG] = ACTIONS(507), - [anon_sym_AMP] = ACTIONS(395), - [anon_sym_PIPE] = ACTIONS(395), - [anon_sym_AMP_AMP] = ACTIONS(393), - [anon_sym_PIPE_PIPE] = ACTIONS(393), - [anon_sym_LT_LT] = ACTIONS(395), - [anon_sym_GT_GT] = ACTIONS(395), - [anon_sym_PLUS_EQ] = ACTIONS(393), - [anon_sym_DASH_EQ] = ACTIONS(393), - [anon_sym_STAR_EQ] = ACTIONS(393), - [anon_sym_SLASH_EQ] = ACTIONS(393), - [anon_sym_PERCENT_EQ] = ACTIONS(393), - [anon_sym_CARET_EQ] = ACTIONS(393), - [anon_sym_AMP_EQ] = ACTIONS(393), - [anon_sym_PIPE_EQ] = ACTIONS(393), - [anon_sym_LT_LT_EQ] = ACTIONS(393), - [anon_sym_GT_GT_EQ] = ACTIONS(393), - [anon_sym_EQ] = ACTIONS(395), - [anon_sym_EQ_EQ] = ACTIONS(393), - [anon_sym_BANG_EQ] = ACTIONS(393), - [anon_sym_GT] = ACTIONS(395), - [anon_sym_LT] = ACTIONS(395), - [anon_sym_GT_EQ] = ACTIONS(393), - [anon_sym_LT_EQ] = ACTIONS(393), - [anon_sym_DOT] = ACTIONS(395), - [anon_sym_DOT_DOT] = ACTIONS(395), - [anon_sym_DOT_DOT_DOT] = ACTIONS(393), - [anon_sym_DOT_DOT_EQ] = ACTIONS(393), - [anon_sym_COLON_COLON] = ACTIONS(481), + [sym_identifier] = ACTIONS(470), + [anon_sym_LPAREN] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(402), + [anon_sym_LBRACE] = ACTIONS(402), + [anon_sym_PLUS] = ACTIONS(404), + [anon_sym_STAR] = ACTIONS(404), + [anon_sym_QMARK] = ACTIONS(402), + [anon_sym_u8] = ACTIONS(472), + [anon_sym_i8] = ACTIONS(472), + [anon_sym_u16] = ACTIONS(472), + [anon_sym_i16] = ACTIONS(472), + [anon_sym_u32] = ACTIONS(472), + [anon_sym_i32] = ACTIONS(472), + [anon_sym_u64] = ACTIONS(472), + [anon_sym_i64] = ACTIONS(472), + [anon_sym_u128] = ACTIONS(472), + [anon_sym_i128] = ACTIONS(472), + [anon_sym_isize] = ACTIONS(472), + [anon_sym_usize] = ACTIONS(472), + [anon_sym_f32] = ACTIONS(472), + [anon_sym_f64] = ACTIONS(472), + [anon_sym_bool] = ACTIONS(472), + [anon_sym_str] = ACTIONS(472), + [anon_sym_char] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(404), + [anon_sym_SLASH] = ACTIONS(404), + [anon_sym_PERCENT] = ACTIONS(404), + [anon_sym_CARET] = ACTIONS(404), + [anon_sym_BANG] = ACTIONS(474), + [anon_sym_AMP] = ACTIONS(404), + [anon_sym_PIPE] = ACTIONS(404), + [anon_sym_AMP_AMP] = ACTIONS(402), + [anon_sym_PIPE_PIPE] = ACTIONS(402), + [anon_sym_LT_LT] = ACTIONS(404), + [anon_sym_GT_GT] = ACTIONS(404), + [anon_sym_PLUS_EQ] = ACTIONS(402), + [anon_sym_DASH_EQ] = ACTIONS(402), + [anon_sym_STAR_EQ] = ACTIONS(402), + [anon_sym_SLASH_EQ] = ACTIONS(402), + [anon_sym_PERCENT_EQ] = ACTIONS(402), + [anon_sym_CARET_EQ] = ACTIONS(402), + [anon_sym_AMP_EQ] = ACTIONS(402), + [anon_sym_PIPE_EQ] = ACTIONS(402), + [anon_sym_LT_LT_EQ] = ACTIONS(402), + [anon_sym_GT_GT_EQ] = ACTIONS(402), + [anon_sym_EQ] = ACTIONS(404), + [anon_sym_EQ_EQ] = ACTIONS(402), + [anon_sym_BANG_EQ] = ACTIONS(402), + [anon_sym_GT] = ACTIONS(404), + [anon_sym_LT] = ACTIONS(404), + [anon_sym_GT_EQ] = ACTIONS(402), + [anon_sym_LT_EQ] = ACTIONS(402), + [anon_sym_DOT] = ACTIONS(404), + [anon_sym_DOT_DOT] = ACTIONS(404), + [anon_sym_DOT_DOT_DOT] = ACTIONS(402), + [anon_sym_DOT_DOT_EQ] = ACTIONS(402), + [anon_sym_COLON_COLON] = ACTIONS(476), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(395), - [anon_sym_async] = ACTIONS(509), - [anon_sym_break] = ACTIONS(511), - [anon_sym_const] = ACTIONS(353), + [anon_sym_as] = ACTIONS(404), + [anon_sym_async] = ACTIONS(478), + [anon_sym_break] = ACTIONS(480), + [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(489), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(513), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(515), - [anon_sym_static] = ACTIONS(517), - [anon_sym_union] = ACTIONS(489), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(519), - [anon_sym_move] = ACTIONS(521), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(501), - [sym_super] = ACTIONS(503), - [sym_crate] = ACTIONS(503), - [sym_metavariable] = ACTIONS(505), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_default] = ACTIONS(482), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(484), + [anon_sym_if] = ACTIONS(366), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(486), + [anon_sym_static] = ACTIONS(488), + [anon_sym_union] = ACTIONS(482), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_yield] = ACTIONS(490), + [anon_sym_move] = ACTIONS(492), + [anon_sym_try] = ACTIONS(378), + [sym_integer_literal] = ACTIONS(99), + [aux_sym_string_literal_token1] = ACTIONS(101), + [sym_char_literal] = ACTIONS(99), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(494), + [sym_super] = ACTIONS(496), + [sym_crate] = ACTIONS(496), + [sym_metavariable] = ACTIONS(498), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), }, [STATE(55)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3105), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1679), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1607), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(254), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3114), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1760), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1631), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(262), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), [sym_line_comment] = STATE(55), [sym_block_comment] = STATE(55), - [sym_identifier] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(393), - [anon_sym_LBRACK] = ACTIONS(393), - [anon_sym_LBRACE] = ACTIONS(393), - [anon_sym_PLUS] = ACTIONS(395), - [anon_sym_STAR] = ACTIONS(395), - [anon_sym_QMARK] = ACTIONS(393), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_SLASH] = ACTIONS(395), - [anon_sym_PERCENT] = ACTIONS(395), - [anon_sym_CARET] = ACTIONS(395), - [anon_sym_BANG] = ACTIONS(479), - [anon_sym_AMP] = ACTIONS(395), - [anon_sym_PIPE] = ACTIONS(395), - [anon_sym_AMP_AMP] = ACTIONS(393), - [anon_sym_PIPE_PIPE] = ACTIONS(393), - [anon_sym_LT_LT] = ACTIONS(395), - [anon_sym_GT_GT] = ACTIONS(395), - [anon_sym_PLUS_EQ] = ACTIONS(393), - [anon_sym_DASH_EQ] = ACTIONS(393), - [anon_sym_STAR_EQ] = ACTIONS(393), - [anon_sym_SLASH_EQ] = ACTIONS(393), - [anon_sym_PERCENT_EQ] = ACTIONS(393), - [anon_sym_CARET_EQ] = ACTIONS(393), - [anon_sym_AMP_EQ] = ACTIONS(393), - [anon_sym_PIPE_EQ] = ACTIONS(393), - [anon_sym_LT_LT_EQ] = ACTIONS(393), - [anon_sym_GT_GT_EQ] = ACTIONS(393), - [anon_sym_EQ] = ACTIONS(395), - [anon_sym_EQ_EQ] = ACTIONS(393), - [anon_sym_BANG_EQ] = ACTIONS(393), - [anon_sym_GT] = ACTIONS(395), - [anon_sym_LT] = ACTIONS(395), - [anon_sym_GT_EQ] = ACTIONS(393), - [anon_sym_LT_EQ] = ACTIONS(393), - [anon_sym_DOT] = ACTIONS(395), - [anon_sym_DOT_DOT] = ACTIONS(395), - [anon_sym_DOT_DOT_DOT] = ACTIONS(393), - [anon_sym_DOT_DOT_EQ] = ACTIONS(393), - [anon_sym_COLON_COLON] = ACTIONS(481), - [anon_sym_SQUOTE] = ACTIONS(395), - [anon_sym_as] = ACTIONS(395), - [anon_sym_async] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_default] = ACTIONS(489), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(491), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(493), - [anon_sym_static] = ACTIONS(495), - [anon_sym_union] = ACTIONS(489), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(497), - [anon_sym_move] = ACTIONS(499), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(501), - [sym_super] = ACTIONS(503), - [sym_crate] = ACTIONS(503), - [sym_metavariable] = ACTIONS(505), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [sym_identifier] = ACTIONS(470), + [anon_sym_LPAREN] = ACTIONS(386), + [anon_sym_LBRACK] = ACTIONS(386), + [anon_sym_LBRACE] = ACTIONS(386), + [anon_sym_PLUS] = ACTIONS(388), + [anon_sym_STAR] = ACTIONS(388), + [anon_sym_QMARK] = ACTIONS(386), + [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(388), + [anon_sym_SLASH] = ACTIONS(388), + [anon_sym_PERCENT] = ACTIONS(388), + [anon_sym_CARET] = ACTIONS(388), + [anon_sym_BANG] = ACTIONS(474), + [anon_sym_AMP] = ACTIONS(388), + [anon_sym_PIPE] = ACTIONS(388), + [anon_sym_AMP_AMP] = ACTIONS(386), + [anon_sym_PIPE_PIPE] = ACTIONS(386), + [anon_sym_LT_LT] = ACTIONS(388), + [anon_sym_GT_GT] = ACTIONS(388), + [anon_sym_PLUS_EQ] = ACTIONS(386), + [anon_sym_DASH_EQ] = ACTIONS(386), + [anon_sym_STAR_EQ] = ACTIONS(386), + [anon_sym_SLASH_EQ] = ACTIONS(386), + [anon_sym_PERCENT_EQ] = ACTIONS(386), + [anon_sym_CARET_EQ] = ACTIONS(386), + [anon_sym_AMP_EQ] = ACTIONS(386), + [anon_sym_PIPE_EQ] = ACTIONS(386), + [anon_sym_LT_LT_EQ] = ACTIONS(386), + [anon_sym_GT_GT_EQ] = ACTIONS(386), + [anon_sym_EQ] = ACTIONS(388), + [anon_sym_EQ_EQ] = ACTIONS(386), + [anon_sym_BANG_EQ] = ACTIONS(386), + [anon_sym_GT] = ACTIONS(388), + [anon_sym_LT] = ACTIONS(388), + [anon_sym_GT_EQ] = ACTIONS(386), + [anon_sym_LT_EQ] = ACTIONS(386), + [anon_sym_DOT] = ACTIONS(388), + [anon_sym_DOT_DOT] = ACTIONS(388), + [anon_sym_DOT_DOT_DOT] = ACTIONS(386), + [anon_sym_DOT_DOT_EQ] = ACTIONS(386), + [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_as] = ACTIONS(388), + [anon_sym_async] = ACTIONS(478), + [anon_sym_break] = ACTIONS(480), + [anon_sym_const] = ACTIONS(358), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(482), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(484), + [anon_sym_if] = ACTIONS(366), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(486), + [anon_sym_static] = ACTIONS(488), + [anon_sym_union] = ACTIONS(482), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_yield] = ACTIONS(490), + [anon_sym_move] = ACTIONS(492), + [anon_sym_try] = ACTIONS(378), + [sym_integer_literal] = ACTIONS(99), + [aux_sym_string_literal_token1] = ACTIONS(101), + [sym_char_literal] = ACTIONS(99), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(494), + [sym_super] = ACTIONS(496), + [sym_crate] = ACTIONS(496), + [sym_metavariable] = ACTIONS(498), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), }, [STATE(56)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3105), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1891), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1607), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(226), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3114), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1727), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1631), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(262), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), [sym_line_comment] = STATE(56), [sym_block_comment] = STATE(56), - [sym_identifier] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(393), - [anon_sym_LBRACK] = ACTIONS(393), - [anon_sym_LBRACE] = ACTIONS(393), - [anon_sym_PLUS] = ACTIONS(395), - [anon_sym_STAR] = ACTIONS(395), - [anon_sym_QMARK] = ACTIONS(393), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_SLASH] = ACTIONS(395), - [anon_sym_PERCENT] = ACTIONS(395), - [anon_sym_CARET] = ACTIONS(395), - [anon_sym_BANG] = ACTIONS(507), - [anon_sym_AMP] = ACTIONS(395), - [anon_sym_PIPE] = ACTIONS(395), - [anon_sym_AMP_AMP] = ACTIONS(393), - [anon_sym_PIPE_PIPE] = ACTIONS(393), - [anon_sym_LT_LT] = ACTIONS(395), - [anon_sym_GT_GT] = ACTIONS(395), - [anon_sym_PLUS_EQ] = ACTIONS(393), - [anon_sym_DASH_EQ] = ACTIONS(393), - [anon_sym_STAR_EQ] = ACTIONS(393), - [anon_sym_SLASH_EQ] = ACTIONS(393), - [anon_sym_PERCENT_EQ] = ACTIONS(393), - [anon_sym_CARET_EQ] = ACTIONS(393), - [anon_sym_AMP_EQ] = ACTIONS(393), - [anon_sym_PIPE_EQ] = ACTIONS(393), - [anon_sym_LT_LT_EQ] = ACTIONS(393), - [anon_sym_GT_GT_EQ] = ACTIONS(393), - [anon_sym_EQ] = ACTIONS(395), - [anon_sym_EQ_EQ] = ACTIONS(393), - [anon_sym_BANG_EQ] = ACTIONS(393), - [anon_sym_GT] = ACTIONS(395), - [anon_sym_LT] = ACTIONS(395), - [anon_sym_GT_EQ] = ACTIONS(393), - [anon_sym_LT_EQ] = ACTIONS(393), - [anon_sym_DOT] = ACTIONS(395), - [anon_sym_DOT_DOT] = ACTIONS(395), - [anon_sym_DOT_DOT_DOT] = ACTIONS(393), - [anon_sym_DOT_DOT_EQ] = ACTIONS(393), - [anon_sym_COLON_COLON] = ACTIONS(481), + [sym_identifier] = ACTIONS(470), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(402), + [anon_sym_LBRACE] = ACTIONS(402), + [anon_sym_PLUS] = ACTIONS(404), + [anon_sym_STAR] = ACTIONS(404), + [anon_sym_QMARK] = ACTIONS(402), + [anon_sym_u8] = ACTIONS(472), + [anon_sym_i8] = ACTIONS(472), + [anon_sym_u16] = ACTIONS(472), + [anon_sym_i16] = ACTIONS(472), + [anon_sym_u32] = ACTIONS(472), + [anon_sym_i32] = ACTIONS(472), + [anon_sym_u64] = ACTIONS(472), + [anon_sym_i64] = ACTIONS(472), + [anon_sym_u128] = ACTIONS(472), + [anon_sym_i128] = ACTIONS(472), + [anon_sym_isize] = ACTIONS(472), + [anon_sym_usize] = ACTIONS(472), + [anon_sym_f32] = ACTIONS(472), + [anon_sym_f64] = ACTIONS(472), + [anon_sym_bool] = ACTIONS(472), + [anon_sym_str] = ACTIONS(472), + [anon_sym_char] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(404), + [anon_sym_SLASH] = ACTIONS(404), + [anon_sym_PERCENT] = ACTIONS(404), + [anon_sym_CARET] = ACTIONS(404), + [anon_sym_BANG] = ACTIONS(474), + [anon_sym_AMP] = ACTIONS(404), + [anon_sym_PIPE] = ACTIONS(404), + [anon_sym_AMP_AMP] = ACTIONS(402), + [anon_sym_PIPE_PIPE] = ACTIONS(402), + [anon_sym_LT_LT] = ACTIONS(404), + [anon_sym_GT_GT] = ACTIONS(404), + [anon_sym_PLUS_EQ] = ACTIONS(402), + [anon_sym_DASH_EQ] = ACTIONS(402), + [anon_sym_STAR_EQ] = ACTIONS(402), + [anon_sym_SLASH_EQ] = ACTIONS(402), + [anon_sym_PERCENT_EQ] = ACTIONS(402), + [anon_sym_CARET_EQ] = ACTIONS(402), + [anon_sym_AMP_EQ] = ACTIONS(402), + [anon_sym_PIPE_EQ] = ACTIONS(402), + [anon_sym_LT_LT_EQ] = ACTIONS(402), + [anon_sym_GT_GT_EQ] = ACTIONS(402), + [anon_sym_EQ] = ACTIONS(404), + [anon_sym_EQ_EQ] = ACTIONS(402), + [anon_sym_BANG_EQ] = ACTIONS(402), + [anon_sym_GT] = ACTIONS(404), + [anon_sym_LT] = ACTIONS(404), + [anon_sym_GT_EQ] = ACTIONS(402), + [anon_sym_LT_EQ] = ACTIONS(402), + [anon_sym_DOT] = ACTIONS(404), + [anon_sym_DOT_DOT] = ACTIONS(404), + [anon_sym_DOT_DOT_DOT] = ACTIONS(402), + [anon_sym_DOT_DOT_EQ] = ACTIONS(402), + [anon_sym_COLON_COLON] = ACTIONS(476), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(395), - [anon_sym_async] = ACTIONS(509), - [anon_sym_break] = ACTIONS(511), - [anon_sym_const] = ACTIONS(353), + [anon_sym_as] = ACTIONS(404), + [anon_sym_async] = ACTIONS(478), + [anon_sym_break] = ACTIONS(480), + [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(489), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(513), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(515), - [anon_sym_static] = ACTIONS(517), - [anon_sym_union] = ACTIONS(489), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(519), - [anon_sym_move] = ACTIONS(521), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(501), - [sym_super] = ACTIONS(503), - [sym_crate] = ACTIONS(503), - [sym_metavariable] = ACTIONS(505), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_default] = ACTIONS(482), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(484), + [anon_sym_if] = ACTIONS(366), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(486), + [anon_sym_static] = ACTIONS(488), + [anon_sym_union] = ACTIONS(482), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_yield] = ACTIONS(490), + [anon_sym_move] = ACTIONS(492), + [anon_sym_try] = ACTIONS(378), + [sym_integer_literal] = ACTIONS(99), + [aux_sym_string_literal_token1] = ACTIONS(101), + [sym_char_literal] = ACTIONS(99), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(494), + [sym_super] = ACTIONS(496), + [sym_crate] = ACTIONS(496), + [sym_metavariable] = ACTIONS(498), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), }, [STATE(57)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3105), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1780), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1607), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(226), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3114), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1822), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1631), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(262), + [sym_label] = STATE(44), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), [sym_line_comment] = STATE(57), [sym_block_comment] = STATE(57), - [sym_identifier] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_LBRACK] = ACTIONS(397), - [anon_sym_LBRACE] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_STAR] = ACTIONS(399), - [anon_sym_QMARK] = ACTIONS(397), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_SLASH] = ACTIONS(399), - [anon_sym_PERCENT] = ACTIONS(399), - [anon_sym_CARET] = ACTIONS(399), - [anon_sym_BANG] = ACTIONS(507), - [anon_sym_AMP] = ACTIONS(399), - [anon_sym_PIPE] = ACTIONS(399), - [anon_sym_AMP_AMP] = ACTIONS(397), - [anon_sym_PIPE_PIPE] = ACTIONS(397), - [anon_sym_LT_LT] = ACTIONS(399), - [anon_sym_GT_GT] = ACTIONS(399), - [anon_sym_PLUS_EQ] = ACTIONS(397), - [anon_sym_DASH_EQ] = ACTIONS(397), - [anon_sym_STAR_EQ] = ACTIONS(397), - [anon_sym_SLASH_EQ] = ACTIONS(397), - [anon_sym_PERCENT_EQ] = ACTIONS(397), - [anon_sym_CARET_EQ] = ACTIONS(397), - [anon_sym_AMP_EQ] = ACTIONS(397), - [anon_sym_PIPE_EQ] = ACTIONS(397), - [anon_sym_LT_LT_EQ] = ACTIONS(397), - [anon_sym_GT_GT_EQ] = ACTIONS(397), - [anon_sym_EQ] = ACTIONS(399), - [anon_sym_EQ_EQ] = ACTIONS(397), - [anon_sym_BANG_EQ] = ACTIONS(397), - [anon_sym_GT] = ACTIONS(399), - [anon_sym_LT] = ACTIONS(399), - [anon_sym_GT_EQ] = ACTIONS(397), - [anon_sym_LT_EQ] = ACTIONS(397), - [anon_sym_DOT] = ACTIONS(399), - [anon_sym_DOT_DOT] = ACTIONS(399), - [anon_sym_DOT_DOT_DOT] = ACTIONS(397), - [anon_sym_DOT_DOT_EQ] = ACTIONS(397), - [anon_sym_COLON_COLON] = ACTIONS(481), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(399), - [anon_sym_async] = ACTIONS(509), - [anon_sym_break] = ACTIONS(511), - [anon_sym_const] = ACTIONS(353), + [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(384), + [anon_sym_as] = ACTIONS(382), + [anon_sym_async] = ACTIONS(478), + [anon_sym_break] = ACTIONS(480), + [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(489), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(513), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(515), - [anon_sym_static] = ACTIONS(517), - [anon_sym_union] = ACTIONS(489), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(519), - [anon_sym_move] = ACTIONS(521), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(501), - [sym_super] = ACTIONS(503), - [sym_crate] = ACTIONS(503), - [sym_metavariable] = ACTIONS(505), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_default] = ACTIONS(482), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(484), + [anon_sym_if] = ACTIONS(366), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(486), + [anon_sym_static] = ACTIONS(488), + [anon_sym_union] = ACTIONS(482), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_yield] = ACTIONS(490), + [anon_sym_move] = ACTIONS(492), + [anon_sym_try] = ACTIONS(378), + [sym_integer_literal] = ACTIONS(99), + [aux_sym_string_literal_token1] = ACTIONS(101), + [sym_char_literal] = ACTIONS(99), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(494), + [sym_super] = ACTIONS(496), + [sym_crate] = ACTIONS(496), + [sym_metavariable] = ACTIONS(498), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), }, [STATE(58)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3105), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1675), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1607), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(254), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3114), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1715), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1631), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(244), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), [sym_line_comment] = STATE(58), [sym_block_comment] = STATE(58), - [sym_identifier] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_LBRACK] = ACTIONS(397), - [anon_sym_LBRACE] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_STAR] = ACTIONS(399), - [anon_sym_QMARK] = ACTIONS(397), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_SLASH] = ACTIONS(399), - [anon_sym_PERCENT] = ACTIONS(399), - [anon_sym_CARET] = ACTIONS(399), - [anon_sym_BANG] = ACTIONS(479), - [anon_sym_AMP] = ACTIONS(399), - [anon_sym_PIPE] = ACTIONS(399), - [anon_sym_AMP_AMP] = ACTIONS(397), - [anon_sym_PIPE_PIPE] = ACTIONS(397), - [anon_sym_LT_LT] = ACTIONS(399), - [anon_sym_GT_GT] = ACTIONS(399), - [anon_sym_PLUS_EQ] = ACTIONS(397), - [anon_sym_DASH_EQ] = ACTIONS(397), - [anon_sym_STAR_EQ] = ACTIONS(397), - [anon_sym_SLASH_EQ] = ACTIONS(397), - [anon_sym_PERCENT_EQ] = ACTIONS(397), - [anon_sym_CARET_EQ] = ACTIONS(397), - [anon_sym_AMP_EQ] = ACTIONS(397), - [anon_sym_PIPE_EQ] = ACTIONS(397), - [anon_sym_LT_LT_EQ] = ACTIONS(397), - [anon_sym_GT_GT_EQ] = ACTIONS(397), - [anon_sym_EQ] = ACTIONS(399), - [anon_sym_EQ_EQ] = ACTIONS(397), - [anon_sym_BANG_EQ] = ACTIONS(397), - [anon_sym_GT] = ACTIONS(399), - [anon_sym_LT] = ACTIONS(399), - [anon_sym_GT_EQ] = ACTIONS(397), - [anon_sym_LT_EQ] = ACTIONS(397), - [anon_sym_DOT] = ACTIONS(399), - [anon_sym_DOT_DOT] = ACTIONS(399), - [anon_sym_DOT_DOT_DOT] = ACTIONS(397), - [anon_sym_DOT_DOT_EQ] = ACTIONS(397), - [anon_sym_COLON_COLON] = ACTIONS(481), - [anon_sym_SQUOTE] = ACTIONS(399), - [anon_sym_as] = ACTIONS(399), - [anon_sym_async] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_default] = ACTIONS(489), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(491), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(493), - [anon_sym_static] = ACTIONS(495), - [anon_sym_union] = ACTIONS(489), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(497), - [anon_sym_move] = ACTIONS(499), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(501), - [sym_super] = ACTIONS(503), - [sym_crate] = ACTIONS(503), - [sym_metavariable] = ACTIONS(505), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [sym_identifier] = ACTIONS(470), + [anon_sym_LPAREN] = ACTIONS(386), + [anon_sym_LBRACK] = ACTIONS(386), + [anon_sym_LBRACE] = ACTIONS(386), + [anon_sym_PLUS] = ACTIONS(388), + [anon_sym_STAR] = ACTIONS(388), + [anon_sym_QMARK] = ACTIONS(386), + [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(388), + [anon_sym_SLASH] = ACTIONS(388), + [anon_sym_PERCENT] = ACTIONS(388), + [anon_sym_CARET] = ACTIONS(388), + [anon_sym_BANG] = ACTIONS(510), + [anon_sym_AMP] = ACTIONS(388), + [anon_sym_PIPE] = ACTIONS(388), + [anon_sym_AMP_AMP] = ACTIONS(386), + [anon_sym_PIPE_PIPE] = ACTIONS(386), + [anon_sym_LT_LT] = ACTIONS(388), + [anon_sym_GT_GT] = ACTIONS(388), + [anon_sym_PLUS_EQ] = ACTIONS(386), + [anon_sym_DASH_EQ] = ACTIONS(386), + [anon_sym_STAR_EQ] = ACTIONS(386), + [anon_sym_SLASH_EQ] = ACTIONS(386), + [anon_sym_PERCENT_EQ] = ACTIONS(386), + [anon_sym_CARET_EQ] = ACTIONS(386), + [anon_sym_AMP_EQ] = ACTIONS(386), + [anon_sym_PIPE_EQ] = ACTIONS(386), + [anon_sym_LT_LT_EQ] = ACTIONS(386), + [anon_sym_GT_GT_EQ] = ACTIONS(386), + [anon_sym_EQ] = ACTIONS(388), + [anon_sym_EQ_EQ] = ACTIONS(386), + [anon_sym_BANG_EQ] = ACTIONS(386), + [anon_sym_GT] = ACTIONS(388), + [anon_sym_LT] = ACTIONS(388), + [anon_sym_GT_EQ] = ACTIONS(386), + [anon_sym_LT_EQ] = ACTIONS(386), + [anon_sym_DOT] = ACTIONS(388), + [anon_sym_DOT_DOT] = ACTIONS(388), + [anon_sym_DOT_DOT_DOT] = ACTIONS(386), + [anon_sym_DOT_DOT_EQ] = ACTIONS(386), + [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_SQUOTE] = ACTIONS(388), + [anon_sym_as] = ACTIONS(388), + [anon_sym_async] = ACTIONS(512), + [anon_sym_break] = ACTIONS(514), + [anon_sym_const] = ACTIONS(358), + [anon_sym_continue] = ACTIONS(516), + [anon_sym_default] = ACTIONS(482), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(518), + [anon_sym_if] = ACTIONS(366), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(520), + [anon_sym_static] = ACTIONS(522), + [anon_sym_union] = ACTIONS(482), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_yield] = ACTIONS(524), + [anon_sym_move] = ACTIONS(526), + [anon_sym_try] = ACTIONS(378), + [sym_integer_literal] = ACTIONS(99), + [aux_sym_string_literal_token1] = ACTIONS(101), + [sym_char_literal] = ACTIONS(99), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(494), + [sym_super] = ACTIONS(496), + [sym_crate] = ACTIONS(496), + [sym_metavariable] = ACTIONS(498), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), }, [STATE(59)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3105), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1675), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1607), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(254), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3114), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1679), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1631), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(244), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), [sym_line_comment] = STATE(59), [sym_block_comment] = STATE(59), - [sym_identifier] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(397), - [anon_sym_LBRACE] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_STAR] = ACTIONS(399), - [anon_sym_QMARK] = ACTIONS(397), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_SLASH] = ACTIONS(399), - [anon_sym_PERCENT] = ACTIONS(399), - [anon_sym_CARET] = ACTIONS(399), - [anon_sym_BANG] = ACTIONS(479), - [anon_sym_AMP] = ACTIONS(399), - [anon_sym_PIPE] = ACTIONS(399), - [anon_sym_AMP_AMP] = ACTIONS(397), - [anon_sym_PIPE_PIPE] = ACTIONS(397), - [anon_sym_LT_LT] = ACTIONS(399), - [anon_sym_GT_GT] = ACTIONS(399), - [anon_sym_PLUS_EQ] = ACTIONS(397), - [anon_sym_DASH_EQ] = ACTIONS(397), - [anon_sym_STAR_EQ] = ACTIONS(397), - [anon_sym_SLASH_EQ] = ACTIONS(397), - [anon_sym_PERCENT_EQ] = ACTIONS(397), - [anon_sym_CARET_EQ] = ACTIONS(397), - [anon_sym_AMP_EQ] = ACTIONS(397), - [anon_sym_PIPE_EQ] = ACTIONS(397), - [anon_sym_LT_LT_EQ] = ACTIONS(397), - [anon_sym_GT_GT_EQ] = ACTIONS(397), - [anon_sym_EQ] = ACTIONS(399), - [anon_sym_EQ_EQ] = ACTIONS(397), - [anon_sym_BANG_EQ] = ACTIONS(397), - [anon_sym_GT] = ACTIONS(399), - [anon_sym_LT] = ACTIONS(399), - [anon_sym_GT_EQ] = ACTIONS(397), - [anon_sym_LT_EQ] = ACTIONS(397), - [anon_sym_DOT] = ACTIONS(399), - [anon_sym_DOT_DOT] = ACTIONS(399), - [anon_sym_DOT_DOT_DOT] = ACTIONS(397), - [anon_sym_DOT_DOT_EQ] = ACTIONS(397), - [anon_sym_COLON_COLON] = ACTIONS(481), - [anon_sym_SQUOTE] = ACTIONS(399), - [anon_sym_as] = ACTIONS(399), - [anon_sym_async] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_default] = ACTIONS(489), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(491), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(493), - [anon_sym_static] = ACTIONS(495), - [anon_sym_union] = ACTIONS(489), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(497), - [anon_sym_move] = ACTIONS(499), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(501), - [sym_super] = ACTIONS(503), - [sym_crate] = ACTIONS(503), - [sym_metavariable] = ACTIONS(505), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [sym_identifier] = ACTIONS(470), + [anon_sym_LPAREN] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(402), + [anon_sym_LBRACE] = ACTIONS(402), + [anon_sym_PLUS] = ACTIONS(404), + [anon_sym_STAR] = ACTIONS(404), + [anon_sym_QMARK] = ACTIONS(402), + [anon_sym_u8] = ACTIONS(472), + [anon_sym_i8] = ACTIONS(472), + [anon_sym_u16] = ACTIONS(472), + [anon_sym_i16] = ACTIONS(472), + [anon_sym_u32] = ACTIONS(472), + [anon_sym_i32] = ACTIONS(472), + [anon_sym_u64] = ACTIONS(472), + [anon_sym_i64] = ACTIONS(472), + [anon_sym_u128] = ACTIONS(472), + [anon_sym_i128] = ACTIONS(472), + [anon_sym_isize] = ACTIONS(472), + [anon_sym_usize] = ACTIONS(472), + [anon_sym_f32] = ACTIONS(472), + [anon_sym_f64] = ACTIONS(472), + [anon_sym_bool] = ACTIONS(472), + [anon_sym_str] = ACTIONS(472), + [anon_sym_char] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(404), + [anon_sym_SLASH] = ACTIONS(404), + [anon_sym_PERCENT] = ACTIONS(404), + [anon_sym_CARET] = ACTIONS(404), + [anon_sym_BANG] = ACTIONS(510), + [anon_sym_AMP] = ACTIONS(404), + [anon_sym_PIPE] = ACTIONS(404), + [anon_sym_AMP_AMP] = ACTIONS(402), + [anon_sym_PIPE_PIPE] = ACTIONS(402), + [anon_sym_LT_LT] = ACTIONS(404), + [anon_sym_GT_GT] = ACTIONS(404), + [anon_sym_PLUS_EQ] = ACTIONS(402), + [anon_sym_DASH_EQ] = ACTIONS(402), + [anon_sym_STAR_EQ] = ACTIONS(402), + [anon_sym_SLASH_EQ] = ACTIONS(402), + [anon_sym_PERCENT_EQ] = ACTIONS(402), + [anon_sym_CARET_EQ] = ACTIONS(402), + [anon_sym_AMP_EQ] = ACTIONS(402), + [anon_sym_PIPE_EQ] = ACTIONS(402), + [anon_sym_LT_LT_EQ] = ACTIONS(402), + [anon_sym_GT_GT_EQ] = ACTIONS(402), + [anon_sym_EQ] = ACTIONS(404), + [anon_sym_EQ_EQ] = ACTIONS(402), + [anon_sym_BANG_EQ] = ACTIONS(402), + [anon_sym_GT] = ACTIONS(404), + [anon_sym_LT] = ACTIONS(404), + [anon_sym_GT_EQ] = ACTIONS(402), + [anon_sym_LT_EQ] = ACTIONS(402), + [anon_sym_DOT] = ACTIONS(404), + [anon_sym_DOT_DOT] = ACTIONS(404), + [anon_sym_DOT_DOT_DOT] = ACTIONS(402), + [anon_sym_DOT_DOT_EQ] = ACTIONS(402), + [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_SQUOTE] = ACTIONS(404), + [anon_sym_as] = ACTIONS(404), + [anon_sym_async] = ACTIONS(512), + [anon_sym_break] = ACTIONS(514), + [anon_sym_const] = ACTIONS(358), + [anon_sym_continue] = ACTIONS(516), + [anon_sym_default] = ACTIONS(482), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(518), + [anon_sym_if] = ACTIONS(366), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(520), + [anon_sym_static] = ACTIONS(522), + [anon_sym_union] = ACTIONS(482), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_yield] = ACTIONS(524), + [anon_sym_move] = ACTIONS(526), + [anon_sym_try] = ACTIONS(378), + [sym_integer_literal] = ACTIONS(99), + [aux_sym_string_literal_token1] = ACTIONS(101), + [sym_char_literal] = ACTIONS(99), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(494), + [sym_super] = ACTIONS(496), + [sym_crate] = ACTIONS(496), + [sym_metavariable] = ACTIONS(498), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), }, [STATE(60)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3105), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1680), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1607), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(254), - [sym_label] = STATE(51), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3114), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1681), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1631), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(244), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), [sym_line_comment] = STATE(60), [sym_block_comment] = STATE(60), - [sym_identifier] = ACTIONS(475), - [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(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(377), - [anon_sym_SLASH] = ACTIONS(377), - [anon_sym_PERCENT] = ACTIONS(377), - [anon_sym_CARET] = ACTIONS(377), - [anon_sym_BANG] = ACTIONS(479), - [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(481), - [anon_sym_SQUOTE] = ACTIONS(377), - [anon_sym_as] = ACTIONS(377), - [anon_sym_async] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_default] = ACTIONS(489), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(491), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(493), - [anon_sym_static] = ACTIONS(495), - [anon_sym_union] = ACTIONS(489), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(497), - [anon_sym_move] = ACTIONS(499), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(501), - [sym_super] = ACTIONS(503), - [sym_crate] = ACTIONS(503), - [sym_metavariable] = ACTIONS(505), - [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(408), + [anon_sym_STAR] = ACTIONS(510), + [anon_sym_QMARK] = ACTIONS(406), + [anon_sym_u8] = ACTIONS(472), + [anon_sym_i8] = ACTIONS(472), + [anon_sym_u16] = ACTIONS(472), + [anon_sym_i16] = ACTIONS(472), + [anon_sym_u32] = ACTIONS(472), + [anon_sym_i32] = ACTIONS(472), + [anon_sym_u64] = ACTIONS(472), + [anon_sym_i64] = ACTIONS(472), + [anon_sym_u128] = ACTIONS(472), + [anon_sym_i128] = ACTIONS(472), + [anon_sym_isize] = ACTIONS(472), + [anon_sym_usize] = ACTIONS(472), + [anon_sym_f32] = ACTIONS(472), + [anon_sym_f64] = ACTIONS(472), + [anon_sym_bool] = ACTIONS(472), + [anon_sym_str] = ACTIONS(472), + [anon_sym_char] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(510), + [anon_sym_SLASH] = ACTIONS(408), + [anon_sym_PERCENT] = ACTIONS(408), + [anon_sym_CARET] = ACTIONS(408), + [anon_sym_BANG] = ACTIONS(510), + [anon_sym_AMP] = ACTIONS(528), + [anon_sym_PIPE] = ACTIONS(396), + [anon_sym_AMP_AMP] = ACTIONS(406), + [anon_sym_PIPE_PIPE] = ACTIONS(406), + [anon_sym_LT_LT] = ACTIONS(408), + [anon_sym_GT_GT] = ACTIONS(408), + [anon_sym_PLUS_EQ] = ACTIONS(406), + [anon_sym_DASH_EQ] = ACTIONS(406), + [anon_sym_STAR_EQ] = ACTIONS(406), + [anon_sym_SLASH_EQ] = ACTIONS(406), + [anon_sym_PERCENT_EQ] = ACTIONS(406), + [anon_sym_CARET_EQ] = ACTIONS(406), + [anon_sym_AMP_EQ] = ACTIONS(406), + [anon_sym_PIPE_EQ] = ACTIONS(406), + [anon_sym_LT_LT_EQ] = ACTIONS(406), + [anon_sym_GT_GT_EQ] = ACTIONS(406), + [anon_sym_EQ] = ACTIONS(408), + [anon_sym_EQ_EQ] = ACTIONS(406), + [anon_sym_BANG_EQ] = ACTIONS(406), + [anon_sym_GT] = ACTIONS(408), + [anon_sym_LT] = ACTIONS(398), + [anon_sym_GT_EQ] = ACTIONS(406), + [anon_sym_LT_EQ] = ACTIONS(406), + [anon_sym_DOT] = ACTIONS(408), + [anon_sym_DOT_DOT] = ACTIONS(530), + [anon_sym_DOT_DOT_DOT] = ACTIONS(406), + [anon_sym_DOT_DOT_EQ] = ACTIONS(406), + [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_as] = ACTIONS(408), + [anon_sym_async] = ACTIONS(512), + [anon_sym_break] = ACTIONS(514), + [anon_sym_const] = ACTIONS(358), + [anon_sym_continue] = ACTIONS(516), + [anon_sym_default] = ACTIONS(482), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(518), + [anon_sym_if] = ACTIONS(366), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(520), + [anon_sym_static] = ACTIONS(522), + [anon_sym_union] = ACTIONS(482), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_yield] = ACTIONS(524), + [anon_sym_move] = ACTIONS(526), + [anon_sym_try] = ACTIONS(378), + [sym_integer_literal] = ACTIONS(99), + [aux_sym_string_literal_token1] = ACTIONS(101), + [sym_char_literal] = ACTIONS(99), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(494), + [sym_super] = ACTIONS(496), + [sym_crate] = ACTIONS(496), + [sym_metavariable] = ACTIONS(498), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), }, [STATE(61)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3105), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1714), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1607), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(254), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3114), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1679), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1631), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(244), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), [sym_line_comment] = STATE(61), [sym_block_comment] = STATE(61), - [sym_identifier] = ACTIONS(475), + [sym_identifier] = ACTIONS(470), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_PLUS] = ACTIONS(403), - [anon_sym_STAR] = ACTIONS(479), - [anon_sym_QMARK] = ACTIONS(401), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(479), - [anon_sym_SLASH] = ACTIONS(403), - [anon_sym_PERCENT] = ACTIONS(403), - [anon_sym_CARET] = ACTIONS(403), - [anon_sym_BANG] = ACTIONS(479), - [anon_sym_AMP] = ACTIONS(523), - [anon_sym_PIPE] = ACTIONS(387), - [anon_sym_AMP_AMP] = ACTIONS(401), - [anon_sym_PIPE_PIPE] = ACTIONS(401), - [anon_sym_LT_LT] = ACTIONS(403), - [anon_sym_GT_GT] = ACTIONS(403), - [anon_sym_PLUS_EQ] = ACTIONS(401), - [anon_sym_DASH_EQ] = ACTIONS(401), - [anon_sym_STAR_EQ] = ACTIONS(401), - [anon_sym_SLASH_EQ] = ACTIONS(401), - [anon_sym_PERCENT_EQ] = ACTIONS(401), - [anon_sym_CARET_EQ] = ACTIONS(401), - [anon_sym_AMP_EQ] = ACTIONS(401), - [anon_sym_PIPE_EQ] = ACTIONS(401), - [anon_sym_LT_LT_EQ] = ACTIONS(401), - [anon_sym_GT_GT_EQ] = ACTIONS(401), - [anon_sym_EQ] = ACTIONS(403), - [anon_sym_EQ_EQ] = ACTIONS(401), - [anon_sym_BANG_EQ] = ACTIONS(401), - [anon_sym_GT] = ACTIONS(403), - [anon_sym_LT] = ACTIONS(389), - [anon_sym_GT_EQ] = ACTIONS(401), - [anon_sym_LT_EQ] = ACTIONS(401), - [anon_sym_DOT] = ACTIONS(403), - [anon_sym_DOT_DOT] = ACTIONS(525), - [anon_sym_DOT_DOT_DOT] = ACTIONS(401), - [anon_sym_DOT_DOT_EQ] = ACTIONS(401), - [anon_sym_COLON_COLON] = ACTIONS(481), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(403), - [anon_sym_async] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_default] = ACTIONS(489), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(491), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(493), - [anon_sym_static] = ACTIONS(495), - [anon_sym_union] = ACTIONS(489), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(497), - [anon_sym_move] = ACTIONS(499), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(501), - [sym_super] = ACTIONS(503), - [sym_crate] = ACTIONS(503), - [sym_metavariable] = ACTIONS(505), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_LBRACK] = ACTIONS(402), + [anon_sym_LBRACE] = ACTIONS(402), + [anon_sym_PLUS] = ACTIONS(404), + [anon_sym_STAR] = ACTIONS(404), + [anon_sym_QMARK] = ACTIONS(402), + [anon_sym_u8] = ACTIONS(472), + [anon_sym_i8] = ACTIONS(472), + [anon_sym_u16] = ACTIONS(472), + [anon_sym_i16] = ACTIONS(472), + [anon_sym_u32] = ACTIONS(472), + [anon_sym_i32] = ACTIONS(472), + [anon_sym_u64] = ACTIONS(472), + [anon_sym_i64] = ACTIONS(472), + [anon_sym_u128] = ACTIONS(472), + [anon_sym_i128] = ACTIONS(472), + [anon_sym_isize] = ACTIONS(472), + [anon_sym_usize] = ACTIONS(472), + [anon_sym_f32] = ACTIONS(472), + [anon_sym_f64] = ACTIONS(472), + [anon_sym_bool] = ACTIONS(472), + [anon_sym_str] = ACTIONS(472), + [anon_sym_char] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(404), + [anon_sym_SLASH] = ACTIONS(404), + [anon_sym_PERCENT] = ACTIONS(404), + [anon_sym_CARET] = ACTIONS(404), + [anon_sym_BANG] = ACTIONS(510), + [anon_sym_AMP] = ACTIONS(404), + [anon_sym_PIPE] = ACTIONS(404), + [anon_sym_AMP_AMP] = ACTIONS(402), + [anon_sym_PIPE_PIPE] = ACTIONS(402), + [anon_sym_LT_LT] = ACTIONS(404), + [anon_sym_GT_GT] = ACTIONS(404), + [anon_sym_PLUS_EQ] = ACTIONS(402), + [anon_sym_DASH_EQ] = ACTIONS(402), + [anon_sym_STAR_EQ] = ACTIONS(402), + [anon_sym_SLASH_EQ] = ACTIONS(402), + [anon_sym_PERCENT_EQ] = ACTIONS(402), + [anon_sym_CARET_EQ] = ACTIONS(402), + [anon_sym_AMP_EQ] = ACTIONS(402), + [anon_sym_PIPE_EQ] = ACTIONS(402), + [anon_sym_LT_LT_EQ] = ACTIONS(402), + [anon_sym_GT_GT_EQ] = ACTIONS(402), + [anon_sym_EQ] = ACTIONS(404), + [anon_sym_EQ_EQ] = ACTIONS(402), + [anon_sym_BANG_EQ] = ACTIONS(402), + [anon_sym_GT] = ACTIONS(404), + [anon_sym_LT] = ACTIONS(404), + [anon_sym_GT_EQ] = ACTIONS(402), + [anon_sym_LT_EQ] = ACTIONS(402), + [anon_sym_DOT] = ACTIONS(404), + [anon_sym_DOT_DOT] = ACTIONS(404), + [anon_sym_DOT_DOT_DOT] = ACTIONS(402), + [anon_sym_DOT_DOT_EQ] = ACTIONS(402), + [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_SQUOTE] = ACTIONS(404), + [anon_sym_as] = ACTIONS(404), + [anon_sym_async] = ACTIONS(512), + [anon_sym_break] = ACTIONS(514), + [anon_sym_const] = ACTIONS(358), + [anon_sym_continue] = ACTIONS(516), + [anon_sym_default] = ACTIONS(482), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(518), + [anon_sym_if] = ACTIONS(366), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(520), + [anon_sym_static] = ACTIONS(522), + [anon_sym_union] = ACTIONS(482), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_yield] = ACTIONS(524), + [anon_sym_move] = ACTIONS(526), + [anon_sym_try] = ACTIONS(378), + [sym_integer_literal] = ACTIONS(99), + [aux_sym_string_literal_token1] = ACTIONS(101), + [sym_char_literal] = ACTIONS(99), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(494), + [sym_super] = ACTIONS(496), + [sym_crate] = ACTIONS(496), + [sym_metavariable] = ACTIONS(498), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), }, [STATE(62)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3105), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1682), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1607), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(254), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3114), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1715), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1631), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(244), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), [sym_line_comment] = STATE(62), [sym_block_comment] = STATE(62), - [sym_identifier] = ACTIONS(475), + [sym_identifier] = ACTIONS(470), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_STAR] = ACTIONS(479), - [anon_sym_QMARK] = ACTIONS(381), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(479), - [anon_sym_SLASH] = ACTIONS(383), - [anon_sym_PERCENT] = ACTIONS(383), - [anon_sym_CARET] = ACTIONS(383), - [anon_sym_BANG] = ACTIONS(479), - [anon_sym_AMP] = ACTIONS(523), - [anon_sym_PIPE] = ACTIONS(387), - [anon_sym_AMP_AMP] = ACTIONS(381), - [anon_sym_PIPE_PIPE] = ACTIONS(381), - [anon_sym_LT_LT] = ACTIONS(383), - [anon_sym_GT_GT] = ACTIONS(383), - [anon_sym_PLUS_EQ] = ACTIONS(381), - [anon_sym_DASH_EQ] = ACTIONS(381), - [anon_sym_STAR_EQ] = ACTIONS(381), - [anon_sym_SLASH_EQ] = ACTIONS(381), - [anon_sym_PERCENT_EQ] = ACTIONS(381), - [anon_sym_CARET_EQ] = ACTIONS(381), - [anon_sym_AMP_EQ] = ACTIONS(381), - [anon_sym_PIPE_EQ] = ACTIONS(381), - [anon_sym_LT_LT_EQ] = ACTIONS(381), - [anon_sym_GT_GT_EQ] = ACTIONS(381), - [anon_sym_EQ] = ACTIONS(383), - [anon_sym_EQ_EQ] = ACTIONS(381), - [anon_sym_BANG_EQ] = ACTIONS(381), - [anon_sym_GT] = ACTIONS(383), - [anon_sym_LT] = ACTIONS(389), - [anon_sym_GT_EQ] = ACTIONS(381), - [anon_sym_LT_EQ] = ACTIONS(381), - [anon_sym_DOT] = ACTIONS(383), - [anon_sym_DOT_DOT] = ACTIONS(525), - [anon_sym_DOT_DOT_DOT] = ACTIONS(381), - [anon_sym_DOT_DOT_EQ] = ACTIONS(381), - [anon_sym_COLON_COLON] = ACTIONS(481), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(383), - [anon_sym_async] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_default] = ACTIONS(489), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(491), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(493), - [anon_sym_static] = ACTIONS(495), - [anon_sym_union] = ACTIONS(489), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(497), - [anon_sym_move] = ACTIONS(499), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(501), - [sym_super] = ACTIONS(503), - [sym_crate] = ACTIONS(503), - [sym_metavariable] = ACTIONS(505), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_LBRACK] = ACTIONS(386), + [anon_sym_LBRACE] = ACTIONS(386), + [anon_sym_PLUS] = ACTIONS(388), + [anon_sym_STAR] = ACTIONS(388), + [anon_sym_QMARK] = ACTIONS(386), + [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(388), + [anon_sym_SLASH] = ACTIONS(388), + [anon_sym_PERCENT] = ACTIONS(388), + [anon_sym_CARET] = ACTIONS(388), + [anon_sym_BANG] = ACTIONS(510), + [anon_sym_AMP] = ACTIONS(388), + [anon_sym_PIPE] = ACTIONS(388), + [anon_sym_AMP_AMP] = ACTIONS(386), + [anon_sym_PIPE_PIPE] = ACTIONS(386), + [anon_sym_LT_LT] = ACTIONS(388), + [anon_sym_GT_GT] = ACTIONS(388), + [anon_sym_PLUS_EQ] = ACTIONS(386), + [anon_sym_DASH_EQ] = ACTIONS(386), + [anon_sym_STAR_EQ] = ACTIONS(386), + [anon_sym_SLASH_EQ] = ACTIONS(386), + [anon_sym_PERCENT_EQ] = ACTIONS(386), + [anon_sym_CARET_EQ] = ACTIONS(386), + [anon_sym_AMP_EQ] = ACTIONS(386), + [anon_sym_PIPE_EQ] = ACTIONS(386), + [anon_sym_LT_LT_EQ] = ACTIONS(386), + [anon_sym_GT_GT_EQ] = ACTIONS(386), + [anon_sym_EQ] = ACTIONS(388), + [anon_sym_EQ_EQ] = ACTIONS(386), + [anon_sym_BANG_EQ] = ACTIONS(386), + [anon_sym_GT] = ACTIONS(388), + [anon_sym_LT] = ACTIONS(388), + [anon_sym_GT_EQ] = ACTIONS(386), + [anon_sym_LT_EQ] = ACTIONS(386), + [anon_sym_DOT] = ACTIONS(388), + [anon_sym_DOT_DOT] = ACTIONS(388), + [anon_sym_DOT_DOT_DOT] = ACTIONS(386), + [anon_sym_DOT_DOT_EQ] = ACTIONS(386), + [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_SQUOTE] = ACTIONS(388), + [anon_sym_as] = ACTIONS(388), + [anon_sym_async] = ACTIONS(512), + [anon_sym_break] = ACTIONS(514), + [anon_sym_const] = ACTIONS(358), + [anon_sym_continue] = ACTIONS(516), + [anon_sym_default] = ACTIONS(482), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(518), + [anon_sym_if] = ACTIONS(366), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(520), + [anon_sym_static] = ACTIONS(522), + [anon_sym_union] = ACTIONS(482), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_yield] = ACTIONS(524), + [anon_sym_move] = ACTIONS(526), + [anon_sym_try] = ACTIONS(378), + [sym_integer_literal] = ACTIONS(99), + [aux_sym_string_literal_token1] = ACTIONS(101), + [sym_char_literal] = ACTIONS(99), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(494), + [sym_super] = ACTIONS(496), + [sym_crate] = ACTIONS(496), + [sym_metavariable] = ACTIONS(498), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), }, [STATE(63)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3105), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1892), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1607), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(226), - [sym_label] = STATE(52), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3114), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1680), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1631), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(244), + [sym_label] = STATE(51), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), [sym_line_comment] = STATE(63), [sym_block_comment] = STATE(63), - [sym_identifier] = ACTIONS(475), - [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(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(377), - [anon_sym_SLASH] = ACTIONS(377), - [anon_sym_PERCENT] = ACTIONS(377), - [anon_sym_CARET] = ACTIONS(377), - [anon_sym_BANG] = ACTIONS(507), - [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(481), - [anon_sym_SQUOTE] = ACTIONS(379), - [anon_sym_as] = ACTIONS(377), - [anon_sym_async] = ACTIONS(509), - [anon_sym_break] = ACTIONS(511), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(489), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(513), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(515), - [anon_sym_static] = ACTIONS(517), - [anon_sym_union] = ACTIONS(489), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(519), - [anon_sym_move] = ACTIONS(521), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(501), - [sym_super] = ACTIONS(503), - [sym_crate] = ACTIONS(503), - [sym_metavariable] = ACTIONS(505), - [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(510), + [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(512), + [anon_sym_break] = ACTIONS(514), + [anon_sym_const] = ACTIONS(358), + [anon_sym_continue] = ACTIONS(516), + [anon_sym_default] = ACTIONS(482), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(518), + [anon_sym_if] = ACTIONS(366), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(520), + [anon_sym_static] = ACTIONS(522), + [anon_sym_union] = ACTIONS(482), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_yield] = ACTIONS(524), + [anon_sym_move] = ACTIONS(526), + [anon_sym_try] = ACTIONS(378), + [sym_integer_literal] = ACTIONS(99), + [aux_sym_string_literal_token1] = ACTIONS(101), + [sym_char_literal] = ACTIONS(99), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(494), + [sym_super] = ACTIONS(496), + [sym_crate] = ACTIONS(496), + [sym_metavariable] = ACTIONS(498), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), }, [STATE(64)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3105), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1679), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1607), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(254), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3114), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1760), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1631), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(262), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), [sym_line_comment] = STATE(64), [sym_block_comment] = STATE(64), - [sym_identifier] = ACTIONS(475), + [sym_identifier] = ACTIONS(470), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(393), - [anon_sym_LBRACE] = ACTIONS(393), - [anon_sym_PLUS] = ACTIONS(395), - [anon_sym_STAR] = ACTIONS(395), - [anon_sym_QMARK] = ACTIONS(393), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_SLASH] = ACTIONS(395), - [anon_sym_PERCENT] = ACTIONS(395), - [anon_sym_CARET] = ACTIONS(395), - [anon_sym_BANG] = ACTIONS(479), - [anon_sym_AMP] = ACTIONS(395), - [anon_sym_PIPE] = ACTIONS(395), - [anon_sym_AMP_AMP] = ACTIONS(393), - [anon_sym_PIPE_PIPE] = ACTIONS(393), - [anon_sym_LT_LT] = ACTIONS(395), - [anon_sym_GT_GT] = ACTIONS(395), - [anon_sym_PLUS_EQ] = ACTIONS(393), - [anon_sym_DASH_EQ] = ACTIONS(393), - [anon_sym_STAR_EQ] = ACTIONS(393), - [anon_sym_SLASH_EQ] = ACTIONS(393), - [anon_sym_PERCENT_EQ] = ACTIONS(393), - [anon_sym_CARET_EQ] = ACTIONS(393), - [anon_sym_AMP_EQ] = ACTIONS(393), - [anon_sym_PIPE_EQ] = ACTIONS(393), - [anon_sym_LT_LT_EQ] = ACTIONS(393), - [anon_sym_GT_GT_EQ] = ACTIONS(393), - [anon_sym_EQ] = ACTIONS(395), - [anon_sym_EQ_EQ] = ACTIONS(393), - [anon_sym_BANG_EQ] = ACTIONS(393), - [anon_sym_GT] = ACTIONS(395), - [anon_sym_LT] = ACTIONS(395), - [anon_sym_GT_EQ] = ACTIONS(393), - [anon_sym_LT_EQ] = ACTIONS(393), - [anon_sym_DOT] = ACTIONS(395), - [anon_sym_DOT_DOT] = ACTIONS(395), - [anon_sym_DOT_DOT_DOT] = ACTIONS(393), - [anon_sym_DOT_DOT_EQ] = ACTIONS(393), - [anon_sym_COLON_COLON] = ACTIONS(481), - [anon_sym_SQUOTE] = ACTIONS(395), - [anon_sym_as] = ACTIONS(395), - [anon_sym_async] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_default] = ACTIONS(489), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(491), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(493), - [anon_sym_static] = ACTIONS(495), - [anon_sym_union] = ACTIONS(489), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(497), - [anon_sym_move] = ACTIONS(499), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(501), - [sym_super] = ACTIONS(503), - [sym_crate] = ACTIONS(503), - [sym_metavariable] = ACTIONS(505), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_LBRACK] = ACTIONS(386), + [anon_sym_LBRACE] = ACTIONS(386), + [anon_sym_PLUS] = ACTIONS(388), + [anon_sym_STAR] = ACTIONS(388), + [anon_sym_QMARK] = ACTIONS(386), + [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(388), + [anon_sym_SLASH] = ACTIONS(388), + [anon_sym_PERCENT] = ACTIONS(388), + [anon_sym_CARET] = ACTIONS(388), + [anon_sym_BANG] = ACTIONS(474), + [anon_sym_AMP] = ACTIONS(388), + [anon_sym_PIPE] = ACTIONS(388), + [anon_sym_AMP_AMP] = ACTIONS(386), + [anon_sym_PIPE_PIPE] = ACTIONS(386), + [anon_sym_LT_LT] = ACTIONS(388), + [anon_sym_GT_GT] = ACTIONS(388), + [anon_sym_PLUS_EQ] = ACTIONS(386), + [anon_sym_DASH_EQ] = ACTIONS(386), + [anon_sym_STAR_EQ] = ACTIONS(386), + [anon_sym_SLASH_EQ] = ACTIONS(386), + [anon_sym_PERCENT_EQ] = ACTIONS(386), + [anon_sym_CARET_EQ] = ACTIONS(386), + [anon_sym_AMP_EQ] = ACTIONS(386), + [anon_sym_PIPE_EQ] = ACTIONS(386), + [anon_sym_LT_LT_EQ] = ACTIONS(386), + [anon_sym_GT_GT_EQ] = ACTIONS(386), + [anon_sym_EQ] = ACTIONS(388), + [anon_sym_EQ_EQ] = ACTIONS(386), + [anon_sym_BANG_EQ] = ACTIONS(386), + [anon_sym_GT] = ACTIONS(388), + [anon_sym_LT] = ACTIONS(388), + [anon_sym_GT_EQ] = ACTIONS(386), + [anon_sym_LT_EQ] = ACTIONS(386), + [anon_sym_DOT] = ACTIONS(388), + [anon_sym_DOT_DOT] = ACTIONS(388), + [anon_sym_DOT_DOT_DOT] = ACTIONS(386), + [anon_sym_DOT_DOT_EQ] = ACTIONS(386), + [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_as] = ACTIONS(388), + [anon_sym_async] = ACTIONS(478), + [anon_sym_break] = ACTIONS(480), + [anon_sym_const] = ACTIONS(358), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(482), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(484), + [anon_sym_if] = ACTIONS(366), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(486), + [anon_sym_static] = ACTIONS(488), + [anon_sym_union] = ACTIONS(482), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_yield] = ACTIONS(490), + [anon_sym_move] = ACTIONS(492), + [anon_sym_try] = ACTIONS(378), + [sym_integer_literal] = ACTIONS(99), + [aux_sym_string_literal_token1] = ACTIONS(101), + [sym_char_literal] = ACTIONS(99), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(494), + [sym_super] = ACTIONS(496), + [sym_crate] = ACTIONS(496), + [sym_metavariable] = ACTIONS(498), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), }, [STATE(65)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3105), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1894), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1607), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(226), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3114), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1824), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1631), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(262), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), [sym_line_comment] = STATE(65), [sym_block_comment] = STATE(65), - [sym_identifier] = ACTIONS(475), + [sym_identifier] = ACTIONS(470), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_PLUS] = ACTIONS(403), - [anon_sym_STAR] = ACTIONS(507), - [anon_sym_QMARK] = ACTIONS(401), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(507), - [anon_sym_SLASH] = ACTIONS(403), - [anon_sym_PERCENT] = ACTIONS(403), - [anon_sym_CARET] = ACTIONS(403), - [anon_sym_BANG] = ACTIONS(507), - [anon_sym_AMP] = ACTIONS(527), - [anon_sym_PIPE] = ACTIONS(387), - [anon_sym_AMP_AMP] = ACTIONS(401), - [anon_sym_PIPE_PIPE] = ACTIONS(401), - [anon_sym_LT_LT] = ACTIONS(403), - [anon_sym_GT_GT] = ACTIONS(403), - [anon_sym_PLUS_EQ] = ACTIONS(401), - [anon_sym_DASH_EQ] = ACTIONS(401), - [anon_sym_STAR_EQ] = ACTIONS(401), - [anon_sym_SLASH_EQ] = ACTIONS(401), - [anon_sym_PERCENT_EQ] = ACTIONS(401), - [anon_sym_CARET_EQ] = ACTIONS(401), - [anon_sym_AMP_EQ] = ACTIONS(401), - [anon_sym_PIPE_EQ] = ACTIONS(401), - [anon_sym_LT_LT_EQ] = ACTIONS(401), - [anon_sym_GT_GT_EQ] = ACTIONS(401), - [anon_sym_EQ] = ACTIONS(403), - [anon_sym_EQ_EQ] = ACTIONS(401), - [anon_sym_BANG_EQ] = ACTIONS(401), - [anon_sym_GT] = ACTIONS(403), - [anon_sym_LT] = ACTIONS(389), - [anon_sym_GT_EQ] = ACTIONS(401), - [anon_sym_LT_EQ] = ACTIONS(401), - [anon_sym_DOT] = ACTIONS(403), - [anon_sym_DOT_DOT] = ACTIONS(529), - [anon_sym_DOT_DOT_DOT] = ACTIONS(401), - [anon_sym_DOT_DOT_EQ] = ACTIONS(401), - [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_PLUS] = ACTIONS(408), + [anon_sym_STAR] = ACTIONS(474), + [anon_sym_QMARK] = ACTIONS(406), + [anon_sym_u8] = ACTIONS(472), + [anon_sym_i8] = ACTIONS(472), + [anon_sym_u16] = ACTIONS(472), + [anon_sym_i16] = ACTIONS(472), + [anon_sym_u32] = ACTIONS(472), + [anon_sym_i32] = ACTIONS(472), + [anon_sym_u64] = ACTIONS(472), + [anon_sym_i64] = ACTIONS(472), + [anon_sym_u128] = ACTIONS(472), + [anon_sym_i128] = ACTIONS(472), + [anon_sym_isize] = ACTIONS(472), + [anon_sym_usize] = ACTIONS(472), + [anon_sym_f32] = ACTIONS(472), + [anon_sym_f64] = ACTIONS(472), + [anon_sym_bool] = ACTIONS(472), + [anon_sym_str] = ACTIONS(472), + [anon_sym_char] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(474), + [anon_sym_SLASH] = ACTIONS(408), + [anon_sym_PERCENT] = ACTIONS(408), + [anon_sym_CARET] = ACTIONS(408), + [anon_sym_BANG] = ACTIONS(474), + [anon_sym_AMP] = ACTIONS(532), + [anon_sym_PIPE] = ACTIONS(396), + [anon_sym_AMP_AMP] = ACTIONS(406), + [anon_sym_PIPE_PIPE] = ACTIONS(406), + [anon_sym_LT_LT] = ACTIONS(408), + [anon_sym_GT_GT] = ACTIONS(408), + [anon_sym_PLUS_EQ] = ACTIONS(406), + [anon_sym_DASH_EQ] = ACTIONS(406), + [anon_sym_STAR_EQ] = ACTIONS(406), + [anon_sym_SLASH_EQ] = ACTIONS(406), + [anon_sym_PERCENT_EQ] = ACTIONS(406), + [anon_sym_CARET_EQ] = ACTIONS(406), + [anon_sym_AMP_EQ] = ACTIONS(406), + [anon_sym_PIPE_EQ] = ACTIONS(406), + [anon_sym_LT_LT_EQ] = ACTIONS(406), + [anon_sym_GT_GT_EQ] = ACTIONS(406), + [anon_sym_EQ] = ACTIONS(408), + [anon_sym_EQ_EQ] = ACTIONS(406), + [anon_sym_BANG_EQ] = ACTIONS(406), + [anon_sym_GT] = ACTIONS(408), + [anon_sym_LT] = ACTIONS(398), + [anon_sym_GT_EQ] = ACTIONS(406), + [anon_sym_LT_EQ] = ACTIONS(406), + [anon_sym_DOT] = ACTIONS(408), + [anon_sym_DOT_DOT] = ACTIONS(534), + [anon_sym_DOT_DOT_DOT] = ACTIONS(406), + [anon_sym_DOT_DOT_EQ] = ACTIONS(406), + [anon_sym_COLON_COLON] = ACTIONS(476), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(403), - [anon_sym_async] = ACTIONS(509), - [anon_sym_break] = ACTIONS(511), - [anon_sym_const] = ACTIONS(353), + [anon_sym_as] = ACTIONS(408), + [anon_sym_async] = ACTIONS(478), + [anon_sym_break] = ACTIONS(480), + [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(489), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(513), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(515), - [anon_sym_static] = ACTIONS(517), - [anon_sym_union] = ACTIONS(489), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(519), - [anon_sym_move] = ACTIONS(521), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(501), - [sym_super] = ACTIONS(503), - [sym_crate] = ACTIONS(503), - [sym_metavariable] = ACTIONS(505), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_default] = ACTIONS(482), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(484), + [anon_sym_if] = ACTIONS(366), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(486), + [anon_sym_static] = ACTIONS(488), + [anon_sym_union] = ACTIONS(482), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_yield] = ACTIONS(490), + [anon_sym_move] = ACTIONS(492), + [anon_sym_try] = ACTIONS(378), + [sym_integer_literal] = ACTIONS(99), + [aux_sym_string_literal_token1] = ACTIONS(101), + [sym_char_literal] = ACTIONS(99), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(494), + [sym_super] = ACTIONS(496), + [sym_crate] = ACTIONS(496), + [sym_metavariable] = ACTIONS(498), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), }, [STATE(66)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3105), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1895), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1607), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(226), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3114), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1825), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1631), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(262), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), [sym_line_comment] = STATE(66), [sym_block_comment] = STATE(66), - [sym_identifier] = ACTIONS(475), + [sym_identifier] = ACTIONS(470), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_STAR] = ACTIONS(507), - [anon_sym_QMARK] = ACTIONS(381), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(507), - [anon_sym_SLASH] = ACTIONS(383), - [anon_sym_PERCENT] = ACTIONS(383), - [anon_sym_CARET] = ACTIONS(383), - [anon_sym_BANG] = ACTIONS(507), - [anon_sym_AMP] = ACTIONS(527), - [anon_sym_PIPE] = ACTIONS(387), - [anon_sym_AMP_AMP] = ACTIONS(381), - [anon_sym_PIPE_PIPE] = ACTIONS(381), - [anon_sym_LT_LT] = ACTIONS(383), - [anon_sym_GT_GT] = ACTIONS(383), - [anon_sym_PLUS_EQ] = ACTIONS(381), - [anon_sym_DASH_EQ] = ACTIONS(381), - [anon_sym_STAR_EQ] = ACTIONS(381), - [anon_sym_SLASH_EQ] = ACTIONS(381), - [anon_sym_PERCENT_EQ] = ACTIONS(381), - [anon_sym_CARET_EQ] = ACTIONS(381), - [anon_sym_AMP_EQ] = ACTIONS(381), - [anon_sym_PIPE_EQ] = ACTIONS(381), - [anon_sym_LT_LT_EQ] = ACTIONS(381), - [anon_sym_GT_GT_EQ] = ACTIONS(381), - [anon_sym_EQ] = ACTIONS(383), - [anon_sym_EQ_EQ] = ACTIONS(381), - [anon_sym_BANG_EQ] = ACTIONS(381), - [anon_sym_GT] = ACTIONS(383), - [anon_sym_LT] = ACTIONS(389), - [anon_sym_GT_EQ] = ACTIONS(381), - [anon_sym_LT_EQ] = ACTIONS(381), - [anon_sym_DOT] = ACTIONS(383), - [anon_sym_DOT_DOT] = ACTIONS(529), - [anon_sym_DOT_DOT_DOT] = ACTIONS(381), - [anon_sym_DOT_DOT_EQ] = ACTIONS(381), - [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_PLUS] = ACTIONS(392), + [anon_sym_STAR] = ACTIONS(474), + [anon_sym_QMARK] = ACTIONS(390), + [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(392), + [anon_sym_PERCENT] = ACTIONS(392), + [anon_sym_CARET] = ACTIONS(392), + [anon_sym_BANG] = ACTIONS(474), + [anon_sym_AMP] = ACTIONS(532), + [anon_sym_PIPE] = ACTIONS(396), + [anon_sym_AMP_AMP] = ACTIONS(390), + [anon_sym_PIPE_PIPE] = ACTIONS(390), + [anon_sym_LT_LT] = ACTIONS(392), + [anon_sym_GT_GT] = ACTIONS(392), + [anon_sym_PLUS_EQ] = ACTIONS(390), + [anon_sym_DASH_EQ] = ACTIONS(390), + [anon_sym_STAR_EQ] = ACTIONS(390), + [anon_sym_SLASH_EQ] = ACTIONS(390), + [anon_sym_PERCENT_EQ] = ACTIONS(390), + [anon_sym_CARET_EQ] = ACTIONS(390), + [anon_sym_AMP_EQ] = ACTIONS(390), + [anon_sym_PIPE_EQ] = ACTIONS(390), + [anon_sym_LT_LT_EQ] = ACTIONS(390), + [anon_sym_GT_GT_EQ] = ACTIONS(390), + [anon_sym_EQ] = ACTIONS(392), + [anon_sym_EQ_EQ] = ACTIONS(390), + [anon_sym_BANG_EQ] = ACTIONS(390), + [anon_sym_GT] = ACTIONS(392), + [anon_sym_LT] = ACTIONS(398), + [anon_sym_GT_EQ] = ACTIONS(390), + [anon_sym_LT_EQ] = ACTIONS(390), + [anon_sym_DOT] = ACTIONS(392), + [anon_sym_DOT_DOT] = ACTIONS(534), + [anon_sym_DOT_DOT_DOT] = ACTIONS(390), + [anon_sym_DOT_DOT_EQ] = ACTIONS(390), + [anon_sym_COLON_COLON] = ACTIONS(476), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(383), - [anon_sym_async] = ACTIONS(509), - [anon_sym_break] = ACTIONS(511), - [anon_sym_const] = ACTIONS(353), + [anon_sym_as] = ACTIONS(392), + [anon_sym_async] = ACTIONS(478), + [anon_sym_break] = ACTIONS(480), + [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(489), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(513), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(515), - [anon_sym_static] = ACTIONS(517), - [anon_sym_union] = ACTIONS(489), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(519), - [anon_sym_move] = ACTIONS(521), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(501), - [sym_super] = ACTIONS(503), - [sym_crate] = ACTIONS(503), - [sym_metavariable] = ACTIONS(505), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_default] = ACTIONS(482), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(484), + [anon_sym_if] = ACTIONS(366), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(486), + [anon_sym_static] = ACTIONS(488), + [anon_sym_union] = ACTIONS(482), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_yield] = ACTIONS(490), + [anon_sym_move] = ACTIONS(492), + [anon_sym_try] = ACTIONS(378), + [sym_integer_literal] = ACTIONS(99), + [aux_sym_string_literal_token1] = ACTIONS(101), + [sym_char_literal] = ACTIONS(99), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(494), + [sym_super] = ACTIONS(496), + [sym_crate] = ACTIONS(496), + [sym_metavariable] = ACTIONS(498), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), }, [STATE(67)] = { - [sym__token_pattern] = STATE(156), - [sym_token_tree_pattern] = STATE(154), - [sym_token_binding_pattern] = STATE(154), - [sym_token_repetition_pattern] = STATE(154), - [sym__literal] = STATE(154), - [sym_string_literal] = STATE(183), - [sym_raw_string_literal] = STATE(183), - [sym_boolean_literal] = STATE(183), + [sym__token_pattern] = STATE(158), + [sym_token_tree_pattern] = STATE(153), + [sym_token_binding_pattern] = STATE(153), + [sym_token_repetition_pattern] = STATE(153), + [sym__literal] = STATE(153), + [sym_string_literal] = STATE(184), + [sym_raw_string_literal] = STATE(184), + [sym_boolean_literal] = STATE(184), [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(140), - [sym_identifier] = ACTIONS(531), - [anon_sym_SEMI] = ACTIONS(534), - [anon_sym_LPAREN] = ACTIONS(537), - [anon_sym_RPAREN] = ACTIONS(540), - [anon_sym_LBRACK] = ACTIONS(542), - [anon_sym_RBRACK] = ACTIONS(540), - [anon_sym_LBRACE] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(540), - [anon_sym_EQ_GT] = ACTIONS(534), - [anon_sym_COLON] = ACTIONS(548), - [anon_sym_DOLLAR] = ACTIONS(551), - [anon_sym_PLUS] = ACTIONS(548), - [anon_sym_STAR] = ACTIONS(548), - [anon_sym_QMARK] = ACTIONS(534), - [anon_sym_u8] = ACTIONS(531), - [anon_sym_i8] = ACTIONS(531), - [anon_sym_u16] = ACTIONS(531), - [anon_sym_i16] = ACTIONS(531), - [anon_sym_u32] = ACTIONS(531), - [anon_sym_i32] = ACTIONS(531), - [anon_sym_u64] = ACTIONS(531), - [anon_sym_i64] = ACTIONS(531), - [anon_sym_u128] = ACTIONS(531), - [anon_sym_i128] = ACTIONS(531), - [anon_sym_isize] = ACTIONS(531), - [anon_sym_usize] = ACTIONS(531), - [anon_sym_f32] = ACTIONS(531), - [anon_sym_f64] = ACTIONS(531), - [anon_sym_bool] = ACTIONS(531), - [anon_sym_str] = ACTIONS(531), - [anon_sym_char] = ACTIONS(531), - [anon_sym_DASH] = ACTIONS(548), - [anon_sym_SLASH] = ACTIONS(548), - [anon_sym_PERCENT] = ACTIONS(548), - [anon_sym_CARET] = ACTIONS(548), - [anon_sym_BANG] = ACTIONS(548), - [anon_sym_AMP] = ACTIONS(548), - [anon_sym_PIPE] = ACTIONS(548), - [anon_sym_AMP_AMP] = ACTIONS(534), - [anon_sym_PIPE_PIPE] = ACTIONS(534), - [anon_sym_LT_LT] = ACTIONS(548), - [anon_sym_GT_GT] = ACTIONS(548), - [anon_sym_PLUS_EQ] = ACTIONS(534), - [anon_sym_DASH_EQ] = ACTIONS(534), - [anon_sym_STAR_EQ] = ACTIONS(534), - [anon_sym_SLASH_EQ] = ACTIONS(534), - [anon_sym_PERCENT_EQ] = ACTIONS(534), - [anon_sym_CARET_EQ] = ACTIONS(534), - [anon_sym_AMP_EQ] = ACTIONS(534), - [anon_sym_PIPE_EQ] = ACTIONS(534), - [anon_sym_LT_LT_EQ] = ACTIONS(534), - [anon_sym_GT_GT_EQ] = ACTIONS(534), - [anon_sym_EQ] = ACTIONS(548), - [anon_sym_EQ_EQ] = ACTIONS(534), - [anon_sym_BANG_EQ] = ACTIONS(534), - [anon_sym_GT] = ACTIONS(548), - [anon_sym_LT] = ACTIONS(548), - [anon_sym_GT_EQ] = ACTIONS(534), - [anon_sym_LT_EQ] = ACTIONS(534), - [anon_sym_AT] = ACTIONS(534), - [anon_sym__] = ACTIONS(548), - [anon_sym_DOT] = ACTIONS(548), - [anon_sym_DOT_DOT] = ACTIONS(548), - [anon_sym_DOT_DOT_DOT] = ACTIONS(534), - [anon_sym_DOT_DOT_EQ] = ACTIONS(534), - [anon_sym_COMMA] = ACTIONS(534), - [anon_sym_COLON_COLON] = ACTIONS(534), - [anon_sym_DASH_GT] = ACTIONS(534), - [anon_sym_POUND] = ACTIONS(534), - [anon_sym_SQUOTE] = ACTIONS(531), - [anon_sym_as] = ACTIONS(531), - [anon_sym_async] = ACTIONS(531), - [anon_sym_await] = ACTIONS(531), - [anon_sym_break] = ACTIONS(531), - [anon_sym_const] = ACTIONS(531), - [anon_sym_continue] = ACTIONS(531), - [anon_sym_default] = ACTIONS(531), - [anon_sym_enum] = ACTIONS(531), - [anon_sym_fn] = ACTIONS(531), - [anon_sym_for] = ACTIONS(531), - [anon_sym_gen] = ACTIONS(531), - [anon_sym_if] = ACTIONS(531), - [anon_sym_impl] = ACTIONS(531), - [anon_sym_let] = ACTIONS(531), - [anon_sym_loop] = ACTIONS(531), - [anon_sym_match] = ACTIONS(531), - [anon_sym_mod] = ACTIONS(531), - [anon_sym_pub] = ACTIONS(531), - [anon_sym_return] = ACTIONS(531), - [anon_sym_static] = ACTIONS(531), - [anon_sym_struct] = ACTIONS(531), - [anon_sym_trait] = ACTIONS(531), - [anon_sym_type] = ACTIONS(531), - [anon_sym_union] = ACTIONS(531), - [anon_sym_unsafe] = ACTIONS(531), - [anon_sym_use] = ACTIONS(531), - [anon_sym_where] = ACTIONS(531), - [anon_sym_while] = ACTIONS(531), - [sym_mutable_specifier] = ACTIONS(531), - [sym_integer_literal] = ACTIONS(554), - [aux_sym_string_literal_token1] = ACTIONS(557), - [sym_char_literal] = ACTIONS(554), - [anon_sym_true] = ACTIONS(560), - [anon_sym_false] = ACTIONS(560), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(531), - [sym_super] = ACTIONS(531), - [sym_crate] = ACTIONS(531), - [sym_metavariable] = ACTIONS(563), - [sym__raw_string_literal_start] = ACTIONS(566), - [sym_float_literal] = ACTIONS(554), + [aux_sym__non_special_token_repeat1] = STATE(135), + [sym_identifier] = ACTIONS(536), + [anon_sym_SEMI] = ACTIONS(539), + [anon_sym_LPAREN] = ACTIONS(542), + [anon_sym_RPAREN] = ACTIONS(545), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_RBRACK] = ACTIONS(545), + [anon_sym_LBRACE] = ACTIONS(550), + [anon_sym_RBRACE] = ACTIONS(545), + [anon_sym_EQ_GT] = ACTIONS(539), + [anon_sym_COLON] = ACTIONS(553), + [anon_sym_DOLLAR] = ACTIONS(556), + [anon_sym_PLUS] = ACTIONS(553), + [anon_sym_STAR] = ACTIONS(553), + [anon_sym_QMARK] = ACTIONS(539), + [anon_sym_u8] = ACTIONS(536), + [anon_sym_i8] = ACTIONS(536), + [anon_sym_u16] = ACTIONS(536), + [anon_sym_i16] = ACTIONS(536), + [anon_sym_u32] = ACTIONS(536), + [anon_sym_i32] = ACTIONS(536), + [anon_sym_u64] = ACTIONS(536), + [anon_sym_i64] = ACTIONS(536), + [anon_sym_u128] = ACTIONS(536), + [anon_sym_i128] = ACTIONS(536), + [anon_sym_isize] = ACTIONS(536), + [anon_sym_usize] = ACTIONS(536), + [anon_sym_f32] = ACTIONS(536), + [anon_sym_f64] = ACTIONS(536), + [anon_sym_bool] = ACTIONS(536), + [anon_sym_str] = ACTIONS(536), + [anon_sym_char] = ACTIONS(536), + [anon_sym_DASH] = ACTIONS(553), + [anon_sym_SLASH] = ACTIONS(553), + [anon_sym_PERCENT] = ACTIONS(553), + [anon_sym_CARET] = ACTIONS(553), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_AMP] = ACTIONS(553), + [anon_sym_PIPE] = ACTIONS(553), + [anon_sym_AMP_AMP] = ACTIONS(539), + [anon_sym_PIPE_PIPE] = ACTIONS(539), + [anon_sym_LT_LT] = ACTIONS(553), + [anon_sym_GT_GT] = ACTIONS(553), + [anon_sym_PLUS_EQ] = ACTIONS(539), + [anon_sym_DASH_EQ] = ACTIONS(539), + [anon_sym_STAR_EQ] = ACTIONS(539), + [anon_sym_SLASH_EQ] = ACTIONS(539), + [anon_sym_PERCENT_EQ] = ACTIONS(539), + [anon_sym_CARET_EQ] = ACTIONS(539), + [anon_sym_AMP_EQ] = ACTIONS(539), + [anon_sym_PIPE_EQ] = ACTIONS(539), + [anon_sym_LT_LT_EQ] = ACTIONS(539), + [anon_sym_GT_GT_EQ] = ACTIONS(539), + [anon_sym_EQ] = ACTIONS(553), + [anon_sym_EQ_EQ] = ACTIONS(539), + [anon_sym_BANG_EQ] = ACTIONS(539), + [anon_sym_GT] = ACTIONS(553), + [anon_sym_LT] = ACTIONS(553), + [anon_sym_GT_EQ] = ACTIONS(539), + [anon_sym_LT_EQ] = ACTIONS(539), + [anon_sym_AT] = ACTIONS(539), + [anon_sym__] = ACTIONS(553), + [anon_sym_DOT] = ACTIONS(553), + [anon_sym_DOT_DOT] = ACTIONS(553), + [anon_sym_DOT_DOT_DOT] = ACTIONS(539), + [anon_sym_DOT_DOT_EQ] = ACTIONS(539), + [anon_sym_COMMA] = ACTIONS(539), + [anon_sym_COLON_COLON] = ACTIONS(539), + [anon_sym_DASH_GT] = ACTIONS(539), + [anon_sym_POUND] = ACTIONS(539), + [anon_sym_SQUOTE] = ACTIONS(536), + [anon_sym_as] = ACTIONS(536), + [anon_sym_async] = ACTIONS(536), + [anon_sym_await] = ACTIONS(536), + [anon_sym_break] = ACTIONS(536), + [anon_sym_const] = ACTIONS(536), + [anon_sym_continue] = ACTIONS(536), + [anon_sym_default] = ACTIONS(536), + [anon_sym_enum] = ACTIONS(536), + [anon_sym_fn] = ACTIONS(536), + [anon_sym_for] = ACTIONS(536), + [anon_sym_gen] = ACTIONS(536), + [anon_sym_if] = ACTIONS(536), + [anon_sym_impl] = ACTIONS(536), + [anon_sym_let] = ACTIONS(536), + [anon_sym_loop] = ACTIONS(536), + [anon_sym_match] = ACTIONS(536), + [anon_sym_mod] = ACTIONS(536), + [anon_sym_pub] = ACTIONS(536), + [anon_sym_return] = ACTIONS(536), + [anon_sym_static] = ACTIONS(536), + [anon_sym_struct] = ACTIONS(536), + [anon_sym_trait] = ACTIONS(536), + [anon_sym_type] = ACTIONS(536), + [anon_sym_union] = ACTIONS(536), + [anon_sym_unsafe] = ACTIONS(536), + [anon_sym_use] = ACTIONS(536), + [anon_sym_where] = ACTIONS(536), + [anon_sym_while] = ACTIONS(536), + [sym_mutable_specifier] = ACTIONS(536), + [sym_integer_literal] = ACTIONS(559), + [aux_sym_string_literal_token1] = ACTIONS(562), + [sym_char_literal] = ACTIONS(559), + [anon_sym_true] = ACTIONS(565), + [anon_sym_false] = ACTIONS(565), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(536), + [sym_super] = ACTIONS(536), + [sym_crate] = ACTIONS(536), + [sym_metavariable] = ACTIONS(568), + [sym__raw_string_literal_start] = ACTIONS(571), + [sym_float_literal] = ACTIONS(559), }, [STATE(68)] = { - [sym_token_tree] = STATE(187), - [sym_token_repetition] = STATE(187), - [sym__literal] = STATE(187), - [sym_string_literal] = STATE(183), - [sym_raw_string_literal] = STATE(183), - [sym_boolean_literal] = STATE(183), + [sym__token_pattern] = STATE(158), + [sym_token_tree_pattern] = STATE(153), + [sym_token_binding_pattern] = STATE(153), + [sym_token_repetition_pattern] = STATE(153), + [sym__literal] = STATE(153), + [sym_string_literal] = STATE(184), + [sym_raw_string_literal] = STATE(184), + [sym_boolean_literal] = STATE(184), [sym_line_comment] = STATE(68), [sym_block_comment] = STATE(68), - [aux_sym_token_tree_repeat1] = STATE(68), - [aux_sym__non_special_token_repeat1] = STATE(144), - [sym_identifier] = ACTIONS(569), - [anon_sym_SEMI] = ACTIONS(572), - [anon_sym_LPAREN] = ACTIONS(575), - [anon_sym_RPAREN] = ACTIONS(578), - [anon_sym_LBRACK] = ACTIONS(580), - [anon_sym_RBRACK] = ACTIONS(578), - [anon_sym_LBRACE] = ACTIONS(583), - [anon_sym_RBRACE] = ACTIONS(578), - [anon_sym_EQ_GT] = ACTIONS(572), + [aux_sym_token_tree_pattern_repeat1] = STATE(72), + [aux_sym__non_special_token_repeat1] = STATE(135), + [sym_identifier] = ACTIONS(574), + [anon_sym_SEMI] = ACTIONS(576), + [anon_sym_LPAREN] = ACTIONS(578), + [anon_sym_RPAREN] = ACTIONS(580), + [anon_sym_LBRACK] = ACTIONS(582), + [anon_sym_LBRACE] = ACTIONS(584), + [anon_sym_EQ_GT] = ACTIONS(576), [anon_sym_COLON] = ACTIONS(586), - [anon_sym_DOLLAR] = ACTIONS(589), + [anon_sym_DOLLAR] = ACTIONS(588), [anon_sym_PLUS] = ACTIONS(586), [anon_sym_STAR] = ACTIONS(586), - [anon_sym_QMARK] = ACTIONS(572), - [anon_sym_u8] = ACTIONS(569), - [anon_sym_i8] = ACTIONS(569), - [anon_sym_u16] = ACTIONS(569), - [anon_sym_i16] = ACTIONS(569), - [anon_sym_u32] = ACTIONS(569), - [anon_sym_i32] = ACTIONS(569), - [anon_sym_u64] = ACTIONS(569), - [anon_sym_i64] = ACTIONS(569), - [anon_sym_u128] = ACTIONS(569), - [anon_sym_i128] = ACTIONS(569), - [anon_sym_isize] = ACTIONS(569), - [anon_sym_usize] = ACTIONS(569), - [anon_sym_f32] = ACTIONS(569), - [anon_sym_f64] = ACTIONS(569), - [anon_sym_bool] = ACTIONS(569), - [anon_sym_str] = ACTIONS(569), - [anon_sym_char] = ACTIONS(569), + [anon_sym_QMARK] = ACTIONS(576), + [anon_sym_u8] = ACTIONS(574), + [anon_sym_i8] = ACTIONS(574), + [anon_sym_u16] = ACTIONS(574), + [anon_sym_i16] = ACTIONS(574), + [anon_sym_u32] = ACTIONS(574), + [anon_sym_i32] = ACTIONS(574), + [anon_sym_u64] = ACTIONS(574), + [anon_sym_i64] = ACTIONS(574), + [anon_sym_u128] = ACTIONS(574), + [anon_sym_i128] = ACTIONS(574), + [anon_sym_isize] = ACTIONS(574), + [anon_sym_usize] = ACTIONS(574), + [anon_sym_f32] = ACTIONS(574), + [anon_sym_f64] = ACTIONS(574), + [anon_sym_bool] = ACTIONS(574), + [anon_sym_str] = ACTIONS(574), + [anon_sym_char] = ACTIONS(574), [anon_sym_DASH] = ACTIONS(586), [anon_sym_SLASH] = ACTIONS(586), [anon_sym_PERCENT] = ACTIONS(586), @@ -24578,8098 +24715,8332 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(586), [anon_sym_AMP] = ACTIONS(586), [anon_sym_PIPE] = ACTIONS(586), - [anon_sym_AMP_AMP] = ACTIONS(572), - [anon_sym_PIPE_PIPE] = ACTIONS(572), + [anon_sym_AMP_AMP] = ACTIONS(576), + [anon_sym_PIPE_PIPE] = ACTIONS(576), [anon_sym_LT_LT] = ACTIONS(586), [anon_sym_GT_GT] = ACTIONS(586), - [anon_sym_PLUS_EQ] = ACTIONS(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_PLUS_EQ] = ACTIONS(576), + [anon_sym_DASH_EQ] = ACTIONS(576), + [anon_sym_STAR_EQ] = ACTIONS(576), + [anon_sym_SLASH_EQ] = ACTIONS(576), + [anon_sym_PERCENT_EQ] = ACTIONS(576), + [anon_sym_CARET_EQ] = ACTIONS(576), + [anon_sym_AMP_EQ] = ACTIONS(576), + [anon_sym_PIPE_EQ] = ACTIONS(576), + [anon_sym_LT_LT_EQ] = ACTIONS(576), + [anon_sym_GT_GT_EQ] = ACTIONS(576), [anon_sym_EQ] = ACTIONS(586), - [anon_sym_EQ_EQ] = ACTIONS(572), - [anon_sym_BANG_EQ] = ACTIONS(572), + [anon_sym_EQ_EQ] = ACTIONS(576), + [anon_sym_BANG_EQ] = ACTIONS(576), [anon_sym_GT] = ACTIONS(586), [anon_sym_LT] = ACTIONS(586), - [anon_sym_GT_EQ] = ACTIONS(572), - [anon_sym_LT_EQ] = ACTIONS(572), - [anon_sym_AT] = ACTIONS(572), + [anon_sym_GT_EQ] = ACTIONS(576), + [anon_sym_LT_EQ] = ACTIONS(576), + [anon_sym_AT] = ACTIONS(576), [anon_sym__] = ACTIONS(586), [anon_sym_DOT] = ACTIONS(586), [anon_sym_DOT_DOT] = ACTIONS(586), - [anon_sym_DOT_DOT_DOT] = ACTIONS(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(569), - [anon_sym_as] = ACTIONS(569), - [anon_sym_async] = ACTIONS(569), - [anon_sym_await] = ACTIONS(569), - [anon_sym_break] = ACTIONS(569), - [anon_sym_const] = ACTIONS(569), - [anon_sym_continue] = ACTIONS(569), - [anon_sym_default] = ACTIONS(569), - [anon_sym_enum] = ACTIONS(569), - [anon_sym_fn] = ACTIONS(569), - [anon_sym_for] = ACTIONS(569), - [anon_sym_gen] = ACTIONS(569), - [anon_sym_if] = ACTIONS(569), - [anon_sym_impl] = ACTIONS(569), - [anon_sym_let] = ACTIONS(569), - [anon_sym_loop] = ACTIONS(569), - [anon_sym_match] = ACTIONS(569), - [anon_sym_mod] = ACTIONS(569), - [anon_sym_pub] = ACTIONS(569), - [anon_sym_return] = ACTIONS(569), - [anon_sym_static] = ACTIONS(569), - [anon_sym_struct] = ACTIONS(569), - [anon_sym_trait] = ACTIONS(569), - [anon_sym_type] = ACTIONS(569), - [anon_sym_union] = ACTIONS(569), - [anon_sym_unsafe] = ACTIONS(569), - [anon_sym_use] = ACTIONS(569), - [anon_sym_where] = ACTIONS(569), - [anon_sym_while] = ACTIONS(569), - [sym_mutable_specifier] = ACTIONS(569), - [sym_integer_literal] = ACTIONS(592), - [aux_sym_string_literal_token1] = ACTIONS(595), - [sym_char_literal] = ACTIONS(592), - [anon_sym_true] = ACTIONS(598), - [anon_sym_false] = ACTIONS(598), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(569), - [sym_super] = ACTIONS(569), - [sym_crate] = ACTIONS(569), - [sym_metavariable] = ACTIONS(601), - [sym__raw_string_literal_start] = ACTIONS(604), - [sym_float_literal] = ACTIONS(592), + [anon_sym_DOT_DOT_DOT] = ACTIONS(576), + [anon_sym_DOT_DOT_EQ] = ACTIONS(576), + [anon_sym_COMMA] = ACTIONS(576), + [anon_sym_COLON_COLON] = ACTIONS(576), + [anon_sym_DASH_GT] = ACTIONS(576), + [anon_sym_POUND] = ACTIONS(576), + [anon_sym_SQUOTE] = ACTIONS(574), + [anon_sym_as] = ACTIONS(574), + [anon_sym_async] = ACTIONS(574), + [anon_sym_await] = ACTIONS(574), + [anon_sym_break] = ACTIONS(574), + [anon_sym_const] = ACTIONS(574), + [anon_sym_continue] = ACTIONS(574), + [anon_sym_default] = ACTIONS(574), + [anon_sym_enum] = ACTIONS(574), + [anon_sym_fn] = ACTIONS(574), + [anon_sym_for] = ACTIONS(574), + [anon_sym_gen] = ACTIONS(574), + [anon_sym_if] = ACTIONS(574), + [anon_sym_impl] = ACTIONS(574), + [anon_sym_let] = ACTIONS(574), + [anon_sym_loop] = ACTIONS(574), + [anon_sym_match] = ACTIONS(574), + [anon_sym_mod] = ACTIONS(574), + [anon_sym_pub] = ACTIONS(574), + [anon_sym_return] = ACTIONS(574), + [anon_sym_static] = ACTIONS(574), + [anon_sym_struct] = ACTIONS(574), + [anon_sym_trait] = ACTIONS(574), + [anon_sym_type] = ACTIONS(574), + [anon_sym_union] = ACTIONS(574), + [anon_sym_unsafe] = ACTIONS(574), + [anon_sym_use] = ACTIONS(574), + [anon_sym_where] = ACTIONS(574), + [anon_sym_while] = ACTIONS(574), + [sym_mutable_specifier] = ACTIONS(574), + [sym_integer_literal] = ACTIONS(590), + [aux_sym_string_literal_token1] = ACTIONS(592), + [sym_char_literal] = ACTIONS(590), + [anon_sym_true] = ACTIONS(594), + [anon_sym_false] = ACTIONS(594), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(574), + [sym_super] = ACTIONS(574), + [sym_crate] = ACTIONS(574), + [sym_metavariable] = ACTIONS(596), + [sym__raw_string_literal_start] = ACTIONS(598), + [sym_float_literal] = ACTIONS(590), }, [STATE(69)] = { - [sym__token_pattern] = STATE(156), - [sym_token_tree_pattern] = STATE(154), - [sym_token_binding_pattern] = STATE(154), - [sym_token_repetition_pattern] = STATE(154), - [sym__literal] = STATE(154), - [sym_string_literal] = STATE(183), - [sym_raw_string_literal] = STATE(183), - [sym_boolean_literal] = STATE(183), + [sym__token_pattern] = STATE(158), + [sym_token_tree_pattern] = STATE(153), + [sym_token_binding_pattern] = STATE(153), + [sym_token_repetition_pattern] = STATE(153), + [sym__literal] = STATE(153), + [sym_string_literal] = STATE(184), + [sym_raw_string_literal] = STATE(184), + [sym_boolean_literal] = STATE(184), [sym_line_comment] = STATE(69), [sym_block_comment] = STATE(69), - [aux_sym_token_tree_pattern_repeat1] = STATE(71), - [aux_sym__non_special_token_repeat1] = STATE(140), - [sym_identifier] = ACTIONS(607), - [anon_sym_SEMI] = ACTIONS(609), - [anon_sym_LPAREN] = ACTIONS(611), - [anon_sym_RPAREN] = ACTIONS(613), - [anon_sym_LBRACK] = ACTIONS(615), - [anon_sym_LBRACE] = ACTIONS(617), - [anon_sym_EQ_GT] = ACTIONS(609), - [anon_sym_COLON] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_STAR] = ACTIONS(619), - [anon_sym_QMARK] = ACTIONS(609), - [anon_sym_u8] = ACTIONS(607), - [anon_sym_i8] = ACTIONS(607), - [anon_sym_u16] = ACTIONS(607), - [anon_sym_i16] = ACTIONS(607), - [anon_sym_u32] = ACTIONS(607), - [anon_sym_i32] = ACTIONS(607), - [anon_sym_u64] = ACTIONS(607), - [anon_sym_i64] = ACTIONS(607), - [anon_sym_u128] = ACTIONS(607), - [anon_sym_i128] = ACTIONS(607), - [anon_sym_isize] = ACTIONS(607), - [anon_sym_usize] = ACTIONS(607), - [anon_sym_f32] = ACTIONS(607), - [anon_sym_f64] = ACTIONS(607), - [anon_sym_bool] = ACTIONS(607), - [anon_sym_str] = ACTIONS(607), - [anon_sym_char] = ACTIONS(607), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_SLASH] = ACTIONS(619), - [anon_sym_PERCENT] = ACTIONS(619), - [anon_sym_CARET] = ACTIONS(619), - [anon_sym_BANG] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(619), - [anon_sym_AMP_AMP] = ACTIONS(609), - [anon_sym_PIPE_PIPE] = ACTIONS(609), - [anon_sym_LT_LT] = ACTIONS(619), - [anon_sym_GT_GT] = ACTIONS(619), - [anon_sym_PLUS_EQ] = ACTIONS(609), - [anon_sym_DASH_EQ] = ACTIONS(609), - [anon_sym_STAR_EQ] = ACTIONS(609), - [anon_sym_SLASH_EQ] = ACTIONS(609), - [anon_sym_PERCENT_EQ] = ACTIONS(609), - [anon_sym_CARET_EQ] = ACTIONS(609), - [anon_sym_AMP_EQ] = ACTIONS(609), - [anon_sym_PIPE_EQ] = ACTIONS(609), - [anon_sym_LT_LT_EQ] = ACTIONS(609), - [anon_sym_GT_GT_EQ] = ACTIONS(609), - [anon_sym_EQ] = ACTIONS(619), - [anon_sym_EQ_EQ] = ACTIONS(609), - [anon_sym_BANG_EQ] = ACTIONS(609), - [anon_sym_GT] = ACTIONS(619), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_GT_EQ] = ACTIONS(609), - [anon_sym_LT_EQ] = ACTIONS(609), - [anon_sym_AT] = ACTIONS(609), - [anon_sym__] = ACTIONS(619), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_DOT_DOT] = ACTIONS(619), - [anon_sym_DOT_DOT_DOT] = ACTIONS(609), - [anon_sym_DOT_DOT_EQ] = ACTIONS(609), - [anon_sym_COMMA] = ACTIONS(609), - [anon_sym_COLON_COLON] = ACTIONS(609), - [anon_sym_DASH_GT] = ACTIONS(609), - [anon_sym_POUND] = ACTIONS(609), - [anon_sym_SQUOTE] = ACTIONS(607), - [anon_sym_as] = ACTIONS(607), - [anon_sym_async] = ACTIONS(607), - [anon_sym_await] = ACTIONS(607), - [anon_sym_break] = ACTIONS(607), - [anon_sym_const] = ACTIONS(607), - [anon_sym_continue] = ACTIONS(607), - [anon_sym_default] = ACTIONS(607), - [anon_sym_enum] = ACTIONS(607), - [anon_sym_fn] = ACTIONS(607), - [anon_sym_for] = ACTIONS(607), - [anon_sym_gen] = ACTIONS(607), - [anon_sym_if] = ACTIONS(607), - [anon_sym_impl] = ACTIONS(607), - [anon_sym_let] = ACTIONS(607), - [anon_sym_loop] = ACTIONS(607), - [anon_sym_match] = ACTIONS(607), - [anon_sym_mod] = ACTIONS(607), - [anon_sym_pub] = ACTIONS(607), - [anon_sym_return] = ACTIONS(607), - [anon_sym_static] = ACTIONS(607), - [anon_sym_struct] = ACTIONS(607), - [anon_sym_trait] = ACTIONS(607), - [anon_sym_type] = ACTIONS(607), - [anon_sym_union] = ACTIONS(607), - [anon_sym_unsafe] = ACTIONS(607), - [anon_sym_use] = ACTIONS(607), - [anon_sym_where] = ACTIONS(607), - [anon_sym_while] = ACTIONS(607), - [sym_mutable_specifier] = ACTIONS(607), - [sym_integer_literal] = ACTIONS(623), - [aux_sym_string_literal_token1] = ACTIONS(625), - [sym_char_literal] = ACTIONS(623), - [anon_sym_true] = ACTIONS(627), - [anon_sym_false] = ACTIONS(627), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(607), - [sym_super] = ACTIONS(607), - [sym_crate] = ACTIONS(607), - [sym_metavariable] = ACTIONS(629), - [sym__raw_string_literal_start] = ACTIONS(631), - [sym_float_literal] = ACTIONS(623), + [aux_sym_token_tree_pattern_repeat1] = STATE(73), + [aux_sym__non_special_token_repeat1] = STATE(135), + [sym_identifier] = ACTIONS(574), + [anon_sym_SEMI] = ACTIONS(576), + [anon_sym_LPAREN] = ACTIONS(578), + [anon_sym_LBRACK] = ACTIONS(582), + [anon_sym_RBRACK] = ACTIONS(580), + [anon_sym_LBRACE] = ACTIONS(584), + [anon_sym_EQ_GT] = ACTIONS(576), + [anon_sym_COLON] = ACTIONS(586), + [anon_sym_DOLLAR] = ACTIONS(588), + [anon_sym_PLUS] = ACTIONS(586), + [anon_sym_STAR] = ACTIONS(586), + [anon_sym_QMARK] = ACTIONS(576), + [anon_sym_u8] = ACTIONS(574), + [anon_sym_i8] = ACTIONS(574), + [anon_sym_u16] = ACTIONS(574), + [anon_sym_i16] = ACTIONS(574), + [anon_sym_u32] = ACTIONS(574), + [anon_sym_i32] = ACTIONS(574), + [anon_sym_u64] = ACTIONS(574), + [anon_sym_i64] = ACTIONS(574), + [anon_sym_u128] = ACTIONS(574), + [anon_sym_i128] = ACTIONS(574), + [anon_sym_isize] = ACTIONS(574), + [anon_sym_usize] = ACTIONS(574), + [anon_sym_f32] = ACTIONS(574), + [anon_sym_f64] = ACTIONS(574), + [anon_sym_bool] = ACTIONS(574), + [anon_sym_str] = ACTIONS(574), + [anon_sym_char] = ACTIONS(574), + [anon_sym_DASH] = ACTIONS(586), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_PERCENT] = ACTIONS(586), + [anon_sym_CARET] = ACTIONS(586), + [anon_sym_BANG] = ACTIONS(586), + [anon_sym_AMP] = ACTIONS(586), + [anon_sym_PIPE] = ACTIONS(586), + [anon_sym_AMP_AMP] = ACTIONS(576), + [anon_sym_PIPE_PIPE] = ACTIONS(576), + [anon_sym_LT_LT] = ACTIONS(586), + [anon_sym_GT_GT] = ACTIONS(586), + [anon_sym_PLUS_EQ] = ACTIONS(576), + [anon_sym_DASH_EQ] = ACTIONS(576), + [anon_sym_STAR_EQ] = ACTIONS(576), + [anon_sym_SLASH_EQ] = ACTIONS(576), + [anon_sym_PERCENT_EQ] = ACTIONS(576), + [anon_sym_CARET_EQ] = ACTIONS(576), + [anon_sym_AMP_EQ] = ACTIONS(576), + [anon_sym_PIPE_EQ] = ACTIONS(576), + [anon_sym_LT_LT_EQ] = ACTIONS(576), + [anon_sym_GT_GT_EQ] = ACTIONS(576), + [anon_sym_EQ] = ACTIONS(586), + [anon_sym_EQ_EQ] = ACTIONS(576), + [anon_sym_BANG_EQ] = ACTIONS(576), + [anon_sym_GT] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(586), + [anon_sym_GT_EQ] = ACTIONS(576), + [anon_sym_LT_EQ] = ACTIONS(576), + [anon_sym_AT] = ACTIONS(576), + [anon_sym__] = ACTIONS(586), + [anon_sym_DOT] = ACTIONS(586), + [anon_sym_DOT_DOT] = ACTIONS(586), + [anon_sym_DOT_DOT_DOT] = ACTIONS(576), + [anon_sym_DOT_DOT_EQ] = ACTIONS(576), + [anon_sym_COMMA] = ACTIONS(576), + [anon_sym_COLON_COLON] = ACTIONS(576), + [anon_sym_DASH_GT] = ACTIONS(576), + [anon_sym_POUND] = ACTIONS(576), + [anon_sym_SQUOTE] = ACTIONS(574), + [anon_sym_as] = ACTIONS(574), + [anon_sym_async] = ACTIONS(574), + [anon_sym_await] = ACTIONS(574), + [anon_sym_break] = ACTIONS(574), + [anon_sym_const] = ACTIONS(574), + [anon_sym_continue] = ACTIONS(574), + [anon_sym_default] = ACTIONS(574), + [anon_sym_enum] = ACTIONS(574), + [anon_sym_fn] = ACTIONS(574), + [anon_sym_for] = ACTIONS(574), + [anon_sym_gen] = ACTIONS(574), + [anon_sym_if] = ACTIONS(574), + [anon_sym_impl] = ACTIONS(574), + [anon_sym_let] = ACTIONS(574), + [anon_sym_loop] = ACTIONS(574), + [anon_sym_match] = ACTIONS(574), + [anon_sym_mod] = ACTIONS(574), + [anon_sym_pub] = ACTIONS(574), + [anon_sym_return] = ACTIONS(574), + [anon_sym_static] = ACTIONS(574), + [anon_sym_struct] = ACTIONS(574), + [anon_sym_trait] = ACTIONS(574), + [anon_sym_type] = ACTIONS(574), + [anon_sym_union] = ACTIONS(574), + [anon_sym_unsafe] = ACTIONS(574), + [anon_sym_use] = ACTIONS(574), + [anon_sym_where] = ACTIONS(574), + [anon_sym_while] = ACTIONS(574), + [sym_mutable_specifier] = ACTIONS(574), + [sym_integer_literal] = ACTIONS(590), + [aux_sym_string_literal_token1] = ACTIONS(592), + [sym_char_literal] = ACTIONS(590), + [anon_sym_true] = ACTIONS(594), + [anon_sym_false] = ACTIONS(594), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(574), + [sym_super] = ACTIONS(574), + [sym_crate] = ACTIONS(574), + [sym_metavariable] = ACTIONS(596), + [sym__raw_string_literal_start] = ACTIONS(598), + [sym_float_literal] = ACTIONS(590), }, [STATE(70)] = { - [sym__token_pattern] = STATE(156), - [sym_token_tree_pattern] = STATE(154), - [sym_token_binding_pattern] = STATE(154), - [sym_token_repetition_pattern] = STATE(154), - [sym__literal] = STATE(154), - [sym_string_literal] = STATE(183), - [sym_raw_string_literal] = STATE(183), - [sym_boolean_literal] = STATE(183), + [sym__token_pattern] = STATE(158), + [sym_token_tree_pattern] = STATE(153), + [sym_token_binding_pattern] = STATE(153), + [sym_token_repetition_pattern] = STATE(153), + [sym__literal] = STATE(153), + [sym_string_literal] = STATE(184), + [sym_raw_string_literal] = STATE(184), + [sym_boolean_literal] = STATE(184), [sym_line_comment] = STATE(70), [sym_block_comment] = STATE(70), - [aux_sym_token_tree_pattern_repeat1] = STATE(81), - [aux_sym__non_special_token_repeat1] = STATE(140), - [sym_identifier] = ACTIONS(607), - [anon_sym_SEMI] = ACTIONS(609), - [anon_sym_LPAREN] = ACTIONS(611), - [anon_sym_LBRACK] = ACTIONS(615), - [anon_sym_RBRACK] = ACTIONS(633), - [anon_sym_LBRACE] = ACTIONS(617), - [anon_sym_EQ_GT] = ACTIONS(609), - [anon_sym_COLON] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_STAR] = ACTIONS(619), - [anon_sym_QMARK] = ACTIONS(609), - [anon_sym_u8] = ACTIONS(607), - [anon_sym_i8] = ACTIONS(607), - [anon_sym_u16] = ACTIONS(607), - [anon_sym_i16] = ACTIONS(607), - [anon_sym_u32] = ACTIONS(607), - [anon_sym_i32] = ACTIONS(607), - [anon_sym_u64] = ACTIONS(607), - [anon_sym_i64] = ACTIONS(607), - [anon_sym_u128] = ACTIONS(607), - [anon_sym_i128] = ACTIONS(607), - [anon_sym_isize] = ACTIONS(607), - [anon_sym_usize] = ACTIONS(607), - [anon_sym_f32] = ACTIONS(607), - [anon_sym_f64] = ACTIONS(607), - [anon_sym_bool] = ACTIONS(607), - [anon_sym_str] = ACTIONS(607), - [anon_sym_char] = ACTIONS(607), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_SLASH] = ACTIONS(619), - [anon_sym_PERCENT] = ACTIONS(619), - [anon_sym_CARET] = ACTIONS(619), - [anon_sym_BANG] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(619), - [anon_sym_AMP_AMP] = ACTIONS(609), - [anon_sym_PIPE_PIPE] = ACTIONS(609), - [anon_sym_LT_LT] = ACTIONS(619), - [anon_sym_GT_GT] = ACTIONS(619), - [anon_sym_PLUS_EQ] = ACTIONS(609), - [anon_sym_DASH_EQ] = ACTIONS(609), - [anon_sym_STAR_EQ] = ACTIONS(609), - [anon_sym_SLASH_EQ] = ACTIONS(609), - [anon_sym_PERCENT_EQ] = ACTIONS(609), - [anon_sym_CARET_EQ] = ACTIONS(609), - [anon_sym_AMP_EQ] = ACTIONS(609), - [anon_sym_PIPE_EQ] = ACTIONS(609), - [anon_sym_LT_LT_EQ] = ACTIONS(609), - [anon_sym_GT_GT_EQ] = ACTIONS(609), - [anon_sym_EQ] = ACTIONS(619), - [anon_sym_EQ_EQ] = ACTIONS(609), - [anon_sym_BANG_EQ] = ACTIONS(609), - [anon_sym_GT] = ACTIONS(619), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_GT_EQ] = ACTIONS(609), - [anon_sym_LT_EQ] = ACTIONS(609), - [anon_sym_AT] = ACTIONS(609), - [anon_sym__] = ACTIONS(619), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_DOT_DOT] = ACTIONS(619), - [anon_sym_DOT_DOT_DOT] = ACTIONS(609), - [anon_sym_DOT_DOT_EQ] = ACTIONS(609), - [anon_sym_COMMA] = ACTIONS(609), - [anon_sym_COLON_COLON] = ACTIONS(609), - [anon_sym_DASH_GT] = ACTIONS(609), - [anon_sym_POUND] = ACTIONS(609), - [anon_sym_SQUOTE] = ACTIONS(607), - [anon_sym_as] = ACTIONS(607), - [anon_sym_async] = ACTIONS(607), - [anon_sym_await] = ACTIONS(607), - [anon_sym_break] = ACTIONS(607), - [anon_sym_const] = ACTIONS(607), - [anon_sym_continue] = ACTIONS(607), - [anon_sym_default] = ACTIONS(607), - [anon_sym_enum] = ACTIONS(607), - [anon_sym_fn] = ACTIONS(607), - [anon_sym_for] = ACTIONS(607), - [anon_sym_gen] = ACTIONS(607), - [anon_sym_if] = ACTIONS(607), - [anon_sym_impl] = ACTIONS(607), - [anon_sym_let] = ACTIONS(607), - [anon_sym_loop] = ACTIONS(607), - [anon_sym_match] = ACTIONS(607), - [anon_sym_mod] = ACTIONS(607), - [anon_sym_pub] = ACTIONS(607), - [anon_sym_return] = ACTIONS(607), - [anon_sym_static] = ACTIONS(607), - [anon_sym_struct] = ACTIONS(607), - [anon_sym_trait] = ACTIONS(607), - [anon_sym_type] = ACTIONS(607), - [anon_sym_union] = ACTIONS(607), - [anon_sym_unsafe] = ACTIONS(607), - [anon_sym_use] = ACTIONS(607), - [anon_sym_where] = ACTIONS(607), - [anon_sym_while] = ACTIONS(607), - [sym_mutable_specifier] = ACTIONS(607), - [sym_integer_literal] = ACTIONS(623), - [aux_sym_string_literal_token1] = ACTIONS(625), - [sym_char_literal] = ACTIONS(623), - [anon_sym_true] = ACTIONS(627), - [anon_sym_false] = ACTIONS(627), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(607), - [sym_super] = ACTIONS(607), - [sym_crate] = ACTIONS(607), - [sym_metavariable] = ACTIONS(629), - [sym__raw_string_literal_start] = ACTIONS(631), - [sym_float_literal] = ACTIONS(623), + [aux_sym_token_tree_pattern_repeat1] = STATE(77), + [aux_sym__non_special_token_repeat1] = STATE(135), + [sym_identifier] = ACTIONS(574), + [anon_sym_SEMI] = ACTIONS(576), + [anon_sym_LPAREN] = ACTIONS(578), + [anon_sym_RPAREN] = ACTIONS(600), + [anon_sym_LBRACK] = ACTIONS(582), + [anon_sym_LBRACE] = ACTIONS(584), + [anon_sym_EQ_GT] = ACTIONS(576), + [anon_sym_COLON] = ACTIONS(586), + [anon_sym_DOLLAR] = ACTIONS(588), + [anon_sym_PLUS] = ACTIONS(586), + [anon_sym_STAR] = ACTIONS(586), + [anon_sym_QMARK] = ACTIONS(576), + [anon_sym_u8] = ACTIONS(574), + [anon_sym_i8] = ACTIONS(574), + [anon_sym_u16] = ACTIONS(574), + [anon_sym_i16] = ACTIONS(574), + [anon_sym_u32] = ACTIONS(574), + [anon_sym_i32] = ACTIONS(574), + [anon_sym_u64] = ACTIONS(574), + [anon_sym_i64] = ACTIONS(574), + [anon_sym_u128] = ACTIONS(574), + [anon_sym_i128] = ACTIONS(574), + [anon_sym_isize] = ACTIONS(574), + [anon_sym_usize] = ACTIONS(574), + [anon_sym_f32] = ACTIONS(574), + [anon_sym_f64] = ACTIONS(574), + [anon_sym_bool] = ACTIONS(574), + [anon_sym_str] = ACTIONS(574), + [anon_sym_char] = ACTIONS(574), + [anon_sym_DASH] = ACTIONS(586), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_PERCENT] = ACTIONS(586), + [anon_sym_CARET] = ACTIONS(586), + [anon_sym_BANG] = ACTIONS(586), + [anon_sym_AMP] = ACTIONS(586), + [anon_sym_PIPE] = ACTIONS(586), + [anon_sym_AMP_AMP] = ACTIONS(576), + [anon_sym_PIPE_PIPE] = ACTIONS(576), + [anon_sym_LT_LT] = ACTIONS(586), + [anon_sym_GT_GT] = ACTIONS(586), + [anon_sym_PLUS_EQ] = ACTIONS(576), + [anon_sym_DASH_EQ] = ACTIONS(576), + [anon_sym_STAR_EQ] = ACTIONS(576), + [anon_sym_SLASH_EQ] = ACTIONS(576), + [anon_sym_PERCENT_EQ] = ACTIONS(576), + [anon_sym_CARET_EQ] = ACTIONS(576), + [anon_sym_AMP_EQ] = ACTIONS(576), + [anon_sym_PIPE_EQ] = ACTIONS(576), + [anon_sym_LT_LT_EQ] = ACTIONS(576), + [anon_sym_GT_GT_EQ] = ACTIONS(576), + [anon_sym_EQ] = ACTIONS(586), + [anon_sym_EQ_EQ] = ACTIONS(576), + [anon_sym_BANG_EQ] = ACTIONS(576), + [anon_sym_GT] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(586), + [anon_sym_GT_EQ] = ACTIONS(576), + [anon_sym_LT_EQ] = ACTIONS(576), + [anon_sym_AT] = ACTIONS(576), + [anon_sym__] = ACTIONS(586), + [anon_sym_DOT] = ACTIONS(586), + [anon_sym_DOT_DOT] = ACTIONS(586), + [anon_sym_DOT_DOT_DOT] = ACTIONS(576), + [anon_sym_DOT_DOT_EQ] = ACTIONS(576), + [anon_sym_COMMA] = ACTIONS(576), + [anon_sym_COLON_COLON] = ACTIONS(576), + [anon_sym_DASH_GT] = ACTIONS(576), + [anon_sym_POUND] = ACTIONS(576), + [anon_sym_SQUOTE] = ACTIONS(574), + [anon_sym_as] = ACTIONS(574), + [anon_sym_async] = ACTIONS(574), + [anon_sym_await] = ACTIONS(574), + [anon_sym_break] = ACTIONS(574), + [anon_sym_const] = ACTIONS(574), + [anon_sym_continue] = ACTIONS(574), + [anon_sym_default] = ACTIONS(574), + [anon_sym_enum] = ACTIONS(574), + [anon_sym_fn] = ACTIONS(574), + [anon_sym_for] = ACTIONS(574), + [anon_sym_gen] = ACTIONS(574), + [anon_sym_if] = ACTIONS(574), + [anon_sym_impl] = ACTIONS(574), + [anon_sym_let] = ACTIONS(574), + [anon_sym_loop] = ACTIONS(574), + [anon_sym_match] = ACTIONS(574), + [anon_sym_mod] = ACTIONS(574), + [anon_sym_pub] = ACTIONS(574), + [anon_sym_return] = ACTIONS(574), + [anon_sym_static] = ACTIONS(574), + [anon_sym_struct] = ACTIONS(574), + [anon_sym_trait] = ACTIONS(574), + [anon_sym_type] = ACTIONS(574), + [anon_sym_union] = ACTIONS(574), + [anon_sym_unsafe] = ACTIONS(574), + [anon_sym_use] = ACTIONS(574), + [anon_sym_where] = ACTIONS(574), + [anon_sym_while] = ACTIONS(574), + [sym_mutable_specifier] = ACTIONS(574), + [sym_integer_literal] = ACTIONS(590), + [aux_sym_string_literal_token1] = ACTIONS(592), + [sym_char_literal] = ACTIONS(590), + [anon_sym_true] = ACTIONS(594), + [anon_sym_false] = ACTIONS(594), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(574), + [sym_super] = ACTIONS(574), + [sym_crate] = ACTIONS(574), + [sym_metavariable] = ACTIONS(596), + [sym__raw_string_literal_start] = ACTIONS(598), + [sym_float_literal] = ACTIONS(590), }, [STATE(71)] = { - [sym__token_pattern] = STATE(156), - [sym_token_tree_pattern] = STATE(154), - [sym_token_binding_pattern] = STATE(154), - [sym_token_repetition_pattern] = STATE(154), - [sym__literal] = STATE(154), - [sym_string_literal] = STATE(183), - [sym_raw_string_literal] = STATE(183), - [sym_boolean_literal] = STATE(183), + [sym__token_pattern] = STATE(158), + [sym_token_tree_pattern] = STATE(153), + [sym_token_binding_pattern] = STATE(153), + [sym_token_repetition_pattern] = STATE(153), + [sym__literal] = STATE(153), + [sym_string_literal] = STATE(184), + [sym_raw_string_literal] = STATE(184), + [sym_boolean_literal] = STATE(184), [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(140), - [sym_identifier] = ACTIONS(607), - [anon_sym_SEMI] = ACTIONS(609), - [anon_sym_LPAREN] = ACTIONS(611), - [anon_sym_RPAREN] = ACTIONS(635), - [anon_sym_LBRACK] = ACTIONS(615), - [anon_sym_LBRACE] = ACTIONS(617), - [anon_sym_EQ_GT] = ACTIONS(609), - [anon_sym_COLON] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_STAR] = ACTIONS(619), - [anon_sym_QMARK] = ACTIONS(609), - [anon_sym_u8] = ACTIONS(607), - [anon_sym_i8] = ACTIONS(607), - [anon_sym_u16] = ACTIONS(607), - [anon_sym_i16] = ACTIONS(607), - [anon_sym_u32] = ACTIONS(607), - [anon_sym_i32] = ACTIONS(607), - [anon_sym_u64] = ACTIONS(607), - [anon_sym_i64] = ACTIONS(607), - [anon_sym_u128] = ACTIONS(607), - [anon_sym_i128] = ACTIONS(607), - [anon_sym_isize] = ACTIONS(607), - [anon_sym_usize] = ACTIONS(607), - [anon_sym_f32] = ACTIONS(607), - [anon_sym_f64] = ACTIONS(607), - [anon_sym_bool] = ACTIONS(607), - [anon_sym_str] = ACTIONS(607), - [anon_sym_char] = ACTIONS(607), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_SLASH] = ACTIONS(619), - [anon_sym_PERCENT] = ACTIONS(619), - [anon_sym_CARET] = ACTIONS(619), - [anon_sym_BANG] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(619), - [anon_sym_AMP_AMP] = ACTIONS(609), - [anon_sym_PIPE_PIPE] = ACTIONS(609), - [anon_sym_LT_LT] = ACTIONS(619), - [anon_sym_GT_GT] = ACTIONS(619), - [anon_sym_PLUS_EQ] = ACTIONS(609), - [anon_sym_DASH_EQ] = ACTIONS(609), - [anon_sym_STAR_EQ] = ACTIONS(609), - [anon_sym_SLASH_EQ] = ACTIONS(609), - [anon_sym_PERCENT_EQ] = ACTIONS(609), - [anon_sym_CARET_EQ] = ACTIONS(609), - [anon_sym_AMP_EQ] = ACTIONS(609), - [anon_sym_PIPE_EQ] = ACTIONS(609), - [anon_sym_LT_LT_EQ] = ACTIONS(609), - [anon_sym_GT_GT_EQ] = ACTIONS(609), - [anon_sym_EQ] = ACTIONS(619), - [anon_sym_EQ_EQ] = ACTIONS(609), - [anon_sym_BANG_EQ] = ACTIONS(609), - [anon_sym_GT] = ACTIONS(619), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_GT_EQ] = ACTIONS(609), - [anon_sym_LT_EQ] = ACTIONS(609), - [anon_sym_AT] = ACTIONS(609), - [anon_sym__] = ACTIONS(619), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_DOT_DOT] = ACTIONS(619), - [anon_sym_DOT_DOT_DOT] = ACTIONS(609), - [anon_sym_DOT_DOT_EQ] = ACTIONS(609), - [anon_sym_COMMA] = ACTIONS(609), - [anon_sym_COLON_COLON] = ACTIONS(609), - [anon_sym_DASH_GT] = ACTIONS(609), - [anon_sym_POUND] = ACTIONS(609), - [anon_sym_SQUOTE] = ACTIONS(607), - [anon_sym_as] = ACTIONS(607), - [anon_sym_async] = ACTIONS(607), - [anon_sym_await] = ACTIONS(607), - [anon_sym_break] = ACTIONS(607), - [anon_sym_const] = ACTIONS(607), - [anon_sym_continue] = ACTIONS(607), - [anon_sym_default] = ACTIONS(607), - [anon_sym_enum] = ACTIONS(607), - [anon_sym_fn] = ACTIONS(607), - [anon_sym_for] = ACTIONS(607), - [anon_sym_gen] = ACTIONS(607), - [anon_sym_if] = ACTIONS(607), - [anon_sym_impl] = ACTIONS(607), - [anon_sym_let] = ACTIONS(607), - [anon_sym_loop] = ACTIONS(607), - [anon_sym_match] = ACTIONS(607), - [anon_sym_mod] = ACTIONS(607), - [anon_sym_pub] = ACTIONS(607), - [anon_sym_return] = ACTIONS(607), - [anon_sym_static] = ACTIONS(607), - [anon_sym_struct] = ACTIONS(607), - [anon_sym_trait] = ACTIONS(607), - [anon_sym_type] = ACTIONS(607), - [anon_sym_union] = ACTIONS(607), - [anon_sym_unsafe] = ACTIONS(607), - [anon_sym_use] = ACTIONS(607), - [anon_sym_where] = ACTIONS(607), - [anon_sym_while] = ACTIONS(607), - [sym_mutable_specifier] = ACTIONS(607), - [sym_integer_literal] = ACTIONS(623), - [aux_sym_string_literal_token1] = ACTIONS(625), - [sym_char_literal] = ACTIONS(623), - [anon_sym_true] = ACTIONS(627), - [anon_sym_false] = ACTIONS(627), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(607), - [sym_super] = ACTIONS(607), - [sym_crate] = ACTIONS(607), - [sym_metavariable] = ACTIONS(629), - [sym__raw_string_literal_start] = ACTIONS(631), - [sym_float_literal] = ACTIONS(623), + [aux_sym_token_tree_pattern_repeat1] = STATE(78), + [aux_sym__non_special_token_repeat1] = STATE(135), + [sym_identifier] = ACTIONS(574), + [anon_sym_SEMI] = ACTIONS(576), + [anon_sym_LPAREN] = ACTIONS(578), + [anon_sym_LBRACK] = ACTIONS(582), + [anon_sym_RBRACK] = ACTIONS(600), + [anon_sym_LBRACE] = ACTIONS(584), + [anon_sym_EQ_GT] = ACTIONS(576), + [anon_sym_COLON] = ACTIONS(586), + [anon_sym_DOLLAR] = ACTIONS(588), + [anon_sym_PLUS] = ACTIONS(586), + [anon_sym_STAR] = ACTIONS(586), + [anon_sym_QMARK] = ACTIONS(576), + [anon_sym_u8] = ACTIONS(574), + [anon_sym_i8] = ACTIONS(574), + [anon_sym_u16] = ACTIONS(574), + [anon_sym_i16] = ACTIONS(574), + [anon_sym_u32] = ACTIONS(574), + [anon_sym_i32] = ACTIONS(574), + [anon_sym_u64] = ACTIONS(574), + [anon_sym_i64] = ACTIONS(574), + [anon_sym_u128] = ACTIONS(574), + [anon_sym_i128] = ACTIONS(574), + [anon_sym_isize] = ACTIONS(574), + [anon_sym_usize] = ACTIONS(574), + [anon_sym_f32] = ACTIONS(574), + [anon_sym_f64] = ACTIONS(574), + [anon_sym_bool] = ACTIONS(574), + [anon_sym_str] = ACTIONS(574), + [anon_sym_char] = ACTIONS(574), + [anon_sym_DASH] = ACTIONS(586), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_PERCENT] = ACTIONS(586), + [anon_sym_CARET] = ACTIONS(586), + [anon_sym_BANG] = ACTIONS(586), + [anon_sym_AMP] = ACTIONS(586), + [anon_sym_PIPE] = ACTIONS(586), + [anon_sym_AMP_AMP] = ACTIONS(576), + [anon_sym_PIPE_PIPE] = ACTIONS(576), + [anon_sym_LT_LT] = ACTIONS(586), + [anon_sym_GT_GT] = ACTIONS(586), + [anon_sym_PLUS_EQ] = ACTIONS(576), + [anon_sym_DASH_EQ] = ACTIONS(576), + [anon_sym_STAR_EQ] = ACTIONS(576), + [anon_sym_SLASH_EQ] = ACTIONS(576), + [anon_sym_PERCENT_EQ] = ACTIONS(576), + [anon_sym_CARET_EQ] = ACTIONS(576), + [anon_sym_AMP_EQ] = ACTIONS(576), + [anon_sym_PIPE_EQ] = ACTIONS(576), + [anon_sym_LT_LT_EQ] = ACTIONS(576), + [anon_sym_GT_GT_EQ] = ACTIONS(576), + [anon_sym_EQ] = ACTIONS(586), + [anon_sym_EQ_EQ] = ACTIONS(576), + [anon_sym_BANG_EQ] = ACTIONS(576), + [anon_sym_GT] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(586), + [anon_sym_GT_EQ] = ACTIONS(576), + [anon_sym_LT_EQ] = ACTIONS(576), + [anon_sym_AT] = ACTIONS(576), + [anon_sym__] = ACTIONS(586), + [anon_sym_DOT] = ACTIONS(586), + [anon_sym_DOT_DOT] = ACTIONS(586), + [anon_sym_DOT_DOT_DOT] = ACTIONS(576), + [anon_sym_DOT_DOT_EQ] = ACTIONS(576), + [anon_sym_COMMA] = ACTIONS(576), + [anon_sym_COLON_COLON] = ACTIONS(576), + [anon_sym_DASH_GT] = ACTIONS(576), + [anon_sym_POUND] = ACTIONS(576), + [anon_sym_SQUOTE] = ACTIONS(574), + [anon_sym_as] = ACTIONS(574), + [anon_sym_async] = ACTIONS(574), + [anon_sym_await] = ACTIONS(574), + [anon_sym_break] = ACTIONS(574), + [anon_sym_const] = ACTIONS(574), + [anon_sym_continue] = ACTIONS(574), + [anon_sym_default] = ACTIONS(574), + [anon_sym_enum] = ACTIONS(574), + [anon_sym_fn] = ACTIONS(574), + [anon_sym_for] = ACTIONS(574), + [anon_sym_gen] = ACTIONS(574), + [anon_sym_if] = ACTIONS(574), + [anon_sym_impl] = ACTIONS(574), + [anon_sym_let] = ACTIONS(574), + [anon_sym_loop] = ACTIONS(574), + [anon_sym_match] = ACTIONS(574), + [anon_sym_mod] = ACTIONS(574), + [anon_sym_pub] = ACTIONS(574), + [anon_sym_return] = ACTIONS(574), + [anon_sym_static] = ACTIONS(574), + [anon_sym_struct] = ACTIONS(574), + [anon_sym_trait] = ACTIONS(574), + [anon_sym_type] = ACTIONS(574), + [anon_sym_union] = ACTIONS(574), + [anon_sym_unsafe] = ACTIONS(574), + [anon_sym_use] = ACTIONS(574), + [anon_sym_where] = ACTIONS(574), + [anon_sym_while] = ACTIONS(574), + [sym_mutable_specifier] = ACTIONS(574), + [sym_integer_literal] = ACTIONS(590), + [aux_sym_string_literal_token1] = ACTIONS(592), + [sym_char_literal] = ACTIONS(590), + [anon_sym_true] = ACTIONS(594), + [anon_sym_false] = ACTIONS(594), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(574), + [sym_super] = ACTIONS(574), + [sym_crate] = ACTIONS(574), + [sym_metavariable] = ACTIONS(596), + [sym__raw_string_literal_start] = ACTIONS(598), + [sym_float_literal] = ACTIONS(590), }, [STATE(72)] = { - [sym__token_pattern] = STATE(156), - [sym_token_tree_pattern] = STATE(154), - [sym_token_binding_pattern] = STATE(154), - [sym_token_repetition_pattern] = STATE(154), - [sym__literal] = STATE(154), - [sym_string_literal] = STATE(183), - [sym_raw_string_literal] = STATE(183), - [sym_boolean_literal] = STATE(183), + [sym__token_pattern] = STATE(158), + [sym_token_tree_pattern] = STATE(153), + [sym_token_binding_pattern] = STATE(153), + [sym_token_repetition_pattern] = STATE(153), + [sym__literal] = STATE(153), + [sym_string_literal] = STATE(184), + [sym_raw_string_literal] = STATE(184), + [sym_boolean_literal] = STATE(184), [sym_line_comment] = STATE(72), [sym_block_comment] = STATE(72), - [aux_sym_token_tree_pattern_repeat1] = STATE(76), - [aux_sym__non_special_token_repeat1] = STATE(140), - [sym_identifier] = ACTIONS(607), - [anon_sym_SEMI] = ACTIONS(609), - [anon_sym_LPAREN] = ACTIONS(611), - [anon_sym_RPAREN] = ACTIONS(637), - [anon_sym_LBRACK] = ACTIONS(615), - [anon_sym_LBRACE] = ACTIONS(617), - [anon_sym_EQ_GT] = ACTIONS(609), - [anon_sym_COLON] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_STAR] = ACTIONS(619), - [anon_sym_QMARK] = ACTIONS(609), - [anon_sym_u8] = ACTIONS(607), - [anon_sym_i8] = ACTIONS(607), - [anon_sym_u16] = ACTIONS(607), - [anon_sym_i16] = ACTIONS(607), - [anon_sym_u32] = ACTIONS(607), - [anon_sym_i32] = ACTIONS(607), - [anon_sym_u64] = ACTIONS(607), - [anon_sym_i64] = ACTIONS(607), - [anon_sym_u128] = ACTIONS(607), - [anon_sym_i128] = ACTIONS(607), - [anon_sym_isize] = ACTIONS(607), - [anon_sym_usize] = ACTIONS(607), - [anon_sym_f32] = ACTIONS(607), - [anon_sym_f64] = ACTIONS(607), - [anon_sym_bool] = ACTIONS(607), - [anon_sym_str] = ACTIONS(607), - [anon_sym_char] = ACTIONS(607), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_SLASH] = ACTIONS(619), - [anon_sym_PERCENT] = ACTIONS(619), - [anon_sym_CARET] = ACTIONS(619), - [anon_sym_BANG] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(619), - [anon_sym_AMP_AMP] = ACTIONS(609), - [anon_sym_PIPE_PIPE] = ACTIONS(609), - [anon_sym_LT_LT] = ACTIONS(619), - [anon_sym_GT_GT] = ACTIONS(619), - [anon_sym_PLUS_EQ] = ACTIONS(609), - [anon_sym_DASH_EQ] = ACTIONS(609), - [anon_sym_STAR_EQ] = ACTIONS(609), - [anon_sym_SLASH_EQ] = ACTIONS(609), - [anon_sym_PERCENT_EQ] = ACTIONS(609), - [anon_sym_CARET_EQ] = ACTIONS(609), - [anon_sym_AMP_EQ] = ACTIONS(609), - [anon_sym_PIPE_EQ] = ACTIONS(609), - [anon_sym_LT_LT_EQ] = ACTIONS(609), - [anon_sym_GT_GT_EQ] = ACTIONS(609), - [anon_sym_EQ] = ACTIONS(619), - [anon_sym_EQ_EQ] = ACTIONS(609), - [anon_sym_BANG_EQ] = ACTIONS(609), - [anon_sym_GT] = ACTIONS(619), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_GT_EQ] = ACTIONS(609), - [anon_sym_LT_EQ] = ACTIONS(609), - [anon_sym_AT] = ACTIONS(609), - [anon_sym__] = ACTIONS(619), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_DOT_DOT] = ACTIONS(619), - [anon_sym_DOT_DOT_DOT] = ACTIONS(609), - [anon_sym_DOT_DOT_EQ] = ACTIONS(609), - [anon_sym_COMMA] = ACTIONS(609), - [anon_sym_COLON_COLON] = ACTIONS(609), - [anon_sym_DASH_GT] = ACTIONS(609), - [anon_sym_POUND] = ACTIONS(609), - [anon_sym_SQUOTE] = ACTIONS(607), - [anon_sym_as] = ACTIONS(607), - [anon_sym_async] = ACTIONS(607), - [anon_sym_await] = ACTIONS(607), - [anon_sym_break] = ACTIONS(607), - [anon_sym_const] = ACTIONS(607), - [anon_sym_continue] = ACTIONS(607), - [anon_sym_default] = ACTIONS(607), - [anon_sym_enum] = ACTIONS(607), - [anon_sym_fn] = ACTIONS(607), - [anon_sym_for] = ACTIONS(607), - [anon_sym_gen] = ACTIONS(607), - [anon_sym_if] = ACTIONS(607), - [anon_sym_impl] = ACTIONS(607), - [anon_sym_let] = ACTIONS(607), - [anon_sym_loop] = ACTIONS(607), - [anon_sym_match] = ACTIONS(607), - [anon_sym_mod] = ACTIONS(607), - [anon_sym_pub] = ACTIONS(607), - [anon_sym_return] = ACTIONS(607), - [anon_sym_static] = ACTIONS(607), - [anon_sym_struct] = ACTIONS(607), - [anon_sym_trait] = ACTIONS(607), - [anon_sym_type] = ACTIONS(607), - [anon_sym_union] = ACTIONS(607), - [anon_sym_unsafe] = ACTIONS(607), - [anon_sym_use] = ACTIONS(607), - [anon_sym_where] = ACTIONS(607), - [anon_sym_while] = ACTIONS(607), - [sym_mutable_specifier] = ACTIONS(607), - [sym_integer_literal] = ACTIONS(623), - [aux_sym_string_literal_token1] = ACTIONS(625), - [sym_char_literal] = ACTIONS(623), - [anon_sym_true] = ACTIONS(627), - [anon_sym_false] = ACTIONS(627), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(607), - [sym_super] = ACTIONS(607), - [sym_crate] = ACTIONS(607), - [sym_metavariable] = ACTIONS(629), - [sym__raw_string_literal_start] = ACTIONS(631), - [sym_float_literal] = ACTIONS(623), + [aux_sym_token_tree_pattern_repeat1] = STATE(67), + [aux_sym__non_special_token_repeat1] = STATE(135), + [sym_identifier] = ACTIONS(574), + [anon_sym_SEMI] = ACTIONS(576), + [anon_sym_LPAREN] = ACTIONS(578), + [anon_sym_RPAREN] = ACTIONS(602), + [anon_sym_LBRACK] = ACTIONS(582), + [anon_sym_LBRACE] = ACTIONS(584), + [anon_sym_EQ_GT] = ACTIONS(576), + [anon_sym_COLON] = ACTIONS(586), + [anon_sym_DOLLAR] = ACTIONS(588), + [anon_sym_PLUS] = ACTIONS(586), + [anon_sym_STAR] = ACTIONS(586), + [anon_sym_QMARK] = ACTIONS(576), + [anon_sym_u8] = ACTIONS(574), + [anon_sym_i8] = ACTIONS(574), + [anon_sym_u16] = ACTIONS(574), + [anon_sym_i16] = ACTIONS(574), + [anon_sym_u32] = ACTIONS(574), + [anon_sym_i32] = ACTIONS(574), + [anon_sym_u64] = ACTIONS(574), + [anon_sym_i64] = ACTIONS(574), + [anon_sym_u128] = ACTIONS(574), + [anon_sym_i128] = ACTIONS(574), + [anon_sym_isize] = ACTIONS(574), + [anon_sym_usize] = ACTIONS(574), + [anon_sym_f32] = ACTIONS(574), + [anon_sym_f64] = ACTIONS(574), + [anon_sym_bool] = ACTIONS(574), + [anon_sym_str] = ACTIONS(574), + [anon_sym_char] = ACTIONS(574), + [anon_sym_DASH] = ACTIONS(586), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_PERCENT] = ACTIONS(586), + [anon_sym_CARET] = ACTIONS(586), + [anon_sym_BANG] = ACTIONS(586), + [anon_sym_AMP] = ACTIONS(586), + [anon_sym_PIPE] = ACTIONS(586), + [anon_sym_AMP_AMP] = ACTIONS(576), + [anon_sym_PIPE_PIPE] = ACTIONS(576), + [anon_sym_LT_LT] = ACTIONS(586), + [anon_sym_GT_GT] = ACTIONS(586), + [anon_sym_PLUS_EQ] = ACTIONS(576), + [anon_sym_DASH_EQ] = ACTIONS(576), + [anon_sym_STAR_EQ] = ACTIONS(576), + [anon_sym_SLASH_EQ] = ACTIONS(576), + [anon_sym_PERCENT_EQ] = ACTIONS(576), + [anon_sym_CARET_EQ] = ACTIONS(576), + [anon_sym_AMP_EQ] = ACTIONS(576), + [anon_sym_PIPE_EQ] = ACTIONS(576), + [anon_sym_LT_LT_EQ] = ACTIONS(576), + [anon_sym_GT_GT_EQ] = ACTIONS(576), + [anon_sym_EQ] = ACTIONS(586), + [anon_sym_EQ_EQ] = ACTIONS(576), + [anon_sym_BANG_EQ] = ACTIONS(576), + [anon_sym_GT] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(586), + [anon_sym_GT_EQ] = ACTIONS(576), + [anon_sym_LT_EQ] = ACTIONS(576), + [anon_sym_AT] = ACTIONS(576), + [anon_sym__] = ACTIONS(586), + [anon_sym_DOT] = ACTIONS(586), + [anon_sym_DOT_DOT] = ACTIONS(586), + [anon_sym_DOT_DOT_DOT] = ACTIONS(576), + [anon_sym_DOT_DOT_EQ] = ACTIONS(576), + [anon_sym_COMMA] = ACTIONS(576), + [anon_sym_COLON_COLON] = ACTIONS(576), + [anon_sym_DASH_GT] = ACTIONS(576), + [anon_sym_POUND] = ACTIONS(576), + [anon_sym_SQUOTE] = ACTIONS(574), + [anon_sym_as] = ACTIONS(574), + [anon_sym_async] = ACTIONS(574), + [anon_sym_await] = ACTIONS(574), + [anon_sym_break] = ACTIONS(574), + [anon_sym_const] = ACTIONS(574), + [anon_sym_continue] = ACTIONS(574), + [anon_sym_default] = ACTIONS(574), + [anon_sym_enum] = ACTIONS(574), + [anon_sym_fn] = ACTIONS(574), + [anon_sym_for] = ACTIONS(574), + [anon_sym_gen] = ACTIONS(574), + [anon_sym_if] = ACTIONS(574), + [anon_sym_impl] = ACTIONS(574), + [anon_sym_let] = ACTIONS(574), + [anon_sym_loop] = ACTIONS(574), + [anon_sym_match] = ACTIONS(574), + [anon_sym_mod] = ACTIONS(574), + [anon_sym_pub] = ACTIONS(574), + [anon_sym_return] = ACTIONS(574), + [anon_sym_static] = ACTIONS(574), + [anon_sym_struct] = ACTIONS(574), + [anon_sym_trait] = ACTIONS(574), + [anon_sym_type] = ACTIONS(574), + [anon_sym_union] = ACTIONS(574), + [anon_sym_unsafe] = ACTIONS(574), + [anon_sym_use] = ACTIONS(574), + [anon_sym_where] = ACTIONS(574), + [anon_sym_while] = ACTIONS(574), + [sym_mutable_specifier] = ACTIONS(574), + [sym_integer_literal] = ACTIONS(590), + [aux_sym_string_literal_token1] = ACTIONS(592), + [sym_char_literal] = ACTIONS(590), + [anon_sym_true] = ACTIONS(594), + [anon_sym_false] = ACTIONS(594), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(574), + [sym_super] = ACTIONS(574), + [sym_crate] = ACTIONS(574), + [sym_metavariable] = ACTIONS(596), + [sym__raw_string_literal_start] = ACTIONS(598), + [sym_float_literal] = ACTIONS(590), }, [STATE(73)] = { - [sym__token_pattern] = STATE(156), - [sym_token_tree_pattern] = STATE(154), - [sym_token_binding_pattern] = STATE(154), - [sym_token_repetition_pattern] = STATE(154), - [sym__literal] = STATE(154), - [sym_string_literal] = STATE(183), - [sym_raw_string_literal] = STATE(183), - [sym_boolean_literal] = STATE(183), + [sym__token_pattern] = STATE(158), + [sym_token_tree_pattern] = STATE(153), + [sym_token_binding_pattern] = STATE(153), + [sym_token_repetition_pattern] = STATE(153), + [sym__literal] = STATE(153), + [sym_string_literal] = STATE(184), + [sym_raw_string_literal] = STATE(184), + [sym_boolean_literal] = STATE(184), [sym_line_comment] = STATE(73), [sym_block_comment] = STATE(73), - [aux_sym_token_tree_pattern_repeat1] = STATE(77), - [aux_sym__non_special_token_repeat1] = STATE(140), - [sym_identifier] = ACTIONS(607), - [anon_sym_SEMI] = ACTIONS(609), - [anon_sym_LPAREN] = ACTIONS(611), - [anon_sym_LBRACK] = ACTIONS(615), - [anon_sym_RBRACK] = ACTIONS(637), - [anon_sym_LBRACE] = ACTIONS(617), - [anon_sym_EQ_GT] = ACTIONS(609), - [anon_sym_COLON] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_STAR] = ACTIONS(619), - [anon_sym_QMARK] = ACTIONS(609), - [anon_sym_u8] = ACTIONS(607), - [anon_sym_i8] = ACTIONS(607), - [anon_sym_u16] = ACTIONS(607), - [anon_sym_i16] = ACTIONS(607), - [anon_sym_u32] = ACTIONS(607), - [anon_sym_i32] = ACTIONS(607), - [anon_sym_u64] = ACTIONS(607), - [anon_sym_i64] = ACTIONS(607), - [anon_sym_u128] = ACTIONS(607), - [anon_sym_i128] = ACTIONS(607), - [anon_sym_isize] = ACTIONS(607), - [anon_sym_usize] = ACTIONS(607), - [anon_sym_f32] = ACTIONS(607), - [anon_sym_f64] = ACTIONS(607), - [anon_sym_bool] = ACTIONS(607), - [anon_sym_str] = ACTIONS(607), - [anon_sym_char] = ACTIONS(607), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_SLASH] = ACTIONS(619), - [anon_sym_PERCENT] = ACTIONS(619), - [anon_sym_CARET] = ACTIONS(619), - [anon_sym_BANG] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(619), - [anon_sym_AMP_AMP] = ACTIONS(609), - [anon_sym_PIPE_PIPE] = ACTIONS(609), - [anon_sym_LT_LT] = ACTIONS(619), - [anon_sym_GT_GT] = ACTIONS(619), - [anon_sym_PLUS_EQ] = ACTIONS(609), - [anon_sym_DASH_EQ] = ACTIONS(609), - [anon_sym_STAR_EQ] = ACTIONS(609), - [anon_sym_SLASH_EQ] = ACTIONS(609), - [anon_sym_PERCENT_EQ] = ACTIONS(609), - [anon_sym_CARET_EQ] = ACTIONS(609), - [anon_sym_AMP_EQ] = ACTIONS(609), - [anon_sym_PIPE_EQ] = ACTIONS(609), - [anon_sym_LT_LT_EQ] = ACTIONS(609), - [anon_sym_GT_GT_EQ] = ACTIONS(609), - [anon_sym_EQ] = ACTIONS(619), - [anon_sym_EQ_EQ] = ACTIONS(609), - [anon_sym_BANG_EQ] = ACTIONS(609), - [anon_sym_GT] = ACTIONS(619), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_GT_EQ] = ACTIONS(609), - [anon_sym_LT_EQ] = ACTIONS(609), - [anon_sym_AT] = ACTIONS(609), - [anon_sym__] = ACTIONS(619), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_DOT_DOT] = ACTIONS(619), - [anon_sym_DOT_DOT_DOT] = ACTIONS(609), - [anon_sym_DOT_DOT_EQ] = ACTIONS(609), - [anon_sym_COMMA] = ACTIONS(609), - [anon_sym_COLON_COLON] = ACTIONS(609), - [anon_sym_DASH_GT] = ACTIONS(609), - [anon_sym_POUND] = ACTIONS(609), - [anon_sym_SQUOTE] = ACTIONS(607), - [anon_sym_as] = ACTIONS(607), - [anon_sym_async] = ACTIONS(607), - [anon_sym_await] = ACTIONS(607), - [anon_sym_break] = ACTIONS(607), - [anon_sym_const] = ACTIONS(607), - [anon_sym_continue] = ACTIONS(607), - [anon_sym_default] = ACTIONS(607), - [anon_sym_enum] = ACTIONS(607), - [anon_sym_fn] = ACTIONS(607), - [anon_sym_for] = ACTIONS(607), - [anon_sym_gen] = ACTIONS(607), - [anon_sym_if] = ACTIONS(607), - [anon_sym_impl] = ACTIONS(607), - [anon_sym_let] = ACTIONS(607), - [anon_sym_loop] = ACTIONS(607), - [anon_sym_match] = ACTIONS(607), - [anon_sym_mod] = ACTIONS(607), - [anon_sym_pub] = ACTIONS(607), - [anon_sym_return] = ACTIONS(607), - [anon_sym_static] = ACTIONS(607), - [anon_sym_struct] = ACTIONS(607), - [anon_sym_trait] = ACTIONS(607), - [anon_sym_type] = ACTIONS(607), - [anon_sym_union] = ACTIONS(607), - [anon_sym_unsafe] = ACTIONS(607), - [anon_sym_use] = ACTIONS(607), - [anon_sym_where] = ACTIONS(607), - [anon_sym_while] = ACTIONS(607), - [sym_mutable_specifier] = ACTIONS(607), - [sym_integer_literal] = ACTIONS(623), - [aux_sym_string_literal_token1] = ACTIONS(625), - [sym_char_literal] = ACTIONS(623), - [anon_sym_true] = ACTIONS(627), - [anon_sym_false] = ACTIONS(627), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(607), - [sym_super] = ACTIONS(607), - [sym_crate] = ACTIONS(607), - [sym_metavariable] = ACTIONS(629), - [sym__raw_string_literal_start] = ACTIONS(631), - [sym_float_literal] = ACTIONS(623), + [aux_sym_token_tree_pattern_repeat1] = STATE(67), + [aux_sym__non_special_token_repeat1] = STATE(135), + [sym_identifier] = ACTIONS(574), + [anon_sym_SEMI] = ACTIONS(576), + [anon_sym_LPAREN] = ACTIONS(578), + [anon_sym_LBRACK] = ACTIONS(582), + [anon_sym_RBRACK] = ACTIONS(602), + [anon_sym_LBRACE] = ACTIONS(584), + [anon_sym_EQ_GT] = ACTIONS(576), + [anon_sym_COLON] = ACTIONS(586), + [anon_sym_DOLLAR] = ACTIONS(588), + [anon_sym_PLUS] = ACTIONS(586), + [anon_sym_STAR] = ACTIONS(586), + [anon_sym_QMARK] = ACTIONS(576), + [anon_sym_u8] = ACTIONS(574), + [anon_sym_i8] = ACTIONS(574), + [anon_sym_u16] = ACTIONS(574), + [anon_sym_i16] = ACTIONS(574), + [anon_sym_u32] = ACTIONS(574), + [anon_sym_i32] = ACTIONS(574), + [anon_sym_u64] = ACTIONS(574), + [anon_sym_i64] = ACTIONS(574), + [anon_sym_u128] = ACTIONS(574), + [anon_sym_i128] = ACTIONS(574), + [anon_sym_isize] = ACTIONS(574), + [anon_sym_usize] = ACTIONS(574), + [anon_sym_f32] = ACTIONS(574), + [anon_sym_f64] = ACTIONS(574), + [anon_sym_bool] = ACTIONS(574), + [anon_sym_str] = ACTIONS(574), + [anon_sym_char] = ACTIONS(574), + [anon_sym_DASH] = ACTIONS(586), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_PERCENT] = ACTIONS(586), + [anon_sym_CARET] = ACTIONS(586), + [anon_sym_BANG] = ACTIONS(586), + [anon_sym_AMP] = ACTIONS(586), + [anon_sym_PIPE] = ACTIONS(586), + [anon_sym_AMP_AMP] = ACTIONS(576), + [anon_sym_PIPE_PIPE] = ACTIONS(576), + [anon_sym_LT_LT] = ACTIONS(586), + [anon_sym_GT_GT] = ACTIONS(586), + [anon_sym_PLUS_EQ] = ACTIONS(576), + [anon_sym_DASH_EQ] = ACTIONS(576), + [anon_sym_STAR_EQ] = ACTIONS(576), + [anon_sym_SLASH_EQ] = ACTIONS(576), + [anon_sym_PERCENT_EQ] = ACTIONS(576), + [anon_sym_CARET_EQ] = ACTIONS(576), + [anon_sym_AMP_EQ] = ACTIONS(576), + [anon_sym_PIPE_EQ] = ACTIONS(576), + [anon_sym_LT_LT_EQ] = ACTIONS(576), + [anon_sym_GT_GT_EQ] = ACTIONS(576), + [anon_sym_EQ] = ACTIONS(586), + [anon_sym_EQ_EQ] = ACTIONS(576), + [anon_sym_BANG_EQ] = ACTIONS(576), + [anon_sym_GT] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(586), + [anon_sym_GT_EQ] = ACTIONS(576), + [anon_sym_LT_EQ] = ACTIONS(576), + [anon_sym_AT] = ACTIONS(576), + [anon_sym__] = ACTIONS(586), + [anon_sym_DOT] = ACTIONS(586), + [anon_sym_DOT_DOT] = ACTIONS(586), + [anon_sym_DOT_DOT_DOT] = ACTIONS(576), + [anon_sym_DOT_DOT_EQ] = ACTIONS(576), + [anon_sym_COMMA] = ACTIONS(576), + [anon_sym_COLON_COLON] = ACTIONS(576), + [anon_sym_DASH_GT] = ACTIONS(576), + [anon_sym_POUND] = ACTIONS(576), + [anon_sym_SQUOTE] = ACTIONS(574), + [anon_sym_as] = ACTIONS(574), + [anon_sym_async] = ACTIONS(574), + [anon_sym_await] = ACTIONS(574), + [anon_sym_break] = ACTIONS(574), + [anon_sym_const] = ACTIONS(574), + [anon_sym_continue] = ACTIONS(574), + [anon_sym_default] = ACTIONS(574), + [anon_sym_enum] = ACTIONS(574), + [anon_sym_fn] = ACTIONS(574), + [anon_sym_for] = ACTIONS(574), + [anon_sym_gen] = ACTIONS(574), + [anon_sym_if] = ACTIONS(574), + [anon_sym_impl] = ACTIONS(574), + [anon_sym_let] = ACTIONS(574), + [anon_sym_loop] = ACTIONS(574), + [anon_sym_match] = ACTIONS(574), + [anon_sym_mod] = ACTIONS(574), + [anon_sym_pub] = ACTIONS(574), + [anon_sym_return] = ACTIONS(574), + [anon_sym_static] = ACTIONS(574), + [anon_sym_struct] = ACTIONS(574), + [anon_sym_trait] = ACTIONS(574), + [anon_sym_type] = ACTIONS(574), + [anon_sym_union] = ACTIONS(574), + [anon_sym_unsafe] = ACTIONS(574), + [anon_sym_use] = ACTIONS(574), + [anon_sym_where] = ACTIONS(574), + [anon_sym_while] = ACTIONS(574), + [sym_mutable_specifier] = ACTIONS(574), + [sym_integer_literal] = ACTIONS(590), + [aux_sym_string_literal_token1] = ACTIONS(592), + [sym_char_literal] = ACTIONS(590), + [anon_sym_true] = ACTIONS(594), + [anon_sym_false] = ACTIONS(594), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(574), + [sym_super] = ACTIONS(574), + [sym_crate] = ACTIONS(574), + [sym_metavariable] = ACTIONS(596), + [sym__raw_string_literal_start] = ACTIONS(598), + [sym_float_literal] = ACTIONS(590), }, [STATE(74)] = { - [sym__token_pattern] = STATE(156), - [sym_token_tree_pattern] = STATE(154), - [sym_token_binding_pattern] = STATE(154), - [sym_token_repetition_pattern] = STATE(154), - [sym__literal] = STATE(154), - [sym_string_literal] = STATE(183), - [sym_raw_string_literal] = STATE(183), - [sym_boolean_literal] = STATE(183), + [sym__token_pattern] = STATE(158), + [sym_token_tree_pattern] = STATE(153), + [sym_token_binding_pattern] = STATE(153), + [sym_token_repetition_pattern] = STATE(153), + [sym__literal] = STATE(153), + [sym_string_literal] = STATE(184), + [sym_raw_string_literal] = STATE(184), + [sym_boolean_literal] = STATE(184), [sym_line_comment] = STATE(74), [sym_block_comment] = STATE(74), - [aux_sym_token_tree_pattern_repeat1] = STATE(78), - [aux_sym__non_special_token_repeat1] = STATE(140), - [sym_identifier] = ACTIONS(607), - [anon_sym_SEMI] = ACTIONS(609), - [anon_sym_LPAREN] = ACTIONS(611), - [anon_sym_LBRACK] = ACTIONS(615), - [anon_sym_LBRACE] = ACTIONS(617), - [anon_sym_RBRACE] = ACTIONS(637), - [anon_sym_EQ_GT] = ACTIONS(609), - [anon_sym_COLON] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_STAR] = ACTIONS(619), - [anon_sym_QMARK] = ACTIONS(609), - [anon_sym_u8] = ACTIONS(607), - [anon_sym_i8] = ACTIONS(607), - [anon_sym_u16] = ACTIONS(607), - [anon_sym_i16] = ACTIONS(607), - [anon_sym_u32] = ACTIONS(607), - [anon_sym_i32] = ACTIONS(607), - [anon_sym_u64] = ACTIONS(607), - [anon_sym_i64] = ACTIONS(607), - [anon_sym_u128] = ACTIONS(607), - [anon_sym_i128] = ACTIONS(607), - [anon_sym_isize] = ACTIONS(607), - [anon_sym_usize] = ACTIONS(607), - [anon_sym_f32] = ACTIONS(607), - [anon_sym_f64] = ACTIONS(607), - [anon_sym_bool] = ACTIONS(607), - [anon_sym_str] = ACTIONS(607), - [anon_sym_char] = ACTIONS(607), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_SLASH] = ACTIONS(619), - [anon_sym_PERCENT] = ACTIONS(619), - [anon_sym_CARET] = ACTIONS(619), - [anon_sym_BANG] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(619), - [anon_sym_AMP_AMP] = ACTIONS(609), - [anon_sym_PIPE_PIPE] = ACTIONS(609), - [anon_sym_LT_LT] = ACTIONS(619), - [anon_sym_GT_GT] = ACTIONS(619), - [anon_sym_PLUS_EQ] = ACTIONS(609), - [anon_sym_DASH_EQ] = ACTIONS(609), - [anon_sym_STAR_EQ] = ACTIONS(609), - [anon_sym_SLASH_EQ] = ACTIONS(609), - [anon_sym_PERCENT_EQ] = ACTIONS(609), - [anon_sym_CARET_EQ] = ACTIONS(609), - [anon_sym_AMP_EQ] = ACTIONS(609), - [anon_sym_PIPE_EQ] = ACTIONS(609), - [anon_sym_LT_LT_EQ] = ACTIONS(609), - [anon_sym_GT_GT_EQ] = ACTIONS(609), - [anon_sym_EQ] = ACTIONS(619), - [anon_sym_EQ_EQ] = ACTIONS(609), - [anon_sym_BANG_EQ] = ACTIONS(609), - [anon_sym_GT] = ACTIONS(619), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_GT_EQ] = ACTIONS(609), - [anon_sym_LT_EQ] = ACTIONS(609), - [anon_sym_AT] = ACTIONS(609), - [anon_sym__] = ACTIONS(619), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_DOT_DOT] = ACTIONS(619), - [anon_sym_DOT_DOT_DOT] = ACTIONS(609), - [anon_sym_DOT_DOT_EQ] = ACTIONS(609), - [anon_sym_COMMA] = ACTIONS(609), - [anon_sym_COLON_COLON] = ACTIONS(609), - [anon_sym_DASH_GT] = ACTIONS(609), - [anon_sym_POUND] = ACTIONS(609), - [anon_sym_SQUOTE] = ACTIONS(607), - [anon_sym_as] = ACTIONS(607), - [anon_sym_async] = ACTIONS(607), - [anon_sym_await] = ACTIONS(607), - [anon_sym_break] = ACTIONS(607), - [anon_sym_const] = ACTIONS(607), - [anon_sym_continue] = ACTIONS(607), - [anon_sym_default] = ACTIONS(607), - [anon_sym_enum] = ACTIONS(607), - [anon_sym_fn] = ACTIONS(607), - [anon_sym_for] = ACTIONS(607), - [anon_sym_gen] = ACTIONS(607), - [anon_sym_if] = ACTIONS(607), - [anon_sym_impl] = ACTIONS(607), - [anon_sym_let] = ACTIONS(607), - [anon_sym_loop] = ACTIONS(607), - [anon_sym_match] = ACTIONS(607), - [anon_sym_mod] = ACTIONS(607), - [anon_sym_pub] = ACTIONS(607), - [anon_sym_return] = ACTIONS(607), - [anon_sym_static] = ACTIONS(607), - [anon_sym_struct] = ACTIONS(607), - [anon_sym_trait] = ACTIONS(607), - [anon_sym_type] = ACTIONS(607), - [anon_sym_union] = ACTIONS(607), - [anon_sym_unsafe] = ACTIONS(607), - [anon_sym_use] = ACTIONS(607), - [anon_sym_where] = ACTIONS(607), - [anon_sym_while] = ACTIONS(607), - [sym_mutable_specifier] = ACTIONS(607), - [sym_integer_literal] = ACTIONS(623), - [aux_sym_string_literal_token1] = ACTIONS(625), - [sym_char_literal] = ACTIONS(623), - [anon_sym_true] = ACTIONS(627), - [anon_sym_false] = ACTIONS(627), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(607), - [sym_super] = ACTIONS(607), - [sym_crate] = ACTIONS(607), - [sym_metavariable] = ACTIONS(629), - [sym__raw_string_literal_start] = ACTIONS(631), - [sym_float_literal] = ACTIONS(623), + [aux_sym_token_tree_pattern_repeat1] = STATE(67), + [aux_sym__non_special_token_repeat1] = STATE(135), + [sym_identifier] = ACTIONS(574), + [anon_sym_SEMI] = ACTIONS(576), + [anon_sym_LPAREN] = ACTIONS(578), + [anon_sym_LBRACK] = ACTIONS(582), + [anon_sym_LBRACE] = ACTIONS(584), + [anon_sym_RBRACE] = ACTIONS(602), + [anon_sym_EQ_GT] = ACTIONS(576), + [anon_sym_COLON] = ACTIONS(586), + [anon_sym_DOLLAR] = ACTIONS(588), + [anon_sym_PLUS] = ACTIONS(586), + [anon_sym_STAR] = ACTIONS(586), + [anon_sym_QMARK] = ACTIONS(576), + [anon_sym_u8] = ACTIONS(574), + [anon_sym_i8] = ACTIONS(574), + [anon_sym_u16] = ACTIONS(574), + [anon_sym_i16] = ACTIONS(574), + [anon_sym_u32] = ACTIONS(574), + [anon_sym_i32] = ACTIONS(574), + [anon_sym_u64] = ACTIONS(574), + [anon_sym_i64] = ACTIONS(574), + [anon_sym_u128] = ACTIONS(574), + [anon_sym_i128] = ACTIONS(574), + [anon_sym_isize] = ACTIONS(574), + [anon_sym_usize] = ACTIONS(574), + [anon_sym_f32] = ACTIONS(574), + [anon_sym_f64] = ACTIONS(574), + [anon_sym_bool] = ACTIONS(574), + [anon_sym_str] = ACTIONS(574), + [anon_sym_char] = ACTIONS(574), + [anon_sym_DASH] = ACTIONS(586), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_PERCENT] = ACTIONS(586), + [anon_sym_CARET] = ACTIONS(586), + [anon_sym_BANG] = ACTIONS(586), + [anon_sym_AMP] = ACTIONS(586), + [anon_sym_PIPE] = ACTIONS(586), + [anon_sym_AMP_AMP] = ACTIONS(576), + [anon_sym_PIPE_PIPE] = ACTIONS(576), + [anon_sym_LT_LT] = ACTIONS(586), + [anon_sym_GT_GT] = ACTIONS(586), + [anon_sym_PLUS_EQ] = ACTIONS(576), + [anon_sym_DASH_EQ] = ACTIONS(576), + [anon_sym_STAR_EQ] = ACTIONS(576), + [anon_sym_SLASH_EQ] = ACTIONS(576), + [anon_sym_PERCENT_EQ] = ACTIONS(576), + [anon_sym_CARET_EQ] = ACTIONS(576), + [anon_sym_AMP_EQ] = ACTIONS(576), + [anon_sym_PIPE_EQ] = ACTIONS(576), + [anon_sym_LT_LT_EQ] = ACTIONS(576), + [anon_sym_GT_GT_EQ] = ACTIONS(576), + [anon_sym_EQ] = ACTIONS(586), + [anon_sym_EQ_EQ] = ACTIONS(576), + [anon_sym_BANG_EQ] = ACTIONS(576), + [anon_sym_GT] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(586), + [anon_sym_GT_EQ] = ACTIONS(576), + [anon_sym_LT_EQ] = ACTIONS(576), + [anon_sym_AT] = ACTIONS(576), + [anon_sym__] = ACTIONS(586), + [anon_sym_DOT] = ACTIONS(586), + [anon_sym_DOT_DOT] = ACTIONS(586), + [anon_sym_DOT_DOT_DOT] = ACTIONS(576), + [anon_sym_DOT_DOT_EQ] = ACTIONS(576), + [anon_sym_COMMA] = ACTIONS(576), + [anon_sym_COLON_COLON] = ACTIONS(576), + [anon_sym_DASH_GT] = ACTIONS(576), + [anon_sym_POUND] = ACTIONS(576), + [anon_sym_SQUOTE] = ACTIONS(574), + [anon_sym_as] = ACTIONS(574), + [anon_sym_async] = ACTIONS(574), + [anon_sym_await] = ACTIONS(574), + [anon_sym_break] = ACTIONS(574), + [anon_sym_const] = ACTIONS(574), + [anon_sym_continue] = ACTIONS(574), + [anon_sym_default] = ACTIONS(574), + [anon_sym_enum] = ACTIONS(574), + [anon_sym_fn] = ACTIONS(574), + [anon_sym_for] = ACTIONS(574), + [anon_sym_gen] = ACTIONS(574), + [anon_sym_if] = ACTIONS(574), + [anon_sym_impl] = ACTIONS(574), + [anon_sym_let] = ACTIONS(574), + [anon_sym_loop] = ACTIONS(574), + [anon_sym_match] = ACTIONS(574), + [anon_sym_mod] = ACTIONS(574), + [anon_sym_pub] = ACTIONS(574), + [anon_sym_return] = ACTIONS(574), + [anon_sym_static] = ACTIONS(574), + [anon_sym_struct] = ACTIONS(574), + [anon_sym_trait] = ACTIONS(574), + [anon_sym_type] = ACTIONS(574), + [anon_sym_union] = ACTIONS(574), + [anon_sym_unsafe] = ACTIONS(574), + [anon_sym_use] = ACTIONS(574), + [anon_sym_where] = ACTIONS(574), + [anon_sym_while] = ACTIONS(574), + [sym_mutable_specifier] = ACTIONS(574), + [sym_integer_literal] = ACTIONS(590), + [aux_sym_string_literal_token1] = ACTIONS(592), + [sym_char_literal] = ACTIONS(590), + [anon_sym_true] = ACTIONS(594), + [anon_sym_false] = ACTIONS(594), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(574), + [sym_super] = ACTIONS(574), + [sym_crate] = ACTIONS(574), + [sym_metavariable] = ACTIONS(596), + [sym__raw_string_literal_start] = ACTIONS(598), + [sym_float_literal] = ACTIONS(590), }, [STATE(75)] = { - [sym__token_pattern] = STATE(156), - [sym_token_tree_pattern] = STATE(154), - [sym_token_binding_pattern] = STATE(154), - [sym_token_repetition_pattern] = STATE(154), - [sym__literal] = STATE(154), - [sym_string_literal] = STATE(183), - [sym_raw_string_literal] = STATE(183), - [sym_boolean_literal] = STATE(183), + [sym__token_pattern] = STATE(158), + [sym_token_tree_pattern] = STATE(153), + [sym_token_binding_pattern] = STATE(153), + [sym_token_repetition_pattern] = STATE(153), + [sym__literal] = STATE(153), + [sym_string_literal] = STATE(184), + [sym_raw_string_literal] = STATE(184), + [sym_boolean_literal] = STATE(184), [sym_line_comment] = STATE(75), [sym_block_comment] = STATE(75), - [aux_sym_token_tree_pattern_repeat1] = STATE(82), - [aux_sym__non_special_token_repeat1] = STATE(140), - [sym_identifier] = ACTIONS(607), - [anon_sym_SEMI] = ACTIONS(609), - [anon_sym_LPAREN] = ACTIONS(611), - [anon_sym_LBRACK] = ACTIONS(615), - [anon_sym_LBRACE] = ACTIONS(617), - [anon_sym_RBRACE] = ACTIONS(633), - [anon_sym_EQ_GT] = ACTIONS(609), - [anon_sym_COLON] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_STAR] = ACTIONS(619), - [anon_sym_QMARK] = ACTIONS(609), - [anon_sym_u8] = ACTIONS(607), - [anon_sym_i8] = ACTIONS(607), - [anon_sym_u16] = ACTIONS(607), - [anon_sym_i16] = ACTIONS(607), - [anon_sym_u32] = ACTIONS(607), - [anon_sym_i32] = ACTIONS(607), - [anon_sym_u64] = ACTIONS(607), - [anon_sym_i64] = ACTIONS(607), - [anon_sym_u128] = ACTIONS(607), - [anon_sym_i128] = ACTIONS(607), - [anon_sym_isize] = ACTIONS(607), - [anon_sym_usize] = ACTIONS(607), - [anon_sym_f32] = ACTIONS(607), - [anon_sym_f64] = ACTIONS(607), - [anon_sym_bool] = ACTIONS(607), - [anon_sym_str] = ACTIONS(607), - [anon_sym_char] = ACTIONS(607), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_SLASH] = ACTIONS(619), - [anon_sym_PERCENT] = ACTIONS(619), - [anon_sym_CARET] = ACTIONS(619), - [anon_sym_BANG] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(619), - [anon_sym_AMP_AMP] = ACTIONS(609), - [anon_sym_PIPE_PIPE] = ACTIONS(609), - [anon_sym_LT_LT] = ACTIONS(619), - [anon_sym_GT_GT] = ACTIONS(619), - [anon_sym_PLUS_EQ] = ACTIONS(609), - [anon_sym_DASH_EQ] = ACTIONS(609), - [anon_sym_STAR_EQ] = ACTIONS(609), - [anon_sym_SLASH_EQ] = ACTIONS(609), - [anon_sym_PERCENT_EQ] = ACTIONS(609), - [anon_sym_CARET_EQ] = ACTIONS(609), - [anon_sym_AMP_EQ] = ACTIONS(609), - [anon_sym_PIPE_EQ] = ACTIONS(609), - [anon_sym_LT_LT_EQ] = ACTIONS(609), - [anon_sym_GT_GT_EQ] = ACTIONS(609), - [anon_sym_EQ] = ACTIONS(619), - [anon_sym_EQ_EQ] = ACTIONS(609), - [anon_sym_BANG_EQ] = ACTIONS(609), - [anon_sym_GT] = ACTIONS(619), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_GT_EQ] = ACTIONS(609), - [anon_sym_LT_EQ] = ACTIONS(609), - [anon_sym_AT] = ACTIONS(609), - [anon_sym__] = ACTIONS(619), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_DOT_DOT] = ACTIONS(619), - [anon_sym_DOT_DOT_DOT] = ACTIONS(609), - [anon_sym_DOT_DOT_EQ] = ACTIONS(609), - [anon_sym_COMMA] = ACTIONS(609), - [anon_sym_COLON_COLON] = ACTIONS(609), - [anon_sym_DASH_GT] = ACTIONS(609), - [anon_sym_POUND] = ACTIONS(609), - [anon_sym_SQUOTE] = ACTIONS(607), - [anon_sym_as] = ACTIONS(607), - [anon_sym_async] = ACTIONS(607), - [anon_sym_await] = ACTIONS(607), - [anon_sym_break] = ACTIONS(607), - [anon_sym_const] = ACTIONS(607), - [anon_sym_continue] = ACTIONS(607), - [anon_sym_default] = ACTIONS(607), - [anon_sym_enum] = ACTIONS(607), - [anon_sym_fn] = ACTIONS(607), - [anon_sym_for] = ACTIONS(607), - [anon_sym_gen] = ACTIONS(607), - [anon_sym_if] = ACTIONS(607), - [anon_sym_impl] = ACTIONS(607), - [anon_sym_let] = ACTIONS(607), - [anon_sym_loop] = ACTIONS(607), - [anon_sym_match] = ACTIONS(607), - [anon_sym_mod] = ACTIONS(607), - [anon_sym_pub] = ACTIONS(607), - [anon_sym_return] = ACTIONS(607), - [anon_sym_static] = ACTIONS(607), - [anon_sym_struct] = ACTIONS(607), - [anon_sym_trait] = ACTIONS(607), - [anon_sym_type] = ACTIONS(607), - [anon_sym_union] = ACTIONS(607), - [anon_sym_unsafe] = ACTIONS(607), - [anon_sym_use] = ACTIONS(607), - [anon_sym_where] = ACTIONS(607), - [anon_sym_while] = ACTIONS(607), - [sym_mutable_specifier] = ACTIONS(607), - [sym_integer_literal] = ACTIONS(623), - [aux_sym_string_literal_token1] = ACTIONS(625), - [sym_char_literal] = ACTIONS(623), - [anon_sym_true] = ACTIONS(627), - [anon_sym_false] = ACTIONS(627), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(607), - [sym_super] = ACTIONS(607), - [sym_crate] = ACTIONS(607), - [sym_metavariable] = ACTIONS(629), - [sym__raw_string_literal_start] = ACTIONS(631), - [sym_float_literal] = ACTIONS(623), + [aux_sym_token_tree_pattern_repeat1] = STATE(79), + [aux_sym__non_special_token_repeat1] = STATE(135), + [sym_identifier] = ACTIONS(574), + [anon_sym_SEMI] = ACTIONS(576), + [anon_sym_LPAREN] = ACTIONS(578), + [anon_sym_LBRACK] = ACTIONS(582), + [anon_sym_LBRACE] = ACTIONS(584), + [anon_sym_RBRACE] = ACTIONS(600), + [anon_sym_EQ_GT] = ACTIONS(576), + [anon_sym_COLON] = ACTIONS(586), + [anon_sym_DOLLAR] = ACTIONS(588), + [anon_sym_PLUS] = ACTIONS(586), + [anon_sym_STAR] = ACTIONS(586), + [anon_sym_QMARK] = ACTIONS(576), + [anon_sym_u8] = ACTIONS(574), + [anon_sym_i8] = ACTIONS(574), + [anon_sym_u16] = ACTIONS(574), + [anon_sym_i16] = ACTIONS(574), + [anon_sym_u32] = ACTIONS(574), + [anon_sym_i32] = ACTIONS(574), + [anon_sym_u64] = ACTIONS(574), + [anon_sym_i64] = ACTIONS(574), + [anon_sym_u128] = ACTIONS(574), + [anon_sym_i128] = ACTIONS(574), + [anon_sym_isize] = ACTIONS(574), + [anon_sym_usize] = ACTIONS(574), + [anon_sym_f32] = ACTIONS(574), + [anon_sym_f64] = ACTIONS(574), + [anon_sym_bool] = ACTIONS(574), + [anon_sym_str] = ACTIONS(574), + [anon_sym_char] = ACTIONS(574), + [anon_sym_DASH] = ACTIONS(586), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_PERCENT] = ACTIONS(586), + [anon_sym_CARET] = ACTIONS(586), + [anon_sym_BANG] = ACTIONS(586), + [anon_sym_AMP] = ACTIONS(586), + [anon_sym_PIPE] = ACTIONS(586), + [anon_sym_AMP_AMP] = ACTIONS(576), + [anon_sym_PIPE_PIPE] = ACTIONS(576), + [anon_sym_LT_LT] = ACTIONS(586), + [anon_sym_GT_GT] = ACTIONS(586), + [anon_sym_PLUS_EQ] = ACTIONS(576), + [anon_sym_DASH_EQ] = ACTIONS(576), + [anon_sym_STAR_EQ] = ACTIONS(576), + [anon_sym_SLASH_EQ] = ACTIONS(576), + [anon_sym_PERCENT_EQ] = ACTIONS(576), + [anon_sym_CARET_EQ] = ACTIONS(576), + [anon_sym_AMP_EQ] = ACTIONS(576), + [anon_sym_PIPE_EQ] = ACTIONS(576), + [anon_sym_LT_LT_EQ] = ACTIONS(576), + [anon_sym_GT_GT_EQ] = ACTIONS(576), + [anon_sym_EQ] = ACTIONS(586), + [anon_sym_EQ_EQ] = ACTIONS(576), + [anon_sym_BANG_EQ] = ACTIONS(576), + [anon_sym_GT] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(586), + [anon_sym_GT_EQ] = ACTIONS(576), + [anon_sym_LT_EQ] = ACTIONS(576), + [anon_sym_AT] = ACTIONS(576), + [anon_sym__] = ACTIONS(586), + [anon_sym_DOT] = ACTIONS(586), + [anon_sym_DOT_DOT] = ACTIONS(586), + [anon_sym_DOT_DOT_DOT] = ACTIONS(576), + [anon_sym_DOT_DOT_EQ] = ACTIONS(576), + [anon_sym_COMMA] = ACTIONS(576), + [anon_sym_COLON_COLON] = ACTIONS(576), + [anon_sym_DASH_GT] = ACTIONS(576), + [anon_sym_POUND] = ACTIONS(576), + [anon_sym_SQUOTE] = ACTIONS(574), + [anon_sym_as] = ACTIONS(574), + [anon_sym_async] = ACTIONS(574), + [anon_sym_await] = ACTIONS(574), + [anon_sym_break] = ACTIONS(574), + [anon_sym_const] = ACTIONS(574), + [anon_sym_continue] = ACTIONS(574), + [anon_sym_default] = ACTIONS(574), + [anon_sym_enum] = ACTIONS(574), + [anon_sym_fn] = ACTIONS(574), + [anon_sym_for] = ACTIONS(574), + [anon_sym_gen] = ACTIONS(574), + [anon_sym_if] = ACTIONS(574), + [anon_sym_impl] = ACTIONS(574), + [anon_sym_let] = ACTIONS(574), + [anon_sym_loop] = ACTIONS(574), + [anon_sym_match] = ACTIONS(574), + [anon_sym_mod] = ACTIONS(574), + [anon_sym_pub] = ACTIONS(574), + [anon_sym_return] = ACTIONS(574), + [anon_sym_static] = ACTIONS(574), + [anon_sym_struct] = ACTIONS(574), + [anon_sym_trait] = ACTIONS(574), + [anon_sym_type] = ACTIONS(574), + [anon_sym_union] = ACTIONS(574), + [anon_sym_unsafe] = ACTIONS(574), + [anon_sym_use] = ACTIONS(574), + [anon_sym_where] = ACTIONS(574), + [anon_sym_while] = ACTIONS(574), + [sym_mutable_specifier] = ACTIONS(574), + [sym_integer_literal] = ACTIONS(590), + [aux_sym_string_literal_token1] = ACTIONS(592), + [sym_char_literal] = ACTIONS(590), + [anon_sym_true] = ACTIONS(594), + [anon_sym_false] = ACTIONS(594), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(574), + [sym_super] = ACTIONS(574), + [sym_crate] = ACTIONS(574), + [sym_metavariable] = ACTIONS(596), + [sym__raw_string_literal_start] = ACTIONS(598), + [sym_float_literal] = ACTIONS(590), }, [STATE(76)] = { - [sym__token_pattern] = STATE(156), - [sym_token_tree_pattern] = STATE(154), - [sym_token_binding_pattern] = STATE(154), - [sym_token_repetition_pattern] = STATE(154), - [sym__literal] = STATE(154), - [sym_string_literal] = STATE(183), - [sym_raw_string_literal] = STATE(183), - [sym_boolean_literal] = STATE(183), + [sym__token_pattern] = STATE(158), + [sym_token_tree_pattern] = STATE(153), + [sym_token_binding_pattern] = STATE(153), + [sym_token_repetition_pattern] = STATE(153), + [sym__literal] = STATE(153), + [sym_string_literal] = STATE(184), + [sym_raw_string_literal] = STATE(184), + [sym_boolean_literal] = STATE(184), [sym_line_comment] = STATE(76), [sym_block_comment] = STATE(76), - [aux_sym_token_tree_pattern_repeat1] = STATE(67), - [aux_sym__non_special_token_repeat1] = STATE(140), - [sym_identifier] = ACTIONS(607), - [anon_sym_SEMI] = ACTIONS(609), - [anon_sym_LPAREN] = ACTIONS(611), - [anon_sym_RPAREN] = ACTIONS(639), - [anon_sym_LBRACK] = ACTIONS(615), - [anon_sym_LBRACE] = ACTIONS(617), - [anon_sym_EQ_GT] = ACTIONS(609), - [anon_sym_COLON] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_STAR] = ACTIONS(619), - [anon_sym_QMARK] = ACTIONS(609), - [anon_sym_u8] = ACTIONS(607), - [anon_sym_i8] = ACTIONS(607), - [anon_sym_u16] = ACTIONS(607), - [anon_sym_i16] = ACTIONS(607), - [anon_sym_u32] = ACTIONS(607), - [anon_sym_i32] = ACTIONS(607), - [anon_sym_u64] = ACTIONS(607), - [anon_sym_i64] = ACTIONS(607), - [anon_sym_u128] = ACTIONS(607), - [anon_sym_i128] = ACTIONS(607), - [anon_sym_isize] = ACTIONS(607), - [anon_sym_usize] = ACTIONS(607), - [anon_sym_f32] = ACTIONS(607), - [anon_sym_f64] = ACTIONS(607), - [anon_sym_bool] = ACTIONS(607), - [anon_sym_str] = ACTIONS(607), - [anon_sym_char] = ACTIONS(607), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_SLASH] = ACTIONS(619), - [anon_sym_PERCENT] = ACTIONS(619), - [anon_sym_CARET] = ACTIONS(619), - [anon_sym_BANG] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(619), - [anon_sym_AMP_AMP] = ACTIONS(609), - [anon_sym_PIPE_PIPE] = ACTIONS(609), - [anon_sym_LT_LT] = ACTIONS(619), - [anon_sym_GT_GT] = ACTIONS(619), - [anon_sym_PLUS_EQ] = ACTIONS(609), - [anon_sym_DASH_EQ] = ACTIONS(609), - [anon_sym_STAR_EQ] = ACTIONS(609), - [anon_sym_SLASH_EQ] = ACTIONS(609), - [anon_sym_PERCENT_EQ] = ACTIONS(609), - [anon_sym_CARET_EQ] = ACTIONS(609), - [anon_sym_AMP_EQ] = ACTIONS(609), - [anon_sym_PIPE_EQ] = ACTIONS(609), - [anon_sym_LT_LT_EQ] = ACTIONS(609), - [anon_sym_GT_GT_EQ] = ACTIONS(609), - [anon_sym_EQ] = ACTIONS(619), - [anon_sym_EQ_EQ] = ACTIONS(609), - [anon_sym_BANG_EQ] = ACTIONS(609), - [anon_sym_GT] = ACTIONS(619), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_GT_EQ] = ACTIONS(609), - [anon_sym_LT_EQ] = ACTIONS(609), - [anon_sym_AT] = ACTIONS(609), - [anon_sym__] = ACTIONS(619), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_DOT_DOT] = ACTIONS(619), - [anon_sym_DOT_DOT_DOT] = ACTIONS(609), - [anon_sym_DOT_DOT_EQ] = ACTIONS(609), - [anon_sym_COMMA] = ACTIONS(609), - [anon_sym_COLON_COLON] = ACTIONS(609), - [anon_sym_DASH_GT] = ACTIONS(609), - [anon_sym_POUND] = ACTIONS(609), - [anon_sym_SQUOTE] = ACTIONS(607), - [anon_sym_as] = ACTIONS(607), - [anon_sym_async] = ACTIONS(607), - [anon_sym_await] = ACTIONS(607), - [anon_sym_break] = ACTIONS(607), - [anon_sym_const] = ACTIONS(607), - [anon_sym_continue] = ACTIONS(607), - [anon_sym_default] = ACTIONS(607), - [anon_sym_enum] = ACTIONS(607), - [anon_sym_fn] = ACTIONS(607), - [anon_sym_for] = ACTIONS(607), - [anon_sym_gen] = ACTIONS(607), - [anon_sym_if] = ACTIONS(607), - [anon_sym_impl] = ACTIONS(607), - [anon_sym_let] = ACTIONS(607), - [anon_sym_loop] = ACTIONS(607), - [anon_sym_match] = ACTIONS(607), - [anon_sym_mod] = ACTIONS(607), - [anon_sym_pub] = ACTIONS(607), - [anon_sym_return] = ACTIONS(607), - [anon_sym_static] = ACTIONS(607), - [anon_sym_struct] = ACTIONS(607), - [anon_sym_trait] = ACTIONS(607), - [anon_sym_type] = ACTIONS(607), - [anon_sym_union] = ACTIONS(607), - [anon_sym_unsafe] = ACTIONS(607), - [anon_sym_use] = ACTIONS(607), - [anon_sym_where] = ACTIONS(607), - [anon_sym_while] = ACTIONS(607), - [sym_mutable_specifier] = ACTIONS(607), - [sym_integer_literal] = ACTIONS(623), - [aux_sym_string_literal_token1] = ACTIONS(625), - [sym_char_literal] = ACTIONS(623), - [anon_sym_true] = ACTIONS(627), - [anon_sym_false] = ACTIONS(627), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(607), - [sym_super] = ACTIONS(607), - [sym_crate] = ACTIONS(607), - [sym_metavariable] = ACTIONS(629), - [sym__raw_string_literal_start] = ACTIONS(631), - [sym_float_literal] = ACTIONS(623), + [aux_sym_token_tree_pattern_repeat1] = STATE(74), + [aux_sym__non_special_token_repeat1] = STATE(135), + [sym_identifier] = ACTIONS(574), + [anon_sym_SEMI] = ACTIONS(576), + [anon_sym_LPAREN] = ACTIONS(578), + [anon_sym_LBRACK] = ACTIONS(582), + [anon_sym_LBRACE] = ACTIONS(584), + [anon_sym_RBRACE] = ACTIONS(580), + [anon_sym_EQ_GT] = ACTIONS(576), + [anon_sym_COLON] = ACTIONS(586), + [anon_sym_DOLLAR] = ACTIONS(588), + [anon_sym_PLUS] = ACTIONS(586), + [anon_sym_STAR] = ACTIONS(586), + [anon_sym_QMARK] = ACTIONS(576), + [anon_sym_u8] = ACTIONS(574), + [anon_sym_i8] = ACTIONS(574), + [anon_sym_u16] = ACTIONS(574), + [anon_sym_i16] = ACTIONS(574), + [anon_sym_u32] = ACTIONS(574), + [anon_sym_i32] = ACTIONS(574), + [anon_sym_u64] = ACTIONS(574), + [anon_sym_i64] = ACTIONS(574), + [anon_sym_u128] = ACTIONS(574), + [anon_sym_i128] = ACTIONS(574), + [anon_sym_isize] = ACTIONS(574), + [anon_sym_usize] = ACTIONS(574), + [anon_sym_f32] = ACTIONS(574), + [anon_sym_f64] = ACTIONS(574), + [anon_sym_bool] = ACTIONS(574), + [anon_sym_str] = ACTIONS(574), + [anon_sym_char] = ACTIONS(574), + [anon_sym_DASH] = ACTIONS(586), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_PERCENT] = ACTIONS(586), + [anon_sym_CARET] = ACTIONS(586), + [anon_sym_BANG] = ACTIONS(586), + [anon_sym_AMP] = ACTIONS(586), + [anon_sym_PIPE] = ACTIONS(586), + [anon_sym_AMP_AMP] = ACTIONS(576), + [anon_sym_PIPE_PIPE] = ACTIONS(576), + [anon_sym_LT_LT] = ACTIONS(586), + [anon_sym_GT_GT] = ACTIONS(586), + [anon_sym_PLUS_EQ] = ACTIONS(576), + [anon_sym_DASH_EQ] = ACTIONS(576), + [anon_sym_STAR_EQ] = ACTIONS(576), + [anon_sym_SLASH_EQ] = ACTIONS(576), + [anon_sym_PERCENT_EQ] = ACTIONS(576), + [anon_sym_CARET_EQ] = ACTIONS(576), + [anon_sym_AMP_EQ] = ACTIONS(576), + [anon_sym_PIPE_EQ] = ACTIONS(576), + [anon_sym_LT_LT_EQ] = ACTIONS(576), + [anon_sym_GT_GT_EQ] = ACTIONS(576), + [anon_sym_EQ] = ACTIONS(586), + [anon_sym_EQ_EQ] = ACTIONS(576), + [anon_sym_BANG_EQ] = ACTIONS(576), + [anon_sym_GT] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(586), + [anon_sym_GT_EQ] = ACTIONS(576), + [anon_sym_LT_EQ] = ACTIONS(576), + [anon_sym_AT] = ACTIONS(576), + [anon_sym__] = ACTIONS(586), + [anon_sym_DOT] = ACTIONS(586), + [anon_sym_DOT_DOT] = ACTIONS(586), + [anon_sym_DOT_DOT_DOT] = ACTIONS(576), + [anon_sym_DOT_DOT_EQ] = ACTIONS(576), + [anon_sym_COMMA] = ACTIONS(576), + [anon_sym_COLON_COLON] = ACTIONS(576), + [anon_sym_DASH_GT] = ACTIONS(576), + [anon_sym_POUND] = ACTIONS(576), + [anon_sym_SQUOTE] = ACTIONS(574), + [anon_sym_as] = ACTIONS(574), + [anon_sym_async] = ACTIONS(574), + [anon_sym_await] = ACTIONS(574), + [anon_sym_break] = ACTIONS(574), + [anon_sym_const] = ACTIONS(574), + [anon_sym_continue] = ACTIONS(574), + [anon_sym_default] = ACTIONS(574), + [anon_sym_enum] = ACTIONS(574), + [anon_sym_fn] = ACTIONS(574), + [anon_sym_for] = ACTIONS(574), + [anon_sym_gen] = ACTIONS(574), + [anon_sym_if] = ACTIONS(574), + [anon_sym_impl] = ACTIONS(574), + [anon_sym_let] = ACTIONS(574), + [anon_sym_loop] = ACTIONS(574), + [anon_sym_match] = ACTIONS(574), + [anon_sym_mod] = ACTIONS(574), + [anon_sym_pub] = ACTIONS(574), + [anon_sym_return] = ACTIONS(574), + [anon_sym_static] = ACTIONS(574), + [anon_sym_struct] = ACTIONS(574), + [anon_sym_trait] = ACTIONS(574), + [anon_sym_type] = ACTIONS(574), + [anon_sym_union] = ACTIONS(574), + [anon_sym_unsafe] = ACTIONS(574), + [anon_sym_use] = ACTIONS(574), + [anon_sym_where] = ACTIONS(574), + [anon_sym_while] = ACTIONS(574), + [sym_mutable_specifier] = ACTIONS(574), + [sym_integer_literal] = ACTIONS(590), + [aux_sym_string_literal_token1] = ACTIONS(592), + [sym_char_literal] = ACTIONS(590), + [anon_sym_true] = ACTIONS(594), + [anon_sym_false] = ACTIONS(594), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(574), + [sym_super] = ACTIONS(574), + [sym_crate] = ACTIONS(574), + [sym_metavariable] = ACTIONS(596), + [sym__raw_string_literal_start] = ACTIONS(598), + [sym_float_literal] = ACTIONS(590), }, [STATE(77)] = { - [sym__token_pattern] = STATE(156), - [sym_token_tree_pattern] = STATE(154), - [sym_token_binding_pattern] = STATE(154), - [sym_token_repetition_pattern] = STATE(154), - [sym__literal] = STATE(154), - [sym_string_literal] = STATE(183), - [sym_raw_string_literal] = STATE(183), - [sym_boolean_literal] = STATE(183), + [sym__token_pattern] = STATE(158), + [sym_token_tree_pattern] = STATE(153), + [sym_token_binding_pattern] = STATE(153), + [sym_token_repetition_pattern] = STATE(153), + [sym__literal] = STATE(153), + [sym_string_literal] = STATE(184), + [sym_raw_string_literal] = STATE(184), + [sym_boolean_literal] = STATE(184), [sym_line_comment] = STATE(77), [sym_block_comment] = STATE(77), [aux_sym_token_tree_pattern_repeat1] = STATE(67), - [aux_sym__non_special_token_repeat1] = STATE(140), - [sym_identifier] = ACTIONS(607), - [anon_sym_SEMI] = ACTIONS(609), - [anon_sym_LPAREN] = ACTIONS(611), - [anon_sym_LBRACK] = ACTIONS(615), - [anon_sym_RBRACK] = ACTIONS(639), - [anon_sym_LBRACE] = ACTIONS(617), - [anon_sym_EQ_GT] = ACTIONS(609), - [anon_sym_COLON] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_STAR] = ACTIONS(619), - [anon_sym_QMARK] = ACTIONS(609), - [anon_sym_u8] = ACTIONS(607), - [anon_sym_i8] = ACTIONS(607), - [anon_sym_u16] = ACTIONS(607), - [anon_sym_i16] = ACTIONS(607), - [anon_sym_u32] = ACTIONS(607), - [anon_sym_i32] = ACTIONS(607), - [anon_sym_u64] = ACTIONS(607), - [anon_sym_i64] = ACTIONS(607), - [anon_sym_u128] = ACTIONS(607), - [anon_sym_i128] = ACTIONS(607), - [anon_sym_isize] = ACTIONS(607), - [anon_sym_usize] = ACTIONS(607), - [anon_sym_f32] = ACTIONS(607), - [anon_sym_f64] = ACTIONS(607), - [anon_sym_bool] = ACTIONS(607), - [anon_sym_str] = ACTIONS(607), - [anon_sym_char] = ACTIONS(607), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_SLASH] = ACTIONS(619), - [anon_sym_PERCENT] = ACTIONS(619), - [anon_sym_CARET] = ACTIONS(619), - [anon_sym_BANG] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(619), - [anon_sym_AMP_AMP] = ACTIONS(609), - [anon_sym_PIPE_PIPE] = ACTIONS(609), - [anon_sym_LT_LT] = ACTIONS(619), - [anon_sym_GT_GT] = ACTIONS(619), - [anon_sym_PLUS_EQ] = ACTIONS(609), - [anon_sym_DASH_EQ] = ACTIONS(609), - [anon_sym_STAR_EQ] = ACTIONS(609), - [anon_sym_SLASH_EQ] = ACTIONS(609), - [anon_sym_PERCENT_EQ] = ACTIONS(609), - [anon_sym_CARET_EQ] = ACTIONS(609), - [anon_sym_AMP_EQ] = ACTIONS(609), - [anon_sym_PIPE_EQ] = ACTIONS(609), - [anon_sym_LT_LT_EQ] = ACTIONS(609), - [anon_sym_GT_GT_EQ] = ACTIONS(609), - [anon_sym_EQ] = ACTIONS(619), - [anon_sym_EQ_EQ] = ACTIONS(609), - [anon_sym_BANG_EQ] = ACTIONS(609), - [anon_sym_GT] = ACTIONS(619), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_GT_EQ] = ACTIONS(609), - [anon_sym_LT_EQ] = ACTIONS(609), - [anon_sym_AT] = ACTIONS(609), - [anon_sym__] = ACTIONS(619), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_DOT_DOT] = ACTIONS(619), - [anon_sym_DOT_DOT_DOT] = ACTIONS(609), - [anon_sym_DOT_DOT_EQ] = ACTIONS(609), - [anon_sym_COMMA] = ACTIONS(609), - [anon_sym_COLON_COLON] = ACTIONS(609), - [anon_sym_DASH_GT] = ACTIONS(609), - [anon_sym_POUND] = ACTIONS(609), - [anon_sym_SQUOTE] = ACTIONS(607), - [anon_sym_as] = ACTIONS(607), - [anon_sym_async] = ACTIONS(607), - [anon_sym_await] = ACTIONS(607), - [anon_sym_break] = ACTIONS(607), - [anon_sym_const] = ACTIONS(607), - [anon_sym_continue] = ACTIONS(607), - [anon_sym_default] = ACTIONS(607), - [anon_sym_enum] = ACTIONS(607), - [anon_sym_fn] = ACTIONS(607), - [anon_sym_for] = ACTIONS(607), - [anon_sym_gen] = ACTIONS(607), - [anon_sym_if] = ACTIONS(607), - [anon_sym_impl] = ACTIONS(607), - [anon_sym_let] = ACTIONS(607), - [anon_sym_loop] = ACTIONS(607), - [anon_sym_match] = ACTIONS(607), - [anon_sym_mod] = ACTIONS(607), - [anon_sym_pub] = ACTIONS(607), - [anon_sym_return] = ACTIONS(607), - [anon_sym_static] = ACTIONS(607), - [anon_sym_struct] = ACTIONS(607), - [anon_sym_trait] = ACTIONS(607), - [anon_sym_type] = ACTIONS(607), - [anon_sym_union] = ACTIONS(607), - [anon_sym_unsafe] = ACTIONS(607), - [anon_sym_use] = ACTIONS(607), - [anon_sym_where] = ACTIONS(607), - [anon_sym_while] = ACTIONS(607), - [sym_mutable_specifier] = ACTIONS(607), - [sym_integer_literal] = ACTIONS(623), - [aux_sym_string_literal_token1] = ACTIONS(625), - [sym_char_literal] = ACTIONS(623), - [anon_sym_true] = ACTIONS(627), - [anon_sym_false] = ACTIONS(627), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(607), - [sym_super] = ACTIONS(607), - [sym_crate] = ACTIONS(607), - [sym_metavariable] = ACTIONS(629), - [sym__raw_string_literal_start] = ACTIONS(631), - [sym_float_literal] = ACTIONS(623), + [aux_sym__non_special_token_repeat1] = STATE(135), + [sym_identifier] = ACTIONS(574), + [anon_sym_SEMI] = ACTIONS(576), + [anon_sym_LPAREN] = ACTIONS(578), + [anon_sym_RPAREN] = ACTIONS(604), + [anon_sym_LBRACK] = ACTIONS(582), + [anon_sym_LBRACE] = ACTIONS(584), + [anon_sym_EQ_GT] = ACTIONS(576), + [anon_sym_COLON] = ACTIONS(586), + [anon_sym_DOLLAR] = ACTIONS(588), + [anon_sym_PLUS] = ACTIONS(586), + [anon_sym_STAR] = ACTIONS(586), + [anon_sym_QMARK] = ACTIONS(576), + [anon_sym_u8] = ACTIONS(574), + [anon_sym_i8] = ACTIONS(574), + [anon_sym_u16] = ACTIONS(574), + [anon_sym_i16] = ACTIONS(574), + [anon_sym_u32] = ACTIONS(574), + [anon_sym_i32] = ACTIONS(574), + [anon_sym_u64] = ACTIONS(574), + [anon_sym_i64] = ACTIONS(574), + [anon_sym_u128] = ACTIONS(574), + [anon_sym_i128] = ACTIONS(574), + [anon_sym_isize] = ACTIONS(574), + [anon_sym_usize] = ACTIONS(574), + [anon_sym_f32] = ACTIONS(574), + [anon_sym_f64] = ACTIONS(574), + [anon_sym_bool] = ACTIONS(574), + [anon_sym_str] = ACTIONS(574), + [anon_sym_char] = ACTIONS(574), + [anon_sym_DASH] = ACTIONS(586), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_PERCENT] = ACTIONS(586), + [anon_sym_CARET] = ACTIONS(586), + [anon_sym_BANG] = ACTIONS(586), + [anon_sym_AMP] = ACTIONS(586), + [anon_sym_PIPE] = ACTIONS(586), + [anon_sym_AMP_AMP] = ACTIONS(576), + [anon_sym_PIPE_PIPE] = ACTIONS(576), + [anon_sym_LT_LT] = ACTIONS(586), + [anon_sym_GT_GT] = ACTIONS(586), + [anon_sym_PLUS_EQ] = ACTIONS(576), + [anon_sym_DASH_EQ] = ACTIONS(576), + [anon_sym_STAR_EQ] = ACTIONS(576), + [anon_sym_SLASH_EQ] = ACTIONS(576), + [anon_sym_PERCENT_EQ] = ACTIONS(576), + [anon_sym_CARET_EQ] = ACTIONS(576), + [anon_sym_AMP_EQ] = ACTIONS(576), + [anon_sym_PIPE_EQ] = ACTIONS(576), + [anon_sym_LT_LT_EQ] = ACTIONS(576), + [anon_sym_GT_GT_EQ] = ACTIONS(576), + [anon_sym_EQ] = ACTIONS(586), + [anon_sym_EQ_EQ] = ACTIONS(576), + [anon_sym_BANG_EQ] = ACTIONS(576), + [anon_sym_GT] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(586), + [anon_sym_GT_EQ] = ACTIONS(576), + [anon_sym_LT_EQ] = ACTIONS(576), + [anon_sym_AT] = ACTIONS(576), + [anon_sym__] = ACTIONS(586), + [anon_sym_DOT] = ACTIONS(586), + [anon_sym_DOT_DOT] = ACTIONS(586), + [anon_sym_DOT_DOT_DOT] = ACTIONS(576), + [anon_sym_DOT_DOT_EQ] = ACTIONS(576), + [anon_sym_COMMA] = ACTIONS(576), + [anon_sym_COLON_COLON] = ACTIONS(576), + [anon_sym_DASH_GT] = ACTIONS(576), + [anon_sym_POUND] = ACTIONS(576), + [anon_sym_SQUOTE] = ACTIONS(574), + [anon_sym_as] = ACTIONS(574), + [anon_sym_async] = ACTIONS(574), + [anon_sym_await] = ACTIONS(574), + [anon_sym_break] = ACTIONS(574), + [anon_sym_const] = ACTIONS(574), + [anon_sym_continue] = ACTIONS(574), + [anon_sym_default] = ACTIONS(574), + [anon_sym_enum] = ACTIONS(574), + [anon_sym_fn] = ACTIONS(574), + [anon_sym_for] = ACTIONS(574), + [anon_sym_gen] = ACTIONS(574), + [anon_sym_if] = ACTIONS(574), + [anon_sym_impl] = ACTIONS(574), + [anon_sym_let] = ACTIONS(574), + [anon_sym_loop] = ACTIONS(574), + [anon_sym_match] = ACTIONS(574), + [anon_sym_mod] = ACTIONS(574), + [anon_sym_pub] = ACTIONS(574), + [anon_sym_return] = ACTIONS(574), + [anon_sym_static] = ACTIONS(574), + [anon_sym_struct] = ACTIONS(574), + [anon_sym_trait] = ACTIONS(574), + [anon_sym_type] = ACTIONS(574), + [anon_sym_union] = ACTIONS(574), + [anon_sym_unsafe] = ACTIONS(574), + [anon_sym_use] = ACTIONS(574), + [anon_sym_where] = ACTIONS(574), + [anon_sym_while] = ACTIONS(574), + [sym_mutable_specifier] = ACTIONS(574), + [sym_integer_literal] = ACTIONS(590), + [aux_sym_string_literal_token1] = ACTIONS(592), + [sym_char_literal] = ACTIONS(590), + [anon_sym_true] = ACTIONS(594), + [anon_sym_false] = ACTIONS(594), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(574), + [sym_super] = ACTIONS(574), + [sym_crate] = ACTIONS(574), + [sym_metavariable] = ACTIONS(596), + [sym__raw_string_literal_start] = ACTIONS(598), + [sym_float_literal] = ACTIONS(590), }, [STATE(78)] = { - [sym__token_pattern] = STATE(156), - [sym_token_tree_pattern] = STATE(154), - [sym_token_binding_pattern] = STATE(154), - [sym_token_repetition_pattern] = STATE(154), - [sym__literal] = STATE(154), - [sym_string_literal] = STATE(183), - [sym_raw_string_literal] = STATE(183), - [sym_boolean_literal] = STATE(183), + [sym__token_pattern] = STATE(158), + [sym_token_tree_pattern] = STATE(153), + [sym_token_binding_pattern] = STATE(153), + [sym_token_repetition_pattern] = STATE(153), + [sym__literal] = STATE(153), + [sym_string_literal] = STATE(184), + [sym_raw_string_literal] = STATE(184), + [sym_boolean_literal] = STATE(184), [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(140), - [sym_identifier] = ACTIONS(607), - [anon_sym_SEMI] = ACTIONS(609), - [anon_sym_LPAREN] = ACTIONS(611), - [anon_sym_LBRACK] = ACTIONS(615), - [anon_sym_LBRACE] = ACTIONS(617), - [anon_sym_RBRACE] = ACTIONS(639), - [anon_sym_EQ_GT] = ACTIONS(609), - [anon_sym_COLON] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_STAR] = ACTIONS(619), - [anon_sym_QMARK] = ACTIONS(609), - [anon_sym_u8] = ACTIONS(607), - [anon_sym_i8] = ACTIONS(607), - [anon_sym_u16] = ACTIONS(607), - [anon_sym_i16] = ACTIONS(607), - [anon_sym_u32] = ACTIONS(607), - [anon_sym_i32] = ACTIONS(607), - [anon_sym_u64] = ACTIONS(607), - [anon_sym_i64] = ACTIONS(607), - [anon_sym_u128] = ACTIONS(607), - [anon_sym_i128] = ACTIONS(607), - [anon_sym_isize] = ACTIONS(607), - [anon_sym_usize] = ACTIONS(607), - [anon_sym_f32] = ACTIONS(607), - [anon_sym_f64] = ACTIONS(607), - [anon_sym_bool] = ACTIONS(607), - [anon_sym_str] = ACTIONS(607), - [anon_sym_char] = ACTIONS(607), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_SLASH] = ACTIONS(619), - [anon_sym_PERCENT] = ACTIONS(619), - [anon_sym_CARET] = ACTIONS(619), - [anon_sym_BANG] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(619), - [anon_sym_AMP_AMP] = ACTIONS(609), - [anon_sym_PIPE_PIPE] = ACTIONS(609), - [anon_sym_LT_LT] = ACTIONS(619), - [anon_sym_GT_GT] = ACTIONS(619), - [anon_sym_PLUS_EQ] = ACTIONS(609), - [anon_sym_DASH_EQ] = ACTIONS(609), - [anon_sym_STAR_EQ] = ACTIONS(609), - [anon_sym_SLASH_EQ] = ACTIONS(609), - [anon_sym_PERCENT_EQ] = ACTIONS(609), - [anon_sym_CARET_EQ] = ACTIONS(609), - [anon_sym_AMP_EQ] = ACTIONS(609), - [anon_sym_PIPE_EQ] = ACTIONS(609), - [anon_sym_LT_LT_EQ] = ACTIONS(609), - [anon_sym_GT_GT_EQ] = ACTIONS(609), - [anon_sym_EQ] = ACTIONS(619), - [anon_sym_EQ_EQ] = ACTIONS(609), - [anon_sym_BANG_EQ] = ACTIONS(609), - [anon_sym_GT] = ACTIONS(619), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_GT_EQ] = ACTIONS(609), - [anon_sym_LT_EQ] = ACTIONS(609), - [anon_sym_AT] = ACTIONS(609), - [anon_sym__] = ACTIONS(619), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_DOT_DOT] = ACTIONS(619), - [anon_sym_DOT_DOT_DOT] = ACTIONS(609), - [anon_sym_DOT_DOT_EQ] = ACTIONS(609), - [anon_sym_COMMA] = ACTIONS(609), - [anon_sym_COLON_COLON] = ACTIONS(609), - [anon_sym_DASH_GT] = ACTIONS(609), - [anon_sym_POUND] = ACTIONS(609), - [anon_sym_SQUOTE] = ACTIONS(607), - [anon_sym_as] = ACTIONS(607), - [anon_sym_async] = ACTIONS(607), - [anon_sym_await] = ACTIONS(607), - [anon_sym_break] = ACTIONS(607), - [anon_sym_const] = ACTIONS(607), - [anon_sym_continue] = ACTIONS(607), - [anon_sym_default] = ACTIONS(607), - [anon_sym_enum] = ACTIONS(607), - [anon_sym_fn] = ACTIONS(607), - [anon_sym_for] = ACTIONS(607), - [anon_sym_gen] = ACTIONS(607), - [anon_sym_if] = ACTIONS(607), - [anon_sym_impl] = ACTIONS(607), - [anon_sym_let] = ACTIONS(607), - [anon_sym_loop] = ACTIONS(607), - [anon_sym_match] = ACTIONS(607), - [anon_sym_mod] = ACTIONS(607), - [anon_sym_pub] = ACTIONS(607), - [anon_sym_return] = ACTIONS(607), - [anon_sym_static] = ACTIONS(607), - [anon_sym_struct] = ACTIONS(607), - [anon_sym_trait] = ACTIONS(607), - [anon_sym_type] = ACTIONS(607), - [anon_sym_union] = ACTIONS(607), - [anon_sym_unsafe] = ACTIONS(607), - [anon_sym_use] = ACTIONS(607), - [anon_sym_where] = ACTIONS(607), - [anon_sym_while] = ACTIONS(607), - [sym_mutable_specifier] = ACTIONS(607), - [sym_integer_literal] = ACTIONS(623), - [aux_sym_string_literal_token1] = ACTIONS(625), - [sym_char_literal] = ACTIONS(623), - [anon_sym_true] = ACTIONS(627), - [anon_sym_false] = ACTIONS(627), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(607), - [sym_super] = ACTIONS(607), - [sym_crate] = ACTIONS(607), - [sym_metavariable] = ACTIONS(629), - [sym__raw_string_literal_start] = ACTIONS(631), - [sym_float_literal] = ACTIONS(623), + [aux_sym__non_special_token_repeat1] = STATE(135), + [sym_identifier] = ACTIONS(574), + [anon_sym_SEMI] = ACTIONS(576), + [anon_sym_LPAREN] = ACTIONS(578), + [anon_sym_LBRACK] = ACTIONS(582), + [anon_sym_RBRACK] = ACTIONS(604), + [anon_sym_LBRACE] = ACTIONS(584), + [anon_sym_EQ_GT] = ACTIONS(576), + [anon_sym_COLON] = ACTIONS(586), + [anon_sym_DOLLAR] = ACTIONS(588), + [anon_sym_PLUS] = ACTIONS(586), + [anon_sym_STAR] = ACTIONS(586), + [anon_sym_QMARK] = ACTIONS(576), + [anon_sym_u8] = ACTIONS(574), + [anon_sym_i8] = ACTIONS(574), + [anon_sym_u16] = ACTIONS(574), + [anon_sym_i16] = ACTIONS(574), + [anon_sym_u32] = ACTIONS(574), + [anon_sym_i32] = ACTIONS(574), + [anon_sym_u64] = ACTIONS(574), + [anon_sym_i64] = ACTIONS(574), + [anon_sym_u128] = ACTIONS(574), + [anon_sym_i128] = ACTIONS(574), + [anon_sym_isize] = ACTIONS(574), + [anon_sym_usize] = ACTIONS(574), + [anon_sym_f32] = ACTIONS(574), + [anon_sym_f64] = ACTIONS(574), + [anon_sym_bool] = ACTIONS(574), + [anon_sym_str] = ACTIONS(574), + [anon_sym_char] = ACTIONS(574), + [anon_sym_DASH] = ACTIONS(586), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_PERCENT] = ACTIONS(586), + [anon_sym_CARET] = ACTIONS(586), + [anon_sym_BANG] = ACTIONS(586), + [anon_sym_AMP] = ACTIONS(586), + [anon_sym_PIPE] = ACTIONS(586), + [anon_sym_AMP_AMP] = ACTIONS(576), + [anon_sym_PIPE_PIPE] = ACTIONS(576), + [anon_sym_LT_LT] = ACTIONS(586), + [anon_sym_GT_GT] = ACTIONS(586), + [anon_sym_PLUS_EQ] = ACTIONS(576), + [anon_sym_DASH_EQ] = ACTIONS(576), + [anon_sym_STAR_EQ] = ACTIONS(576), + [anon_sym_SLASH_EQ] = ACTIONS(576), + [anon_sym_PERCENT_EQ] = ACTIONS(576), + [anon_sym_CARET_EQ] = ACTIONS(576), + [anon_sym_AMP_EQ] = ACTIONS(576), + [anon_sym_PIPE_EQ] = ACTIONS(576), + [anon_sym_LT_LT_EQ] = ACTIONS(576), + [anon_sym_GT_GT_EQ] = ACTIONS(576), + [anon_sym_EQ] = ACTIONS(586), + [anon_sym_EQ_EQ] = ACTIONS(576), + [anon_sym_BANG_EQ] = ACTIONS(576), + [anon_sym_GT] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(586), + [anon_sym_GT_EQ] = ACTIONS(576), + [anon_sym_LT_EQ] = ACTIONS(576), + [anon_sym_AT] = ACTIONS(576), + [anon_sym__] = ACTIONS(586), + [anon_sym_DOT] = ACTIONS(586), + [anon_sym_DOT_DOT] = ACTIONS(586), + [anon_sym_DOT_DOT_DOT] = ACTIONS(576), + [anon_sym_DOT_DOT_EQ] = ACTIONS(576), + [anon_sym_COMMA] = ACTIONS(576), + [anon_sym_COLON_COLON] = ACTIONS(576), + [anon_sym_DASH_GT] = ACTIONS(576), + [anon_sym_POUND] = ACTIONS(576), + [anon_sym_SQUOTE] = ACTIONS(574), + [anon_sym_as] = ACTIONS(574), + [anon_sym_async] = ACTIONS(574), + [anon_sym_await] = ACTIONS(574), + [anon_sym_break] = ACTIONS(574), + [anon_sym_const] = ACTIONS(574), + [anon_sym_continue] = ACTIONS(574), + [anon_sym_default] = ACTIONS(574), + [anon_sym_enum] = ACTIONS(574), + [anon_sym_fn] = ACTIONS(574), + [anon_sym_for] = ACTIONS(574), + [anon_sym_gen] = ACTIONS(574), + [anon_sym_if] = ACTIONS(574), + [anon_sym_impl] = ACTIONS(574), + [anon_sym_let] = ACTIONS(574), + [anon_sym_loop] = ACTIONS(574), + [anon_sym_match] = ACTIONS(574), + [anon_sym_mod] = ACTIONS(574), + [anon_sym_pub] = ACTIONS(574), + [anon_sym_return] = ACTIONS(574), + [anon_sym_static] = ACTIONS(574), + [anon_sym_struct] = ACTIONS(574), + [anon_sym_trait] = ACTIONS(574), + [anon_sym_type] = ACTIONS(574), + [anon_sym_union] = ACTIONS(574), + [anon_sym_unsafe] = ACTIONS(574), + [anon_sym_use] = ACTIONS(574), + [anon_sym_where] = ACTIONS(574), + [anon_sym_while] = ACTIONS(574), + [sym_mutable_specifier] = ACTIONS(574), + [sym_integer_literal] = ACTIONS(590), + [aux_sym_string_literal_token1] = ACTIONS(592), + [sym_char_literal] = ACTIONS(590), + [anon_sym_true] = ACTIONS(594), + [anon_sym_false] = ACTIONS(594), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(574), + [sym_super] = ACTIONS(574), + [sym_crate] = ACTIONS(574), + [sym_metavariable] = ACTIONS(596), + [sym__raw_string_literal_start] = ACTIONS(598), + [sym_float_literal] = ACTIONS(590), }, [STATE(79)] = { - [sym__token_pattern] = STATE(156), - [sym_token_tree_pattern] = STATE(154), - [sym_token_binding_pattern] = STATE(154), - [sym_token_repetition_pattern] = STATE(154), - [sym__literal] = STATE(154), - [sym_string_literal] = STATE(183), - [sym_raw_string_literal] = STATE(183), - [sym_boolean_literal] = STATE(183), + [sym__token_pattern] = STATE(158), + [sym_token_tree_pattern] = STATE(153), + [sym_token_binding_pattern] = STATE(153), + [sym_token_repetition_pattern] = STATE(153), + [sym__literal] = STATE(153), + [sym_string_literal] = STATE(184), + [sym_raw_string_literal] = STATE(184), + [sym_boolean_literal] = STATE(184), [sym_line_comment] = STATE(79), [sym_block_comment] = STATE(79), - [aux_sym_token_tree_pattern_repeat1] = STATE(80), - [aux_sym__non_special_token_repeat1] = STATE(140), - [sym_identifier] = ACTIONS(607), - [anon_sym_SEMI] = ACTIONS(609), - [anon_sym_LPAREN] = ACTIONS(611), - [anon_sym_RPAREN] = ACTIONS(633), - [anon_sym_LBRACK] = ACTIONS(615), - [anon_sym_LBRACE] = ACTIONS(617), - [anon_sym_EQ_GT] = ACTIONS(609), - [anon_sym_COLON] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_STAR] = ACTIONS(619), - [anon_sym_QMARK] = ACTIONS(609), - [anon_sym_u8] = ACTIONS(607), - [anon_sym_i8] = ACTIONS(607), - [anon_sym_u16] = ACTIONS(607), - [anon_sym_i16] = ACTIONS(607), - [anon_sym_u32] = ACTIONS(607), - [anon_sym_i32] = ACTIONS(607), - [anon_sym_u64] = ACTIONS(607), - [anon_sym_i64] = ACTIONS(607), - [anon_sym_u128] = ACTIONS(607), - [anon_sym_i128] = ACTIONS(607), - [anon_sym_isize] = ACTIONS(607), - [anon_sym_usize] = ACTIONS(607), - [anon_sym_f32] = ACTIONS(607), - [anon_sym_f64] = ACTIONS(607), - [anon_sym_bool] = ACTIONS(607), - [anon_sym_str] = ACTIONS(607), - [anon_sym_char] = ACTIONS(607), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_SLASH] = ACTIONS(619), - [anon_sym_PERCENT] = ACTIONS(619), - [anon_sym_CARET] = ACTIONS(619), - [anon_sym_BANG] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(619), - [anon_sym_AMP_AMP] = ACTIONS(609), - [anon_sym_PIPE_PIPE] = ACTIONS(609), - [anon_sym_LT_LT] = ACTIONS(619), - [anon_sym_GT_GT] = ACTIONS(619), - [anon_sym_PLUS_EQ] = ACTIONS(609), - [anon_sym_DASH_EQ] = ACTIONS(609), - [anon_sym_STAR_EQ] = ACTIONS(609), - [anon_sym_SLASH_EQ] = ACTIONS(609), - [anon_sym_PERCENT_EQ] = ACTIONS(609), - [anon_sym_CARET_EQ] = ACTIONS(609), - [anon_sym_AMP_EQ] = ACTIONS(609), - [anon_sym_PIPE_EQ] = ACTIONS(609), - [anon_sym_LT_LT_EQ] = ACTIONS(609), - [anon_sym_GT_GT_EQ] = ACTIONS(609), - [anon_sym_EQ] = ACTIONS(619), - [anon_sym_EQ_EQ] = ACTIONS(609), - [anon_sym_BANG_EQ] = ACTIONS(609), - [anon_sym_GT] = ACTIONS(619), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_GT_EQ] = ACTIONS(609), - [anon_sym_LT_EQ] = ACTIONS(609), - [anon_sym_AT] = ACTIONS(609), - [anon_sym__] = ACTIONS(619), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_DOT_DOT] = ACTIONS(619), - [anon_sym_DOT_DOT_DOT] = ACTIONS(609), - [anon_sym_DOT_DOT_EQ] = ACTIONS(609), - [anon_sym_COMMA] = ACTIONS(609), - [anon_sym_COLON_COLON] = ACTIONS(609), - [anon_sym_DASH_GT] = ACTIONS(609), - [anon_sym_POUND] = ACTIONS(609), - [anon_sym_SQUOTE] = ACTIONS(607), - [anon_sym_as] = ACTIONS(607), - [anon_sym_async] = ACTIONS(607), - [anon_sym_await] = ACTIONS(607), - [anon_sym_break] = ACTIONS(607), - [anon_sym_const] = ACTIONS(607), - [anon_sym_continue] = ACTIONS(607), - [anon_sym_default] = ACTIONS(607), - [anon_sym_enum] = ACTIONS(607), - [anon_sym_fn] = ACTIONS(607), - [anon_sym_for] = ACTIONS(607), - [anon_sym_gen] = ACTIONS(607), - [anon_sym_if] = ACTIONS(607), - [anon_sym_impl] = ACTIONS(607), - [anon_sym_let] = ACTIONS(607), - [anon_sym_loop] = ACTIONS(607), - [anon_sym_match] = ACTIONS(607), - [anon_sym_mod] = ACTIONS(607), - [anon_sym_pub] = ACTIONS(607), - [anon_sym_return] = ACTIONS(607), - [anon_sym_static] = ACTIONS(607), - [anon_sym_struct] = ACTIONS(607), - [anon_sym_trait] = ACTIONS(607), - [anon_sym_type] = ACTIONS(607), - [anon_sym_union] = ACTIONS(607), - [anon_sym_unsafe] = ACTIONS(607), - [anon_sym_use] = ACTIONS(607), - [anon_sym_where] = ACTIONS(607), - [anon_sym_while] = ACTIONS(607), - [sym_mutable_specifier] = ACTIONS(607), - [sym_integer_literal] = ACTIONS(623), - [aux_sym_string_literal_token1] = ACTIONS(625), - [sym_char_literal] = ACTIONS(623), - [anon_sym_true] = ACTIONS(627), - [anon_sym_false] = ACTIONS(627), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(607), - [sym_super] = ACTIONS(607), - [sym_crate] = ACTIONS(607), - [sym_metavariable] = ACTIONS(629), - [sym__raw_string_literal_start] = ACTIONS(631), - [sym_float_literal] = ACTIONS(623), + [aux_sym_token_tree_pattern_repeat1] = STATE(67), + [aux_sym__non_special_token_repeat1] = STATE(135), + [sym_identifier] = ACTIONS(574), + [anon_sym_SEMI] = ACTIONS(576), + [anon_sym_LPAREN] = ACTIONS(578), + [anon_sym_LBRACK] = ACTIONS(582), + [anon_sym_LBRACE] = ACTIONS(584), + [anon_sym_RBRACE] = ACTIONS(604), + [anon_sym_EQ_GT] = ACTIONS(576), + [anon_sym_COLON] = ACTIONS(586), + [anon_sym_DOLLAR] = ACTIONS(588), + [anon_sym_PLUS] = ACTIONS(586), + [anon_sym_STAR] = ACTIONS(586), + [anon_sym_QMARK] = ACTIONS(576), + [anon_sym_u8] = ACTIONS(574), + [anon_sym_i8] = ACTIONS(574), + [anon_sym_u16] = ACTIONS(574), + [anon_sym_i16] = ACTIONS(574), + [anon_sym_u32] = ACTIONS(574), + [anon_sym_i32] = ACTIONS(574), + [anon_sym_u64] = ACTIONS(574), + [anon_sym_i64] = ACTIONS(574), + [anon_sym_u128] = ACTIONS(574), + [anon_sym_i128] = ACTIONS(574), + [anon_sym_isize] = ACTIONS(574), + [anon_sym_usize] = ACTIONS(574), + [anon_sym_f32] = ACTIONS(574), + [anon_sym_f64] = ACTIONS(574), + [anon_sym_bool] = ACTIONS(574), + [anon_sym_str] = ACTIONS(574), + [anon_sym_char] = ACTIONS(574), + [anon_sym_DASH] = ACTIONS(586), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_PERCENT] = ACTIONS(586), + [anon_sym_CARET] = ACTIONS(586), + [anon_sym_BANG] = ACTIONS(586), + [anon_sym_AMP] = ACTIONS(586), + [anon_sym_PIPE] = ACTIONS(586), + [anon_sym_AMP_AMP] = ACTIONS(576), + [anon_sym_PIPE_PIPE] = ACTIONS(576), + [anon_sym_LT_LT] = ACTIONS(586), + [anon_sym_GT_GT] = ACTIONS(586), + [anon_sym_PLUS_EQ] = ACTIONS(576), + [anon_sym_DASH_EQ] = ACTIONS(576), + [anon_sym_STAR_EQ] = ACTIONS(576), + [anon_sym_SLASH_EQ] = ACTIONS(576), + [anon_sym_PERCENT_EQ] = ACTIONS(576), + [anon_sym_CARET_EQ] = ACTIONS(576), + [anon_sym_AMP_EQ] = ACTIONS(576), + [anon_sym_PIPE_EQ] = ACTIONS(576), + [anon_sym_LT_LT_EQ] = ACTIONS(576), + [anon_sym_GT_GT_EQ] = ACTIONS(576), + [anon_sym_EQ] = ACTIONS(586), + [anon_sym_EQ_EQ] = ACTIONS(576), + [anon_sym_BANG_EQ] = ACTIONS(576), + [anon_sym_GT] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(586), + [anon_sym_GT_EQ] = ACTIONS(576), + [anon_sym_LT_EQ] = ACTIONS(576), + [anon_sym_AT] = ACTIONS(576), + [anon_sym__] = ACTIONS(586), + [anon_sym_DOT] = ACTIONS(586), + [anon_sym_DOT_DOT] = ACTIONS(586), + [anon_sym_DOT_DOT_DOT] = ACTIONS(576), + [anon_sym_DOT_DOT_EQ] = ACTIONS(576), + [anon_sym_COMMA] = ACTIONS(576), + [anon_sym_COLON_COLON] = ACTIONS(576), + [anon_sym_DASH_GT] = ACTIONS(576), + [anon_sym_POUND] = ACTIONS(576), + [anon_sym_SQUOTE] = ACTIONS(574), + [anon_sym_as] = ACTIONS(574), + [anon_sym_async] = ACTIONS(574), + [anon_sym_await] = ACTIONS(574), + [anon_sym_break] = ACTIONS(574), + [anon_sym_const] = ACTIONS(574), + [anon_sym_continue] = ACTIONS(574), + [anon_sym_default] = ACTIONS(574), + [anon_sym_enum] = ACTIONS(574), + [anon_sym_fn] = ACTIONS(574), + [anon_sym_for] = ACTIONS(574), + [anon_sym_gen] = ACTIONS(574), + [anon_sym_if] = ACTIONS(574), + [anon_sym_impl] = ACTIONS(574), + [anon_sym_let] = ACTIONS(574), + [anon_sym_loop] = ACTIONS(574), + [anon_sym_match] = ACTIONS(574), + [anon_sym_mod] = ACTIONS(574), + [anon_sym_pub] = ACTIONS(574), + [anon_sym_return] = ACTIONS(574), + [anon_sym_static] = ACTIONS(574), + [anon_sym_struct] = ACTIONS(574), + [anon_sym_trait] = ACTIONS(574), + [anon_sym_type] = ACTIONS(574), + [anon_sym_union] = ACTIONS(574), + [anon_sym_unsafe] = ACTIONS(574), + [anon_sym_use] = ACTIONS(574), + [anon_sym_where] = ACTIONS(574), + [anon_sym_while] = ACTIONS(574), + [sym_mutable_specifier] = ACTIONS(574), + [sym_integer_literal] = ACTIONS(590), + [aux_sym_string_literal_token1] = ACTIONS(592), + [sym_char_literal] = ACTIONS(590), + [anon_sym_true] = ACTIONS(594), + [anon_sym_false] = ACTIONS(594), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(574), + [sym_super] = ACTIONS(574), + [sym_crate] = ACTIONS(574), + [sym_metavariable] = ACTIONS(596), + [sym__raw_string_literal_start] = ACTIONS(598), + [sym_float_literal] = ACTIONS(590), }, [STATE(80)] = { - [sym__token_pattern] = STATE(156), - [sym_token_tree_pattern] = STATE(154), - [sym_token_binding_pattern] = STATE(154), - [sym_token_repetition_pattern] = STATE(154), - [sym__literal] = STATE(154), - [sym_string_literal] = STATE(183), - [sym_raw_string_literal] = STATE(183), - [sym_boolean_literal] = STATE(183), + [sym__token_pattern] = STATE(158), + [sym_token_tree_pattern] = STATE(153), + [sym_token_binding_pattern] = STATE(153), + [sym_token_repetition_pattern] = STATE(153), + [sym__literal] = STATE(153), + [sym_string_literal] = STATE(184), + [sym_raw_string_literal] = STATE(184), + [sym_boolean_literal] = STATE(184), [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(140), - [sym_identifier] = ACTIONS(607), - [anon_sym_SEMI] = ACTIONS(609), - [anon_sym_LPAREN] = ACTIONS(611), - [anon_sym_RPAREN] = ACTIONS(641), - [anon_sym_LBRACK] = ACTIONS(615), - [anon_sym_LBRACE] = ACTIONS(617), - [anon_sym_EQ_GT] = ACTIONS(609), - [anon_sym_COLON] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_STAR] = ACTIONS(619), - [anon_sym_QMARK] = ACTIONS(609), - [anon_sym_u8] = ACTIONS(607), - [anon_sym_i8] = ACTIONS(607), - [anon_sym_u16] = ACTIONS(607), - [anon_sym_i16] = ACTIONS(607), - [anon_sym_u32] = ACTIONS(607), - [anon_sym_i32] = ACTIONS(607), - [anon_sym_u64] = ACTIONS(607), - [anon_sym_i64] = ACTIONS(607), - [anon_sym_u128] = ACTIONS(607), - [anon_sym_i128] = ACTIONS(607), - [anon_sym_isize] = ACTIONS(607), - [anon_sym_usize] = ACTIONS(607), - [anon_sym_f32] = ACTIONS(607), - [anon_sym_f64] = ACTIONS(607), - [anon_sym_bool] = ACTIONS(607), - [anon_sym_str] = ACTIONS(607), - [anon_sym_char] = ACTIONS(607), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_SLASH] = ACTIONS(619), - [anon_sym_PERCENT] = ACTIONS(619), - [anon_sym_CARET] = ACTIONS(619), - [anon_sym_BANG] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(619), - [anon_sym_AMP_AMP] = ACTIONS(609), - [anon_sym_PIPE_PIPE] = ACTIONS(609), - [anon_sym_LT_LT] = ACTIONS(619), - [anon_sym_GT_GT] = ACTIONS(619), - [anon_sym_PLUS_EQ] = ACTIONS(609), - [anon_sym_DASH_EQ] = ACTIONS(609), - [anon_sym_STAR_EQ] = ACTIONS(609), - [anon_sym_SLASH_EQ] = ACTIONS(609), - [anon_sym_PERCENT_EQ] = ACTIONS(609), - [anon_sym_CARET_EQ] = ACTIONS(609), - [anon_sym_AMP_EQ] = ACTIONS(609), - [anon_sym_PIPE_EQ] = ACTIONS(609), - [anon_sym_LT_LT_EQ] = ACTIONS(609), - [anon_sym_GT_GT_EQ] = ACTIONS(609), - [anon_sym_EQ] = ACTIONS(619), - [anon_sym_EQ_EQ] = ACTIONS(609), - [anon_sym_BANG_EQ] = ACTIONS(609), - [anon_sym_GT] = ACTIONS(619), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_GT_EQ] = ACTIONS(609), - [anon_sym_LT_EQ] = ACTIONS(609), - [anon_sym_AT] = ACTIONS(609), - [anon_sym__] = ACTIONS(619), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_DOT_DOT] = ACTIONS(619), - [anon_sym_DOT_DOT_DOT] = ACTIONS(609), - [anon_sym_DOT_DOT_EQ] = ACTIONS(609), - [anon_sym_COMMA] = ACTIONS(609), - [anon_sym_COLON_COLON] = ACTIONS(609), - [anon_sym_DASH_GT] = ACTIONS(609), - [anon_sym_POUND] = ACTIONS(609), - [anon_sym_SQUOTE] = ACTIONS(607), - [anon_sym_as] = ACTIONS(607), - [anon_sym_async] = ACTIONS(607), - [anon_sym_await] = ACTIONS(607), - [anon_sym_break] = ACTIONS(607), - [anon_sym_const] = ACTIONS(607), - [anon_sym_continue] = ACTIONS(607), - [anon_sym_default] = ACTIONS(607), - [anon_sym_enum] = ACTIONS(607), - [anon_sym_fn] = ACTIONS(607), - [anon_sym_for] = ACTIONS(607), - [anon_sym_gen] = ACTIONS(607), - [anon_sym_if] = ACTIONS(607), - [anon_sym_impl] = ACTIONS(607), - [anon_sym_let] = ACTIONS(607), - [anon_sym_loop] = ACTIONS(607), - [anon_sym_match] = ACTIONS(607), - [anon_sym_mod] = ACTIONS(607), - [anon_sym_pub] = ACTIONS(607), - [anon_sym_return] = ACTIONS(607), - [anon_sym_static] = ACTIONS(607), - [anon_sym_struct] = ACTIONS(607), - [anon_sym_trait] = ACTIONS(607), - [anon_sym_type] = ACTIONS(607), - [anon_sym_union] = ACTIONS(607), - [anon_sym_unsafe] = ACTIONS(607), - [anon_sym_use] = ACTIONS(607), - [anon_sym_where] = ACTIONS(607), - [anon_sym_while] = ACTIONS(607), - [sym_mutable_specifier] = ACTIONS(607), - [sym_integer_literal] = ACTIONS(623), - [aux_sym_string_literal_token1] = ACTIONS(625), - [sym_char_literal] = ACTIONS(623), - [anon_sym_true] = ACTIONS(627), - [anon_sym_false] = ACTIONS(627), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(607), - [sym_super] = ACTIONS(607), - [sym_crate] = ACTIONS(607), - [sym_metavariable] = ACTIONS(629), - [sym__raw_string_literal_start] = ACTIONS(631), - [sym_float_literal] = ACTIONS(623), + [aux_sym__non_special_token_repeat1] = STATE(135), + [sym_identifier] = ACTIONS(574), + [anon_sym_SEMI] = ACTIONS(576), + [anon_sym_LPAREN] = ACTIONS(578), + [anon_sym_RPAREN] = ACTIONS(606), + [anon_sym_LBRACK] = ACTIONS(582), + [anon_sym_LBRACE] = ACTIONS(584), + [anon_sym_EQ_GT] = ACTIONS(576), + [anon_sym_COLON] = ACTIONS(586), + [anon_sym_DOLLAR] = ACTIONS(588), + [anon_sym_PLUS] = ACTIONS(586), + [anon_sym_STAR] = ACTIONS(586), + [anon_sym_QMARK] = ACTIONS(576), + [anon_sym_u8] = ACTIONS(574), + [anon_sym_i8] = ACTIONS(574), + [anon_sym_u16] = ACTIONS(574), + [anon_sym_i16] = ACTIONS(574), + [anon_sym_u32] = ACTIONS(574), + [anon_sym_i32] = ACTIONS(574), + [anon_sym_u64] = ACTIONS(574), + [anon_sym_i64] = ACTIONS(574), + [anon_sym_u128] = ACTIONS(574), + [anon_sym_i128] = ACTIONS(574), + [anon_sym_isize] = ACTIONS(574), + [anon_sym_usize] = ACTIONS(574), + [anon_sym_f32] = ACTIONS(574), + [anon_sym_f64] = ACTIONS(574), + [anon_sym_bool] = ACTIONS(574), + [anon_sym_str] = ACTIONS(574), + [anon_sym_char] = ACTIONS(574), + [anon_sym_DASH] = ACTIONS(586), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_PERCENT] = ACTIONS(586), + [anon_sym_CARET] = ACTIONS(586), + [anon_sym_BANG] = ACTIONS(586), + [anon_sym_AMP] = ACTIONS(586), + [anon_sym_PIPE] = ACTIONS(586), + [anon_sym_AMP_AMP] = ACTIONS(576), + [anon_sym_PIPE_PIPE] = ACTIONS(576), + [anon_sym_LT_LT] = ACTIONS(586), + [anon_sym_GT_GT] = ACTIONS(586), + [anon_sym_PLUS_EQ] = ACTIONS(576), + [anon_sym_DASH_EQ] = ACTIONS(576), + [anon_sym_STAR_EQ] = ACTIONS(576), + [anon_sym_SLASH_EQ] = ACTIONS(576), + [anon_sym_PERCENT_EQ] = ACTIONS(576), + [anon_sym_CARET_EQ] = ACTIONS(576), + [anon_sym_AMP_EQ] = ACTIONS(576), + [anon_sym_PIPE_EQ] = ACTIONS(576), + [anon_sym_LT_LT_EQ] = ACTIONS(576), + [anon_sym_GT_GT_EQ] = ACTIONS(576), + [anon_sym_EQ] = ACTIONS(586), + [anon_sym_EQ_EQ] = ACTIONS(576), + [anon_sym_BANG_EQ] = ACTIONS(576), + [anon_sym_GT] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(586), + [anon_sym_GT_EQ] = ACTIONS(576), + [anon_sym_LT_EQ] = ACTIONS(576), + [anon_sym_AT] = ACTIONS(576), + [anon_sym__] = ACTIONS(586), + [anon_sym_DOT] = ACTIONS(586), + [anon_sym_DOT_DOT] = ACTIONS(586), + [anon_sym_DOT_DOT_DOT] = ACTIONS(576), + [anon_sym_DOT_DOT_EQ] = ACTIONS(576), + [anon_sym_COMMA] = ACTIONS(576), + [anon_sym_COLON_COLON] = ACTIONS(576), + [anon_sym_DASH_GT] = ACTIONS(576), + [anon_sym_POUND] = ACTIONS(576), + [anon_sym_SQUOTE] = ACTIONS(574), + [anon_sym_as] = ACTIONS(574), + [anon_sym_async] = ACTIONS(574), + [anon_sym_await] = ACTIONS(574), + [anon_sym_break] = ACTIONS(574), + [anon_sym_const] = ACTIONS(574), + [anon_sym_continue] = ACTIONS(574), + [anon_sym_default] = ACTIONS(574), + [anon_sym_enum] = ACTIONS(574), + [anon_sym_fn] = ACTIONS(574), + [anon_sym_for] = ACTIONS(574), + [anon_sym_gen] = ACTIONS(574), + [anon_sym_if] = ACTIONS(574), + [anon_sym_impl] = ACTIONS(574), + [anon_sym_let] = ACTIONS(574), + [anon_sym_loop] = ACTIONS(574), + [anon_sym_match] = ACTIONS(574), + [anon_sym_mod] = ACTIONS(574), + [anon_sym_pub] = ACTIONS(574), + [anon_sym_return] = ACTIONS(574), + [anon_sym_static] = ACTIONS(574), + [anon_sym_struct] = ACTIONS(574), + [anon_sym_trait] = ACTIONS(574), + [anon_sym_type] = ACTIONS(574), + [anon_sym_union] = ACTIONS(574), + [anon_sym_unsafe] = ACTIONS(574), + [anon_sym_use] = ACTIONS(574), + [anon_sym_where] = ACTIONS(574), + [anon_sym_while] = ACTIONS(574), + [sym_mutable_specifier] = ACTIONS(574), + [sym_integer_literal] = ACTIONS(590), + [aux_sym_string_literal_token1] = ACTIONS(592), + [sym_char_literal] = ACTIONS(590), + [anon_sym_true] = ACTIONS(594), + [anon_sym_false] = ACTIONS(594), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(574), + [sym_super] = ACTIONS(574), + [sym_crate] = ACTIONS(574), + [sym_metavariable] = ACTIONS(596), + [sym__raw_string_literal_start] = ACTIONS(598), + [sym_float_literal] = ACTIONS(590), }, [STATE(81)] = { - [sym__token_pattern] = STATE(156), - [sym_token_tree_pattern] = STATE(154), - [sym_token_binding_pattern] = STATE(154), - [sym_token_repetition_pattern] = STATE(154), - [sym__literal] = STATE(154), - [sym_string_literal] = STATE(183), - [sym_raw_string_literal] = STATE(183), - [sym_boolean_literal] = STATE(183), + [sym__token_pattern] = STATE(158), + [sym_token_tree_pattern] = STATE(153), + [sym_token_binding_pattern] = STATE(153), + [sym_token_repetition_pattern] = STATE(153), + [sym__literal] = STATE(153), + [sym_string_literal] = STATE(184), + [sym_raw_string_literal] = STATE(184), + [sym_boolean_literal] = STATE(184), [sym_line_comment] = STATE(81), [sym_block_comment] = STATE(81), - [aux_sym_token_tree_pattern_repeat1] = STATE(67), - [aux_sym__non_special_token_repeat1] = STATE(140), - [sym_identifier] = ACTIONS(607), - [anon_sym_SEMI] = ACTIONS(609), - [anon_sym_LPAREN] = ACTIONS(611), - [anon_sym_LBRACK] = ACTIONS(615), - [anon_sym_RBRACK] = ACTIONS(641), - [anon_sym_LBRACE] = ACTIONS(617), - [anon_sym_EQ_GT] = ACTIONS(609), - [anon_sym_COLON] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_STAR] = ACTIONS(619), - [anon_sym_QMARK] = ACTIONS(609), - [anon_sym_u8] = ACTIONS(607), - [anon_sym_i8] = ACTIONS(607), - [anon_sym_u16] = ACTIONS(607), - [anon_sym_i16] = ACTIONS(607), - [anon_sym_u32] = ACTIONS(607), - [anon_sym_i32] = ACTIONS(607), - [anon_sym_u64] = ACTIONS(607), - [anon_sym_i64] = ACTIONS(607), - [anon_sym_u128] = ACTIONS(607), - [anon_sym_i128] = ACTIONS(607), - [anon_sym_isize] = ACTIONS(607), - [anon_sym_usize] = ACTIONS(607), - [anon_sym_f32] = ACTIONS(607), - [anon_sym_f64] = ACTIONS(607), - [anon_sym_bool] = ACTIONS(607), - [anon_sym_str] = ACTIONS(607), - [anon_sym_char] = ACTIONS(607), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_SLASH] = ACTIONS(619), - [anon_sym_PERCENT] = ACTIONS(619), - [anon_sym_CARET] = ACTIONS(619), - [anon_sym_BANG] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(619), - [anon_sym_AMP_AMP] = ACTIONS(609), - [anon_sym_PIPE_PIPE] = ACTIONS(609), - [anon_sym_LT_LT] = ACTIONS(619), - [anon_sym_GT_GT] = ACTIONS(619), - [anon_sym_PLUS_EQ] = ACTIONS(609), - [anon_sym_DASH_EQ] = ACTIONS(609), - [anon_sym_STAR_EQ] = ACTIONS(609), - [anon_sym_SLASH_EQ] = ACTIONS(609), - [anon_sym_PERCENT_EQ] = ACTIONS(609), - [anon_sym_CARET_EQ] = ACTIONS(609), - [anon_sym_AMP_EQ] = ACTIONS(609), - [anon_sym_PIPE_EQ] = ACTIONS(609), - [anon_sym_LT_LT_EQ] = ACTIONS(609), - [anon_sym_GT_GT_EQ] = ACTIONS(609), - [anon_sym_EQ] = ACTIONS(619), - [anon_sym_EQ_EQ] = ACTIONS(609), - [anon_sym_BANG_EQ] = ACTIONS(609), - [anon_sym_GT] = ACTIONS(619), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_GT_EQ] = ACTIONS(609), - [anon_sym_LT_EQ] = ACTIONS(609), - [anon_sym_AT] = ACTIONS(609), - [anon_sym__] = ACTIONS(619), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_DOT_DOT] = ACTIONS(619), - [anon_sym_DOT_DOT_DOT] = ACTIONS(609), - [anon_sym_DOT_DOT_EQ] = ACTIONS(609), - [anon_sym_COMMA] = ACTIONS(609), - [anon_sym_COLON_COLON] = ACTIONS(609), - [anon_sym_DASH_GT] = ACTIONS(609), - [anon_sym_POUND] = ACTIONS(609), - [anon_sym_SQUOTE] = ACTIONS(607), - [anon_sym_as] = ACTIONS(607), - [anon_sym_async] = ACTIONS(607), - [anon_sym_await] = ACTIONS(607), - [anon_sym_break] = ACTIONS(607), - [anon_sym_const] = ACTIONS(607), - [anon_sym_continue] = ACTIONS(607), - [anon_sym_default] = ACTIONS(607), - [anon_sym_enum] = ACTIONS(607), - [anon_sym_fn] = ACTIONS(607), - [anon_sym_for] = ACTIONS(607), - [anon_sym_gen] = ACTIONS(607), - [anon_sym_if] = ACTIONS(607), - [anon_sym_impl] = ACTIONS(607), - [anon_sym_let] = ACTIONS(607), - [anon_sym_loop] = ACTIONS(607), - [anon_sym_match] = ACTIONS(607), - [anon_sym_mod] = ACTIONS(607), - [anon_sym_pub] = ACTIONS(607), - [anon_sym_return] = ACTIONS(607), - [anon_sym_static] = ACTIONS(607), - [anon_sym_struct] = ACTIONS(607), - [anon_sym_trait] = ACTIONS(607), - [anon_sym_type] = ACTIONS(607), - [anon_sym_union] = ACTIONS(607), - [anon_sym_unsafe] = ACTIONS(607), - [anon_sym_use] = ACTIONS(607), - [anon_sym_where] = ACTIONS(607), - [anon_sym_while] = ACTIONS(607), - [sym_mutable_specifier] = ACTIONS(607), - [sym_integer_literal] = ACTIONS(623), - [aux_sym_string_literal_token1] = ACTIONS(625), - [sym_char_literal] = ACTIONS(623), - [anon_sym_true] = ACTIONS(627), - [anon_sym_false] = ACTIONS(627), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(607), - [sym_super] = ACTIONS(607), - [sym_crate] = ACTIONS(607), - [sym_metavariable] = ACTIONS(629), - [sym__raw_string_literal_start] = ACTIONS(631), - [sym_float_literal] = ACTIONS(623), + [aux_sym_token_tree_pattern_repeat1] = STATE(80), + [aux_sym__non_special_token_repeat1] = STATE(135), + [sym_identifier] = ACTIONS(574), + [anon_sym_SEMI] = ACTIONS(576), + [anon_sym_LPAREN] = ACTIONS(578), + [anon_sym_RPAREN] = ACTIONS(608), + [anon_sym_LBRACK] = ACTIONS(582), + [anon_sym_LBRACE] = ACTIONS(584), + [anon_sym_EQ_GT] = ACTIONS(576), + [anon_sym_COLON] = ACTIONS(586), + [anon_sym_DOLLAR] = ACTIONS(588), + [anon_sym_PLUS] = ACTIONS(586), + [anon_sym_STAR] = ACTIONS(586), + [anon_sym_QMARK] = ACTIONS(576), + [anon_sym_u8] = ACTIONS(574), + [anon_sym_i8] = ACTIONS(574), + [anon_sym_u16] = ACTIONS(574), + [anon_sym_i16] = ACTIONS(574), + [anon_sym_u32] = ACTIONS(574), + [anon_sym_i32] = ACTIONS(574), + [anon_sym_u64] = ACTIONS(574), + [anon_sym_i64] = ACTIONS(574), + [anon_sym_u128] = ACTIONS(574), + [anon_sym_i128] = ACTIONS(574), + [anon_sym_isize] = ACTIONS(574), + [anon_sym_usize] = ACTIONS(574), + [anon_sym_f32] = ACTIONS(574), + [anon_sym_f64] = ACTIONS(574), + [anon_sym_bool] = ACTIONS(574), + [anon_sym_str] = ACTIONS(574), + [anon_sym_char] = ACTIONS(574), + [anon_sym_DASH] = ACTIONS(586), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_PERCENT] = ACTIONS(586), + [anon_sym_CARET] = ACTIONS(586), + [anon_sym_BANG] = ACTIONS(586), + [anon_sym_AMP] = ACTIONS(586), + [anon_sym_PIPE] = ACTIONS(586), + [anon_sym_AMP_AMP] = ACTIONS(576), + [anon_sym_PIPE_PIPE] = ACTIONS(576), + [anon_sym_LT_LT] = ACTIONS(586), + [anon_sym_GT_GT] = ACTIONS(586), + [anon_sym_PLUS_EQ] = ACTIONS(576), + [anon_sym_DASH_EQ] = ACTIONS(576), + [anon_sym_STAR_EQ] = ACTIONS(576), + [anon_sym_SLASH_EQ] = ACTIONS(576), + [anon_sym_PERCENT_EQ] = ACTIONS(576), + [anon_sym_CARET_EQ] = ACTIONS(576), + [anon_sym_AMP_EQ] = ACTIONS(576), + [anon_sym_PIPE_EQ] = ACTIONS(576), + [anon_sym_LT_LT_EQ] = ACTIONS(576), + [anon_sym_GT_GT_EQ] = ACTIONS(576), + [anon_sym_EQ] = ACTIONS(586), + [anon_sym_EQ_EQ] = ACTIONS(576), + [anon_sym_BANG_EQ] = ACTIONS(576), + [anon_sym_GT] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(586), + [anon_sym_GT_EQ] = ACTIONS(576), + [anon_sym_LT_EQ] = ACTIONS(576), + [anon_sym_AT] = ACTIONS(576), + [anon_sym__] = ACTIONS(586), + [anon_sym_DOT] = ACTIONS(586), + [anon_sym_DOT_DOT] = ACTIONS(586), + [anon_sym_DOT_DOT_DOT] = ACTIONS(576), + [anon_sym_DOT_DOT_EQ] = ACTIONS(576), + [anon_sym_COMMA] = ACTIONS(576), + [anon_sym_COLON_COLON] = ACTIONS(576), + [anon_sym_DASH_GT] = ACTIONS(576), + [anon_sym_POUND] = ACTIONS(576), + [anon_sym_SQUOTE] = ACTIONS(574), + [anon_sym_as] = ACTIONS(574), + [anon_sym_async] = ACTIONS(574), + [anon_sym_await] = ACTIONS(574), + [anon_sym_break] = ACTIONS(574), + [anon_sym_const] = ACTIONS(574), + [anon_sym_continue] = ACTIONS(574), + [anon_sym_default] = ACTIONS(574), + [anon_sym_enum] = ACTIONS(574), + [anon_sym_fn] = ACTIONS(574), + [anon_sym_for] = ACTIONS(574), + [anon_sym_gen] = ACTIONS(574), + [anon_sym_if] = ACTIONS(574), + [anon_sym_impl] = ACTIONS(574), + [anon_sym_let] = ACTIONS(574), + [anon_sym_loop] = ACTIONS(574), + [anon_sym_match] = ACTIONS(574), + [anon_sym_mod] = ACTIONS(574), + [anon_sym_pub] = ACTIONS(574), + [anon_sym_return] = ACTIONS(574), + [anon_sym_static] = ACTIONS(574), + [anon_sym_struct] = ACTIONS(574), + [anon_sym_trait] = ACTIONS(574), + [anon_sym_type] = ACTIONS(574), + [anon_sym_union] = ACTIONS(574), + [anon_sym_unsafe] = ACTIONS(574), + [anon_sym_use] = ACTIONS(574), + [anon_sym_where] = ACTIONS(574), + [anon_sym_while] = ACTIONS(574), + [sym_mutable_specifier] = ACTIONS(574), + [sym_integer_literal] = ACTIONS(590), + [aux_sym_string_literal_token1] = ACTIONS(592), + [sym_char_literal] = ACTIONS(590), + [anon_sym_true] = ACTIONS(594), + [anon_sym_false] = ACTIONS(594), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(574), + [sym_super] = ACTIONS(574), + [sym_crate] = ACTIONS(574), + [sym_metavariable] = ACTIONS(596), + [sym__raw_string_literal_start] = ACTIONS(598), + [sym_float_literal] = ACTIONS(590), }, [STATE(82)] = { - [sym__token_pattern] = STATE(156), - [sym_token_tree_pattern] = STATE(154), - [sym_token_binding_pattern] = STATE(154), - [sym_token_repetition_pattern] = STATE(154), - [sym__literal] = STATE(154), - [sym_string_literal] = STATE(183), - [sym_raw_string_literal] = STATE(183), - [sym_boolean_literal] = STATE(183), + [sym_token_tree] = STATE(163), + [sym_token_repetition] = STATE(163), + [sym__literal] = STATE(163), + [sym_string_literal] = STATE(184), + [sym_raw_string_literal] = STATE(184), + [sym_boolean_literal] = STATE(184), [sym_line_comment] = STATE(82), [sym_block_comment] = STATE(82), - [aux_sym_token_tree_pattern_repeat1] = STATE(67), - [aux_sym__non_special_token_repeat1] = STATE(140), - [sym_identifier] = ACTIONS(607), - [anon_sym_SEMI] = ACTIONS(609), - [anon_sym_LPAREN] = ACTIONS(611), - [anon_sym_LBRACK] = ACTIONS(615), - [anon_sym_LBRACE] = ACTIONS(617), - [anon_sym_RBRACE] = ACTIONS(641), - [anon_sym_EQ_GT] = ACTIONS(609), - [anon_sym_COLON] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_STAR] = ACTIONS(619), - [anon_sym_QMARK] = ACTIONS(609), - [anon_sym_u8] = ACTIONS(607), - [anon_sym_i8] = ACTIONS(607), - [anon_sym_u16] = ACTIONS(607), - [anon_sym_i16] = ACTIONS(607), - [anon_sym_u32] = ACTIONS(607), - [anon_sym_i32] = ACTIONS(607), - [anon_sym_u64] = ACTIONS(607), - [anon_sym_i64] = ACTIONS(607), - [anon_sym_u128] = ACTIONS(607), - [anon_sym_i128] = ACTIONS(607), - [anon_sym_isize] = ACTIONS(607), - [anon_sym_usize] = ACTIONS(607), - [anon_sym_f32] = ACTIONS(607), - [anon_sym_f64] = ACTIONS(607), - [anon_sym_bool] = ACTIONS(607), - [anon_sym_str] = ACTIONS(607), - [anon_sym_char] = ACTIONS(607), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_SLASH] = ACTIONS(619), - [anon_sym_PERCENT] = ACTIONS(619), - [anon_sym_CARET] = ACTIONS(619), - [anon_sym_BANG] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(619), - [anon_sym_AMP_AMP] = ACTIONS(609), - [anon_sym_PIPE_PIPE] = ACTIONS(609), - [anon_sym_LT_LT] = ACTIONS(619), - [anon_sym_GT_GT] = ACTIONS(619), - [anon_sym_PLUS_EQ] = ACTIONS(609), - [anon_sym_DASH_EQ] = ACTIONS(609), - [anon_sym_STAR_EQ] = ACTIONS(609), - [anon_sym_SLASH_EQ] = ACTIONS(609), - [anon_sym_PERCENT_EQ] = ACTIONS(609), - [anon_sym_CARET_EQ] = ACTIONS(609), - [anon_sym_AMP_EQ] = ACTIONS(609), - [anon_sym_PIPE_EQ] = ACTIONS(609), - [anon_sym_LT_LT_EQ] = ACTIONS(609), - [anon_sym_GT_GT_EQ] = ACTIONS(609), - [anon_sym_EQ] = ACTIONS(619), - [anon_sym_EQ_EQ] = ACTIONS(609), - [anon_sym_BANG_EQ] = ACTIONS(609), - [anon_sym_GT] = ACTIONS(619), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_GT_EQ] = ACTIONS(609), - [anon_sym_LT_EQ] = ACTIONS(609), - [anon_sym_AT] = ACTIONS(609), - [anon_sym__] = ACTIONS(619), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_DOT_DOT] = ACTIONS(619), - [anon_sym_DOT_DOT_DOT] = ACTIONS(609), - [anon_sym_DOT_DOT_EQ] = ACTIONS(609), - [anon_sym_COMMA] = ACTIONS(609), - [anon_sym_COLON_COLON] = ACTIONS(609), - [anon_sym_DASH_GT] = ACTIONS(609), - [anon_sym_POUND] = ACTIONS(609), - [anon_sym_SQUOTE] = ACTIONS(607), - [anon_sym_as] = ACTIONS(607), - [anon_sym_async] = ACTIONS(607), - [anon_sym_await] = ACTIONS(607), - [anon_sym_break] = ACTIONS(607), - [anon_sym_const] = ACTIONS(607), - [anon_sym_continue] = ACTIONS(607), - [anon_sym_default] = ACTIONS(607), - [anon_sym_enum] = ACTIONS(607), - [anon_sym_fn] = ACTIONS(607), - [anon_sym_for] = ACTIONS(607), - [anon_sym_gen] = ACTIONS(607), - [anon_sym_if] = ACTIONS(607), - [anon_sym_impl] = ACTIONS(607), - [anon_sym_let] = ACTIONS(607), - [anon_sym_loop] = ACTIONS(607), - [anon_sym_match] = ACTIONS(607), - [anon_sym_mod] = ACTIONS(607), - [anon_sym_pub] = ACTIONS(607), - [anon_sym_return] = ACTIONS(607), - [anon_sym_static] = ACTIONS(607), - [anon_sym_struct] = ACTIONS(607), - [anon_sym_trait] = ACTIONS(607), - [anon_sym_type] = ACTIONS(607), - [anon_sym_union] = ACTIONS(607), - [anon_sym_unsafe] = ACTIONS(607), - [anon_sym_use] = ACTIONS(607), - [anon_sym_where] = ACTIONS(607), - [anon_sym_while] = ACTIONS(607), - [sym_mutable_specifier] = ACTIONS(607), - [sym_integer_literal] = ACTIONS(623), - [aux_sym_string_literal_token1] = ACTIONS(625), - [sym_char_literal] = ACTIONS(623), - [anon_sym_true] = ACTIONS(627), - [anon_sym_false] = ACTIONS(627), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(607), - [sym_super] = ACTIONS(607), - [sym_crate] = ACTIONS(607), - [sym_metavariable] = ACTIONS(629), - [sym__raw_string_literal_start] = ACTIONS(631), - [sym_float_literal] = ACTIONS(623), + [aux_sym_token_tree_repeat1] = STATE(82), + [aux_sym__non_special_token_repeat1] = STATE(141), + [sym_identifier] = ACTIONS(610), + [anon_sym_SEMI] = ACTIONS(613), + [anon_sym_LPAREN] = ACTIONS(616), + [anon_sym_RPAREN] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(621), + [anon_sym_RBRACK] = ACTIONS(619), + [anon_sym_LBRACE] = ACTIONS(624), + [anon_sym_RBRACE] = ACTIONS(619), + [anon_sym_EQ_GT] = ACTIONS(613), + [anon_sym_COLON] = ACTIONS(627), + [anon_sym_DOLLAR] = ACTIONS(630), + [anon_sym_PLUS] = ACTIONS(627), + [anon_sym_STAR] = ACTIONS(627), + [anon_sym_QMARK] = ACTIONS(613), + [anon_sym_u8] = ACTIONS(610), + [anon_sym_i8] = ACTIONS(610), + [anon_sym_u16] = ACTIONS(610), + [anon_sym_i16] = ACTIONS(610), + [anon_sym_u32] = ACTIONS(610), + [anon_sym_i32] = ACTIONS(610), + [anon_sym_u64] = ACTIONS(610), + [anon_sym_i64] = ACTIONS(610), + [anon_sym_u128] = ACTIONS(610), + [anon_sym_i128] = ACTIONS(610), + [anon_sym_isize] = ACTIONS(610), + [anon_sym_usize] = ACTIONS(610), + [anon_sym_f32] = ACTIONS(610), + [anon_sym_f64] = ACTIONS(610), + [anon_sym_bool] = ACTIONS(610), + [anon_sym_str] = ACTIONS(610), + [anon_sym_char] = ACTIONS(610), + [anon_sym_DASH] = ACTIONS(627), + [anon_sym_SLASH] = ACTIONS(627), + [anon_sym_PERCENT] = ACTIONS(627), + [anon_sym_CARET] = ACTIONS(627), + [anon_sym_BANG] = ACTIONS(627), + [anon_sym_AMP] = ACTIONS(627), + [anon_sym_PIPE] = ACTIONS(627), + [anon_sym_AMP_AMP] = ACTIONS(613), + [anon_sym_PIPE_PIPE] = ACTIONS(613), + [anon_sym_LT_LT] = ACTIONS(627), + [anon_sym_GT_GT] = ACTIONS(627), + [anon_sym_PLUS_EQ] = ACTIONS(613), + [anon_sym_DASH_EQ] = ACTIONS(613), + [anon_sym_STAR_EQ] = ACTIONS(613), + [anon_sym_SLASH_EQ] = ACTIONS(613), + [anon_sym_PERCENT_EQ] = ACTIONS(613), + [anon_sym_CARET_EQ] = ACTIONS(613), + [anon_sym_AMP_EQ] = ACTIONS(613), + [anon_sym_PIPE_EQ] = ACTIONS(613), + [anon_sym_LT_LT_EQ] = ACTIONS(613), + [anon_sym_GT_GT_EQ] = ACTIONS(613), + [anon_sym_EQ] = ACTIONS(627), + [anon_sym_EQ_EQ] = ACTIONS(613), + [anon_sym_BANG_EQ] = ACTIONS(613), + [anon_sym_GT] = ACTIONS(627), + [anon_sym_LT] = ACTIONS(627), + [anon_sym_GT_EQ] = ACTIONS(613), + [anon_sym_LT_EQ] = ACTIONS(613), + [anon_sym_AT] = ACTIONS(613), + [anon_sym__] = ACTIONS(627), + [anon_sym_DOT] = ACTIONS(627), + [anon_sym_DOT_DOT] = ACTIONS(627), + [anon_sym_DOT_DOT_DOT] = ACTIONS(613), + [anon_sym_DOT_DOT_EQ] = ACTIONS(613), + [anon_sym_COMMA] = ACTIONS(613), + [anon_sym_COLON_COLON] = ACTIONS(613), + [anon_sym_DASH_GT] = ACTIONS(613), + [anon_sym_POUND] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(610), + [anon_sym_as] = ACTIONS(610), + [anon_sym_async] = ACTIONS(610), + [anon_sym_await] = ACTIONS(610), + [anon_sym_break] = ACTIONS(610), + [anon_sym_const] = ACTIONS(610), + [anon_sym_continue] = ACTIONS(610), + [anon_sym_default] = ACTIONS(610), + [anon_sym_enum] = ACTIONS(610), + [anon_sym_fn] = ACTIONS(610), + [anon_sym_for] = ACTIONS(610), + [anon_sym_gen] = ACTIONS(610), + [anon_sym_if] = ACTIONS(610), + [anon_sym_impl] = ACTIONS(610), + [anon_sym_let] = ACTIONS(610), + [anon_sym_loop] = ACTIONS(610), + [anon_sym_match] = ACTIONS(610), + [anon_sym_mod] = ACTIONS(610), + [anon_sym_pub] = ACTIONS(610), + [anon_sym_return] = ACTIONS(610), + [anon_sym_static] = ACTIONS(610), + [anon_sym_struct] = ACTIONS(610), + [anon_sym_trait] = ACTIONS(610), + [anon_sym_type] = ACTIONS(610), + [anon_sym_union] = ACTIONS(610), + [anon_sym_unsafe] = ACTIONS(610), + [anon_sym_use] = ACTIONS(610), + [anon_sym_where] = ACTIONS(610), + [anon_sym_while] = ACTIONS(610), + [sym_mutable_specifier] = ACTIONS(610), + [sym_integer_literal] = ACTIONS(633), + [aux_sym_string_literal_token1] = ACTIONS(636), + [sym_char_literal] = ACTIONS(633), + [anon_sym_true] = ACTIONS(639), + [anon_sym_false] = ACTIONS(639), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(610), + [sym_super] = ACTIONS(610), + [sym_crate] = ACTIONS(610), + [sym_metavariable] = ACTIONS(642), + [sym__raw_string_literal_start] = ACTIONS(645), + [sym_float_literal] = ACTIONS(633), }, [STATE(83)] = { - [sym_delim_token_tree] = STATE(200), - [sym__delim_tokens] = STATE(208), - [sym__non_delim_token] = STATE(200), - [sym__literal] = STATE(210), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), + [sym_delim_token_tree] = STATE(206), + [sym__delim_tokens] = STATE(213), + [sym__non_delim_token] = STATE(206), + [sym__literal] = STATE(201), + [sym_string_literal] = STATE(219), + [sym_raw_string_literal] = STATE(219), + [sym_boolean_literal] = STATE(219), [sym_line_comment] = STATE(83), [sym_block_comment] = STATE(83), - [aux_sym__non_special_token_repeat1] = STATE(147), + [aux_sym__non_special_token_repeat1] = STATE(176), [aux_sym_delim_token_tree_repeat1] = STATE(83), - [sym_identifier] = ACTIONS(643), - [anon_sym_SEMI] = ACTIONS(646), - [anon_sym_LPAREN] = ACTIONS(649), - [anon_sym_RPAREN] = ACTIONS(652), - [anon_sym_LBRACK] = ACTIONS(654), - [anon_sym_RBRACK] = ACTIONS(652), - [anon_sym_LBRACE] = ACTIONS(657), - [anon_sym_RBRACE] = ACTIONS(652), - [anon_sym_EQ_GT] = ACTIONS(646), - [anon_sym_COLON] = ACTIONS(660), - [anon_sym_DOLLAR] = ACTIONS(663), - [anon_sym_PLUS] = ACTIONS(660), - [anon_sym_STAR] = ACTIONS(660), - [anon_sym_QMARK] = ACTIONS(646), - [anon_sym_u8] = ACTIONS(643), - [anon_sym_i8] = ACTIONS(643), - [anon_sym_u16] = ACTIONS(643), - [anon_sym_i16] = ACTIONS(643), - [anon_sym_u32] = ACTIONS(643), - [anon_sym_i32] = ACTIONS(643), - [anon_sym_u64] = ACTIONS(643), - [anon_sym_i64] = ACTIONS(643), - [anon_sym_u128] = ACTIONS(643), - [anon_sym_i128] = ACTIONS(643), - [anon_sym_isize] = ACTIONS(643), - [anon_sym_usize] = ACTIONS(643), - [anon_sym_f32] = ACTIONS(643), - [anon_sym_f64] = ACTIONS(643), - [anon_sym_bool] = ACTIONS(643), - [anon_sym_str] = ACTIONS(643), - [anon_sym_char] = ACTIONS(643), - [anon_sym_DASH] = ACTIONS(660), - [anon_sym_SLASH] = ACTIONS(660), - [anon_sym_PERCENT] = ACTIONS(660), - [anon_sym_CARET] = ACTIONS(660), - [anon_sym_BANG] = ACTIONS(660), - [anon_sym_AMP] = ACTIONS(660), - [anon_sym_PIPE] = ACTIONS(660), - [anon_sym_AMP_AMP] = ACTIONS(646), - [anon_sym_PIPE_PIPE] = ACTIONS(646), - [anon_sym_LT_LT] = ACTIONS(660), - [anon_sym_GT_GT] = ACTIONS(660), - [anon_sym_PLUS_EQ] = ACTIONS(646), - [anon_sym_DASH_EQ] = ACTIONS(646), - [anon_sym_STAR_EQ] = ACTIONS(646), - [anon_sym_SLASH_EQ] = ACTIONS(646), - [anon_sym_PERCENT_EQ] = ACTIONS(646), - [anon_sym_CARET_EQ] = ACTIONS(646), - [anon_sym_AMP_EQ] = ACTIONS(646), - [anon_sym_PIPE_EQ] = ACTIONS(646), - [anon_sym_LT_LT_EQ] = ACTIONS(646), - [anon_sym_GT_GT_EQ] = ACTIONS(646), - [anon_sym_EQ] = ACTIONS(660), - [anon_sym_EQ_EQ] = ACTIONS(646), - [anon_sym_BANG_EQ] = ACTIONS(646), - [anon_sym_GT] = ACTIONS(660), - [anon_sym_LT] = ACTIONS(660), - [anon_sym_GT_EQ] = ACTIONS(646), - [anon_sym_LT_EQ] = ACTIONS(646), - [anon_sym_AT] = ACTIONS(646), - [anon_sym__] = ACTIONS(660), - [anon_sym_DOT] = ACTIONS(660), - [anon_sym_DOT_DOT] = ACTIONS(660), - [anon_sym_DOT_DOT_DOT] = ACTIONS(646), - [anon_sym_DOT_DOT_EQ] = ACTIONS(646), - [anon_sym_COMMA] = ACTIONS(646), - [anon_sym_COLON_COLON] = ACTIONS(646), - [anon_sym_DASH_GT] = ACTIONS(646), - [anon_sym_POUND] = ACTIONS(646), - [anon_sym_SQUOTE] = ACTIONS(643), - [anon_sym_as] = ACTIONS(643), - [anon_sym_async] = ACTIONS(643), - [anon_sym_await] = ACTIONS(643), - [anon_sym_break] = ACTIONS(643), - [anon_sym_const] = ACTIONS(643), - [anon_sym_continue] = ACTIONS(643), - [anon_sym_default] = ACTIONS(643), - [anon_sym_enum] = ACTIONS(643), - [anon_sym_fn] = ACTIONS(643), - [anon_sym_for] = ACTIONS(643), - [anon_sym_gen] = ACTIONS(643), - [anon_sym_if] = ACTIONS(643), - [anon_sym_impl] = ACTIONS(643), - [anon_sym_let] = ACTIONS(643), - [anon_sym_loop] = ACTIONS(643), - [anon_sym_match] = ACTIONS(643), - [anon_sym_mod] = ACTIONS(643), - [anon_sym_pub] = ACTIONS(643), - [anon_sym_return] = ACTIONS(643), - [anon_sym_static] = ACTIONS(643), - [anon_sym_struct] = ACTIONS(643), - [anon_sym_trait] = ACTIONS(643), - [anon_sym_type] = ACTIONS(643), - [anon_sym_union] = ACTIONS(643), - [anon_sym_unsafe] = ACTIONS(643), - [anon_sym_use] = ACTIONS(643), - [anon_sym_where] = ACTIONS(643), - [anon_sym_while] = ACTIONS(643), - [sym_mutable_specifier] = ACTIONS(643), - [sym_integer_literal] = ACTIONS(666), - [aux_sym_string_literal_token1] = ACTIONS(669), - [sym_char_literal] = ACTIONS(666), - [anon_sym_true] = ACTIONS(672), - [anon_sym_false] = ACTIONS(672), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(643), - [sym_super] = ACTIONS(643), - [sym_crate] = ACTIONS(643), - [sym__raw_string_literal_start] = ACTIONS(675), - [sym_float_literal] = ACTIONS(666), + [sym_identifier] = ACTIONS(648), + [anon_sym_SEMI] = ACTIONS(651), + [anon_sym_LPAREN] = ACTIONS(654), + [anon_sym_RPAREN] = ACTIONS(657), + [anon_sym_LBRACK] = ACTIONS(659), + [anon_sym_RBRACK] = ACTIONS(657), + [anon_sym_LBRACE] = ACTIONS(662), + [anon_sym_RBRACE] = ACTIONS(657), + [anon_sym_EQ_GT] = ACTIONS(651), + [anon_sym_COLON] = ACTIONS(665), + [anon_sym_DOLLAR] = ACTIONS(668), + [anon_sym_PLUS] = ACTIONS(665), + [anon_sym_STAR] = ACTIONS(665), + [anon_sym_QMARK] = ACTIONS(651), + [anon_sym_u8] = ACTIONS(648), + [anon_sym_i8] = ACTIONS(648), + [anon_sym_u16] = ACTIONS(648), + [anon_sym_i16] = ACTIONS(648), + [anon_sym_u32] = ACTIONS(648), + [anon_sym_i32] = ACTIONS(648), + [anon_sym_u64] = ACTIONS(648), + [anon_sym_i64] = ACTIONS(648), + [anon_sym_u128] = ACTIONS(648), + [anon_sym_i128] = ACTIONS(648), + [anon_sym_isize] = ACTIONS(648), + [anon_sym_usize] = ACTIONS(648), + [anon_sym_f32] = ACTIONS(648), + [anon_sym_f64] = ACTIONS(648), + [anon_sym_bool] = ACTIONS(648), + [anon_sym_str] = ACTIONS(648), + [anon_sym_char] = ACTIONS(648), + [anon_sym_DASH] = ACTIONS(665), + [anon_sym_SLASH] = ACTIONS(665), + [anon_sym_PERCENT] = ACTIONS(665), + [anon_sym_CARET] = ACTIONS(665), + [anon_sym_BANG] = ACTIONS(665), + [anon_sym_AMP] = ACTIONS(665), + [anon_sym_PIPE] = ACTIONS(665), + [anon_sym_AMP_AMP] = ACTIONS(651), + [anon_sym_PIPE_PIPE] = ACTIONS(651), + [anon_sym_LT_LT] = ACTIONS(665), + [anon_sym_GT_GT] = ACTIONS(665), + [anon_sym_PLUS_EQ] = ACTIONS(651), + [anon_sym_DASH_EQ] = ACTIONS(651), + [anon_sym_STAR_EQ] = ACTIONS(651), + [anon_sym_SLASH_EQ] = ACTIONS(651), + [anon_sym_PERCENT_EQ] = ACTIONS(651), + [anon_sym_CARET_EQ] = ACTIONS(651), + [anon_sym_AMP_EQ] = ACTIONS(651), + [anon_sym_PIPE_EQ] = ACTIONS(651), + [anon_sym_LT_LT_EQ] = ACTIONS(651), + [anon_sym_GT_GT_EQ] = ACTIONS(651), + [anon_sym_EQ] = ACTIONS(665), + [anon_sym_EQ_EQ] = ACTIONS(651), + [anon_sym_BANG_EQ] = ACTIONS(651), + [anon_sym_GT] = ACTIONS(665), + [anon_sym_LT] = ACTIONS(665), + [anon_sym_GT_EQ] = ACTIONS(651), + [anon_sym_LT_EQ] = ACTIONS(651), + [anon_sym_AT] = ACTIONS(651), + [anon_sym__] = ACTIONS(665), + [anon_sym_DOT] = ACTIONS(665), + [anon_sym_DOT_DOT] = ACTIONS(665), + [anon_sym_DOT_DOT_DOT] = ACTIONS(651), + [anon_sym_DOT_DOT_EQ] = ACTIONS(651), + [anon_sym_COMMA] = ACTIONS(651), + [anon_sym_COLON_COLON] = ACTIONS(651), + [anon_sym_DASH_GT] = ACTIONS(651), + [anon_sym_POUND] = ACTIONS(651), + [anon_sym_SQUOTE] = ACTIONS(648), + [anon_sym_as] = ACTIONS(648), + [anon_sym_async] = ACTIONS(648), + [anon_sym_await] = ACTIONS(648), + [anon_sym_break] = ACTIONS(648), + [anon_sym_const] = ACTIONS(648), + [anon_sym_continue] = ACTIONS(648), + [anon_sym_default] = ACTIONS(648), + [anon_sym_enum] = ACTIONS(648), + [anon_sym_fn] = ACTIONS(648), + [anon_sym_for] = ACTIONS(648), + [anon_sym_gen] = ACTIONS(648), + [anon_sym_if] = ACTIONS(648), + [anon_sym_impl] = ACTIONS(648), + [anon_sym_let] = ACTIONS(648), + [anon_sym_loop] = ACTIONS(648), + [anon_sym_match] = ACTIONS(648), + [anon_sym_mod] = ACTIONS(648), + [anon_sym_pub] = ACTIONS(648), + [anon_sym_return] = ACTIONS(648), + [anon_sym_static] = ACTIONS(648), + [anon_sym_struct] = ACTIONS(648), + [anon_sym_trait] = ACTIONS(648), + [anon_sym_type] = ACTIONS(648), + [anon_sym_union] = ACTIONS(648), + [anon_sym_unsafe] = ACTIONS(648), + [anon_sym_use] = ACTIONS(648), + [anon_sym_where] = ACTIONS(648), + [anon_sym_while] = ACTIONS(648), + [sym_mutable_specifier] = ACTIONS(648), + [sym_integer_literal] = ACTIONS(671), + [aux_sym_string_literal_token1] = ACTIONS(674), + [sym_char_literal] = ACTIONS(671), + [anon_sym_true] = ACTIONS(677), + [anon_sym_false] = ACTIONS(677), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(648), + [sym_super] = ACTIONS(648), + [sym_crate] = ACTIONS(648), + [sym__raw_string_literal_start] = ACTIONS(680), + [sym_float_literal] = ACTIONS(671), }, [STATE(84)] = { - [sym_delim_token_tree] = STATE(200), - [sym__delim_tokens] = STATE(208), - [sym__non_delim_token] = STATE(200), - [sym__literal] = STATE(210), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), + [sym_delim_token_tree] = STATE(206), + [sym__delim_tokens] = STATE(213), + [sym__non_delim_token] = STATE(206), + [sym__literal] = STATE(201), + [sym_string_literal] = STATE(219), + [sym_raw_string_literal] = STATE(219), + [sym_boolean_literal] = STATE(219), [sym_line_comment] = STATE(84), [sym_block_comment] = STATE(84), - [aux_sym__non_special_token_repeat1] = STATE(147), + [aux_sym__non_special_token_repeat1] = STATE(176), [aux_sym_delim_token_tree_repeat1] = STATE(83), - [sym_identifier] = ACTIONS(678), - [anon_sym_SEMI] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(682), - [anon_sym_LBRACK] = ACTIONS(684), - [anon_sym_RBRACK] = ACTIONS(686), - [anon_sym_LBRACE] = ACTIONS(688), - [anon_sym_EQ_GT] = ACTIONS(680), - [anon_sym_COLON] = ACTIONS(690), - [anon_sym_DOLLAR] = ACTIONS(692), - [anon_sym_PLUS] = ACTIONS(690), - [anon_sym_STAR] = ACTIONS(690), - [anon_sym_QMARK] = ACTIONS(680), - [anon_sym_u8] = ACTIONS(678), - [anon_sym_i8] = ACTIONS(678), - [anon_sym_u16] = ACTIONS(678), - [anon_sym_i16] = ACTIONS(678), - [anon_sym_u32] = ACTIONS(678), - [anon_sym_i32] = ACTIONS(678), - [anon_sym_u64] = ACTIONS(678), - [anon_sym_i64] = ACTIONS(678), - [anon_sym_u128] = ACTIONS(678), - [anon_sym_i128] = ACTIONS(678), - [anon_sym_isize] = ACTIONS(678), - [anon_sym_usize] = ACTIONS(678), - [anon_sym_f32] = ACTIONS(678), - [anon_sym_f64] = ACTIONS(678), - [anon_sym_bool] = ACTIONS(678), - [anon_sym_str] = ACTIONS(678), - [anon_sym_char] = ACTIONS(678), - [anon_sym_DASH] = ACTIONS(690), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_PERCENT] = ACTIONS(690), - [anon_sym_CARET] = ACTIONS(690), - [anon_sym_BANG] = ACTIONS(690), - [anon_sym_AMP] = ACTIONS(690), - [anon_sym_PIPE] = ACTIONS(690), - [anon_sym_AMP_AMP] = ACTIONS(680), - [anon_sym_PIPE_PIPE] = ACTIONS(680), - [anon_sym_LT_LT] = ACTIONS(690), - [anon_sym_GT_GT] = ACTIONS(690), - [anon_sym_PLUS_EQ] = ACTIONS(680), - [anon_sym_DASH_EQ] = ACTIONS(680), - [anon_sym_STAR_EQ] = ACTIONS(680), - [anon_sym_SLASH_EQ] = ACTIONS(680), - [anon_sym_PERCENT_EQ] = ACTIONS(680), - [anon_sym_CARET_EQ] = ACTIONS(680), - [anon_sym_AMP_EQ] = ACTIONS(680), - [anon_sym_PIPE_EQ] = ACTIONS(680), - [anon_sym_LT_LT_EQ] = ACTIONS(680), - [anon_sym_GT_GT_EQ] = ACTIONS(680), - [anon_sym_EQ] = ACTIONS(690), - [anon_sym_EQ_EQ] = ACTIONS(680), - [anon_sym_BANG_EQ] = ACTIONS(680), - [anon_sym_GT] = ACTIONS(690), - [anon_sym_LT] = ACTIONS(690), - [anon_sym_GT_EQ] = ACTIONS(680), - [anon_sym_LT_EQ] = ACTIONS(680), - [anon_sym_AT] = ACTIONS(680), - [anon_sym__] = ACTIONS(690), - [anon_sym_DOT] = ACTIONS(690), - [anon_sym_DOT_DOT] = ACTIONS(690), - [anon_sym_DOT_DOT_DOT] = ACTIONS(680), - [anon_sym_DOT_DOT_EQ] = ACTIONS(680), - [anon_sym_COMMA] = ACTIONS(680), - [anon_sym_COLON_COLON] = ACTIONS(680), - [anon_sym_DASH_GT] = ACTIONS(680), - [anon_sym_POUND] = ACTIONS(680), - [anon_sym_SQUOTE] = ACTIONS(678), - [anon_sym_as] = ACTIONS(678), - [anon_sym_async] = ACTIONS(678), - [anon_sym_await] = ACTIONS(678), - [anon_sym_break] = ACTIONS(678), - [anon_sym_const] = ACTIONS(678), - [anon_sym_continue] = ACTIONS(678), - [anon_sym_default] = ACTIONS(678), - [anon_sym_enum] = ACTIONS(678), - [anon_sym_fn] = ACTIONS(678), - [anon_sym_for] = ACTIONS(678), - [anon_sym_gen] = ACTIONS(678), - [anon_sym_if] = ACTIONS(678), - [anon_sym_impl] = ACTIONS(678), - [anon_sym_let] = ACTIONS(678), - [anon_sym_loop] = ACTIONS(678), - [anon_sym_match] = ACTIONS(678), - [anon_sym_mod] = ACTIONS(678), - [anon_sym_pub] = ACTIONS(678), - [anon_sym_return] = ACTIONS(678), - [anon_sym_static] = ACTIONS(678), - [anon_sym_struct] = ACTIONS(678), - [anon_sym_trait] = ACTIONS(678), - [anon_sym_type] = ACTIONS(678), - [anon_sym_union] = ACTIONS(678), - [anon_sym_unsafe] = ACTIONS(678), - [anon_sym_use] = ACTIONS(678), - [anon_sym_where] = ACTIONS(678), - [anon_sym_while] = ACTIONS(678), - [sym_mutable_specifier] = ACTIONS(678), - [sym_integer_literal] = ACTIONS(694), - [aux_sym_string_literal_token1] = ACTIONS(696), - [sym_char_literal] = ACTIONS(694), - [anon_sym_true] = ACTIONS(698), - [anon_sym_false] = ACTIONS(698), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(678), - [sym_super] = ACTIONS(678), - [sym_crate] = ACTIONS(678), - [sym__raw_string_literal_start] = ACTIONS(700), - [sym_float_literal] = ACTIONS(694), + [sym_identifier] = ACTIONS(683), + [anon_sym_SEMI] = ACTIONS(685), + [anon_sym_LPAREN] = ACTIONS(687), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_RBRACK] = ACTIONS(691), + [anon_sym_LBRACE] = ACTIONS(693), + [anon_sym_EQ_GT] = ACTIONS(685), + [anon_sym_COLON] = ACTIONS(695), + [anon_sym_DOLLAR] = ACTIONS(697), + [anon_sym_PLUS] = ACTIONS(695), + [anon_sym_STAR] = ACTIONS(695), + [anon_sym_QMARK] = ACTIONS(685), + [anon_sym_u8] = ACTIONS(683), + [anon_sym_i8] = ACTIONS(683), + [anon_sym_u16] = ACTIONS(683), + [anon_sym_i16] = ACTIONS(683), + [anon_sym_u32] = ACTIONS(683), + [anon_sym_i32] = ACTIONS(683), + [anon_sym_u64] = ACTIONS(683), + [anon_sym_i64] = ACTIONS(683), + [anon_sym_u128] = ACTIONS(683), + [anon_sym_i128] = ACTIONS(683), + [anon_sym_isize] = ACTIONS(683), + [anon_sym_usize] = ACTIONS(683), + [anon_sym_f32] = ACTIONS(683), + [anon_sym_f64] = ACTIONS(683), + [anon_sym_bool] = ACTIONS(683), + [anon_sym_str] = ACTIONS(683), + [anon_sym_char] = ACTIONS(683), + [anon_sym_DASH] = ACTIONS(695), + [anon_sym_SLASH] = ACTIONS(695), + [anon_sym_PERCENT] = ACTIONS(695), + [anon_sym_CARET] = ACTIONS(695), + [anon_sym_BANG] = ACTIONS(695), + [anon_sym_AMP] = ACTIONS(695), + [anon_sym_PIPE] = ACTIONS(695), + [anon_sym_AMP_AMP] = ACTIONS(685), + [anon_sym_PIPE_PIPE] = ACTIONS(685), + [anon_sym_LT_LT] = ACTIONS(695), + [anon_sym_GT_GT] = ACTIONS(695), + [anon_sym_PLUS_EQ] = ACTIONS(685), + [anon_sym_DASH_EQ] = ACTIONS(685), + [anon_sym_STAR_EQ] = ACTIONS(685), + [anon_sym_SLASH_EQ] = ACTIONS(685), + [anon_sym_PERCENT_EQ] = ACTIONS(685), + [anon_sym_CARET_EQ] = ACTIONS(685), + [anon_sym_AMP_EQ] = ACTIONS(685), + [anon_sym_PIPE_EQ] = ACTIONS(685), + [anon_sym_LT_LT_EQ] = ACTIONS(685), + [anon_sym_GT_GT_EQ] = ACTIONS(685), + [anon_sym_EQ] = ACTIONS(695), + [anon_sym_EQ_EQ] = ACTIONS(685), + [anon_sym_BANG_EQ] = ACTIONS(685), + [anon_sym_GT] = ACTIONS(695), + [anon_sym_LT] = ACTIONS(695), + [anon_sym_GT_EQ] = ACTIONS(685), + [anon_sym_LT_EQ] = ACTIONS(685), + [anon_sym_AT] = ACTIONS(685), + [anon_sym__] = ACTIONS(695), + [anon_sym_DOT] = ACTIONS(695), + [anon_sym_DOT_DOT] = ACTIONS(695), + [anon_sym_DOT_DOT_DOT] = ACTIONS(685), + [anon_sym_DOT_DOT_EQ] = ACTIONS(685), + [anon_sym_COMMA] = ACTIONS(685), + [anon_sym_COLON_COLON] = ACTIONS(685), + [anon_sym_DASH_GT] = ACTIONS(685), + [anon_sym_POUND] = ACTIONS(685), + [anon_sym_SQUOTE] = ACTIONS(683), + [anon_sym_as] = ACTIONS(683), + [anon_sym_async] = ACTIONS(683), + [anon_sym_await] = ACTIONS(683), + [anon_sym_break] = ACTIONS(683), + [anon_sym_const] = ACTIONS(683), + [anon_sym_continue] = ACTIONS(683), + [anon_sym_default] = ACTIONS(683), + [anon_sym_enum] = ACTIONS(683), + [anon_sym_fn] = ACTIONS(683), + [anon_sym_for] = ACTIONS(683), + [anon_sym_gen] = ACTIONS(683), + [anon_sym_if] = ACTIONS(683), + [anon_sym_impl] = ACTIONS(683), + [anon_sym_let] = ACTIONS(683), + [anon_sym_loop] = ACTIONS(683), + [anon_sym_match] = ACTIONS(683), + [anon_sym_mod] = ACTIONS(683), + [anon_sym_pub] = ACTIONS(683), + [anon_sym_return] = ACTIONS(683), + [anon_sym_static] = ACTIONS(683), + [anon_sym_struct] = ACTIONS(683), + [anon_sym_trait] = ACTIONS(683), + [anon_sym_type] = ACTIONS(683), + [anon_sym_union] = ACTIONS(683), + [anon_sym_unsafe] = ACTIONS(683), + [anon_sym_use] = ACTIONS(683), + [anon_sym_where] = ACTIONS(683), + [anon_sym_while] = ACTIONS(683), + [sym_mutable_specifier] = ACTIONS(683), + [sym_integer_literal] = ACTIONS(699), + [aux_sym_string_literal_token1] = ACTIONS(701), + [sym_char_literal] = ACTIONS(699), + [anon_sym_true] = ACTIONS(703), + [anon_sym_false] = ACTIONS(703), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(683), + [sym_super] = ACTIONS(683), + [sym_crate] = ACTIONS(683), + [sym__raw_string_literal_start] = ACTIONS(705), + [sym_float_literal] = ACTIONS(699), }, [STATE(85)] = { - [sym_token_tree] = STATE(187), - [sym_token_repetition] = STATE(187), - [sym__literal] = STATE(187), - [sym_string_literal] = STATE(183), - [sym_raw_string_literal] = STATE(183), - [sym_boolean_literal] = STATE(183), + [sym_delim_token_tree] = STATE(206), + [sym__delim_tokens] = STATE(213), + [sym__non_delim_token] = STATE(206), + [sym__literal] = STATE(201), + [sym_string_literal] = STATE(219), + [sym_raw_string_literal] = STATE(219), + [sym_boolean_literal] = STATE(219), [sym_line_comment] = STATE(85), [sym_block_comment] = STATE(85), - [aux_sym_token_tree_repeat1] = STATE(86), - [aux_sym__non_special_token_repeat1] = STATE(144), - [sym_identifier] = ACTIONS(702), - [anon_sym_SEMI] = ACTIONS(609), - [anon_sym_LPAREN] = ACTIONS(704), - [anon_sym_RPAREN] = ACTIONS(706), - [anon_sym_LBRACK] = ACTIONS(708), - [anon_sym_LBRACE] = ACTIONS(710), - [anon_sym_EQ_GT] = ACTIONS(609), - [anon_sym_COLON] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(712), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_STAR] = ACTIONS(619), - [anon_sym_QMARK] = ACTIONS(609), - [anon_sym_u8] = ACTIONS(702), - [anon_sym_i8] = ACTIONS(702), - [anon_sym_u16] = ACTIONS(702), - [anon_sym_i16] = ACTIONS(702), - [anon_sym_u32] = ACTIONS(702), - [anon_sym_i32] = ACTIONS(702), - [anon_sym_u64] = ACTIONS(702), - [anon_sym_i64] = ACTIONS(702), - [anon_sym_u128] = ACTIONS(702), - [anon_sym_i128] = ACTIONS(702), - [anon_sym_isize] = ACTIONS(702), - [anon_sym_usize] = ACTIONS(702), - [anon_sym_f32] = ACTIONS(702), - [anon_sym_f64] = ACTIONS(702), - [anon_sym_bool] = ACTIONS(702), - [anon_sym_str] = ACTIONS(702), - [anon_sym_char] = ACTIONS(702), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_SLASH] = ACTIONS(619), - [anon_sym_PERCENT] = ACTIONS(619), - [anon_sym_CARET] = ACTIONS(619), - [anon_sym_BANG] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(619), - [anon_sym_AMP_AMP] = ACTIONS(609), - [anon_sym_PIPE_PIPE] = ACTIONS(609), - [anon_sym_LT_LT] = ACTIONS(619), - [anon_sym_GT_GT] = ACTIONS(619), - [anon_sym_PLUS_EQ] = ACTIONS(609), - [anon_sym_DASH_EQ] = ACTIONS(609), - [anon_sym_STAR_EQ] = ACTIONS(609), - [anon_sym_SLASH_EQ] = ACTIONS(609), - [anon_sym_PERCENT_EQ] = ACTIONS(609), - [anon_sym_CARET_EQ] = ACTIONS(609), - [anon_sym_AMP_EQ] = ACTIONS(609), - [anon_sym_PIPE_EQ] = ACTIONS(609), - [anon_sym_LT_LT_EQ] = ACTIONS(609), - [anon_sym_GT_GT_EQ] = ACTIONS(609), - [anon_sym_EQ] = ACTIONS(619), - [anon_sym_EQ_EQ] = ACTIONS(609), - [anon_sym_BANG_EQ] = ACTIONS(609), - [anon_sym_GT] = ACTIONS(619), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_GT_EQ] = ACTIONS(609), - [anon_sym_LT_EQ] = ACTIONS(609), - [anon_sym_AT] = ACTIONS(609), - [anon_sym__] = ACTIONS(619), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_DOT_DOT] = ACTIONS(619), - [anon_sym_DOT_DOT_DOT] = ACTIONS(609), - [anon_sym_DOT_DOT_EQ] = ACTIONS(609), - [anon_sym_COMMA] = ACTIONS(609), - [anon_sym_COLON_COLON] = ACTIONS(609), - [anon_sym_DASH_GT] = ACTIONS(609), - [anon_sym_POUND] = ACTIONS(609), - [anon_sym_SQUOTE] = ACTIONS(702), - [anon_sym_as] = ACTIONS(702), - [anon_sym_async] = ACTIONS(702), - [anon_sym_await] = ACTIONS(702), - [anon_sym_break] = ACTIONS(702), - [anon_sym_const] = ACTIONS(702), - [anon_sym_continue] = ACTIONS(702), - [anon_sym_default] = ACTIONS(702), - [anon_sym_enum] = ACTIONS(702), - [anon_sym_fn] = ACTIONS(702), - [anon_sym_for] = ACTIONS(702), - [anon_sym_gen] = ACTIONS(702), - [anon_sym_if] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(702), - [anon_sym_let] = ACTIONS(702), - [anon_sym_loop] = ACTIONS(702), - [anon_sym_match] = ACTIONS(702), - [anon_sym_mod] = ACTIONS(702), - [anon_sym_pub] = ACTIONS(702), - [anon_sym_return] = ACTIONS(702), - [anon_sym_static] = ACTIONS(702), - [anon_sym_struct] = ACTIONS(702), - [anon_sym_trait] = ACTIONS(702), - [anon_sym_type] = ACTIONS(702), - [anon_sym_union] = ACTIONS(702), - [anon_sym_unsafe] = ACTIONS(702), - [anon_sym_use] = ACTIONS(702), - [anon_sym_where] = ACTIONS(702), - [anon_sym_while] = ACTIONS(702), - [sym_mutable_specifier] = ACTIONS(702), - [sym_integer_literal] = ACTIONS(623), - [aux_sym_string_literal_token1] = ACTIONS(625), - [sym_char_literal] = ACTIONS(623), - [anon_sym_true] = ACTIONS(627), - [anon_sym_false] = ACTIONS(627), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(702), - [sym_super] = ACTIONS(702), - [sym_crate] = ACTIONS(702), - [sym_metavariable] = ACTIONS(714), - [sym__raw_string_literal_start] = ACTIONS(631), - [sym_float_literal] = ACTIONS(623), + [aux_sym__non_special_token_repeat1] = STATE(176), + [aux_sym_delim_token_tree_repeat1] = STATE(83), + [sym_identifier] = ACTIONS(683), + [anon_sym_SEMI] = ACTIONS(685), + [anon_sym_LPAREN] = ACTIONS(687), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_LBRACE] = ACTIONS(693), + [anon_sym_RBRACE] = ACTIONS(691), + [anon_sym_EQ_GT] = ACTIONS(685), + [anon_sym_COLON] = ACTIONS(695), + [anon_sym_DOLLAR] = ACTIONS(697), + [anon_sym_PLUS] = ACTIONS(695), + [anon_sym_STAR] = ACTIONS(695), + [anon_sym_QMARK] = ACTIONS(685), + [anon_sym_u8] = ACTIONS(683), + [anon_sym_i8] = ACTIONS(683), + [anon_sym_u16] = ACTIONS(683), + [anon_sym_i16] = ACTIONS(683), + [anon_sym_u32] = ACTIONS(683), + [anon_sym_i32] = ACTIONS(683), + [anon_sym_u64] = ACTIONS(683), + [anon_sym_i64] = ACTIONS(683), + [anon_sym_u128] = ACTIONS(683), + [anon_sym_i128] = ACTIONS(683), + [anon_sym_isize] = ACTIONS(683), + [anon_sym_usize] = ACTIONS(683), + [anon_sym_f32] = ACTIONS(683), + [anon_sym_f64] = ACTIONS(683), + [anon_sym_bool] = ACTIONS(683), + [anon_sym_str] = ACTIONS(683), + [anon_sym_char] = ACTIONS(683), + [anon_sym_DASH] = ACTIONS(695), + [anon_sym_SLASH] = ACTIONS(695), + [anon_sym_PERCENT] = ACTIONS(695), + [anon_sym_CARET] = ACTIONS(695), + [anon_sym_BANG] = ACTIONS(695), + [anon_sym_AMP] = ACTIONS(695), + [anon_sym_PIPE] = ACTIONS(695), + [anon_sym_AMP_AMP] = ACTIONS(685), + [anon_sym_PIPE_PIPE] = ACTIONS(685), + [anon_sym_LT_LT] = ACTIONS(695), + [anon_sym_GT_GT] = ACTIONS(695), + [anon_sym_PLUS_EQ] = ACTIONS(685), + [anon_sym_DASH_EQ] = ACTIONS(685), + [anon_sym_STAR_EQ] = ACTIONS(685), + [anon_sym_SLASH_EQ] = ACTIONS(685), + [anon_sym_PERCENT_EQ] = ACTIONS(685), + [anon_sym_CARET_EQ] = ACTIONS(685), + [anon_sym_AMP_EQ] = ACTIONS(685), + [anon_sym_PIPE_EQ] = ACTIONS(685), + [anon_sym_LT_LT_EQ] = ACTIONS(685), + [anon_sym_GT_GT_EQ] = ACTIONS(685), + [anon_sym_EQ] = ACTIONS(695), + [anon_sym_EQ_EQ] = ACTIONS(685), + [anon_sym_BANG_EQ] = ACTIONS(685), + [anon_sym_GT] = ACTIONS(695), + [anon_sym_LT] = ACTIONS(695), + [anon_sym_GT_EQ] = ACTIONS(685), + [anon_sym_LT_EQ] = ACTIONS(685), + [anon_sym_AT] = ACTIONS(685), + [anon_sym__] = ACTIONS(695), + [anon_sym_DOT] = ACTIONS(695), + [anon_sym_DOT_DOT] = ACTIONS(695), + [anon_sym_DOT_DOT_DOT] = ACTIONS(685), + [anon_sym_DOT_DOT_EQ] = ACTIONS(685), + [anon_sym_COMMA] = ACTIONS(685), + [anon_sym_COLON_COLON] = ACTIONS(685), + [anon_sym_DASH_GT] = ACTIONS(685), + [anon_sym_POUND] = ACTIONS(685), + [anon_sym_SQUOTE] = ACTIONS(683), + [anon_sym_as] = ACTIONS(683), + [anon_sym_async] = ACTIONS(683), + [anon_sym_await] = ACTIONS(683), + [anon_sym_break] = ACTIONS(683), + [anon_sym_const] = ACTIONS(683), + [anon_sym_continue] = ACTIONS(683), + [anon_sym_default] = ACTIONS(683), + [anon_sym_enum] = ACTIONS(683), + [anon_sym_fn] = ACTIONS(683), + [anon_sym_for] = ACTIONS(683), + [anon_sym_gen] = ACTIONS(683), + [anon_sym_if] = ACTIONS(683), + [anon_sym_impl] = ACTIONS(683), + [anon_sym_let] = ACTIONS(683), + [anon_sym_loop] = ACTIONS(683), + [anon_sym_match] = ACTIONS(683), + [anon_sym_mod] = ACTIONS(683), + [anon_sym_pub] = ACTIONS(683), + [anon_sym_return] = ACTIONS(683), + [anon_sym_static] = ACTIONS(683), + [anon_sym_struct] = ACTIONS(683), + [anon_sym_trait] = ACTIONS(683), + [anon_sym_type] = ACTIONS(683), + [anon_sym_union] = ACTIONS(683), + [anon_sym_unsafe] = ACTIONS(683), + [anon_sym_use] = ACTIONS(683), + [anon_sym_where] = ACTIONS(683), + [anon_sym_while] = ACTIONS(683), + [sym_mutable_specifier] = ACTIONS(683), + [sym_integer_literal] = ACTIONS(699), + [aux_sym_string_literal_token1] = ACTIONS(701), + [sym_char_literal] = ACTIONS(699), + [anon_sym_true] = ACTIONS(703), + [anon_sym_false] = ACTIONS(703), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(683), + [sym_super] = ACTIONS(683), + [sym_crate] = ACTIONS(683), + [sym__raw_string_literal_start] = ACTIONS(705), + [sym_float_literal] = ACTIONS(699), }, [STATE(86)] = { - [sym_token_tree] = STATE(187), - [sym_token_repetition] = STATE(187), - [sym__literal] = STATE(187), - [sym_string_literal] = STATE(183), - [sym_raw_string_literal] = STATE(183), - [sym_boolean_literal] = STATE(183), + [sym_delim_token_tree] = STATE(206), + [sym__delim_tokens] = STATE(213), + [sym__non_delim_token] = STATE(206), + [sym__literal] = STATE(201), + [sym_string_literal] = STATE(219), + [sym_raw_string_literal] = STATE(219), + [sym_boolean_literal] = STATE(219), [sym_line_comment] = STATE(86), [sym_block_comment] = STATE(86), - [aux_sym_token_tree_repeat1] = STATE(68), - [aux_sym__non_special_token_repeat1] = STATE(144), - [sym_identifier] = ACTIONS(702), - [anon_sym_SEMI] = ACTIONS(609), - [anon_sym_LPAREN] = ACTIONS(704), - [anon_sym_RPAREN] = ACTIONS(716), - [anon_sym_LBRACK] = ACTIONS(708), - [anon_sym_LBRACE] = ACTIONS(710), - [anon_sym_EQ_GT] = ACTIONS(609), - [anon_sym_COLON] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(712), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_STAR] = ACTIONS(619), - [anon_sym_QMARK] = ACTIONS(609), - [anon_sym_u8] = ACTIONS(702), - [anon_sym_i8] = ACTIONS(702), - [anon_sym_u16] = ACTIONS(702), - [anon_sym_i16] = ACTIONS(702), - [anon_sym_u32] = ACTIONS(702), - [anon_sym_i32] = ACTIONS(702), - [anon_sym_u64] = ACTIONS(702), - [anon_sym_i64] = ACTIONS(702), - [anon_sym_u128] = ACTIONS(702), - [anon_sym_i128] = ACTIONS(702), - [anon_sym_isize] = ACTIONS(702), - [anon_sym_usize] = ACTIONS(702), - [anon_sym_f32] = ACTIONS(702), - [anon_sym_f64] = ACTIONS(702), - [anon_sym_bool] = ACTIONS(702), - [anon_sym_str] = ACTIONS(702), - [anon_sym_char] = ACTIONS(702), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_SLASH] = ACTIONS(619), - [anon_sym_PERCENT] = ACTIONS(619), - [anon_sym_CARET] = ACTIONS(619), - [anon_sym_BANG] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(619), - [anon_sym_AMP_AMP] = ACTIONS(609), - [anon_sym_PIPE_PIPE] = ACTIONS(609), - [anon_sym_LT_LT] = ACTIONS(619), - [anon_sym_GT_GT] = ACTIONS(619), - [anon_sym_PLUS_EQ] = ACTIONS(609), - [anon_sym_DASH_EQ] = ACTIONS(609), - [anon_sym_STAR_EQ] = ACTIONS(609), - [anon_sym_SLASH_EQ] = ACTIONS(609), - [anon_sym_PERCENT_EQ] = ACTIONS(609), - [anon_sym_CARET_EQ] = ACTIONS(609), - [anon_sym_AMP_EQ] = ACTIONS(609), - [anon_sym_PIPE_EQ] = ACTIONS(609), - [anon_sym_LT_LT_EQ] = ACTIONS(609), - [anon_sym_GT_GT_EQ] = ACTIONS(609), - [anon_sym_EQ] = ACTIONS(619), - [anon_sym_EQ_EQ] = ACTIONS(609), - [anon_sym_BANG_EQ] = ACTIONS(609), - [anon_sym_GT] = ACTIONS(619), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_GT_EQ] = ACTIONS(609), - [anon_sym_LT_EQ] = ACTIONS(609), - [anon_sym_AT] = ACTIONS(609), - [anon_sym__] = ACTIONS(619), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_DOT_DOT] = ACTIONS(619), - [anon_sym_DOT_DOT_DOT] = ACTIONS(609), - [anon_sym_DOT_DOT_EQ] = ACTIONS(609), - [anon_sym_COMMA] = ACTIONS(609), - [anon_sym_COLON_COLON] = ACTIONS(609), - [anon_sym_DASH_GT] = ACTIONS(609), - [anon_sym_POUND] = ACTIONS(609), - [anon_sym_SQUOTE] = ACTIONS(702), - [anon_sym_as] = ACTIONS(702), - [anon_sym_async] = ACTIONS(702), - [anon_sym_await] = ACTIONS(702), - [anon_sym_break] = ACTIONS(702), - [anon_sym_const] = ACTIONS(702), - [anon_sym_continue] = ACTIONS(702), - [anon_sym_default] = ACTIONS(702), - [anon_sym_enum] = ACTIONS(702), - [anon_sym_fn] = ACTIONS(702), - [anon_sym_for] = ACTIONS(702), - [anon_sym_gen] = ACTIONS(702), - [anon_sym_if] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(702), - [anon_sym_let] = ACTIONS(702), - [anon_sym_loop] = ACTIONS(702), - [anon_sym_match] = ACTIONS(702), - [anon_sym_mod] = ACTIONS(702), - [anon_sym_pub] = ACTIONS(702), - [anon_sym_return] = ACTIONS(702), - [anon_sym_static] = ACTIONS(702), - [anon_sym_struct] = ACTIONS(702), - [anon_sym_trait] = ACTIONS(702), - [anon_sym_type] = ACTIONS(702), - [anon_sym_union] = ACTIONS(702), - [anon_sym_unsafe] = ACTIONS(702), - [anon_sym_use] = ACTIONS(702), - [anon_sym_where] = ACTIONS(702), - [anon_sym_while] = ACTIONS(702), - [sym_mutable_specifier] = ACTIONS(702), - [sym_integer_literal] = ACTIONS(623), - [aux_sym_string_literal_token1] = ACTIONS(625), - [sym_char_literal] = ACTIONS(623), - [anon_sym_true] = ACTIONS(627), - [anon_sym_false] = ACTIONS(627), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(702), - [sym_super] = ACTIONS(702), - [sym_crate] = ACTIONS(702), - [sym_metavariable] = ACTIONS(714), - [sym__raw_string_literal_start] = ACTIONS(631), - [sym_float_literal] = ACTIONS(623), + [aux_sym__non_special_token_repeat1] = STATE(176), + [aux_sym_delim_token_tree_repeat1] = STATE(83), + [sym_identifier] = ACTIONS(683), + [anon_sym_SEMI] = ACTIONS(685), + [anon_sym_LPAREN] = ACTIONS(687), + [anon_sym_RPAREN] = ACTIONS(707), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_LBRACE] = ACTIONS(693), + [anon_sym_EQ_GT] = ACTIONS(685), + [anon_sym_COLON] = ACTIONS(695), + [anon_sym_DOLLAR] = ACTIONS(697), + [anon_sym_PLUS] = ACTIONS(695), + [anon_sym_STAR] = ACTIONS(695), + [anon_sym_QMARK] = ACTIONS(685), + [anon_sym_u8] = ACTIONS(683), + [anon_sym_i8] = ACTIONS(683), + [anon_sym_u16] = ACTIONS(683), + [anon_sym_i16] = ACTIONS(683), + [anon_sym_u32] = ACTIONS(683), + [anon_sym_i32] = ACTIONS(683), + [anon_sym_u64] = ACTIONS(683), + [anon_sym_i64] = ACTIONS(683), + [anon_sym_u128] = ACTIONS(683), + [anon_sym_i128] = ACTIONS(683), + [anon_sym_isize] = ACTIONS(683), + [anon_sym_usize] = ACTIONS(683), + [anon_sym_f32] = ACTIONS(683), + [anon_sym_f64] = ACTIONS(683), + [anon_sym_bool] = ACTIONS(683), + [anon_sym_str] = ACTIONS(683), + [anon_sym_char] = ACTIONS(683), + [anon_sym_DASH] = ACTIONS(695), + [anon_sym_SLASH] = ACTIONS(695), + [anon_sym_PERCENT] = ACTIONS(695), + [anon_sym_CARET] = ACTIONS(695), + [anon_sym_BANG] = ACTIONS(695), + [anon_sym_AMP] = ACTIONS(695), + [anon_sym_PIPE] = ACTIONS(695), + [anon_sym_AMP_AMP] = ACTIONS(685), + [anon_sym_PIPE_PIPE] = ACTIONS(685), + [anon_sym_LT_LT] = ACTIONS(695), + [anon_sym_GT_GT] = ACTIONS(695), + [anon_sym_PLUS_EQ] = ACTIONS(685), + [anon_sym_DASH_EQ] = ACTIONS(685), + [anon_sym_STAR_EQ] = ACTIONS(685), + [anon_sym_SLASH_EQ] = ACTIONS(685), + [anon_sym_PERCENT_EQ] = ACTIONS(685), + [anon_sym_CARET_EQ] = ACTIONS(685), + [anon_sym_AMP_EQ] = ACTIONS(685), + [anon_sym_PIPE_EQ] = ACTIONS(685), + [anon_sym_LT_LT_EQ] = ACTIONS(685), + [anon_sym_GT_GT_EQ] = ACTIONS(685), + [anon_sym_EQ] = ACTIONS(695), + [anon_sym_EQ_EQ] = ACTIONS(685), + [anon_sym_BANG_EQ] = ACTIONS(685), + [anon_sym_GT] = ACTIONS(695), + [anon_sym_LT] = ACTIONS(695), + [anon_sym_GT_EQ] = ACTIONS(685), + [anon_sym_LT_EQ] = ACTIONS(685), + [anon_sym_AT] = ACTIONS(685), + [anon_sym__] = ACTIONS(695), + [anon_sym_DOT] = ACTIONS(695), + [anon_sym_DOT_DOT] = ACTIONS(695), + [anon_sym_DOT_DOT_DOT] = ACTIONS(685), + [anon_sym_DOT_DOT_EQ] = ACTIONS(685), + [anon_sym_COMMA] = ACTIONS(685), + [anon_sym_COLON_COLON] = ACTIONS(685), + [anon_sym_DASH_GT] = ACTIONS(685), + [anon_sym_POUND] = ACTIONS(685), + [anon_sym_SQUOTE] = ACTIONS(683), + [anon_sym_as] = ACTIONS(683), + [anon_sym_async] = ACTIONS(683), + [anon_sym_await] = ACTIONS(683), + [anon_sym_break] = ACTIONS(683), + [anon_sym_const] = ACTIONS(683), + [anon_sym_continue] = ACTIONS(683), + [anon_sym_default] = ACTIONS(683), + [anon_sym_enum] = ACTIONS(683), + [anon_sym_fn] = ACTIONS(683), + [anon_sym_for] = ACTIONS(683), + [anon_sym_gen] = ACTIONS(683), + [anon_sym_if] = ACTIONS(683), + [anon_sym_impl] = ACTIONS(683), + [anon_sym_let] = ACTIONS(683), + [anon_sym_loop] = ACTIONS(683), + [anon_sym_match] = ACTIONS(683), + [anon_sym_mod] = ACTIONS(683), + [anon_sym_pub] = ACTIONS(683), + [anon_sym_return] = ACTIONS(683), + [anon_sym_static] = ACTIONS(683), + [anon_sym_struct] = ACTIONS(683), + [anon_sym_trait] = ACTIONS(683), + [anon_sym_type] = ACTIONS(683), + [anon_sym_union] = ACTIONS(683), + [anon_sym_unsafe] = ACTIONS(683), + [anon_sym_use] = ACTIONS(683), + [anon_sym_where] = ACTIONS(683), + [anon_sym_while] = ACTIONS(683), + [sym_mutable_specifier] = ACTIONS(683), + [sym_integer_literal] = ACTIONS(699), + [aux_sym_string_literal_token1] = ACTIONS(701), + [sym_char_literal] = ACTIONS(699), + [anon_sym_true] = ACTIONS(703), + [anon_sym_false] = ACTIONS(703), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(683), + [sym_super] = ACTIONS(683), + [sym_crate] = ACTIONS(683), + [sym__raw_string_literal_start] = ACTIONS(705), + [sym_float_literal] = ACTIONS(699), }, [STATE(87)] = { - [sym_delim_token_tree] = STATE(200), - [sym__delim_tokens] = STATE(208), - [sym__non_delim_token] = STATE(200), - [sym__literal] = STATE(210), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), + [sym_delim_token_tree] = STATE(206), + [sym__delim_tokens] = STATE(213), + [sym__non_delim_token] = STATE(206), + [sym__literal] = STATE(201), + [sym_string_literal] = STATE(219), + [sym_raw_string_literal] = STATE(219), + [sym_boolean_literal] = STATE(219), [sym_line_comment] = STATE(87), [sym_block_comment] = STATE(87), - [aux_sym__non_special_token_repeat1] = STATE(147), - [aux_sym_delim_token_tree_repeat1] = STATE(90), - [sym_identifier] = ACTIONS(678), - [anon_sym_SEMI] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(682), - [anon_sym_RPAREN] = ACTIONS(718), - [anon_sym_LBRACK] = ACTIONS(684), - [anon_sym_LBRACE] = ACTIONS(688), - [anon_sym_EQ_GT] = ACTIONS(680), - [anon_sym_COLON] = ACTIONS(690), - [anon_sym_DOLLAR] = ACTIONS(692), - [anon_sym_PLUS] = ACTIONS(690), - [anon_sym_STAR] = ACTIONS(690), - [anon_sym_QMARK] = ACTIONS(680), - [anon_sym_u8] = ACTIONS(678), - [anon_sym_i8] = ACTIONS(678), - [anon_sym_u16] = ACTIONS(678), - [anon_sym_i16] = ACTIONS(678), - [anon_sym_u32] = ACTIONS(678), - [anon_sym_i32] = ACTIONS(678), - [anon_sym_u64] = ACTIONS(678), - [anon_sym_i64] = ACTIONS(678), - [anon_sym_u128] = ACTIONS(678), - [anon_sym_i128] = ACTIONS(678), - [anon_sym_isize] = ACTIONS(678), - [anon_sym_usize] = ACTIONS(678), - [anon_sym_f32] = ACTIONS(678), - [anon_sym_f64] = ACTIONS(678), - [anon_sym_bool] = ACTIONS(678), - [anon_sym_str] = ACTIONS(678), - [anon_sym_char] = ACTIONS(678), - [anon_sym_DASH] = ACTIONS(690), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_PERCENT] = ACTIONS(690), - [anon_sym_CARET] = ACTIONS(690), - [anon_sym_BANG] = ACTIONS(690), - [anon_sym_AMP] = ACTIONS(690), - [anon_sym_PIPE] = ACTIONS(690), - [anon_sym_AMP_AMP] = ACTIONS(680), - [anon_sym_PIPE_PIPE] = ACTIONS(680), - [anon_sym_LT_LT] = ACTIONS(690), - [anon_sym_GT_GT] = ACTIONS(690), - [anon_sym_PLUS_EQ] = ACTIONS(680), - [anon_sym_DASH_EQ] = ACTIONS(680), - [anon_sym_STAR_EQ] = ACTIONS(680), - [anon_sym_SLASH_EQ] = ACTIONS(680), - [anon_sym_PERCENT_EQ] = ACTIONS(680), - [anon_sym_CARET_EQ] = ACTIONS(680), - [anon_sym_AMP_EQ] = ACTIONS(680), - [anon_sym_PIPE_EQ] = ACTIONS(680), - [anon_sym_LT_LT_EQ] = ACTIONS(680), - [anon_sym_GT_GT_EQ] = ACTIONS(680), - [anon_sym_EQ] = ACTIONS(690), - [anon_sym_EQ_EQ] = ACTIONS(680), - [anon_sym_BANG_EQ] = ACTIONS(680), - [anon_sym_GT] = ACTIONS(690), - [anon_sym_LT] = ACTIONS(690), - [anon_sym_GT_EQ] = ACTIONS(680), - [anon_sym_LT_EQ] = ACTIONS(680), - [anon_sym_AT] = ACTIONS(680), - [anon_sym__] = ACTIONS(690), - [anon_sym_DOT] = ACTIONS(690), - [anon_sym_DOT_DOT] = ACTIONS(690), - [anon_sym_DOT_DOT_DOT] = ACTIONS(680), - [anon_sym_DOT_DOT_EQ] = ACTIONS(680), - [anon_sym_COMMA] = ACTIONS(680), - [anon_sym_COLON_COLON] = ACTIONS(680), - [anon_sym_DASH_GT] = ACTIONS(680), - [anon_sym_POUND] = ACTIONS(680), - [anon_sym_SQUOTE] = ACTIONS(678), - [anon_sym_as] = ACTIONS(678), - [anon_sym_async] = ACTIONS(678), - [anon_sym_await] = ACTIONS(678), - [anon_sym_break] = ACTIONS(678), - [anon_sym_const] = ACTIONS(678), - [anon_sym_continue] = ACTIONS(678), - [anon_sym_default] = ACTIONS(678), - [anon_sym_enum] = ACTIONS(678), - [anon_sym_fn] = ACTIONS(678), - [anon_sym_for] = ACTIONS(678), - [anon_sym_gen] = ACTIONS(678), - [anon_sym_if] = ACTIONS(678), - [anon_sym_impl] = ACTIONS(678), - [anon_sym_let] = ACTIONS(678), - [anon_sym_loop] = ACTIONS(678), - [anon_sym_match] = ACTIONS(678), - [anon_sym_mod] = ACTIONS(678), - [anon_sym_pub] = ACTIONS(678), - [anon_sym_return] = ACTIONS(678), - [anon_sym_static] = ACTIONS(678), - [anon_sym_struct] = ACTIONS(678), - [anon_sym_trait] = ACTIONS(678), - [anon_sym_type] = ACTIONS(678), - [anon_sym_union] = ACTIONS(678), - [anon_sym_unsafe] = ACTIONS(678), - [anon_sym_use] = ACTIONS(678), - [anon_sym_where] = ACTIONS(678), - [anon_sym_while] = ACTIONS(678), - [sym_mutable_specifier] = ACTIONS(678), - [sym_integer_literal] = ACTIONS(694), - [aux_sym_string_literal_token1] = ACTIONS(696), - [sym_char_literal] = ACTIONS(694), - [anon_sym_true] = ACTIONS(698), - [anon_sym_false] = ACTIONS(698), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(678), - [sym_super] = ACTIONS(678), - [sym_crate] = ACTIONS(678), - [sym__raw_string_literal_start] = ACTIONS(700), - [sym_float_literal] = ACTIONS(694), + [aux_sym__non_special_token_repeat1] = STATE(176), + [aux_sym_delim_token_tree_repeat1] = STATE(83), + [sym_identifier] = ACTIONS(683), + [anon_sym_SEMI] = ACTIONS(685), + [anon_sym_LPAREN] = ACTIONS(687), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_RBRACK] = ACTIONS(707), + [anon_sym_LBRACE] = ACTIONS(693), + [anon_sym_EQ_GT] = ACTIONS(685), + [anon_sym_COLON] = ACTIONS(695), + [anon_sym_DOLLAR] = ACTIONS(697), + [anon_sym_PLUS] = ACTIONS(695), + [anon_sym_STAR] = ACTIONS(695), + [anon_sym_QMARK] = ACTIONS(685), + [anon_sym_u8] = ACTIONS(683), + [anon_sym_i8] = ACTIONS(683), + [anon_sym_u16] = ACTIONS(683), + [anon_sym_i16] = ACTIONS(683), + [anon_sym_u32] = ACTIONS(683), + [anon_sym_i32] = ACTIONS(683), + [anon_sym_u64] = ACTIONS(683), + [anon_sym_i64] = ACTIONS(683), + [anon_sym_u128] = ACTIONS(683), + [anon_sym_i128] = ACTIONS(683), + [anon_sym_isize] = ACTIONS(683), + [anon_sym_usize] = ACTIONS(683), + [anon_sym_f32] = ACTIONS(683), + [anon_sym_f64] = ACTIONS(683), + [anon_sym_bool] = ACTIONS(683), + [anon_sym_str] = ACTIONS(683), + [anon_sym_char] = ACTIONS(683), + [anon_sym_DASH] = ACTIONS(695), + [anon_sym_SLASH] = ACTIONS(695), + [anon_sym_PERCENT] = ACTIONS(695), + [anon_sym_CARET] = ACTIONS(695), + [anon_sym_BANG] = ACTIONS(695), + [anon_sym_AMP] = ACTIONS(695), + [anon_sym_PIPE] = ACTIONS(695), + [anon_sym_AMP_AMP] = ACTIONS(685), + [anon_sym_PIPE_PIPE] = ACTIONS(685), + [anon_sym_LT_LT] = ACTIONS(695), + [anon_sym_GT_GT] = ACTIONS(695), + [anon_sym_PLUS_EQ] = ACTIONS(685), + [anon_sym_DASH_EQ] = ACTIONS(685), + [anon_sym_STAR_EQ] = ACTIONS(685), + [anon_sym_SLASH_EQ] = ACTIONS(685), + [anon_sym_PERCENT_EQ] = ACTIONS(685), + [anon_sym_CARET_EQ] = ACTIONS(685), + [anon_sym_AMP_EQ] = ACTIONS(685), + [anon_sym_PIPE_EQ] = ACTIONS(685), + [anon_sym_LT_LT_EQ] = ACTIONS(685), + [anon_sym_GT_GT_EQ] = ACTIONS(685), + [anon_sym_EQ] = ACTIONS(695), + [anon_sym_EQ_EQ] = ACTIONS(685), + [anon_sym_BANG_EQ] = ACTIONS(685), + [anon_sym_GT] = ACTIONS(695), + [anon_sym_LT] = ACTIONS(695), + [anon_sym_GT_EQ] = ACTIONS(685), + [anon_sym_LT_EQ] = ACTIONS(685), + [anon_sym_AT] = ACTIONS(685), + [anon_sym__] = ACTIONS(695), + [anon_sym_DOT] = ACTIONS(695), + [anon_sym_DOT_DOT] = ACTIONS(695), + [anon_sym_DOT_DOT_DOT] = ACTIONS(685), + [anon_sym_DOT_DOT_EQ] = ACTIONS(685), + [anon_sym_COMMA] = ACTIONS(685), + [anon_sym_COLON_COLON] = ACTIONS(685), + [anon_sym_DASH_GT] = ACTIONS(685), + [anon_sym_POUND] = ACTIONS(685), + [anon_sym_SQUOTE] = ACTIONS(683), + [anon_sym_as] = ACTIONS(683), + [anon_sym_async] = ACTIONS(683), + [anon_sym_await] = ACTIONS(683), + [anon_sym_break] = ACTIONS(683), + [anon_sym_const] = ACTIONS(683), + [anon_sym_continue] = ACTIONS(683), + [anon_sym_default] = ACTIONS(683), + [anon_sym_enum] = ACTIONS(683), + [anon_sym_fn] = ACTIONS(683), + [anon_sym_for] = ACTIONS(683), + [anon_sym_gen] = ACTIONS(683), + [anon_sym_if] = ACTIONS(683), + [anon_sym_impl] = ACTIONS(683), + [anon_sym_let] = ACTIONS(683), + [anon_sym_loop] = ACTIONS(683), + [anon_sym_match] = ACTIONS(683), + [anon_sym_mod] = ACTIONS(683), + [anon_sym_pub] = ACTIONS(683), + [anon_sym_return] = ACTIONS(683), + [anon_sym_static] = ACTIONS(683), + [anon_sym_struct] = ACTIONS(683), + [anon_sym_trait] = ACTIONS(683), + [anon_sym_type] = ACTIONS(683), + [anon_sym_union] = ACTIONS(683), + [anon_sym_unsafe] = ACTIONS(683), + [anon_sym_use] = ACTIONS(683), + [anon_sym_where] = ACTIONS(683), + [anon_sym_while] = ACTIONS(683), + [sym_mutable_specifier] = ACTIONS(683), + [sym_integer_literal] = ACTIONS(699), + [aux_sym_string_literal_token1] = ACTIONS(701), + [sym_char_literal] = ACTIONS(699), + [anon_sym_true] = ACTIONS(703), + [anon_sym_false] = ACTIONS(703), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(683), + [sym_super] = ACTIONS(683), + [sym_crate] = ACTIONS(683), + [sym__raw_string_literal_start] = ACTIONS(705), + [sym_float_literal] = ACTIONS(699), }, [STATE(88)] = { - [sym_delim_token_tree] = STATE(200), - [sym__delim_tokens] = STATE(208), - [sym__non_delim_token] = STATE(200), - [sym__literal] = STATE(210), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), + [sym_delim_token_tree] = STATE(206), + [sym__delim_tokens] = STATE(213), + [sym__non_delim_token] = STATE(206), + [sym__literal] = STATE(201), + [sym_string_literal] = STATE(219), + [sym_raw_string_literal] = STATE(219), + [sym_boolean_literal] = STATE(219), [sym_line_comment] = STATE(88), [sym_block_comment] = STATE(88), - [aux_sym__non_special_token_repeat1] = STATE(147), - [aux_sym_delim_token_tree_repeat1] = STATE(91), - [sym_identifier] = ACTIONS(678), - [anon_sym_SEMI] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(682), - [anon_sym_LBRACK] = ACTIONS(684), - [anon_sym_RBRACK] = ACTIONS(718), - [anon_sym_LBRACE] = ACTIONS(688), - [anon_sym_EQ_GT] = ACTIONS(680), - [anon_sym_COLON] = ACTIONS(690), - [anon_sym_DOLLAR] = ACTIONS(692), - [anon_sym_PLUS] = ACTIONS(690), - [anon_sym_STAR] = ACTIONS(690), - [anon_sym_QMARK] = ACTIONS(680), - [anon_sym_u8] = ACTIONS(678), - [anon_sym_i8] = ACTIONS(678), - [anon_sym_u16] = ACTIONS(678), - [anon_sym_i16] = ACTIONS(678), - [anon_sym_u32] = ACTIONS(678), - [anon_sym_i32] = ACTIONS(678), - [anon_sym_u64] = ACTIONS(678), - [anon_sym_i64] = ACTIONS(678), - [anon_sym_u128] = ACTIONS(678), - [anon_sym_i128] = ACTIONS(678), - [anon_sym_isize] = ACTIONS(678), - [anon_sym_usize] = ACTIONS(678), - [anon_sym_f32] = ACTIONS(678), - [anon_sym_f64] = ACTIONS(678), - [anon_sym_bool] = ACTIONS(678), - [anon_sym_str] = ACTIONS(678), - [anon_sym_char] = ACTIONS(678), - [anon_sym_DASH] = ACTIONS(690), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_PERCENT] = ACTIONS(690), - [anon_sym_CARET] = ACTIONS(690), - [anon_sym_BANG] = ACTIONS(690), - [anon_sym_AMP] = ACTIONS(690), - [anon_sym_PIPE] = ACTIONS(690), - [anon_sym_AMP_AMP] = ACTIONS(680), - [anon_sym_PIPE_PIPE] = ACTIONS(680), - [anon_sym_LT_LT] = ACTIONS(690), - [anon_sym_GT_GT] = ACTIONS(690), - [anon_sym_PLUS_EQ] = ACTIONS(680), - [anon_sym_DASH_EQ] = ACTIONS(680), - [anon_sym_STAR_EQ] = ACTIONS(680), - [anon_sym_SLASH_EQ] = ACTIONS(680), - [anon_sym_PERCENT_EQ] = ACTIONS(680), - [anon_sym_CARET_EQ] = ACTIONS(680), - [anon_sym_AMP_EQ] = ACTIONS(680), - [anon_sym_PIPE_EQ] = ACTIONS(680), - [anon_sym_LT_LT_EQ] = ACTIONS(680), - [anon_sym_GT_GT_EQ] = ACTIONS(680), - [anon_sym_EQ] = ACTIONS(690), - [anon_sym_EQ_EQ] = ACTIONS(680), - [anon_sym_BANG_EQ] = ACTIONS(680), - [anon_sym_GT] = ACTIONS(690), - [anon_sym_LT] = ACTIONS(690), - [anon_sym_GT_EQ] = ACTIONS(680), - [anon_sym_LT_EQ] = ACTIONS(680), - [anon_sym_AT] = ACTIONS(680), - [anon_sym__] = ACTIONS(690), - [anon_sym_DOT] = ACTIONS(690), - [anon_sym_DOT_DOT] = ACTIONS(690), - [anon_sym_DOT_DOT_DOT] = ACTIONS(680), - [anon_sym_DOT_DOT_EQ] = ACTIONS(680), - [anon_sym_COMMA] = ACTIONS(680), - [anon_sym_COLON_COLON] = ACTIONS(680), - [anon_sym_DASH_GT] = ACTIONS(680), - [anon_sym_POUND] = ACTIONS(680), - [anon_sym_SQUOTE] = ACTIONS(678), - [anon_sym_as] = ACTIONS(678), - [anon_sym_async] = ACTIONS(678), - [anon_sym_await] = ACTIONS(678), - [anon_sym_break] = ACTIONS(678), - [anon_sym_const] = ACTIONS(678), - [anon_sym_continue] = ACTIONS(678), - [anon_sym_default] = ACTIONS(678), - [anon_sym_enum] = ACTIONS(678), - [anon_sym_fn] = ACTIONS(678), - [anon_sym_for] = ACTIONS(678), - [anon_sym_gen] = ACTIONS(678), - [anon_sym_if] = ACTIONS(678), - [anon_sym_impl] = ACTIONS(678), - [anon_sym_let] = ACTIONS(678), - [anon_sym_loop] = ACTIONS(678), - [anon_sym_match] = ACTIONS(678), - [anon_sym_mod] = ACTIONS(678), - [anon_sym_pub] = ACTIONS(678), - [anon_sym_return] = ACTIONS(678), - [anon_sym_static] = ACTIONS(678), - [anon_sym_struct] = ACTIONS(678), - [anon_sym_trait] = ACTIONS(678), - [anon_sym_type] = ACTIONS(678), - [anon_sym_union] = ACTIONS(678), - [anon_sym_unsafe] = ACTIONS(678), - [anon_sym_use] = ACTIONS(678), - [anon_sym_where] = ACTIONS(678), - [anon_sym_while] = ACTIONS(678), - [sym_mutable_specifier] = ACTIONS(678), - [sym_integer_literal] = ACTIONS(694), - [aux_sym_string_literal_token1] = ACTIONS(696), - [sym_char_literal] = ACTIONS(694), - [anon_sym_true] = ACTIONS(698), - [anon_sym_false] = ACTIONS(698), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(678), - [sym_super] = ACTIONS(678), - [sym_crate] = ACTIONS(678), - [sym__raw_string_literal_start] = ACTIONS(700), - [sym_float_literal] = ACTIONS(694), + [aux_sym__non_special_token_repeat1] = STATE(176), + [aux_sym_delim_token_tree_repeat1] = STATE(83), + [sym_identifier] = ACTIONS(683), + [anon_sym_SEMI] = ACTIONS(685), + [anon_sym_LPAREN] = ACTIONS(687), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_LBRACE] = ACTIONS(693), + [anon_sym_RBRACE] = ACTIONS(707), + [anon_sym_EQ_GT] = ACTIONS(685), + [anon_sym_COLON] = ACTIONS(695), + [anon_sym_DOLLAR] = ACTIONS(697), + [anon_sym_PLUS] = ACTIONS(695), + [anon_sym_STAR] = ACTIONS(695), + [anon_sym_QMARK] = ACTIONS(685), + [anon_sym_u8] = ACTIONS(683), + [anon_sym_i8] = ACTIONS(683), + [anon_sym_u16] = ACTIONS(683), + [anon_sym_i16] = ACTIONS(683), + [anon_sym_u32] = ACTIONS(683), + [anon_sym_i32] = ACTIONS(683), + [anon_sym_u64] = ACTIONS(683), + [anon_sym_i64] = ACTIONS(683), + [anon_sym_u128] = ACTIONS(683), + [anon_sym_i128] = ACTIONS(683), + [anon_sym_isize] = ACTIONS(683), + [anon_sym_usize] = ACTIONS(683), + [anon_sym_f32] = ACTIONS(683), + [anon_sym_f64] = ACTIONS(683), + [anon_sym_bool] = ACTIONS(683), + [anon_sym_str] = ACTIONS(683), + [anon_sym_char] = ACTIONS(683), + [anon_sym_DASH] = ACTIONS(695), + [anon_sym_SLASH] = ACTIONS(695), + [anon_sym_PERCENT] = ACTIONS(695), + [anon_sym_CARET] = ACTIONS(695), + [anon_sym_BANG] = ACTIONS(695), + [anon_sym_AMP] = ACTIONS(695), + [anon_sym_PIPE] = ACTIONS(695), + [anon_sym_AMP_AMP] = ACTIONS(685), + [anon_sym_PIPE_PIPE] = ACTIONS(685), + [anon_sym_LT_LT] = ACTIONS(695), + [anon_sym_GT_GT] = ACTIONS(695), + [anon_sym_PLUS_EQ] = ACTIONS(685), + [anon_sym_DASH_EQ] = ACTIONS(685), + [anon_sym_STAR_EQ] = ACTIONS(685), + [anon_sym_SLASH_EQ] = ACTIONS(685), + [anon_sym_PERCENT_EQ] = ACTIONS(685), + [anon_sym_CARET_EQ] = ACTIONS(685), + [anon_sym_AMP_EQ] = ACTIONS(685), + [anon_sym_PIPE_EQ] = ACTIONS(685), + [anon_sym_LT_LT_EQ] = ACTIONS(685), + [anon_sym_GT_GT_EQ] = ACTIONS(685), + [anon_sym_EQ] = ACTIONS(695), + [anon_sym_EQ_EQ] = ACTIONS(685), + [anon_sym_BANG_EQ] = ACTIONS(685), + [anon_sym_GT] = ACTIONS(695), + [anon_sym_LT] = ACTIONS(695), + [anon_sym_GT_EQ] = ACTIONS(685), + [anon_sym_LT_EQ] = ACTIONS(685), + [anon_sym_AT] = ACTIONS(685), + [anon_sym__] = ACTIONS(695), + [anon_sym_DOT] = ACTIONS(695), + [anon_sym_DOT_DOT] = ACTIONS(695), + [anon_sym_DOT_DOT_DOT] = ACTIONS(685), + [anon_sym_DOT_DOT_EQ] = ACTIONS(685), + [anon_sym_COMMA] = ACTIONS(685), + [anon_sym_COLON_COLON] = ACTIONS(685), + [anon_sym_DASH_GT] = ACTIONS(685), + [anon_sym_POUND] = ACTIONS(685), + [anon_sym_SQUOTE] = ACTIONS(683), + [anon_sym_as] = ACTIONS(683), + [anon_sym_async] = ACTIONS(683), + [anon_sym_await] = ACTIONS(683), + [anon_sym_break] = ACTIONS(683), + [anon_sym_const] = ACTIONS(683), + [anon_sym_continue] = ACTIONS(683), + [anon_sym_default] = ACTIONS(683), + [anon_sym_enum] = ACTIONS(683), + [anon_sym_fn] = ACTIONS(683), + [anon_sym_for] = ACTIONS(683), + [anon_sym_gen] = ACTIONS(683), + [anon_sym_if] = ACTIONS(683), + [anon_sym_impl] = ACTIONS(683), + [anon_sym_let] = ACTIONS(683), + [anon_sym_loop] = ACTIONS(683), + [anon_sym_match] = ACTIONS(683), + [anon_sym_mod] = ACTIONS(683), + [anon_sym_pub] = ACTIONS(683), + [anon_sym_return] = ACTIONS(683), + [anon_sym_static] = ACTIONS(683), + [anon_sym_struct] = ACTIONS(683), + [anon_sym_trait] = ACTIONS(683), + [anon_sym_type] = ACTIONS(683), + [anon_sym_union] = ACTIONS(683), + [anon_sym_unsafe] = ACTIONS(683), + [anon_sym_use] = ACTIONS(683), + [anon_sym_where] = ACTIONS(683), + [anon_sym_while] = ACTIONS(683), + [sym_mutable_specifier] = ACTIONS(683), + [sym_integer_literal] = ACTIONS(699), + [aux_sym_string_literal_token1] = ACTIONS(701), + [sym_char_literal] = ACTIONS(699), + [anon_sym_true] = ACTIONS(703), + [anon_sym_false] = ACTIONS(703), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(683), + [sym_super] = ACTIONS(683), + [sym_crate] = ACTIONS(683), + [sym__raw_string_literal_start] = ACTIONS(705), + [sym_float_literal] = ACTIONS(699), }, [STATE(89)] = { - [sym_delim_token_tree] = STATE(200), - [sym__delim_tokens] = STATE(208), - [sym__non_delim_token] = STATE(200), - [sym__literal] = STATE(210), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), + [sym_delim_token_tree] = STATE(206), + [sym__delim_tokens] = STATE(213), + [sym__non_delim_token] = STATE(206), + [sym__literal] = STATE(201), + [sym_string_literal] = STATE(219), + [sym_raw_string_literal] = STATE(219), + [sym_boolean_literal] = STATE(219), [sym_line_comment] = STATE(89), [sym_block_comment] = STATE(89), - [aux_sym__non_special_token_repeat1] = STATE(147), - [aux_sym_delim_token_tree_repeat1] = STATE(92), - [sym_identifier] = ACTIONS(678), - [anon_sym_SEMI] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(682), - [anon_sym_LBRACK] = ACTIONS(684), - [anon_sym_LBRACE] = ACTIONS(688), - [anon_sym_RBRACE] = ACTIONS(718), - [anon_sym_EQ_GT] = ACTIONS(680), - [anon_sym_COLON] = ACTIONS(690), - [anon_sym_DOLLAR] = ACTIONS(692), - [anon_sym_PLUS] = ACTIONS(690), - [anon_sym_STAR] = ACTIONS(690), - [anon_sym_QMARK] = ACTIONS(680), - [anon_sym_u8] = ACTIONS(678), - [anon_sym_i8] = ACTIONS(678), - [anon_sym_u16] = ACTIONS(678), - [anon_sym_i16] = ACTIONS(678), - [anon_sym_u32] = ACTIONS(678), - [anon_sym_i32] = ACTIONS(678), - [anon_sym_u64] = ACTIONS(678), - [anon_sym_i64] = ACTIONS(678), - [anon_sym_u128] = ACTIONS(678), - [anon_sym_i128] = ACTIONS(678), - [anon_sym_isize] = ACTIONS(678), - [anon_sym_usize] = ACTIONS(678), - [anon_sym_f32] = ACTIONS(678), - [anon_sym_f64] = ACTIONS(678), - [anon_sym_bool] = ACTIONS(678), - [anon_sym_str] = ACTIONS(678), - [anon_sym_char] = ACTIONS(678), - [anon_sym_DASH] = ACTIONS(690), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_PERCENT] = ACTIONS(690), - [anon_sym_CARET] = ACTIONS(690), - [anon_sym_BANG] = ACTIONS(690), - [anon_sym_AMP] = ACTIONS(690), - [anon_sym_PIPE] = ACTIONS(690), - [anon_sym_AMP_AMP] = ACTIONS(680), - [anon_sym_PIPE_PIPE] = ACTIONS(680), - [anon_sym_LT_LT] = ACTIONS(690), - [anon_sym_GT_GT] = ACTIONS(690), - [anon_sym_PLUS_EQ] = ACTIONS(680), - [anon_sym_DASH_EQ] = ACTIONS(680), - [anon_sym_STAR_EQ] = ACTIONS(680), - [anon_sym_SLASH_EQ] = ACTIONS(680), - [anon_sym_PERCENT_EQ] = ACTIONS(680), - [anon_sym_CARET_EQ] = ACTIONS(680), - [anon_sym_AMP_EQ] = ACTIONS(680), - [anon_sym_PIPE_EQ] = ACTIONS(680), - [anon_sym_LT_LT_EQ] = ACTIONS(680), - [anon_sym_GT_GT_EQ] = ACTIONS(680), - [anon_sym_EQ] = ACTIONS(690), - [anon_sym_EQ_EQ] = ACTIONS(680), - [anon_sym_BANG_EQ] = ACTIONS(680), - [anon_sym_GT] = ACTIONS(690), - [anon_sym_LT] = ACTIONS(690), - [anon_sym_GT_EQ] = ACTIONS(680), - [anon_sym_LT_EQ] = ACTIONS(680), - [anon_sym_AT] = ACTIONS(680), - [anon_sym__] = ACTIONS(690), - [anon_sym_DOT] = ACTIONS(690), - [anon_sym_DOT_DOT] = ACTIONS(690), - [anon_sym_DOT_DOT_DOT] = ACTIONS(680), - [anon_sym_DOT_DOT_EQ] = ACTIONS(680), - [anon_sym_COMMA] = ACTIONS(680), - [anon_sym_COLON_COLON] = ACTIONS(680), - [anon_sym_DASH_GT] = ACTIONS(680), - [anon_sym_POUND] = ACTIONS(680), - [anon_sym_SQUOTE] = ACTIONS(678), - [anon_sym_as] = ACTIONS(678), - [anon_sym_async] = ACTIONS(678), - [anon_sym_await] = ACTIONS(678), - [anon_sym_break] = ACTIONS(678), - [anon_sym_const] = ACTIONS(678), - [anon_sym_continue] = ACTIONS(678), - [anon_sym_default] = ACTIONS(678), - [anon_sym_enum] = ACTIONS(678), - [anon_sym_fn] = ACTIONS(678), - [anon_sym_for] = ACTIONS(678), - [anon_sym_gen] = ACTIONS(678), - [anon_sym_if] = ACTIONS(678), - [anon_sym_impl] = ACTIONS(678), - [anon_sym_let] = ACTIONS(678), - [anon_sym_loop] = ACTIONS(678), - [anon_sym_match] = ACTIONS(678), - [anon_sym_mod] = ACTIONS(678), - [anon_sym_pub] = ACTIONS(678), - [anon_sym_return] = ACTIONS(678), - [anon_sym_static] = ACTIONS(678), - [anon_sym_struct] = ACTIONS(678), - [anon_sym_trait] = ACTIONS(678), - [anon_sym_type] = ACTIONS(678), - [anon_sym_union] = ACTIONS(678), - [anon_sym_unsafe] = ACTIONS(678), - [anon_sym_use] = ACTIONS(678), - [anon_sym_where] = ACTIONS(678), - [anon_sym_while] = ACTIONS(678), - [sym_mutable_specifier] = ACTIONS(678), - [sym_integer_literal] = ACTIONS(694), - [aux_sym_string_literal_token1] = ACTIONS(696), - [sym_char_literal] = ACTIONS(694), - [anon_sym_true] = ACTIONS(698), - [anon_sym_false] = ACTIONS(698), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(678), - [sym_super] = ACTIONS(678), - [sym_crate] = ACTIONS(678), - [sym__raw_string_literal_start] = ACTIONS(700), - [sym_float_literal] = ACTIONS(694), + [aux_sym__non_special_token_repeat1] = STATE(176), + [aux_sym_delim_token_tree_repeat1] = STATE(86), + [sym_identifier] = ACTIONS(683), + [anon_sym_SEMI] = ACTIONS(685), + [anon_sym_LPAREN] = ACTIONS(687), + [anon_sym_RPAREN] = ACTIONS(709), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_LBRACE] = ACTIONS(693), + [anon_sym_EQ_GT] = ACTIONS(685), + [anon_sym_COLON] = ACTIONS(695), + [anon_sym_DOLLAR] = ACTIONS(697), + [anon_sym_PLUS] = ACTIONS(695), + [anon_sym_STAR] = ACTIONS(695), + [anon_sym_QMARK] = ACTIONS(685), + [anon_sym_u8] = ACTIONS(683), + [anon_sym_i8] = ACTIONS(683), + [anon_sym_u16] = ACTIONS(683), + [anon_sym_i16] = ACTIONS(683), + [anon_sym_u32] = ACTIONS(683), + [anon_sym_i32] = ACTIONS(683), + [anon_sym_u64] = ACTIONS(683), + [anon_sym_i64] = ACTIONS(683), + [anon_sym_u128] = ACTIONS(683), + [anon_sym_i128] = ACTIONS(683), + [anon_sym_isize] = ACTIONS(683), + [anon_sym_usize] = ACTIONS(683), + [anon_sym_f32] = ACTIONS(683), + [anon_sym_f64] = ACTIONS(683), + [anon_sym_bool] = ACTIONS(683), + [anon_sym_str] = ACTIONS(683), + [anon_sym_char] = ACTIONS(683), + [anon_sym_DASH] = ACTIONS(695), + [anon_sym_SLASH] = ACTIONS(695), + [anon_sym_PERCENT] = ACTIONS(695), + [anon_sym_CARET] = ACTIONS(695), + [anon_sym_BANG] = ACTIONS(695), + [anon_sym_AMP] = ACTIONS(695), + [anon_sym_PIPE] = ACTIONS(695), + [anon_sym_AMP_AMP] = ACTIONS(685), + [anon_sym_PIPE_PIPE] = ACTIONS(685), + [anon_sym_LT_LT] = ACTIONS(695), + [anon_sym_GT_GT] = ACTIONS(695), + [anon_sym_PLUS_EQ] = ACTIONS(685), + [anon_sym_DASH_EQ] = ACTIONS(685), + [anon_sym_STAR_EQ] = ACTIONS(685), + [anon_sym_SLASH_EQ] = ACTIONS(685), + [anon_sym_PERCENT_EQ] = ACTIONS(685), + [anon_sym_CARET_EQ] = ACTIONS(685), + [anon_sym_AMP_EQ] = ACTIONS(685), + [anon_sym_PIPE_EQ] = ACTIONS(685), + [anon_sym_LT_LT_EQ] = ACTIONS(685), + [anon_sym_GT_GT_EQ] = ACTIONS(685), + [anon_sym_EQ] = ACTIONS(695), + [anon_sym_EQ_EQ] = ACTIONS(685), + [anon_sym_BANG_EQ] = ACTIONS(685), + [anon_sym_GT] = ACTIONS(695), + [anon_sym_LT] = ACTIONS(695), + [anon_sym_GT_EQ] = ACTIONS(685), + [anon_sym_LT_EQ] = ACTIONS(685), + [anon_sym_AT] = ACTIONS(685), + [anon_sym__] = ACTIONS(695), + [anon_sym_DOT] = ACTIONS(695), + [anon_sym_DOT_DOT] = ACTIONS(695), + [anon_sym_DOT_DOT_DOT] = ACTIONS(685), + [anon_sym_DOT_DOT_EQ] = ACTIONS(685), + [anon_sym_COMMA] = ACTIONS(685), + [anon_sym_COLON_COLON] = ACTIONS(685), + [anon_sym_DASH_GT] = ACTIONS(685), + [anon_sym_POUND] = ACTIONS(685), + [anon_sym_SQUOTE] = ACTIONS(683), + [anon_sym_as] = ACTIONS(683), + [anon_sym_async] = ACTIONS(683), + [anon_sym_await] = ACTIONS(683), + [anon_sym_break] = ACTIONS(683), + [anon_sym_const] = ACTIONS(683), + [anon_sym_continue] = ACTIONS(683), + [anon_sym_default] = ACTIONS(683), + [anon_sym_enum] = ACTIONS(683), + [anon_sym_fn] = ACTIONS(683), + [anon_sym_for] = ACTIONS(683), + [anon_sym_gen] = ACTIONS(683), + [anon_sym_if] = ACTIONS(683), + [anon_sym_impl] = ACTIONS(683), + [anon_sym_let] = ACTIONS(683), + [anon_sym_loop] = ACTIONS(683), + [anon_sym_match] = ACTIONS(683), + [anon_sym_mod] = ACTIONS(683), + [anon_sym_pub] = ACTIONS(683), + [anon_sym_return] = ACTIONS(683), + [anon_sym_static] = ACTIONS(683), + [anon_sym_struct] = ACTIONS(683), + [anon_sym_trait] = ACTIONS(683), + [anon_sym_type] = ACTIONS(683), + [anon_sym_union] = ACTIONS(683), + [anon_sym_unsafe] = ACTIONS(683), + [anon_sym_use] = ACTIONS(683), + [anon_sym_where] = ACTIONS(683), + [anon_sym_while] = ACTIONS(683), + [sym_mutable_specifier] = ACTIONS(683), + [sym_integer_literal] = ACTIONS(699), + [aux_sym_string_literal_token1] = ACTIONS(701), + [sym_char_literal] = ACTIONS(699), + [anon_sym_true] = ACTIONS(703), + [anon_sym_false] = ACTIONS(703), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(683), + [sym_super] = ACTIONS(683), + [sym_crate] = ACTIONS(683), + [sym__raw_string_literal_start] = ACTIONS(705), + [sym_float_literal] = ACTIONS(699), }, [STATE(90)] = { - [sym_delim_token_tree] = STATE(200), - [sym__delim_tokens] = STATE(208), - [sym__non_delim_token] = STATE(200), - [sym__literal] = STATE(210), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), + [sym_delim_token_tree] = STATE(206), + [sym__delim_tokens] = STATE(213), + [sym__non_delim_token] = STATE(206), + [sym__literal] = STATE(201), + [sym_string_literal] = STATE(219), + [sym_raw_string_literal] = STATE(219), + [sym_boolean_literal] = STATE(219), [sym_line_comment] = STATE(90), [sym_block_comment] = STATE(90), - [aux_sym__non_special_token_repeat1] = STATE(147), - [aux_sym_delim_token_tree_repeat1] = STATE(83), - [sym_identifier] = ACTIONS(678), - [anon_sym_SEMI] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(682), - [anon_sym_RPAREN] = ACTIONS(720), - [anon_sym_LBRACK] = ACTIONS(684), - [anon_sym_LBRACE] = ACTIONS(688), - [anon_sym_EQ_GT] = ACTIONS(680), - [anon_sym_COLON] = ACTIONS(690), - [anon_sym_DOLLAR] = ACTIONS(692), - [anon_sym_PLUS] = ACTIONS(690), - [anon_sym_STAR] = ACTIONS(690), - [anon_sym_QMARK] = ACTIONS(680), - [anon_sym_u8] = ACTIONS(678), - [anon_sym_i8] = ACTIONS(678), - [anon_sym_u16] = ACTIONS(678), - [anon_sym_i16] = ACTIONS(678), - [anon_sym_u32] = ACTIONS(678), - [anon_sym_i32] = ACTIONS(678), - [anon_sym_u64] = ACTIONS(678), - [anon_sym_i64] = ACTIONS(678), - [anon_sym_u128] = ACTIONS(678), - [anon_sym_i128] = ACTIONS(678), - [anon_sym_isize] = ACTIONS(678), - [anon_sym_usize] = ACTIONS(678), - [anon_sym_f32] = ACTIONS(678), - [anon_sym_f64] = ACTIONS(678), - [anon_sym_bool] = ACTIONS(678), - [anon_sym_str] = ACTIONS(678), - [anon_sym_char] = ACTIONS(678), - [anon_sym_DASH] = ACTIONS(690), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_PERCENT] = ACTIONS(690), - [anon_sym_CARET] = ACTIONS(690), - [anon_sym_BANG] = ACTIONS(690), - [anon_sym_AMP] = ACTIONS(690), - [anon_sym_PIPE] = ACTIONS(690), - [anon_sym_AMP_AMP] = ACTIONS(680), - [anon_sym_PIPE_PIPE] = ACTIONS(680), - [anon_sym_LT_LT] = ACTIONS(690), - [anon_sym_GT_GT] = ACTIONS(690), - [anon_sym_PLUS_EQ] = ACTIONS(680), - [anon_sym_DASH_EQ] = ACTIONS(680), - [anon_sym_STAR_EQ] = ACTIONS(680), - [anon_sym_SLASH_EQ] = ACTIONS(680), - [anon_sym_PERCENT_EQ] = ACTIONS(680), - [anon_sym_CARET_EQ] = ACTIONS(680), - [anon_sym_AMP_EQ] = ACTIONS(680), - [anon_sym_PIPE_EQ] = ACTIONS(680), - [anon_sym_LT_LT_EQ] = ACTIONS(680), - [anon_sym_GT_GT_EQ] = ACTIONS(680), - [anon_sym_EQ] = ACTIONS(690), - [anon_sym_EQ_EQ] = ACTIONS(680), - [anon_sym_BANG_EQ] = ACTIONS(680), - [anon_sym_GT] = ACTIONS(690), - [anon_sym_LT] = ACTIONS(690), - [anon_sym_GT_EQ] = ACTIONS(680), - [anon_sym_LT_EQ] = ACTIONS(680), - [anon_sym_AT] = ACTIONS(680), - [anon_sym__] = ACTIONS(690), - [anon_sym_DOT] = ACTIONS(690), - [anon_sym_DOT_DOT] = ACTIONS(690), - [anon_sym_DOT_DOT_DOT] = ACTIONS(680), - [anon_sym_DOT_DOT_EQ] = ACTIONS(680), - [anon_sym_COMMA] = ACTIONS(680), - [anon_sym_COLON_COLON] = ACTIONS(680), - [anon_sym_DASH_GT] = ACTIONS(680), - [anon_sym_POUND] = ACTIONS(680), - [anon_sym_SQUOTE] = ACTIONS(678), - [anon_sym_as] = ACTIONS(678), - [anon_sym_async] = ACTIONS(678), - [anon_sym_await] = ACTIONS(678), - [anon_sym_break] = ACTIONS(678), - [anon_sym_const] = ACTIONS(678), - [anon_sym_continue] = ACTIONS(678), - [anon_sym_default] = ACTIONS(678), - [anon_sym_enum] = ACTIONS(678), - [anon_sym_fn] = ACTIONS(678), - [anon_sym_for] = ACTIONS(678), - [anon_sym_gen] = ACTIONS(678), - [anon_sym_if] = ACTIONS(678), - [anon_sym_impl] = ACTIONS(678), - [anon_sym_let] = ACTIONS(678), - [anon_sym_loop] = ACTIONS(678), - [anon_sym_match] = ACTIONS(678), - [anon_sym_mod] = ACTIONS(678), - [anon_sym_pub] = ACTIONS(678), - [anon_sym_return] = ACTIONS(678), - [anon_sym_static] = ACTIONS(678), - [anon_sym_struct] = ACTIONS(678), - [anon_sym_trait] = ACTIONS(678), - [anon_sym_type] = ACTIONS(678), - [anon_sym_union] = ACTIONS(678), - [anon_sym_unsafe] = ACTIONS(678), - [anon_sym_use] = ACTIONS(678), - [anon_sym_where] = ACTIONS(678), - [anon_sym_while] = ACTIONS(678), - [sym_mutable_specifier] = ACTIONS(678), - [sym_integer_literal] = ACTIONS(694), - [aux_sym_string_literal_token1] = ACTIONS(696), - [sym_char_literal] = ACTIONS(694), - [anon_sym_true] = ACTIONS(698), - [anon_sym_false] = ACTIONS(698), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(678), - [sym_super] = ACTIONS(678), - [sym_crate] = ACTIONS(678), - [sym__raw_string_literal_start] = ACTIONS(700), - [sym_float_literal] = ACTIONS(694), + [aux_sym__non_special_token_repeat1] = STATE(176), + [aux_sym_delim_token_tree_repeat1] = STATE(97), + [sym_identifier] = ACTIONS(683), + [anon_sym_SEMI] = ACTIONS(685), + [anon_sym_LPAREN] = ACTIONS(687), + [anon_sym_RPAREN] = ACTIONS(711), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_LBRACE] = ACTIONS(693), + [anon_sym_EQ_GT] = ACTIONS(685), + [anon_sym_COLON] = ACTIONS(695), + [anon_sym_DOLLAR] = ACTIONS(697), + [anon_sym_PLUS] = ACTIONS(695), + [anon_sym_STAR] = ACTIONS(695), + [anon_sym_QMARK] = ACTIONS(685), + [anon_sym_u8] = ACTIONS(683), + [anon_sym_i8] = ACTIONS(683), + [anon_sym_u16] = ACTIONS(683), + [anon_sym_i16] = ACTIONS(683), + [anon_sym_u32] = ACTIONS(683), + [anon_sym_i32] = ACTIONS(683), + [anon_sym_u64] = ACTIONS(683), + [anon_sym_i64] = ACTIONS(683), + [anon_sym_u128] = ACTIONS(683), + [anon_sym_i128] = ACTIONS(683), + [anon_sym_isize] = ACTIONS(683), + [anon_sym_usize] = ACTIONS(683), + [anon_sym_f32] = ACTIONS(683), + [anon_sym_f64] = ACTIONS(683), + [anon_sym_bool] = ACTIONS(683), + [anon_sym_str] = ACTIONS(683), + [anon_sym_char] = ACTIONS(683), + [anon_sym_DASH] = ACTIONS(695), + [anon_sym_SLASH] = ACTIONS(695), + [anon_sym_PERCENT] = ACTIONS(695), + [anon_sym_CARET] = ACTIONS(695), + [anon_sym_BANG] = ACTIONS(695), + [anon_sym_AMP] = ACTIONS(695), + [anon_sym_PIPE] = ACTIONS(695), + [anon_sym_AMP_AMP] = ACTIONS(685), + [anon_sym_PIPE_PIPE] = ACTIONS(685), + [anon_sym_LT_LT] = ACTIONS(695), + [anon_sym_GT_GT] = ACTIONS(695), + [anon_sym_PLUS_EQ] = ACTIONS(685), + [anon_sym_DASH_EQ] = ACTIONS(685), + [anon_sym_STAR_EQ] = ACTIONS(685), + [anon_sym_SLASH_EQ] = ACTIONS(685), + [anon_sym_PERCENT_EQ] = ACTIONS(685), + [anon_sym_CARET_EQ] = ACTIONS(685), + [anon_sym_AMP_EQ] = ACTIONS(685), + [anon_sym_PIPE_EQ] = ACTIONS(685), + [anon_sym_LT_LT_EQ] = ACTIONS(685), + [anon_sym_GT_GT_EQ] = ACTIONS(685), + [anon_sym_EQ] = ACTIONS(695), + [anon_sym_EQ_EQ] = ACTIONS(685), + [anon_sym_BANG_EQ] = ACTIONS(685), + [anon_sym_GT] = ACTIONS(695), + [anon_sym_LT] = ACTIONS(695), + [anon_sym_GT_EQ] = ACTIONS(685), + [anon_sym_LT_EQ] = ACTIONS(685), + [anon_sym_AT] = ACTIONS(685), + [anon_sym__] = ACTIONS(695), + [anon_sym_DOT] = ACTIONS(695), + [anon_sym_DOT_DOT] = ACTIONS(695), + [anon_sym_DOT_DOT_DOT] = ACTIONS(685), + [anon_sym_DOT_DOT_EQ] = ACTIONS(685), + [anon_sym_COMMA] = ACTIONS(685), + [anon_sym_COLON_COLON] = ACTIONS(685), + [anon_sym_DASH_GT] = ACTIONS(685), + [anon_sym_POUND] = ACTIONS(685), + [anon_sym_SQUOTE] = ACTIONS(683), + [anon_sym_as] = ACTIONS(683), + [anon_sym_async] = ACTIONS(683), + [anon_sym_await] = ACTIONS(683), + [anon_sym_break] = ACTIONS(683), + [anon_sym_const] = ACTIONS(683), + [anon_sym_continue] = ACTIONS(683), + [anon_sym_default] = ACTIONS(683), + [anon_sym_enum] = ACTIONS(683), + [anon_sym_fn] = ACTIONS(683), + [anon_sym_for] = ACTIONS(683), + [anon_sym_gen] = ACTIONS(683), + [anon_sym_if] = ACTIONS(683), + [anon_sym_impl] = ACTIONS(683), + [anon_sym_let] = ACTIONS(683), + [anon_sym_loop] = ACTIONS(683), + [anon_sym_match] = ACTIONS(683), + [anon_sym_mod] = ACTIONS(683), + [anon_sym_pub] = ACTIONS(683), + [anon_sym_return] = ACTIONS(683), + [anon_sym_static] = ACTIONS(683), + [anon_sym_struct] = ACTIONS(683), + [anon_sym_trait] = ACTIONS(683), + [anon_sym_type] = ACTIONS(683), + [anon_sym_union] = ACTIONS(683), + [anon_sym_unsafe] = ACTIONS(683), + [anon_sym_use] = ACTIONS(683), + [anon_sym_where] = ACTIONS(683), + [anon_sym_while] = ACTIONS(683), + [sym_mutable_specifier] = ACTIONS(683), + [sym_integer_literal] = ACTIONS(699), + [aux_sym_string_literal_token1] = ACTIONS(701), + [sym_char_literal] = ACTIONS(699), + [anon_sym_true] = ACTIONS(703), + [anon_sym_false] = ACTIONS(703), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(683), + [sym_super] = ACTIONS(683), + [sym_crate] = ACTIONS(683), + [sym__raw_string_literal_start] = ACTIONS(705), + [sym_float_literal] = ACTIONS(699), }, [STATE(91)] = { - [sym_delim_token_tree] = STATE(200), - [sym__delim_tokens] = STATE(208), - [sym__non_delim_token] = STATE(200), - [sym__literal] = STATE(210), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), + [sym_delim_token_tree] = STATE(206), + [sym__delim_tokens] = STATE(213), + [sym__non_delim_token] = STATE(206), + [sym__literal] = STATE(201), + [sym_string_literal] = STATE(219), + [sym_raw_string_literal] = STATE(219), + [sym_boolean_literal] = STATE(219), [sym_line_comment] = STATE(91), [sym_block_comment] = STATE(91), - [aux_sym__non_special_token_repeat1] = STATE(147), - [aux_sym_delim_token_tree_repeat1] = STATE(83), - [sym_identifier] = ACTIONS(678), - [anon_sym_SEMI] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(682), - [anon_sym_LBRACK] = ACTIONS(684), - [anon_sym_RBRACK] = ACTIONS(720), - [anon_sym_LBRACE] = ACTIONS(688), - [anon_sym_EQ_GT] = ACTIONS(680), - [anon_sym_COLON] = ACTIONS(690), - [anon_sym_DOLLAR] = ACTIONS(692), - [anon_sym_PLUS] = ACTIONS(690), - [anon_sym_STAR] = ACTIONS(690), - [anon_sym_QMARK] = ACTIONS(680), - [anon_sym_u8] = ACTIONS(678), - [anon_sym_i8] = ACTIONS(678), - [anon_sym_u16] = ACTIONS(678), - [anon_sym_i16] = ACTIONS(678), - [anon_sym_u32] = ACTIONS(678), - [anon_sym_i32] = ACTIONS(678), - [anon_sym_u64] = ACTIONS(678), - [anon_sym_i64] = ACTIONS(678), - [anon_sym_u128] = ACTIONS(678), - [anon_sym_i128] = ACTIONS(678), - [anon_sym_isize] = ACTIONS(678), - [anon_sym_usize] = ACTIONS(678), - [anon_sym_f32] = ACTIONS(678), - [anon_sym_f64] = ACTIONS(678), - [anon_sym_bool] = ACTIONS(678), - [anon_sym_str] = ACTIONS(678), - [anon_sym_char] = ACTIONS(678), - [anon_sym_DASH] = ACTIONS(690), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_PERCENT] = ACTIONS(690), - [anon_sym_CARET] = ACTIONS(690), - [anon_sym_BANG] = ACTIONS(690), - [anon_sym_AMP] = ACTIONS(690), - [anon_sym_PIPE] = ACTIONS(690), - [anon_sym_AMP_AMP] = ACTIONS(680), - [anon_sym_PIPE_PIPE] = ACTIONS(680), - [anon_sym_LT_LT] = ACTIONS(690), - [anon_sym_GT_GT] = ACTIONS(690), - [anon_sym_PLUS_EQ] = ACTIONS(680), - [anon_sym_DASH_EQ] = ACTIONS(680), - [anon_sym_STAR_EQ] = ACTIONS(680), - [anon_sym_SLASH_EQ] = ACTIONS(680), - [anon_sym_PERCENT_EQ] = ACTIONS(680), - [anon_sym_CARET_EQ] = ACTIONS(680), - [anon_sym_AMP_EQ] = ACTIONS(680), - [anon_sym_PIPE_EQ] = ACTIONS(680), - [anon_sym_LT_LT_EQ] = ACTIONS(680), - [anon_sym_GT_GT_EQ] = ACTIONS(680), - [anon_sym_EQ] = ACTIONS(690), - [anon_sym_EQ_EQ] = ACTIONS(680), - [anon_sym_BANG_EQ] = ACTIONS(680), - [anon_sym_GT] = ACTIONS(690), - [anon_sym_LT] = ACTIONS(690), - [anon_sym_GT_EQ] = ACTIONS(680), - [anon_sym_LT_EQ] = ACTIONS(680), - [anon_sym_AT] = ACTIONS(680), - [anon_sym__] = ACTIONS(690), - [anon_sym_DOT] = ACTIONS(690), - [anon_sym_DOT_DOT] = ACTIONS(690), - [anon_sym_DOT_DOT_DOT] = ACTIONS(680), - [anon_sym_DOT_DOT_EQ] = ACTIONS(680), - [anon_sym_COMMA] = ACTIONS(680), - [anon_sym_COLON_COLON] = ACTIONS(680), - [anon_sym_DASH_GT] = ACTIONS(680), - [anon_sym_POUND] = ACTIONS(680), - [anon_sym_SQUOTE] = ACTIONS(678), - [anon_sym_as] = ACTIONS(678), - [anon_sym_async] = ACTIONS(678), - [anon_sym_await] = ACTIONS(678), - [anon_sym_break] = ACTIONS(678), - [anon_sym_const] = ACTIONS(678), - [anon_sym_continue] = ACTIONS(678), - [anon_sym_default] = ACTIONS(678), - [anon_sym_enum] = ACTIONS(678), - [anon_sym_fn] = ACTIONS(678), - [anon_sym_for] = ACTIONS(678), - [anon_sym_gen] = ACTIONS(678), - [anon_sym_if] = ACTIONS(678), - [anon_sym_impl] = ACTIONS(678), - [anon_sym_let] = ACTIONS(678), - [anon_sym_loop] = ACTIONS(678), - [anon_sym_match] = ACTIONS(678), - [anon_sym_mod] = ACTIONS(678), - [anon_sym_pub] = ACTIONS(678), - [anon_sym_return] = ACTIONS(678), - [anon_sym_static] = ACTIONS(678), - [anon_sym_struct] = ACTIONS(678), - [anon_sym_trait] = ACTIONS(678), - [anon_sym_type] = ACTIONS(678), - [anon_sym_union] = ACTIONS(678), - [anon_sym_unsafe] = ACTIONS(678), - [anon_sym_use] = ACTIONS(678), - [anon_sym_where] = ACTIONS(678), - [anon_sym_while] = ACTIONS(678), - [sym_mutable_specifier] = ACTIONS(678), - [sym_integer_literal] = ACTIONS(694), - [aux_sym_string_literal_token1] = ACTIONS(696), - [sym_char_literal] = ACTIONS(694), - [anon_sym_true] = ACTIONS(698), - [anon_sym_false] = ACTIONS(698), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(678), - [sym_super] = ACTIONS(678), - [sym_crate] = ACTIONS(678), - [sym__raw_string_literal_start] = ACTIONS(700), - [sym_float_literal] = ACTIONS(694), + [aux_sym__non_special_token_repeat1] = STATE(176), + [aux_sym_delim_token_tree_repeat1] = STATE(98), + [sym_identifier] = ACTIONS(683), + [anon_sym_SEMI] = ACTIONS(685), + [anon_sym_LPAREN] = ACTIONS(687), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_RBRACK] = ACTIONS(711), + [anon_sym_LBRACE] = ACTIONS(693), + [anon_sym_EQ_GT] = ACTIONS(685), + [anon_sym_COLON] = ACTIONS(695), + [anon_sym_DOLLAR] = ACTIONS(697), + [anon_sym_PLUS] = ACTIONS(695), + [anon_sym_STAR] = ACTIONS(695), + [anon_sym_QMARK] = ACTIONS(685), + [anon_sym_u8] = ACTIONS(683), + [anon_sym_i8] = ACTIONS(683), + [anon_sym_u16] = ACTIONS(683), + [anon_sym_i16] = ACTIONS(683), + [anon_sym_u32] = ACTIONS(683), + [anon_sym_i32] = ACTIONS(683), + [anon_sym_u64] = ACTIONS(683), + [anon_sym_i64] = ACTIONS(683), + [anon_sym_u128] = ACTIONS(683), + [anon_sym_i128] = ACTIONS(683), + [anon_sym_isize] = ACTIONS(683), + [anon_sym_usize] = ACTIONS(683), + [anon_sym_f32] = ACTIONS(683), + [anon_sym_f64] = ACTIONS(683), + [anon_sym_bool] = ACTIONS(683), + [anon_sym_str] = ACTIONS(683), + [anon_sym_char] = ACTIONS(683), + [anon_sym_DASH] = ACTIONS(695), + [anon_sym_SLASH] = ACTIONS(695), + [anon_sym_PERCENT] = ACTIONS(695), + [anon_sym_CARET] = ACTIONS(695), + [anon_sym_BANG] = ACTIONS(695), + [anon_sym_AMP] = ACTIONS(695), + [anon_sym_PIPE] = ACTIONS(695), + [anon_sym_AMP_AMP] = ACTIONS(685), + [anon_sym_PIPE_PIPE] = ACTIONS(685), + [anon_sym_LT_LT] = ACTIONS(695), + [anon_sym_GT_GT] = ACTIONS(695), + [anon_sym_PLUS_EQ] = ACTIONS(685), + [anon_sym_DASH_EQ] = ACTIONS(685), + [anon_sym_STAR_EQ] = ACTIONS(685), + [anon_sym_SLASH_EQ] = ACTIONS(685), + [anon_sym_PERCENT_EQ] = ACTIONS(685), + [anon_sym_CARET_EQ] = ACTIONS(685), + [anon_sym_AMP_EQ] = ACTIONS(685), + [anon_sym_PIPE_EQ] = ACTIONS(685), + [anon_sym_LT_LT_EQ] = ACTIONS(685), + [anon_sym_GT_GT_EQ] = ACTIONS(685), + [anon_sym_EQ] = ACTIONS(695), + [anon_sym_EQ_EQ] = ACTIONS(685), + [anon_sym_BANG_EQ] = ACTIONS(685), + [anon_sym_GT] = ACTIONS(695), + [anon_sym_LT] = ACTIONS(695), + [anon_sym_GT_EQ] = ACTIONS(685), + [anon_sym_LT_EQ] = ACTIONS(685), + [anon_sym_AT] = ACTIONS(685), + [anon_sym__] = ACTIONS(695), + [anon_sym_DOT] = ACTIONS(695), + [anon_sym_DOT_DOT] = ACTIONS(695), + [anon_sym_DOT_DOT_DOT] = ACTIONS(685), + [anon_sym_DOT_DOT_EQ] = ACTIONS(685), + [anon_sym_COMMA] = ACTIONS(685), + [anon_sym_COLON_COLON] = ACTIONS(685), + [anon_sym_DASH_GT] = ACTIONS(685), + [anon_sym_POUND] = ACTIONS(685), + [anon_sym_SQUOTE] = ACTIONS(683), + [anon_sym_as] = ACTIONS(683), + [anon_sym_async] = ACTIONS(683), + [anon_sym_await] = ACTIONS(683), + [anon_sym_break] = ACTIONS(683), + [anon_sym_const] = ACTIONS(683), + [anon_sym_continue] = ACTIONS(683), + [anon_sym_default] = ACTIONS(683), + [anon_sym_enum] = ACTIONS(683), + [anon_sym_fn] = ACTIONS(683), + [anon_sym_for] = ACTIONS(683), + [anon_sym_gen] = ACTIONS(683), + [anon_sym_if] = ACTIONS(683), + [anon_sym_impl] = ACTIONS(683), + [anon_sym_let] = ACTIONS(683), + [anon_sym_loop] = ACTIONS(683), + [anon_sym_match] = ACTIONS(683), + [anon_sym_mod] = ACTIONS(683), + [anon_sym_pub] = ACTIONS(683), + [anon_sym_return] = ACTIONS(683), + [anon_sym_static] = ACTIONS(683), + [anon_sym_struct] = ACTIONS(683), + [anon_sym_trait] = ACTIONS(683), + [anon_sym_type] = ACTIONS(683), + [anon_sym_union] = ACTIONS(683), + [anon_sym_unsafe] = ACTIONS(683), + [anon_sym_use] = ACTIONS(683), + [anon_sym_where] = ACTIONS(683), + [anon_sym_while] = ACTIONS(683), + [sym_mutable_specifier] = ACTIONS(683), + [sym_integer_literal] = ACTIONS(699), + [aux_sym_string_literal_token1] = ACTIONS(701), + [sym_char_literal] = ACTIONS(699), + [anon_sym_true] = ACTIONS(703), + [anon_sym_false] = ACTIONS(703), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(683), + [sym_super] = ACTIONS(683), + [sym_crate] = ACTIONS(683), + [sym__raw_string_literal_start] = ACTIONS(705), + [sym_float_literal] = ACTIONS(699), }, [STATE(92)] = { - [sym_delim_token_tree] = STATE(200), - [sym__delim_tokens] = STATE(208), - [sym__non_delim_token] = STATE(200), - [sym__literal] = STATE(210), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), + [sym_delim_token_tree] = STATE(206), + [sym__delim_tokens] = STATE(213), + [sym__non_delim_token] = STATE(206), + [sym__literal] = STATE(201), + [sym_string_literal] = STATE(219), + [sym_raw_string_literal] = STATE(219), + [sym_boolean_literal] = STATE(219), [sym_line_comment] = STATE(92), [sym_block_comment] = STATE(92), - [aux_sym__non_special_token_repeat1] = STATE(147), - [aux_sym_delim_token_tree_repeat1] = STATE(83), - [sym_identifier] = ACTIONS(678), - [anon_sym_SEMI] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(682), - [anon_sym_LBRACK] = ACTIONS(684), - [anon_sym_LBRACE] = ACTIONS(688), - [anon_sym_RBRACE] = ACTIONS(720), - [anon_sym_EQ_GT] = ACTIONS(680), - [anon_sym_COLON] = ACTIONS(690), - [anon_sym_DOLLAR] = ACTIONS(692), - [anon_sym_PLUS] = ACTIONS(690), - [anon_sym_STAR] = ACTIONS(690), - [anon_sym_QMARK] = ACTIONS(680), - [anon_sym_u8] = ACTIONS(678), - [anon_sym_i8] = ACTIONS(678), - [anon_sym_u16] = ACTIONS(678), - [anon_sym_i16] = ACTIONS(678), - [anon_sym_u32] = ACTIONS(678), - [anon_sym_i32] = ACTIONS(678), - [anon_sym_u64] = ACTIONS(678), - [anon_sym_i64] = ACTIONS(678), - [anon_sym_u128] = ACTIONS(678), - [anon_sym_i128] = ACTIONS(678), - [anon_sym_isize] = ACTIONS(678), - [anon_sym_usize] = ACTIONS(678), - [anon_sym_f32] = ACTIONS(678), - [anon_sym_f64] = ACTIONS(678), - [anon_sym_bool] = ACTIONS(678), - [anon_sym_str] = ACTIONS(678), - [anon_sym_char] = ACTIONS(678), - [anon_sym_DASH] = ACTIONS(690), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_PERCENT] = ACTIONS(690), - [anon_sym_CARET] = ACTIONS(690), - [anon_sym_BANG] = ACTIONS(690), - [anon_sym_AMP] = ACTIONS(690), - [anon_sym_PIPE] = ACTIONS(690), - [anon_sym_AMP_AMP] = ACTIONS(680), - [anon_sym_PIPE_PIPE] = ACTIONS(680), - [anon_sym_LT_LT] = ACTIONS(690), - [anon_sym_GT_GT] = ACTIONS(690), - [anon_sym_PLUS_EQ] = ACTIONS(680), - [anon_sym_DASH_EQ] = ACTIONS(680), - [anon_sym_STAR_EQ] = ACTIONS(680), - [anon_sym_SLASH_EQ] = ACTIONS(680), - [anon_sym_PERCENT_EQ] = ACTIONS(680), - [anon_sym_CARET_EQ] = ACTIONS(680), - [anon_sym_AMP_EQ] = ACTIONS(680), - [anon_sym_PIPE_EQ] = ACTIONS(680), - [anon_sym_LT_LT_EQ] = ACTIONS(680), - [anon_sym_GT_GT_EQ] = ACTIONS(680), - [anon_sym_EQ] = ACTIONS(690), - [anon_sym_EQ_EQ] = ACTIONS(680), - [anon_sym_BANG_EQ] = ACTIONS(680), - [anon_sym_GT] = ACTIONS(690), - [anon_sym_LT] = ACTIONS(690), - [anon_sym_GT_EQ] = ACTIONS(680), - [anon_sym_LT_EQ] = ACTIONS(680), - [anon_sym_AT] = ACTIONS(680), - [anon_sym__] = ACTIONS(690), - [anon_sym_DOT] = ACTIONS(690), - [anon_sym_DOT_DOT] = ACTIONS(690), - [anon_sym_DOT_DOT_DOT] = ACTIONS(680), - [anon_sym_DOT_DOT_EQ] = ACTIONS(680), - [anon_sym_COMMA] = ACTIONS(680), - [anon_sym_COLON_COLON] = ACTIONS(680), - [anon_sym_DASH_GT] = ACTIONS(680), - [anon_sym_POUND] = ACTIONS(680), - [anon_sym_SQUOTE] = ACTIONS(678), - [anon_sym_as] = ACTIONS(678), - [anon_sym_async] = ACTIONS(678), - [anon_sym_await] = ACTIONS(678), - [anon_sym_break] = ACTIONS(678), - [anon_sym_const] = ACTIONS(678), - [anon_sym_continue] = ACTIONS(678), - [anon_sym_default] = ACTIONS(678), - [anon_sym_enum] = ACTIONS(678), - [anon_sym_fn] = ACTIONS(678), - [anon_sym_for] = ACTIONS(678), - [anon_sym_gen] = ACTIONS(678), - [anon_sym_if] = ACTIONS(678), - [anon_sym_impl] = ACTIONS(678), - [anon_sym_let] = ACTIONS(678), - [anon_sym_loop] = ACTIONS(678), - [anon_sym_match] = ACTIONS(678), - [anon_sym_mod] = ACTIONS(678), - [anon_sym_pub] = ACTIONS(678), - [anon_sym_return] = ACTIONS(678), - [anon_sym_static] = ACTIONS(678), - [anon_sym_struct] = ACTIONS(678), - [anon_sym_trait] = ACTIONS(678), - [anon_sym_type] = ACTIONS(678), - [anon_sym_union] = ACTIONS(678), - [anon_sym_unsafe] = ACTIONS(678), - [anon_sym_use] = ACTIONS(678), - [anon_sym_where] = ACTIONS(678), - [anon_sym_while] = ACTIONS(678), - [sym_mutable_specifier] = ACTIONS(678), - [sym_integer_literal] = ACTIONS(694), - [aux_sym_string_literal_token1] = ACTIONS(696), - [sym_char_literal] = ACTIONS(694), - [anon_sym_true] = ACTIONS(698), - [anon_sym_false] = ACTIONS(698), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(678), - [sym_super] = ACTIONS(678), - [sym_crate] = ACTIONS(678), - [sym__raw_string_literal_start] = ACTIONS(700), - [sym_float_literal] = ACTIONS(694), + [aux_sym__non_special_token_repeat1] = STATE(176), + [aux_sym_delim_token_tree_repeat1] = STATE(99), + [sym_identifier] = ACTIONS(683), + [anon_sym_SEMI] = ACTIONS(685), + [anon_sym_LPAREN] = ACTIONS(687), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_LBRACE] = ACTIONS(693), + [anon_sym_RBRACE] = ACTIONS(711), + [anon_sym_EQ_GT] = ACTIONS(685), + [anon_sym_COLON] = ACTIONS(695), + [anon_sym_DOLLAR] = ACTIONS(697), + [anon_sym_PLUS] = ACTIONS(695), + [anon_sym_STAR] = ACTIONS(695), + [anon_sym_QMARK] = ACTIONS(685), + [anon_sym_u8] = ACTIONS(683), + [anon_sym_i8] = ACTIONS(683), + [anon_sym_u16] = ACTIONS(683), + [anon_sym_i16] = ACTIONS(683), + [anon_sym_u32] = ACTIONS(683), + [anon_sym_i32] = ACTIONS(683), + [anon_sym_u64] = ACTIONS(683), + [anon_sym_i64] = ACTIONS(683), + [anon_sym_u128] = ACTIONS(683), + [anon_sym_i128] = ACTIONS(683), + [anon_sym_isize] = ACTIONS(683), + [anon_sym_usize] = ACTIONS(683), + [anon_sym_f32] = ACTIONS(683), + [anon_sym_f64] = ACTIONS(683), + [anon_sym_bool] = ACTIONS(683), + [anon_sym_str] = ACTIONS(683), + [anon_sym_char] = ACTIONS(683), + [anon_sym_DASH] = ACTIONS(695), + [anon_sym_SLASH] = ACTIONS(695), + [anon_sym_PERCENT] = ACTIONS(695), + [anon_sym_CARET] = ACTIONS(695), + [anon_sym_BANG] = ACTIONS(695), + [anon_sym_AMP] = ACTIONS(695), + [anon_sym_PIPE] = ACTIONS(695), + [anon_sym_AMP_AMP] = ACTIONS(685), + [anon_sym_PIPE_PIPE] = ACTIONS(685), + [anon_sym_LT_LT] = ACTIONS(695), + [anon_sym_GT_GT] = ACTIONS(695), + [anon_sym_PLUS_EQ] = ACTIONS(685), + [anon_sym_DASH_EQ] = ACTIONS(685), + [anon_sym_STAR_EQ] = ACTIONS(685), + [anon_sym_SLASH_EQ] = ACTIONS(685), + [anon_sym_PERCENT_EQ] = ACTIONS(685), + [anon_sym_CARET_EQ] = ACTIONS(685), + [anon_sym_AMP_EQ] = ACTIONS(685), + [anon_sym_PIPE_EQ] = ACTIONS(685), + [anon_sym_LT_LT_EQ] = ACTIONS(685), + [anon_sym_GT_GT_EQ] = ACTIONS(685), + [anon_sym_EQ] = ACTIONS(695), + [anon_sym_EQ_EQ] = ACTIONS(685), + [anon_sym_BANG_EQ] = ACTIONS(685), + [anon_sym_GT] = ACTIONS(695), + [anon_sym_LT] = ACTIONS(695), + [anon_sym_GT_EQ] = ACTIONS(685), + [anon_sym_LT_EQ] = ACTIONS(685), + [anon_sym_AT] = ACTIONS(685), + [anon_sym__] = ACTIONS(695), + [anon_sym_DOT] = ACTIONS(695), + [anon_sym_DOT_DOT] = ACTIONS(695), + [anon_sym_DOT_DOT_DOT] = ACTIONS(685), + [anon_sym_DOT_DOT_EQ] = ACTIONS(685), + [anon_sym_COMMA] = ACTIONS(685), + [anon_sym_COLON_COLON] = ACTIONS(685), + [anon_sym_DASH_GT] = ACTIONS(685), + [anon_sym_POUND] = ACTIONS(685), + [anon_sym_SQUOTE] = ACTIONS(683), + [anon_sym_as] = ACTIONS(683), + [anon_sym_async] = ACTIONS(683), + [anon_sym_await] = ACTIONS(683), + [anon_sym_break] = ACTIONS(683), + [anon_sym_const] = ACTIONS(683), + [anon_sym_continue] = ACTIONS(683), + [anon_sym_default] = ACTIONS(683), + [anon_sym_enum] = ACTIONS(683), + [anon_sym_fn] = ACTIONS(683), + [anon_sym_for] = ACTIONS(683), + [anon_sym_gen] = ACTIONS(683), + [anon_sym_if] = ACTIONS(683), + [anon_sym_impl] = ACTIONS(683), + [anon_sym_let] = ACTIONS(683), + [anon_sym_loop] = ACTIONS(683), + [anon_sym_match] = ACTIONS(683), + [anon_sym_mod] = ACTIONS(683), + [anon_sym_pub] = ACTIONS(683), + [anon_sym_return] = ACTIONS(683), + [anon_sym_static] = ACTIONS(683), + [anon_sym_struct] = ACTIONS(683), + [anon_sym_trait] = ACTIONS(683), + [anon_sym_type] = ACTIONS(683), + [anon_sym_union] = ACTIONS(683), + [anon_sym_unsafe] = ACTIONS(683), + [anon_sym_use] = ACTIONS(683), + [anon_sym_where] = ACTIONS(683), + [anon_sym_while] = ACTIONS(683), + [sym_mutable_specifier] = ACTIONS(683), + [sym_integer_literal] = ACTIONS(699), + [aux_sym_string_literal_token1] = ACTIONS(701), + [sym_char_literal] = ACTIONS(699), + [anon_sym_true] = ACTIONS(703), + [anon_sym_false] = ACTIONS(703), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(683), + [sym_super] = ACTIONS(683), + [sym_crate] = ACTIONS(683), + [sym__raw_string_literal_start] = ACTIONS(705), + [sym_float_literal] = ACTIONS(699), }, [STATE(93)] = { - [sym_delim_token_tree] = STATE(200), - [sym__delim_tokens] = STATE(208), - [sym__non_delim_token] = STATE(200), - [sym__literal] = STATE(210), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), + [sym_delim_token_tree] = STATE(206), + [sym__delim_tokens] = STATE(213), + [sym__non_delim_token] = STATE(206), + [sym__literal] = STATE(201), + [sym_string_literal] = STATE(219), + [sym_raw_string_literal] = STATE(219), + [sym_boolean_literal] = STATE(219), [sym_line_comment] = STATE(93), [sym_block_comment] = STATE(93), - [aux_sym__non_special_token_repeat1] = STATE(147), - [aux_sym_delim_token_tree_repeat1] = STATE(96), - [sym_identifier] = ACTIONS(678), - [anon_sym_SEMI] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(682), - [anon_sym_RPAREN] = ACTIONS(722), - [anon_sym_LBRACK] = ACTIONS(684), - [anon_sym_LBRACE] = ACTIONS(688), - [anon_sym_EQ_GT] = ACTIONS(680), - [anon_sym_COLON] = ACTIONS(690), - [anon_sym_DOLLAR] = ACTIONS(692), - [anon_sym_PLUS] = ACTIONS(690), - [anon_sym_STAR] = ACTIONS(690), - [anon_sym_QMARK] = ACTIONS(680), - [anon_sym_u8] = ACTIONS(678), - [anon_sym_i8] = ACTIONS(678), - [anon_sym_u16] = ACTIONS(678), - [anon_sym_i16] = ACTIONS(678), - [anon_sym_u32] = ACTIONS(678), - [anon_sym_i32] = ACTIONS(678), - [anon_sym_u64] = ACTIONS(678), - [anon_sym_i64] = ACTIONS(678), - [anon_sym_u128] = ACTIONS(678), - [anon_sym_i128] = ACTIONS(678), - [anon_sym_isize] = ACTIONS(678), - [anon_sym_usize] = ACTIONS(678), - [anon_sym_f32] = ACTIONS(678), - [anon_sym_f64] = ACTIONS(678), - [anon_sym_bool] = ACTIONS(678), - [anon_sym_str] = ACTIONS(678), - [anon_sym_char] = ACTIONS(678), - [anon_sym_DASH] = ACTIONS(690), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_PERCENT] = ACTIONS(690), - [anon_sym_CARET] = ACTIONS(690), - [anon_sym_BANG] = ACTIONS(690), - [anon_sym_AMP] = ACTIONS(690), - [anon_sym_PIPE] = ACTIONS(690), - [anon_sym_AMP_AMP] = ACTIONS(680), - [anon_sym_PIPE_PIPE] = ACTIONS(680), - [anon_sym_LT_LT] = ACTIONS(690), - [anon_sym_GT_GT] = ACTIONS(690), - [anon_sym_PLUS_EQ] = ACTIONS(680), - [anon_sym_DASH_EQ] = ACTIONS(680), - [anon_sym_STAR_EQ] = ACTIONS(680), - [anon_sym_SLASH_EQ] = ACTIONS(680), - [anon_sym_PERCENT_EQ] = ACTIONS(680), - [anon_sym_CARET_EQ] = ACTIONS(680), - [anon_sym_AMP_EQ] = ACTIONS(680), - [anon_sym_PIPE_EQ] = ACTIONS(680), - [anon_sym_LT_LT_EQ] = ACTIONS(680), - [anon_sym_GT_GT_EQ] = ACTIONS(680), - [anon_sym_EQ] = ACTIONS(690), - [anon_sym_EQ_EQ] = ACTIONS(680), - [anon_sym_BANG_EQ] = ACTIONS(680), - [anon_sym_GT] = ACTIONS(690), - [anon_sym_LT] = ACTIONS(690), - [anon_sym_GT_EQ] = ACTIONS(680), - [anon_sym_LT_EQ] = ACTIONS(680), - [anon_sym_AT] = ACTIONS(680), - [anon_sym__] = ACTIONS(690), - [anon_sym_DOT] = ACTIONS(690), - [anon_sym_DOT_DOT] = ACTIONS(690), - [anon_sym_DOT_DOT_DOT] = ACTIONS(680), - [anon_sym_DOT_DOT_EQ] = ACTIONS(680), - [anon_sym_COMMA] = ACTIONS(680), - [anon_sym_COLON_COLON] = ACTIONS(680), - [anon_sym_DASH_GT] = ACTIONS(680), - [anon_sym_POUND] = ACTIONS(680), - [anon_sym_SQUOTE] = ACTIONS(678), - [anon_sym_as] = ACTIONS(678), - [anon_sym_async] = ACTIONS(678), - [anon_sym_await] = ACTIONS(678), - [anon_sym_break] = ACTIONS(678), - [anon_sym_const] = ACTIONS(678), - [anon_sym_continue] = ACTIONS(678), - [anon_sym_default] = ACTIONS(678), - [anon_sym_enum] = ACTIONS(678), - [anon_sym_fn] = ACTIONS(678), - [anon_sym_for] = ACTIONS(678), - [anon_sym_gen] = ACTIONS(678), - [anon_sym_if] = ACTIONS(678), - [anon_sym_impl] = ACTIONS(678), - [anon_sym_let] = ACTIONS(678), - [anon_sym_loop] = ACTIONS(678), - [anon_sym_match] = ACTIONS(678), - [anon_sym_mod] = ACTIONS(678), - [anon_sym_pub] = ACTIONS(678), - [anon_sym_return] = ACTIONS(678), - [anon_sym_static] = ACTIONS(678), - [anon_sym_struct] = ACTIONS(678), - [anon_sym_trait] = ACTIONS(678), - [anon_sym_type] = ACTIONS(678), - [anon_sym_union] = ACTIONS(678), - [anon_sym_unsafe] = ACTIONS(678), - [anon_sym_use] = ACTIONS(678), - [anon_sym_where] = ACTIONS(678), - [anon_sym_while] = ACTIONS(678), - [sym_mutable_specifier] = ACTIONS(678), - [sym_integer_literal] = ACTIONS(694), - [aux_sym_string_literal_token1] = ACTIONS(696), - [sym_char_literal] = ACTIONS(694), - [anon_sym_true] = ACTIONS(698), - [anon_sym_false] = ACTIONS(698), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(678), - [sym_super] = ACTIONS(678), - [sym_crate] = ACTIONS(678), - [sym__raw_string_literal_start] = ACTIONS(700), - [sym_float_literal] = ACTIONS(694), + [aux_sym__non_special_token_repeat1] = STATE(176), + [aux_sym_delim_token_tree_repeat1] = STATE(87), + [sym_identifier] = ACTIONS(683), + [anon_sym_SEMI] = ACTIONS(685), + [anon_sym_LPAREN] = ACTIONS(687), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_RBRACK] = ACTIONS(709), + [anon_sym_LBRACE] = ACTIONS(693), + [anon_sym_EQ_GT] = ACTIONS(685), + [anon_sym_COLON] = ACTIONS(695), + [anon_sym_DOLLAR] = ACTIONS(697), + [anon_sym_PLUS] = ACTIONS(695), + [anon_sym_STAR] = ACTIONS(695), + [anon_sym_QMARK] = ACTIONS(685), + [anon_sym_u8] = ACTIONS(683), + [anon_sym_i8] = ACTIONS(683), + [anon_sym_u16] = ACTIONS(683), + [anon_sym_i16] = ACTIONS(683), + [anon_sym_u32] = ACTIONS(683), + [anon_sym_i32] = ACTIONS(683), + [anon_sym_u64] = ACTIONS(683), + [anon_sym_i64] = ACTIONS(683), + [anon_sym_u128] = ACTIONS(683), + [anon_sym_i128] = ACTIONS(683), + [anon_sym_isize] = ACTIONS(683), + [anon_sym_usize] = ACTIONS(683), + [anon_sym_f32] = ACTIONS(683), + [anon_sym_f64] = ACTIONS(683), + [anon_sym_bool] = ACTIONS(683), + [anon_sym_str] = ACTIONS(683), + [anon_sym_char] = ACTIONS(683), + [anon_sym_DASH] = ACTIONS(695), + [anon_sym_SLASH] = ACTIONS(695), + [anon_sym_PERCENT] = ACTIONS(695), + [anon_sym_CARET] = ACTIONS(695), + [anon_sym_BANG] = ACTIONS(695), + [anon_sym_AMP] = ACTIONS(695), + [anon_sym_PIPE] = ACTIONS(695), + [anon_sym_AMP_AMP] = ACTIONS(685), + [anon_sym_PIPE_PIPE] = ACTIONS(685), + [anon_sym_LT_LT] = ACTIONS(695), + [anon_sym_GT_GT] = ACTIONS(695), + [anon_sym_PLUS_EQ] = ACTIONS(685), + [anon_sym_DASH_EQ] = ACTIONS(685), + [anon_sym_STAR_EQ] = ACTIONS(685), + [anon_sym_SLASH_EQ] = ACTIONS(685), + [anon_sym_PERCENT_EQ] = ACTIONS(685), + [anon_sym_CARET_EQ] = ACTIONS(685), + [anon_sym_AMP_EQ] = ACTIONS(685), + [anon_sym_PIPE_EQ] = ACTIONS(685), + [anon_sym_LT_LT_EQ] = ACTIONS(685), + [anon_sym_GT_GT_EQ] = ACTIONS(685), + [anon_sym_EQ] = ACTIONS(695), + [anon_sym_EQ_EQ] = ACTIONS(685), + [anon_sym_BANG_EQ] = ACTIONS(685), + [anon_sym_GT] = ACTIONS(695), + [anon_sym_LT] = ACTIONS(695), + [anon_sym_GT_EQ] = ACTIONS(685), + [anon_sym_LT_EQ] = ACTIONS(685), + [anon_sym_AT] = ACTIONS(685), + [anon_sym__] = ACTIONS(695), + [anon_sym_DOT] = ACTIONS(695), + [anon_sym_DOT_DOT] = ACTIONS(695), + [anon_sym_DOT_DOT_DOT] = ACTIONS(685), + [anon_sym_DOT_DOT_EQ] = ACTIONS(685), + [anon_sym_COMMA] = ACTIONS(685), + [anon_sym_COLON_COLON] = ACTIONS(685), + [anon_sym_DASH_GT] = ACTIONS(685), + [anon_sym_POUND] = ACTIONS(685), + [anon_sym_SQUOTE] = ACTIONS(683), + [anon_sym_as] = ACTIONS(683), + [anon_sym_async] = ACTIONS(683), + [anon_sym_await] = ACTIONS(683), + [anon_sym_break] = ACTIONS(683), + [anon_sym_const] = ACTIONS(683), + [anon_sym_continue] = ACTIONS(683), + [anon_sym_default] = ACTIONS(683), + [anon_sym_enum] = ACTIONS(683), + [anon_sym_fn] = ACTIONS(683), + [anon_sym_for] = ACTIONS(683), + [anon_sym_gen] = ACTIONS(683), + [anon_sym_if] = ACTIONS(683), + [anon_sym_impl] = ACTIONS(683), + [anon_sym_let] = ACTIONS(683), + [anon_sym_loop] = ACTIONS(683), + [anon_sym_match] = ACTIONS(683), + [anon_sym_mod] = ACTIONS(683), + [anon_sym_pub] = ACTIONS(683), + [anon_sym_return] = ACTIONS(683), + [anon_sym_static] = ACTIONS(683), + [anon_sym_struct] = ACTIONS(683), + [anon_sym_trait] = ACTIONS(683), + [anon_sym_type] = ACTIONS(683), + [anon_sym_union] = ACTIONS(683), + [anon_sym_unsafe] = ACTIONS(683), + [anon_sym_use] = ACTIONS(683), + [anon_sym_where] = ACTIONS(683), + [anon_sym_while] = ACTIONS(683), + [sym_mutable_specifier] = ACTIONS(683), + [sym_integer_literal] = ACTIONS(699), + [aux_sym_string_literal_token1] = ACTIONS(701), + [sym_char_literal] = ACTIONS(699), + [anon_sym_true] = ACTIONS(703), + [anon_sym_false] = ACTIONS(703), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(683), + [sym_super] = ACTIONS(683), + [sym_crate] = ACTIONS(683), + [sym__raw_string_literal_start] = ACTIONS(705), + [sym_float_literal] = ACTIONS(699), }, [STATE(94)] = { - [sym_delim_token_tree] = STATE(200), - [sym__delim_tokens] = STATE(208), - [sym__non_delim_token] = STATE(200), - [sym__literal] = STATE(210), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), + [sym_delim_token_tree] = STATE(206), + [sym__delim_tokens] = STATE(213), + [sym__non_delim_token] = STATE(206), + [sym__literal] = STATE(201), + [sym_string_literal] = STATE(219), + [sym_raw_string_literal] = STATE(219), + [sym_boolean_literal] = STATE(219), [sym_line_comment] = STATE(94), [sym_block_comment] = STATE(94), - [aux_sym__non_special_token_repeat1] = STATE(147), - [aux_sym_delim_token_tree_repeat1] = STATE(97), - [sym_identifier] = ACTIONS(678), - [anon_sym_SEMI] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(682), - [anon_sym_LBRACK] = ACTIONS(684), - [anon_sym_RBRACK] = ACTIONS(722), - [anon_sym_LBRACE] = ACTIONS(688), - [anon_sym_EQ_GT] = ACTIONS(680), - [anon_sym_COLON] = ACTIONS(690), - [anon_sym_DOLLAR] = ACTIONS(692), - [anon_sym_PLUS] = ACTIONS(690), - [anon_sym_STAR] = ACTIONS(690), - [anon_sym_QMARK] = ACTIONS(680), - [anon_sym_u8] = ACTIONS(678), - [anon_sym_i8] = ACTIONS(678), - [anon_sym_u16] = ACTIONS(678), - [anon_sym_i16] = ACTIONS(678), - [anon_sym_u32] = ACTIONS(678), - [anon_sym_i32] = ACTIONS(678), - [anon_sym_u64] = ACTIONS(678), - [anon_sym_i64] = ACTIONS(678), - [anon_sym_u128] = ACTIONS(678), - [anon_sym_i128] = ACTIONS(678), - [anon_sym_isize] = ACTIONS(678), - [anon_sym_usize] = ACTIONS(678), - [anon_sym_f32] = ACTIONS(678), - [anon_sym_f64] = ACTIONS(678), - [anon_sym_bool] = ACTIONS(678), - [anon_sym_str] = ACTIONS(678), - [anon_sym_char] = ACTIONS(678), - [anon_sym_DASH] = ACTIONS(690), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_PERCENT] = ACTIONS(690), - [anon_sym_CARET] = ACTIONS(690), - [anon_sym_BANG] = ACTIONS(690), - [anon_sym_AMP] = ACTIONS(690), - [anon_sym_PIPE] = ACTIONS(690), - [anon_sym_AMP_AMP] = ACTIONS(680), - [anon_sym_PIPE_PIPE] = ACTIONS(680), - [anon_sym_LT_LT] = ACTIONS(690), - [anon_sym_GT_GT] = ACTIONS(690), - [anon_sym_PLUS_EQ] = ACTIONS(680), - [anon_sym_DASH_EQ] = ACTIONS(680), - [anon_sym_STAR_EQ] = ACTIONS(680), - [anon_sym_SLASH_EQ] = ACTIONS(680), - [anon_sym_PERCENT_EQ] = ACTIONS(680), - [anon_sym_CARET_EQ] = ACTIONS(680), - [anon_sym_AMP_EQ] = ACTIONS(680), - [anon_sym_PIPE_EQ] = ACTIONS(680), - [anon_sym_LT_LT_EQ] = ACTIONS(680), - [anon_sym_GT_GT_EQ] = ACTIONS(680), - [anon_sym_EQ] = ACTIONS(690), - [anon_sym_EQ_EQ] = ACTIONS(680), - [anon_sym_BANG_EQ] = ACTIONS(680), - [anon_sym_GT] = ACTIONS(690), - [anon_sym_LT] = ACTIONS(690), - [anon_sym_GT_EQ] = ACTIONS(680), - [anon_sym_LT_EQ] = ACTIONS(680), - [anon_sym_AT] = ACTIONS(680), - [anon_sym__] = ACTIONS(690), - [anon_sym_DOT] = ACTIONS(690), - [anon_sym_DOT_DOT] = ACTIONS(690), - [anon_sym_DOT_DOT_DOT] = ACTIONS(680), - [anon_sym_DOT_DOT_EQ] = ACTIONS(680), - [anon_sym_COMMA] = ACTIONS(680), - [anon_sym_COLON_COLON] = ACTIONS(680), - [anon_sym_DASH_GT] = ACTIONS(680), - [anon_sym_POUND] = ACTIONS(680), - [anon_sym_SQUOTE] = ACTIONS(678), - [anon_sym_as] = ACTIONS(678), - [anon_sym_async] = ACTIONS(678), - [anon_sym_await] = ACTIONS(678), - [anon_sym_break] = ACTIONS(678), - [anon_sym_const] = ACTIONS(678), - [anon_sym_continue] = ACTIONS(678), - [anon_sym_default] = ACTIONS(678), - [anon_sym_enum] = ACTIONS(678), - [anon_sym_fn] = ACTIONS(678), - [anon_sym_for] = ACTIONS(678), - [anon_sym_gen] = ACTIONS(678), - [anon_sym_if] = ACTIONS(678), - [anon_sym_impl] = ACTIONS(678), - [anon_sym_let] = ACTIONS(678), - [anon_sym_loop] = ACTIONS(678), - [anon_sym_match] = ACTIONS(678), - [anon_sym_mod] = ACTIONS(678), - [anon_sym_pub] = ACTIONS(678), - [anon_sym_return] = ACTIONS(678), - [anon_sym_static] = ACTIONS(678), - [anon_sym_struct] = ACTIONS(678), - [anon_sym_trait] = ACTIONS(678), - [anon_sym_type] = ACTIONS(678), - [anon_sym_union] = ACTIONS(678), - [anon_sym_unsafe] = ACTIONS(678), - [anon_sym_use] = ACTIONS(678), - [anon_sym_where] = ACTIONS(678), - [anon_sym_while] = ACTIONS(678), - [sym_mutable_specifier] = ACTIONS(678), - [sym_integer_literal] = ACTIONS(694), - [aux_sym_string_literal_token1] = ACTIONS(696), - [sym_char_literal] = ACTIONS(694), - [anon_sym_true] = ACTIONS(698), - [anon_sym_false] = ACTIONS(698), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(678), - [sym_super] = ACTIONS(678), - [sym_crate] = ACTIONS(678), - [sym__raw_string_literal_start] = ACTIONS(700), - [sym_float_literal] = ACTIONS(694), + [aux_sym__non_special_token_repeat1] = STATE(176), + [aux_sym_delim_token_tree_repeat1] = STATE(88), + [sym_identifier] = ACTIONS(683), + [anon_sym_SEMI] = ACTIONS(685), + [anon_sym_LPAREN] = ACTIONS(687), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_LBRACE] = ACTIONS(693), + [anon_sym_RBRACE] = ACTIONS(709), + [anon_sym_EQ_GT] = ACTIONS(685), + [anon_sym_COLON] = ACTIONS(695), + [anon_sym_DOLLAR] = ACTIONS(697), + [anon_sym_PLUS] = ACTIONS(695), + [anon_sym_STAR] = ACTIONS(695), + [anon_sym_QMARK] = ACTIONS(685), + [anon_sym_u8] = ACTIONS(683), + [anon_sym_i8] = ACTIONS(683), + [anon_sym_u16] = ACTIONS(683), + [anon_sym_i16] = ACTIONS(683), + [anon_sym_u32] = ACTIONS(683), + [anon_sym_i32] = ACTIONS(683), + [anon_sym_u64] = ACTIONS(683), + [anon_sym_i64] = ACTIONS(683), + [anon_sym_u128] = ACTIONS(683), + [anon_sym_i128] = ACTIONS(683), + [anon_sym_isize] = ACTIONS(683), + [anon_sym_usize] = ACTIONS(683), + [anon_sym_f32] = ACTIONS(683), + [anon_sym_f64] = ACTIONS(683), + [anon_sym_bool] = ACTIONS(683), + [anon_sym_str] = ACTIONS(683), + [anon_sym_char] = ACTIONS(683), + [anon_sym_DASH] = ACTIONS(695), + [anon_sym_SLASH] = ACTIONS(695), + [anon_sym_PERCENT] = ACTIONS(695), + [anon_sym_CARET] = ACTIONS(695), + [anon_sym_BANG] = ACTIONS(695), + [anon_sym_AMP] = ACTIONS(695), + [anon_sym_PIPE] = ACTIONS(695), + [anon_sym_AMP_AMP] = ACTIONS(685), + [anon_sym_PIPE_PIPE] = ACTIONS(685), + [anon_sym_LT_LT] = ACTIONS(695), + [anon_sym_GT_GT] = ACTIONS(695), + [anon_sym_PLUS_EQ] = ACTIONS(685), + [anon_sym_DASH_EQ] = ACTIONS(685), + [anon_sym_STAR_EQ] = ACTIONS(685), + [anon_sym_SLASH_EQ] = ACTIONS(685), + [anon_sym_PERCENT_EQ] = ACTIONS(685), + [anon_sym_CARET_EQ] = ACTIONS(685), + [anon_sym_AMP_EQ] = ACTIONS(685), + [anon_sym_PIPE_EQ] = ACTIONS(685), + [anon_sym_LT_LT_EQ] = ACTIONS(685), + [anon_sym_GT_GT_EQ] = ACTIONS(685), + [anon_sym_EQ] = ACTIONS(695), + [anon_sym_EQ_EQ] = ACTIONS(685), + [anon_sym_BANG_EQ] = ACTIONS(685), + [anon_sym_GT] = ACTIONS(695), + [anon_sym_LT] = ACTIONS(695), + [anon_sym_GT_EQ] = ACTIONS(685), + [anon_sym_LT_EQ] = ACTIONS(685), + [anon_sym_AT] = ACTIONS(685), + [anon_sym__] = ACTIONS(695), + [anon_sym_DOT] = ACTIONS(695), + [anon_sym_DOT_DOT] = ACTIONS(695), + [anon_sym_DOT_DOT_DOT] = ACTIONS(685), + [anon_sym_DOT_DOT_EQ] = ACTIONS(685), + [anon_sym_COMMA] = ACTIONS(685), + [anon_sym_COLON_COLON] = ACTIONS(685), + [anon_sym_DASH_GT] = ACTIONS(685), + [anon_sym_POUND] = ACTIONS(685), + [anon_sym_SQUOTE] = ACTIONS(683), + [anon_sym_as] = ACTIONS(683), + [anon_sym_async] = ACTIONS(683), + [anon_sym_await] = ACTIONS(683), + [anon_sym_break] = ACTIONS(683), + [anon_sym_const] = ACTIONS(683), + [anon_sym_continue] = ACTIONS(683), + [anon_sym_default] = ACTIONS(683), + [anon_sym_enum] = ACTIONS(683), + [anon_sym_fn] = ACTIONS(683), + [anon_sym_for] = ACTIONS(683), + [anon_sym_gen] = ACTIONS(683), + [anon_sym_if] = ACTIONS(683), + [anon_sym_impl] = ACTIONS(683), + [anon_sym_let] = ACTIONS(683), + [anon_sym_loop] = ACTIONS(683), + [anon_sym_match] = ACTIONS(683), + [anon_sym_mod] = ACTIONS(683), + [anon_sym_pub] = ACTIONS(683), + [anon_sym_return] = ACTIONS(683), + [anon_sym_static] = ACTIONS(683), + [anon_sym_struct] = ACTIONS(683), + [anon_sym_trait] = ACTIONS(683), + [anon_sym_type] = ACTIONS(683), + [anon_sym_union] = ACTIONS(683), + [anon_sym_unsafe] = ACTIONS(683), + [anon_sym_use] = ACTIONS(683), + [anon_sym_where] = ACTIONS(683), + [anon_sym_while] = ACTIONS(683), + [sym_mutable_specifier] = ACTIONS(683), + [sym_integer_literal] = ACTIONS(699), + [aux_sym_string_literal_token1] = ACTIONS(701), + [sym_char_literal] = ACTIONS(699), + [anon_sym_true] = ACTIONS(703), + [anon_sym_false] = ACTIONS(703), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(683), + [sym_super] = ACTIONS(683), + [sym_crate] = ACTIONS(683), + [sym__raw_string_literal_start] = ACTIONS(705), + [sym_float_literal] = ACTIONS(699), }, [STATE(95)] = { - [sym_delim_token_tree] = STATE(200), - [sym__delim_tokens] = STATE(208), - [sym__non_delim_token] = STATE(200), - [sym__literal] = STATE(210), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), + [sym_token_tree] = STATE(163), + [sym_token_repetition] = STATE(163), + [sym__literal] = STATE(163), + [sym_string_literal] = STATE(184), + [sym_raw_string_literal] = STATE(184), + [sym_boolean_literal] = STATE(184), [sym_line_comment] = STATE(95), [sym_block_comment] = STATE(95), - [aux_sym__non_special_token_repeat1] = STATE(147), - [aux_sym_delim_token_tree_repeat1] = STATE(98), - [sym_identifier] = ACTIONS(678), - [anon_sym_SEMI] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(682), - [anon_sym_LBRACK] = ACTIONS(684), - [anon_sym_LBRACE] = ACTIONS(688), - [anon_sym_RBRACE] = ACTIONS(722), - [anon_sym_EQ_GT] = ACTIONS(680), - [anon_sym_COLON] = ACTIONS(690), - [anon_sym_DOLLAR] = ACTIONS(692), - [anon_sym_PLUS] = ACTIONS(690), - [anon_sym_STAR] = ACTIONS(690), - [anon_sym_QMARK] = ACTIONS(680), - [anon_sym_u8] = ACTIONS(678), - [anon_sym_i8] = ACTIONS(678), - [anon_sym_u16] = ACTIONS(678), - [anon_sym_i16] = ACTIONS(678), - [anon_sym_u32] = ACTIONS(678), - [anon_sym_i32] = ACTIONS(678), - [anon_sym_u64] = ACTIONS(678), - [anon_sym_i64] = ACTIONS(678), - [anon_sym_u128] = ACTIONS(678), - [anon_sym_i128] = ACTIONS(678), - [anon_sym_isize] = ACTIONS(678), - [anon_sym_usize] = ACTIONS(678), - [anon_sym_f32] = ACTIONS(678), - [anon_sym_f64] = ACTIONS(678), - [anon_sym_bool] = ACTIONS(678), - [anon_sym_str] = ACTIONS(678), - [anon_sym_char] = ACTIONS(678), - [anon_sym_DASH] = ACTIONS(690), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_PERCENT] = ACTIONS(690), - [anon_sym_CARET] = ACTIONS(690), - [anon_sym_BANG] = ACTIONS(690), - [anon_sym_AMP] = ACTIONS(690), - [anon_sym_PIPE] = ACTIONS(690), - [anon_sym_AMP_AMP] = ACTIONS(680), - [anon_sym_PIPE_PIPE] = ACTIONS(680), - [anon_sym_LT_LT] = ACTIONS(690), - [anon_sym_GT_GT] = ACTIONS(690), - [anon_sym_PLUS_EQ] = ACTIONS(680), - [anon_sym_DASH_EQ] = ACTIONS(680), - [anon_sym_STAR_EQ] = ACTIONS(680), - [anon_sym_SLASH_EQ] = ACTIONS(680), - [anon_sym_PERCENT_EQ] = ACTIONS(680), - [anon_sym_CARET_EQ] = ACTIONS(680), - [anon_sym_AMP_EQ] = ACTIONS(680), - [anon_sym_PIPE_EQ] = ACTIONS(680), - [anon_sym_LT_LT_EQ] = ACTIONS(680), - [anon_sym_GT_GT_EQ] = ACTIONS(680), - [anon_sym_EQ] = ACTIONS(690), - [anon_sym_EQ_EQ] = ACTIONS(680), - [anon_sym_BANG_EQ] = ACTIONS(680), - [anon_sym_GT] = ACTIONS(690), - [anon_sym_LT] = ACTIONS(690), - [anon_sym_GT_EQ] = ACTIONS(680), - [anon_sym_LT_EQ] = ACTIONS(680), - [anon_sym_AT] = ACTIONS(680), - [anon_sym__] = ACTIONS(690), - [anon_sym_DOT] = ACTIONS(690), - [anon_sym_DOT_DOT] = ACTIONS(690), - [anon_sym_DOT_DOT_DOT] = ACTIONS(680), - [anon_sym_DOT_DOT_EQ] = ACTIONS(680), - [anon_sym_COMMA] = ACTIONS(680), - [anon_sym_COLON_COLON] = ACTIONS(680), - [anon_sym_DASH_GT] = ACTIONS(680), - [anon_sym_POUND] = ACTIONS(680), - [anon_sym_SQUOTE] = ACTIONS(678), - [anon_sym_as] = ACTIONS(678), - [anon_sym_async] = ACTIONS(678), - [anon_sym_await] = ACTIONS(678), - [anon_sym_break] = ACTIONS(678), - [anon_sym_const] = ACTIONS(678), - [anon_sym_continue] = ACTIONS(678), - [anon_sym_default] = ACTIONS(678), - [anon_sym_enum] = ACTIONS(678), - [anon_sym_fn] = ACTIONS(678), - [anon_sym_for] = ACTIONS(678), - [anon_sym_gen] = ACTIONS(678), - [anon_sym_if] = ACTIONS(678), - [anon_sym_impl] = ACTIONS(678), - [anon_sym_let] = ACTIONS(678), - [anon_sym_loop] = ACTIONS(678), - [anon_sym_match] = ACTIONS(678), - [anon_sym_mod] = ACTIONS(678), - [anon_sym_pub] = ACTIONS(678), - [anon_sym_return] = ACTIONS(678), - [anon_sym_static] = ACTIONS(678), - [anon_sym_struct] = ACTIONS(678), - [anon_sym_trait] = ACTIONS(678), - [anon_sym_type] = ACTIONS(678), - [anon_sym_union] = ACTIONS(678), - [anon_sym_unsafe] = ACTIONS(678), - [anon_sym_use] = ACTIONS(678), - [anon_sym_where] = ACTIONS(678), - [anon_sym_while] = ACTIONS(678), - [sym_mutable_specifier] = ACTIONS(678), - [sym_integer_literal] = ACTIONS(694), - [aux_sym_string_literal_token1] = ACTIONS(696), - [sym_char_literal] = ACTIONS(694), - [anon_sym_true] = ACTIONS(698), - [anon_sym_false] = ACTIONS(698), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(678), - [sym_super] = ACTIONS(678), - [sym_crate] = ACTIONS(678), - [sym__raw_string_literal_start] = ACTIONS(700), - [sym_float_literal] = ACTIONS(694), + [aux_sym_token_tree_repeat1] = STATE(112), + [aux_sym__non_special_token_repeat1] = STATE(141), + [sym_identifier] = ACTIONS(713), + [anon_sym_SEMI] = ACTIONS(576), + [anon_sym_LPAREN] = ACTIONS(715), + [anon_sym_RPAREN] = ACTIONS(717), + [anon_sym_LBRACK] = ACTIONS(719), + [anon_sym_LBRACE] = ACTIONS(721), + [anon_sym_EQ_GT] = ACTIONS(576), + [anon_sym_COLON] = ACTIONS(586), + [anon_sym_DOLLAR] = ACTIONS(723), + [anon_sym_PLUS] = ACTIONS(586), + [anon_sym_STAR] = ACTIONS(586), + [anon_sym_QMARK] = ACTIONS(576), + [anon_sym_u8] = ACTIONS(713), + [anon_sym_i8] = ACTIONS(713), + [anon_sym_u16] = ACTIONS(713), + [anon_sym_i16] = ACTIONS(713), + [anon_sym_u32] = ACTIONS(713), + [anon_sym_i32] = ACTIONS(713), + [anon_sym_u64] = ACTIONS(713), + [anon_sym_i64] = ACTIONS(713), + [anon_sym_u128] = ACTIONS(713), + [anon_sym_i128] = ACTIONS(713), + [anon_sym_isize] = ACTIONS(713), + [anon_sym_usize] = ACTIONS(713), + [anon_sym_f32] = ACTIONS(713), + [anon_sym_f64] = ACTIONS(713), + [anon_sym_bool] = ACTIONS(713), + [anon_sym_str] = ACTIONS(713), + [anon_sym_char] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(586), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_PERCENT] = ACTIONS(586), + [anon_sym_CARET] = ACTIONS(586), + [anon_sym_BANG] = ACTIONS(586), + [anon_sym_AMP] = ACTIONS(586), + [anon_sym_PIPE] = ACTIONS(586), + [anon_sym_AMP_AMP] = ACTIONS(576), + [anon_sym_PIPE_PIPE] = ACTIONS(576), + [anon_sym_LT_LT] = ACTIONS(586), + [anon_sym_GT_GT] = ACTIONS(586), + [anon_sym_PLUS_EQ] = ACTIONS(576), + [anon_sym_DASH_EQ] = ACTIONS(576), + [anon_sym_STAR_EQ] = ACTIONS(576), + [anon_sym_SLASH_EQ] = ACTIONS(576), + [anon_sym_PERCENT_EQ] = ACTIONS(576), + [anon_sym_CARET_EQ] = ACTIONS(576), + [anon_sym_AMP_EQ] = ACTIONS(576), + [anon_sym_PIPE_EQ] = ACTIONS(576), + [anon_sym_LT_LT_EQ] = ACTIONS(576), + [anon_sym_GT_GT_EQ] = ACTIONS(576), + [anon_sym_EQ] = ACTIONS(586), + [anon_sym_EQ_EQ] = ACTIONS(576), + [anon_sym_BANG_EQ] = ACTIONS(576), + [anon_sym_GT] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(586), + [anon_sym_GT_EQ] = ACTIONS(576), + [anon_sym_LT_EQ] = ACTIONS(576), + [anon_sym_AT] = ACTIONS(576), + [anon_sym__] = ACTIONS(586), + [anon_sym_DOT] = ACTIONS(586), + [anon_sym_DOT_DOT] = ACTIONS(586), + [anon_sym_DOT_DOT_DOT] = ACTIONS(576), + [anon_sym_DOT_DOT_EQ] = ACTIONS(576), + [anon_sym_COMMA] = ACTIONS(576), + [anon_sym_COLON_COLON] = ACTIONS(576), + [anon_sym_DASH_GT] = ACTIONS(576), + [anon_sym_POUND] = ACTIONS(576), + [anon_sym_SQUOTE] = ACTIONS(713), + [anon_sym_as] = ACTIONS(713), + [anon_sym_async] = ACTIONS(713), + [anon_sym_await] = ACTIONS(713), + [anon_sym_break] = ACTIONS(713), + [anon_sym_const] = ACTIONS(713), + [anon_sym_continue] = ACTIONS(713), + [anon_sym_default] = ACTIONS(713), + [anon_sym_enum] = ACTIONS(713), + [anon_sym_fn] = ACTIONS(713), + [anon_sym_for] = ACTIONS(713), + [anon_sym_gen] = ACTIONS(713), + [anon_sym_if] = ACTIONS(713), + [anon_sym_impl] = ACTIONS(713), + [anon_sym_let] = ACTIONS(713), + [anon_sym_loop] = ACTIONS(713), + [anon_sym_match] = ACTIONS(713), + [anon_sym_mod] = ACTIONS(713), + [anon_sym_pub] = ACTIONS(713), + [anon_sym_return] = ACTIONS(713), + [anon_sym_static] = ACTIONS(713), + [anon_sym_struct] = ACTIONS(713), + [anon_sym_trait] = ACTIONS(713), + [anon_sym_type] = ACTIONS(713), + [anon_sym_union] = ACTIONS(713), + [anon_sym_unsafe] = ACTIONS(713), + [anon_sym_use] = ACTIONS(713), + [anon_sym_where] = ACTIONS(713), + [anon_sym_while] = ACTIONS(713), + [sym_mutable_specifier] = ACTIONS(713), + [sym_integer_literal] = ACTIONS(590), + [aux_sym_string_literal_token1] = ACTIONS(592), + [sym_char_literal] = ACTIONS(590), + [anon_sym_true] = ACTIONS(594), + [anon_sym_false] = ACTIONS(594), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(713), + [sym_super] = ACTIONS(713), + [sym_crate] = ACTIONS(713), + [sym_metavariable] = ACTIONS(725), + [sym__raw_string_literal_start] = ACTIONS(598), + [sym_float_literal] = ACTIONS(590), }, [STATE(96)] = { - [sym_delim_token_tree] = STATE(200), - [sym__delim_tokens] = STATE(208), - [sym__non_delim_token] = STATE(200), - [sym__literal] = STATE(210), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), + [sym_token_tree] = STATE(163), + [sym_token_repetition] = STATE(163), + [sym__literal] = STATE(163), + [sym_string_literal] = STATE(184), + [sym_raw_string_literal] = STATE(184), + [sym_boolean_literal] = STATE(184), [sym_line_comment] = STATE(96), [sym_block_comment] = STATE(96), - [aux_sym__non_special_token_repeat1] = STATE(147), - [aux_sym_delim_token_tree_repeat1] = STATE(83), - [sym_identifier] = ACTIONS(678), - [anon_sym_SEMI] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(682), - [anon_sym_RPAREN] = ACTIONS(724), - [anon_sym_LBRACK] = ACTIONS(684), - [anon_sym_LBRACE] = ACTIONS(688), - [anon_sym_EQ_GT] = ACTIONS(680), - [anon_sym_COLON] = ACTIONS(690), - [anon_sym_DOLLAR] = ACTIONS(692), - [anon_sym_PLUS] = ACTIONS(690), - [anon_sym_STAR] = ACTIONS(690), - [anon_sym_QMARK] = ACTIONS(680), - [anon_sym_u8] = ACTIONS(678), - [anon_sym_i8] = ACTIONS(678), - [anon_sym_u16] = ACTIONS(678), - [anon_sym_i16] = ACTIONS(678), - [anon_sym_u32] = ACTIONS(678), - [anon_sym_i32] = ACTIONS(678), - [anon_sym_u64] = ACTIONS(678), - [anon_sym_i64] = ACTIONS(678), - [anon_sym_u128] = ACTIONS(678), - [anon_sym_i128] = ACTIONS(678), - [anon_sym_isize] = ACTIONS(678), - [anon_sym_usize] = ACTIONS(678), - [anon_sym_f32] = ACTIONS(678), - [anon_sym_f64] = ACTIONS(678), - [anon_sym_bool] = ACTIONS(678), - [anon_sym_str] = ACTIONS(678), - [anon_sym_char] = ACTIONS(678), - [anon_sym_DASH] = ACTIONS(690), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_PERCENT] = ACTIONS(690), - [anon_sym_CARET] = ACTIONS(690), - [anon_sym_BANG] = ACTIONS(690), - [anon_sym_AMP] = ACTIONS(690), - [anon_sym_PIPE] = ACTIONS(690), - [anon_sym_AMP_AMP] = ACTIONS(680), - [anon_sym_PIPE_PIPE] = ACTIONS(680), - [anon_sym_LT_LT] = ACTIONS(690), - [anon_sym_GT_GT] = ACTIONS(690), - [anon_sym_PLUS_EQ] = ACTIONS(680), - [anon_sym_DASH_EQ] = ACTIONS(680), - [anon_sym_STAR_EQ] = ACTIONS(680), - [anon_sym_SLASH_EQ] = ACTIONS(680), - [anon_sym_PERCENT_EQ] = ACTIONS(680), - [anon_sym_CARET_EQ] = ACTIONS(680), - [anon_sym_AMP_EQ] = ACTIONS(680), - [anon_sym_PIPE_EQ] = ACTIONS(680), - [anon_sym_LT_LT_EQ] = ACTIONS(680), - [anon_sym_GT_GT_EQ] = ACTIONS(680), - [anon_sym_EQ] = ACTIONS(690), - [anon_sym_EQ_EQ] = ACTIONS(680), - [anon_sym_BANG_EQ] = ACTIONS(680), - [anon_sym_GT] = ACTIONS(690), - [anon_sym_LT] = ACTIONS(690), - [anon_sym_GT_EQ] = ACTIONS(680), - [anon_sym_LT_EQ] = ACTIONS(680), - [anon_sym_AT] = ACTIONS(680), - [anon_sym__] = ACTIONS(690), - [anon_sym_DOT] = ACTIONS(690), - [anon_sym_DOT_DOT] = ACTIONS(690), - [anon_sym_DOT_DOT_DOT] = ACTIONS(680), - [anon_sym_DOT_DOT_EQ] = ACTIONS(680), - [anon_sym_COMMA] = ACTIONS(680), - [anon_sym_COLON_COLON] = ACTIONS(680), - [anon_sym_DASH_GT] = ACTIONS(680), - [anon_sym_POUND] = ACTIONS(680), - [anon_sym_SQUOTE] = ACTIONS(678), - [anon_sym_as] = ACTIONS(678), - [anon_sym_async] = ACTIONS(678), - [anon_sym_await] = ACTIONS(678), - [anon_sym_break] = ACTIONS(678), - [anon_sym_const] = ACTIONS(678), - [anon_sym_continue] = ACTIONS(678), - [anon_sym_default] = ACTIONS(678), - [anon_sym_enum] = ACTIONS(678), - [anon_sym_fn] = ACTIONS(678), - [anon_sym_for] = ACTIONS(678), - [anon_sym_gen] = ACTIONS(678), - [anon_sym_if] = ACTIONS(678), - [anon_sym_impl] = ACTIONS(678), - [anon_sym_let] = ACTIONS(678), - [anon_sym_loop] = ACTIONS(678), - [anon_sym_match] = ACTIONS(678), - [anon_sym_mod] = ACTIONS(678), - [anon_sym_pub] = ACTIONS(678), - [anon_sym_return] = ACTIONS(678), - [anon_sym_static] = ACTIONS(678), - [anon_sym_struct] = ACTIONS(678), - [anon_sym_trait] = ACTIONS(678), - [anon_sym_type] = ACTIONS(678), - [anon_sym_union] = ACTIONS(678), - [anon_sym_unsafe] = ACTIONS(678), - [anon_sym_use] = ACTIONS(678), - [anon_sym_where] = ACTIONS(678), - [anon_sym_while] = ACTIONS(678), - [sym_mutable_specifier] = ACTIONS(678), - [sym_integer_literal] = ACTIONS(694), - [aux_sym_string_literal_token1] = ACTIONS(696), - [sym_char_literal] = ACTIONS(694), - [anon_sym_true] = ACTIONS(698), - [anon_sym_false] = ACTIONS(698), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(678), - [sym_super] = ACTIONS(678), - [sym_crate] = ACTIONS(678), - [sym__raw_string_literal_start] = ACTIONS(700), - [sym_float_literal] = ACTIONS(694), + [aux_sym_token_tree_repeat1] = STATE(113), + [aux_sym__non_special_token_repeat1] = STATE(141), + [sym_identifier] = ACTIONS(713), + [anon_sym_SEMI] = ACTIONS(576), + [anon_sym_LPAREN] = ACTIONS(715), + [anon_sym_LBRACK] = ACTIONS(719), + [anon_sym_RBRACK] = ACTIONS(717), + [anon_sym_LBRACE] = ACTIONS(721), + [anon_sym_EQ_GT] = ACTIONS(576), + [anon_sym_COLON] = ACTIONS(586), + [anon_sym_DOLLAR] = ACTIONS(723), + [anon_sym_PLUS] = ACTIONS(586), + [anon_sym_STAR] = ACTIONS(586), + [anon_sym_QMARK] = ACTIONS(576), + [anon_sym_u8] = ACTIONS(713), + [anon_sym_i8] = ACTIONS(713), + [anon_sym_u16] = ACTIONS(713), + [anon_sym_i16] = ACTIONS(713), + [anon_sym_u32] = ACTIONS(713), + [anon_sym_i32] = ACTIONS(713), + [anon_sym_u64] = ACTIONS(713), + [anon_sym_i64] = ACTIONS(713), + [anon_sym_u128] = ACTIONS(713), + [anon_sym_i128] = ACTIONS(713), + [anon_sym_isize] = ACTIONS(713), + [anon_sym_usize] = ACTIONS(713), + [anon_sym_f32] = ACTIONS(713), + [anon_sym_f64] = ACTIONS(713), + [anon_sym_bool] = ACTIONS(713), + [anon_sym_str] = ACTIONS(713), + [anon_sym_char] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(586), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_PERCENT] = ACTIONS(586), + [anon_sym_CARET] = ACTIONS(586), + [anon_sym_BANG] = ACTIONS(586), + [anon_sym_AMP] = ACTIONS(586), + [anon_sym_PIPE] = ACTIONS(586), + [anon_sym_AMP_AMP] = ACTIONS(576), + [anon_sym_PIPE_PIPE] = ACTIONS(576), + [anon_sym_LT_LT] = ACTIONS(586), + [anon_sym_GT_GT] = ACTIONS(586), + [anon_sym_PLUS_EQ] = ACTIONS(576), + [anon_sym_DASH_EQ] = ACTIONS(576), + [anon_sym_STAR_EQ] = ACTIONS(576), + [anon_sym_SLASH_EQ] = ACTIONS(576), + [anon_sym_PERCENT_EQ] = ACTIONS(576), + [anon_sym_CARET_EQ] = ACTIONS(576), + [anon_sym_AMP_EQ] = ACTIONS(576), + [anon_sym_PIPE_EQ] = ACTIONS(576), + [anon_sym_LT_LT_EQ] = ACTIONS(576), + [anon_sym_GT_GT_EQ] = ACTIONS(576), + [anon_sym_EQ] = ACTIONS(586), + [anon_sym_EQ_EQ] = ACTIONS(576), + [anon_sym_BANG_EQ] = ACTIONS(576), + [anon_sym_GT] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(586), + [anon_sym_GT_EQ] = ACTIONS(576), + [anon_sym_LT_EQ] = ACTIONS(576), + [anon_sym_AT] = ACTIONS(576), + [anon_sym__] = ACTIONS(586), + [anon_sym_DOT] = ACTIONS(586), + [anon_sym_DOT_DOT] = ACTIONS(586), + [anon_sym_DOT_DOT_DOT] = ACTIONS(576), + [anon_sym_DOT_DOT_EQ] = ACTIONS(576), + [anon_sym_COMMA] = ACTIONS(576), + [anon_sym_COLON_COLON] = ACTIONS(576), + [anon_sym_DASH_GT] = ACTIONS(576), + [anon_sym_POUND] = ACTIONS(576), + [anon_sym_SQUOTE] = ACTIONS(713), + [anon_sym_as] = ACTIONS(713), + [anon_sym_async] = ACTIONS(713), + [anon_sym_await] = ACTIONS(713), + [anon_sym_break] = ACTIONS(713), + [anon_sym_const] = ACTIONS(713), + [anon_sym_continue] = ACTIONS(713), + [anon_sym_default] = ACTIONS(713), + [anon_sym_enum] = ACTIONS(713), + [anon_sym_fn] = ACTIONS(713), + [anon_sym_for] = ACTIONS(713), + [anon_sym_gen] = ACTIONS(713), + [anon_sym_if] = ACTIONS(713), + [anon_sym_impl] = ACTIONS(713), + [anon_sym_let] = ACTIONS(713), + [anon_sym_loop] = ACTIONS(713), + [anon_sym_match] = ACTIONS(713), + [anon_sym_mod] = ACTIONS(713), + [anon_sym_pub] = ACTIONS(713), + [anon_sym_return] = ACTIONS(713), + [anon_sym_static] = ACTIONS(713), + [anon_sym_struct] = ACTIONS(713), + [anon_sym_trait] = ACTIONS(713), + [anon_sym_type] = ACTIONS(713), + [anon_sym_union] = ACTIONS(713), + [anon_sym_unsafe] = ACTIONS(713), + [anon_sym_use] = ACTIONS(713), + [anon_sym_where] = ACTIONS(713), + [anon_sym_while] = ACTIONS(713), + [sym_mutable_specifier] = ACTIONS(713), + [sym_integer_literal] = ACTIONS(590), + [aux_sym_string_literal_token1] = ACTIONS(592), + [sym_char_literal] = ACTIONS(590), + [anon_sym_true] = ACTIONS(594), + [anon_sym_false] = ACTIONS(594), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(713), + [sym_super] = ACTIONS(713), + [sym_crate] = ACTIONS(713), + [sym_metavariable] = ACTIONS(725), + [sym__raw_string_literal_start] = ACTIONS(598), + [sym_float_literal] = ACTIONS(590), }, [STATE(97)] = { - [sym_delim_token_tree] = STATE(200), - [sym__delim_tokens] = STATE(208), - [sym__non_delim_token] = STATE(200), - [sym__literal] = STATE(210), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), + [sym_delim_token_tree] = STATE(206), + [sym__delim_tokens] = STATE(213), + [sym__non_delim_token] = STATE(206), + [sym__literal] = STATE(201), + [sym_string_literal] = STATE(219), + [sym_raw_string_literal] = STATE(219), + [sym_boolean_literal] = STATE(219), [sym_line_comment] = STATE(97), [sym_block_comment] = STATE(97), - [aux_sym__non_special_token_repeat1] = STATE(147), + [aux_sym__non_special_token_repeat1] = STATE(176), [aux_sym_delim_token_tree_repeat1] = STATE(83), - [sym_identifier] = ACTIONS(678), - [anon_sym_SEMI] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(682), - [anon_sym_LBRACK] = ACTIONS(684), - [anon_sym_RBRACK] = ACTIONS(724), - [anon_sym_LBRACE] = ACTIONS(688), - [anon_sym_EQ_GT] = ACTIONS(680), - [anon_sym_COLON] = ACTIONS(690), - [anon_sym_DOLLAR] = ACTIONS(692), - [anon_sym_PLUS] = ACTIONS(690), - [anon_sym_STAR] = ACTIONS(690), - [anon_sym_QMARK] = ACTIONS(680), - [anon_sym_u8] = ACTIONS(678), - [anon_sym_i8] = ACTIONS(678), - [anon_sym_u16] = ACTIONS(678), - [anon_sym_i16] = ACTIONS(678), - [anon_sym_u32] = ACTIONS(678), - [anon_sym_i32] = ACTIONS(678), - [anon_sym_u64] = ACTIONS(678), - [anon_sym_i64] = ACTIONS(678), - [anon_sym_u128] = ACTIONS(678), - [anon_sym_i128] = ACTIONS(678), - [anon_sym_isize] = ACTIONS(678), - [anon_sym_usize] = ACTIONS(678), - [anon_sym_f32] = ACTIONS(678), - [anon_sym_f64] = ACTIONS(678), - [anon_sym_bool] = ACTIONS(678), - [anon_sym_str] = ACTIONS(678), - [anon_sym_char] = ACTIONS(678), - [anon_sym_DASH] = ACTIONS(690), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_PERCENT] = ACTIONS(690), - [anon_sym_CARET] = ACTIONS(690), - [anon_sym_BANG] = ACTIONS(690), - [anon_sym_AMP] = ACTIONS(690), - [anon_sym_PIPE] = ACTIONS(690), - [anon_sym_AMP_AMP] = ACTIONS(680), - [anon_sym_PIPE_PIPE] = ACTIONS(680), - [anon_sym_LT_LT] = ACTIONS(690), - [anon_sym_GT_GT] = ACTIONS(690), - [anon_sym_PLUS_EQ] = ACTIONS(680), - [anon_sym_DASH_EQ] = ACTIONS(680), - [anon_sym_STAR_EQ] = ACTIONS(680), - [anon_sym_SLASH_EQ] = ACTIONS(680), - [anon_sym_PERCENT_EQ] = ACTIONS(680), - [anon_sym_CARET_EQ] = ACTIONS(680), - [anon_sym_AMP_EQ] = ACTIONS(680), - [anon_sym_PIPE_EQ] = ACTIONS(680), - [anon_sym_LT_LT_EQ] = ACTIONS(680), - [anon_sym_GT_GT_EQ] = ACTIONS(680), - [anon_sym_EQ] = ACTIONS(690), - [anon_sym_EQ_EQ] = ACTIONS(680), - [anon_sym_BANG_EQ] = ACTIONS(680), - [anon_sym_GT] = ACTIONS(690), - [anon_sym_LT] = ACTIONS(690), - [anon_sym_GT_EQ] = ACTIONS(680), - [anon_sym_LT_EQ] = ACTIONS(680), - [anon_sym_AT] = ACTIONS(680), - [anon_sym__] = ACTIONS(690), - [anon_sym_DOT] = ACTIONS(690), - [anon_sym_DOT_DOT] = ACTIONS(690), - [anon_sym_DOT_DOT_DOT] = ACTIONS(680), - [anon_sym_DOT_DOT_EQ] = ACTIONS(680), - [anon_sym_COMMA] = ACTIONS(680), - [anon_sym_COLON_COLON] = ACTIONS(680), - [anon_sym_DASH_GT] = ACTIONS(680), - [anon_sym_POUND] = ACTIONS(680), - [anon_sym_SQUOTE] = ACTIONS(678), - [anon_sym_as] = ACTIONS(678), - [anon_sym_async] = ACTIONS(678), - [anon_sym_await] = ACTIONS(678), - [anon_sym_break] = ACTIONS(678), - [anon_sym_const] = ACTIONS(678), - [anon_sym_continue] = ACTIONS(678), - [anon_sym_default] = ACTIONS(678), - [anon_sym_enum] = ACTIONS(678), - [anon_sym_fn] = ACTIONS(678), - [anon_sym_for] = ACTIONS(678), - [anon_sym_gen] = ACTIONS(678), - [anon_sym_if] = ACTIONS(678), - [anon_sym_impl] = ACTIONS(678), - [anon_sym_let] = ACTIONS(678), - [anon_sym_loop] = ACTIONS(678), - [anon_sym_match] = ACTIONS(678), - [anon_sym_mod] = ACTIONS(678), - [anon_sym_pub] = ACTIONS(678), - [anon_sym_return] = ACTIONS(678), - [anon_sym_static] = ACTIONS(678), - [anon_sym_struct] = ACTIONS(678), - [anon_sym_trait] = ACTIONS(678), - [anon_sym_type] = ACTIONS(678), - [anon_sym_union] = ACTIONS(678), - [anon_sym_unsafe] = ACTIONS(678), - [anon_sym_use] = ACTIONS(678), - [anon_sym_where] = ACTIONS(678), - [anon_sym_while] = ACTIONS(678), - [sym_mutable_specifier] = ACTIONS(678), - [sym_integer_literal] = ACTIONS(694), - [aux_sym_string_literal_token1] = ACTIONS(696), - [sym_char_literal] = ACTIONS(694), - [anon_sym_true] = ACTIONS(698), - [anon_sym_false] = ACTIONS(698), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(678), - [sym_super] = ACTIONS(678), - [sym_crate] = ACTIONS(678), - [sym__raw_string_literal_start] = ACTIONS(700), - [sym_float_literal] = ACTIONS(694), + [sym_identifier] = ACTIONS(683), + [anon_sym_SEMI] = ACTIONS(685), + [anon_sym_LPAREN] = ACTIONS(687), + [anon_sym_RPAREN] = ACTIONS(727), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_LBRACE] = ACTIONS(693), + [anon_sym_EQ_GT] = ACTIONS(685), + [anon_sym_COLON] = ACTIONS(695), + [anon_sym_DOLLAR] = ACTIONS(697), + [anon_sym_PLUS] = ACTIONS(695), + [anon_sym_STAR] = ACTIONS(695), + [anon_sym_QMARK] = ACTIONS(685), + [anon_sym_u8] = ACTIONS(683), + [anon_sym_i8] = ACTIONS(683), + [anon_sym_u16] = ACTIONS(683), + [anon_sym_i16] = ACTIONS(683), + [anon_sym_u32] = ACTIONS(683), + [anon_sym_i32] = ACTIONS(683), + [anon_sym_u64] = ACTIONS(683), + [anon_sym_i64] = ACTIONS(683), + [anon_sym_u128] = ACTIONS(683), + [anon_sym_i128] = ACTIONS(683), + [anon_sym_isize] = ACTIONS(683), + [anon_sym_usize] = ACTIONS(683), + [anon_sym_f32] = ACTIONS(683), + [anon_sym_f64] = ACTIONS(683), + [anon_sym_bool] = ACTIONS(683), + [anon_sym_str] = ACTIONS(683), + [anon_sym_char] = ACTIONS(683), + [anon_sym_DASH] = ACTIONS(695), + [anon_sym_SLASH] = ACTIONS(695), + [anon_sym_PERCENT] = ACTIONS(695), + [anon_sym_CARET] = ACTIONS(695), + [anon_sym_BANG] = ACTIONS(695), + [anon_sym_AMP] = ACTIONS(695), + [anon_sym_PIPE] = ACTIONS(695), + [anon_sym_AMP_AMP] = ACTIONS(685), + [anon_sym_PIPE_PIPE] = ACTIONS(685), + [anon_sym_LT_LT] = ACTIONS(695), + [anon_sym_GT_GT] = ACTIONS(695), + [anon_sym_PLUS_EQ] = ACTIONS(685), + [anon_sym_DASH_EQ] = ACTIONS(685), + [anon_sym_STAR_EQ] = ACTIONS(685), + [anon_sym_SLASH_EQ] = ACTIONS(685), + [anon_sym_PERCENT_EQ] = ACTIONS(685), + [anon_sym_CARET_EQ] = ACTIONS(685), + [anon_sym_AMP_EQ] = ACTIONS(685), + [anon_sym_PIPE_EQ] = ACTIONS(685), + [anon_sym_LT_LT_EQ] = ACTIONS(685), + [anon_sym_GT_GT_EQ] = ACTIONS(685), + [anon_sym_EQ] = ACTIONS(695), + [anon_sym_EQ_EQ] = ACTIONS(685), + [anon_sym_BANG_EQ] = ACTIONS(685), + [anon_sym_GT] = ACTIONS(695), + [anon_sym_LT] = ACTIONS(695), + [anon_sym_GT_EQ] = ACTIONS(685), + [anon_sym_LT_EQ] = ACTIONS(685), + [anon_sym_AT] = ACTIONS(685), + [anon_sym__] = ACTIONS(695), + [anon_sym_DOT] = ACTIONS(695), + [anon_sym_DOT_DOT] = ACTIONS(695), + [anon_sym_DOT_DOT_DOT] = ACTIONS(685), + [anon_sym_DOT_DOT_EQ] = ACTIONS(685), + [anon_sym_COMMA] = ACTIONS(685), + [anon_sym_COLON_COLON] = ACTIONS(685), + [anon_sym_DASH_GT] = ACTIONS(685), + [anon_sym_POUND] = ACTIONS(685), + [anon_sym_SQUOTE] = ACTIONS(683), + [anon_sym_as] = ACTIONS(683), + [anon_sym_async] = ACTIONS(683), + [anon_sym_await] = ACTIONS(683), + [anon_sym_break] = ACTIONS(683), + [anon_sym_const] = ACTIONS(683), + [anon_sym_continue] = ACTIONS(683), + [anon_sym_default] = ACTIONS(683), + [anon_sym_enum] = ACTIONS(683), + [anon_sym_fn] = ACTIONS(683), + [anon_sym_for] = ACTIONS(683), + [anon_sym_gen] = ACTIONS(683), + [anon_sym_if] = ACTIONS(683), + [anon_sym_impl] = ACTIONS(683), + [anon_sym_let] = ACTIONS(683), + [anon_sym_loop] = ACTIONS(683), + [anon_sym_match] = ACTIONS(683), + [anon_sym_mod] = ACTIONS(683), + [anon_sym_pub] = ACTIONS(683), + [anon_sym_return] = ACTIONS(683), + [anon_sym_static] = ACTIONS(683), + [anon_sym_struct] = ACTIONS(683), + [anon_sym_trait] = ACTIONS(683), + [anon_sym_type] = ACTIONS(683), + [anon_sym_union] = ACTIONS(683), + [anon_sym_unsafe] = ACTIONS(683), + [anon_sym_use] = ACTIONS(683), + [anon_sym_where] = ACTIONS(683), + [anon_sym_while] = ACTIONS(683), + [sym_mutable_specifier] = ACTIONS(683), + [sym_integer_literal] = ACTIONS(699), + [aux_sym_string_literal_token1] = ACTIONS(701), + [sym_char_literal] = ACTIONS(699), + [anon_sym_true] = ACTIONS(703), + [anon_sym_false] = ACTIONS(703), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(683), + [sym_super] = ACTIONS(683), + [sym_crate] = ACTIONS(683), + [sym__raw_string_literal_start] = ACTIONS(705), + [sym_float_literal] = ACTIONS(699), }, [STATE(98)] = { - [sym_delim_token_tree] = STATE(200), - [sym__delim_tokens] = STATE(208), - [sym__non_delim_token] = STATE(200), - [sym__literal] = STATE(210), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), + [sym_delim_token_tree] = STATE(206), + [sym__delim_tokens] = STATE(213), + [sym__non_delim_token] = STATE(206), + [sym__literal] = STATE(201), + [sym_string_literal] = STATE(219), + [sym_raw_string_literal] = STATE(219), + [sym_boolean_literal] = STATE(219), [sym_line_comment] = STATE(98), [sym_block_comment] = STATE(98), - [aux_sym__non_special_token_repeat1] = STATE(147), + [aux_sym__non_special_token_repeat1] = STATE(176), [aux_sym_delim_token_tree_repeat1] = STATE(83), - [sym_identifier] = ACTIONS(678), - [anon_sym_SEMI] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(682), - [anon_sym_LBRACK] = ACTIONS(684), - [anon_sym_LBRACE] = ACTIONS(688), - [anon_sym_RBRACE] = ACTIONS(724), - [anon_sym_EQ_GT] = ACTIONS(680), - [anon_sym_COLON] = ACTIONS(690), - [anon_sym_DOLLAR] = ACTIONS(692), - [anon_sym_PLUS] = ACTIONS(690), - [anon_sym_STAR] = ACTIONS(690), - [anon_sym_QMARK] = ACTIONS(680), - [anon_sym_u8] = ACTIONS(678), - [anon_sym_i8] = ACTIONS(678), - [anon_sym_u16] = ACTIONS(678), - [anon_sym_i16] = ACTIONS(678), - [anon_sym_u32] = ACTIONS(678), - [anon_sym_i32] = ACTIONS(678), - [anon_sym_u64] = ACTIONS(678), - [anon_sym_i64] = ACTIONS(678), - [anon_sym_u128] = ACTIONS(678), - [anon_sym_i128] = ACTIONS(678), - [anon_sym_isize] = ACTIONS(678), - [anon_sym_usize] = ACTIONS(678), - [anon_sym_f32] = ACTIONS(678), - [anon_sym_f64] = ACTIONS(678), - [anon_sym_bool] = ACTIONS(678), - [anon_sym_str] = ACTIONS(678), - [anon_sym_char] = ACTIONS(678), - [anon_sym_DASH] = ACTIONS(690), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_PERCENT] = ACTIONS(690), - [anon_sym_CARET] = ACTIONS(690), - [anon_sym_BANG] = ACTIONS(690), - [anon_sym_AMP] = ACTIONS(690), - [anon_sym_PIPE] = ACTIONS(690), - [anon_sym_AMP_AMP] = ACTIONS(680), - [anon_sym_PIPE_PIPE] = ACTIONS(680), - [anon_sym_LT_LT] = ACTIONS(690), - [anon_sym_GT_GT] = ACTIONS(690), - [anon_sym_PLUS_EQ] = ACTIONS(680), - [anon_sym_DASH_EQ] = ACTIONS(680), - [anon_sym_STAR_EQ] = ACTIONS(680), - [anon_sym_SLASH_EQ] = ACTIONS(680), - [anon_sym_PERCENT_EQ] = ACTIONS(680), - [anon_sym_CARET_EQ] = ACTIONS(680), - [anon_sym_AMP_EQ] = ACTIONS(680), - [anon_sym_PIPE_EQ] = ACTIONS(680), - [anon_sym_LT_LT_EQ] = ACTIONS(680), - [anon_sym_GT_GT_EQ] = ACTIONS(680), - [anon_sym_EQ] = ACTIONS(690), - [anon_sym_EQ_EQ] = ACTIONS(680), - [anon_sym_BANG_EQ] = ACTIONS(680), - [anon_sym_GT] = ACTIONS(690), - [anon_sym_LT] = ACTIONS(690), - [anon_sym_GT_EQ] = ACTIONS(680), - [anon_sym_LT_EQ] = ACTIONS(680), - [anon_sym_AT] = ACTIONS(680), - [anon_sym__] = ACTIONS(690), - [anon_sym_DOT] = ACTIONS(690), - [anon_sym_DOT_DOT] = ACTIONS(690), - [anon_sym_DOT_DOT_DOT] = ACTIONS(680), - [anon_sym_DOT_DOT_EQ] = ACTIONS(680), - [anon_sym_COMMA] = ACTIONS(680), - [anon_sym_COLON_COLON] = ACTIONS(680), - [anon_sym_DASH_GT] = ACTIONS(680), - [anon_sym_POUND] = ACTIONS(680), - [anon_sym_SQUOTE] = ACTIONS(678), - [anon_sym_as] = ACTIONS(678), - [anon_sym_async] = ACTIONS(678), - [anon_sym_await] = ACTIONS(678), - [anon_sym_break] = ACTIONS(678), - [anon_sym_const] = ACTIONS(678), - [anon_sym_continue] = ACTIONS(678), - [anon_sym_default] = ACTIONS(678), - [anon_sym_enum] = ACTIONS(678), - [anon_sym_fn] = ACTIONS(678), - [anon_sym_for] = ACTIONS(678), - [anon_sym_gen] = ACTIONS(678), - [anon_sym_if] = ACTIONS(678), - [anon_sym_impl] = ACTIONS(678), - [anon_sym_let] = ACTIONS(678), - [anon_sym_loop] = ACTIONS(678), - [anon_sym_match] = ACTIONS(678), - [anon_sym_mod] = ACTIONS(678), - [anon_sym_pub] = ACTIONS(678), - [anon_sym_return] = ACTIONS(678), - [anon_sym_static] = ACTIONS(678), - [anon_sym_struct] = ACTIONS(678), - [anon_sym_trait] = ACTIONS(678), - [anon_sym_type] = ACTIONS(678), - [anon_sym_union] = ACTIONS(678), - [anon_sym_unsafe] = ACTIONS(678), - [anon_sym_use] = ACTIONS(678), - [anon_sym_where] = ACTIONS(678), - [anon_sym_while] = ACTIONS(678), - [sym_mutable_specifier] = ACTIONS(678), - [sym_integer_literal] = ACTIONS(694), - [aux_sym_string_literal_token1] = ACTIONS(696), - [sym_char_literal] = ACTIONS(694), - [anon_sym_true] = ACTIONS(698), - [anon_sym_false] = ACTIONS(698), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(678), - [sym_super] = ACTIONS(678), - [sym_crate] = ACTIONS(678), - [sym__raw_string_literal_start] = ACTIONS(700), - [sym_float_literal] = ACTIONS(694), + [sym_identifier] = ACTIONS(683), + [anon_sym_SEMI] = ACTIONS(685), + [anon_sym_LPAREN] = ACTIONS(687), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_RBRACK] = ACTIONS(727), + [anon_sym_LBRACE] = ACTIONS(693), + [anon_sym_EQ_GT] = ACTIONS(685), + [anon_sym_COLON] = ACTIONS(695), + [anon_sym_DOLLAR] = ACTIONS(697), + [anon_sym_PLUS] = ACTIONS(695), + [anon_sym_STAR] = ACTIONS(695), + [anon_sym_QMARK] = ACTIONS(685), + [anon_sym_u8] = ACTIONS(683), + [anon_sym_i8] = ACTIONS(683), + [anon_sym_u16] = ACTIONS(683), + [anon_sym_i16] = ACTIONS(683), + [anon_sym_u32] = ACTIONS(683), + [anon_sym_i32] = ACTIONS(683), + [anon_sym_u64] = ACTIONS(683), + [anon_sym_i64] = ACTIONS(683), + [anon_sym_u128] = ACTIONS(683), + [anon_sym_i128] = ACTIONS(683), + [anon_sym_isize] = ACTIONS(683), + [anon_sym_usize] = ACTIONS(683), + [anon_sym_f32] = ACTIONS(683), + [anon_sym_f64] = ACTIONS(683), + [anon_sym_bool] = ACTIONS(683), + [anon_sym_str] = ACTIONS(683), + [anon_sym_char] = ACTIONS(683), + [anon_sym_DASH] = ACTIONS(695), + [anon_sym_SLASH] = ACTIONS(695), + [anon_sym_PERCENT] = ACTIONS(695), + [anon_sym_CARET] = ACTIONS(695), + [anon_sym_BANG] = ACTIONS(695), + [anon_sym_AMP] = ACTIONS(695), + [anon_sym_PIPE] = ACTIONS(695), + [anon_sym_AMP_AMP] = ACTIONS(685), + [anon_sym_PIPE_PIPE] = ACTIONS(685), + [anon_sym_LT_LT] = ACTIONS(695), + [anon_sym_GT_GT] = ACTIONS(695), + [anon_sym_PLUS_EQ] = ACTIONS(685), + [anon_sym_DASH_EQ] = ACTIONS(685), + [anon_sym_STAR_EQ] = ACTIONS(685), + [anon_sym_SLASH_EQ] = ACTIONS(685), + [anon_sym_PERCENT_EQ] = ACTIONS(685), + [anon_sym_CARET_EQ] = ACTIONS(685), + [anon_sym_AMP_EQ] = ACTIONS(685), + [anon_sym_PIPE_EQ] = ACTIONS(685), + [anon_sym_LT_LT_EQ] = ACTIONS(685), + [anon_sym_GT_GT_EQ] = ACTIONS(685), + [anon_sym_EQ] = ACTIONS(695), + [anon_sym_EQ_EQ] = ACTIONS(685), + [anon_sym_BANG_EQ] = ACTIONS(685), + [anon_sym_GT] = ACTIONS(695), + [anon_sym_LT] = ACTIONS(695), + [anon_sym_GT_EQ] = ACTIONS(685), + [anon_sym_LT_EQ] = ACTIONS(685), + [anon_sym_AT] = ACTIONS(685), + [anon_sym__] = ACTIONS(695), + [anon_sym_DOT] = ACTIONS(695), + [anon_sym_DOT_DOT] = ACTIONS(695), + [anon_sym_DOT_DOT_DOT] = ACTIONS(685), + [anon_sym_DOT_DOT_EQ] = ACTIONS(685), + [anon_sym_COMMA] = ACTIONS(685), + [anon_sym_COLON_COLON] = ACTIONS(685), + [anon_sym_DASH_GT] = ACTIONS(685), + [anon_sym_POUND] = ACTIONS(685), + [anon_sym_SQUOTE] = ACTIONS(683), + [anon_sym_as] = ACTIONS(683), + [anon_sym_async] = ACTIONS(683), + [anon_sym_await] = ACTIONS(683), + [anon_sym_break] = ACTIONS(683), + [anon_sym_const] = ACTIONS(683), + [anon_sym_continue] = ACTIONS(683), + [anon_sym_default] = ACTIONS(683), + [anon_sym_enum] = ACTIONS(683), + [anon_sym_fn] = ACTIONS(683), + [anon_sym_for] = ACTIONS(683), + [anon_sym_gen] = ACTIONS(683), + [anon_sym_if] = ACTIONS(683), + [anon_sym_impl] = ACTIONS(683), + [anon_sym_let] = ACTIONS(683), + [anon_sym_loop] = ACTIONS(683), + [anon_sym_match] = ACTIONS(683), + [anon_sym_mod] = ACTIONS(683), + [anon_sym_pub] = ACTIONS(683), + [anon_sym_return] = ACTIONS(683), + [anon_sym_static] = ACTIONS(683), + [anon_sym_struct] = ACTIONS(683), + [anon_sym_trait] = ACTIONS(683), + [anon_sym_type] = ACTIONS(683), + [anon_sym_union] = ACTIONS(683), + [anon_sym_unsafe] = ACTIONS(683), + [anon_sym_use] = ACTIONS(683), + [anon_sym_where] = ACTIONS(683), + [anon_sym_while] = ACTIONS(683), + [sym_mutable_specifier] = ACTIONS(683), + [sym_integer_literal] = ACTIONS(699), + [aux_sym_string_literal_token1] = ACTIONS(701), + [sym_char_literal] = ACTIONS(699), + [anon_sym_true] = ACTIONS(703), + [anon_sym_false] = ACTIONS(703), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(683), + [sym_super] = ACTIONS(683), + [sym_crate] = ACTIONS(683), + [sym__raw_string_literal_start] = ACTIONS(705), + [sym_float_literal] = ACTIONS(699), }, [STATE(99)] = { - [sym_token_tree] = STATE(187), - [sym_token_repetition] = STATE(187), - [sym__literal] = STATE(187), - [sym_string_literal] = STATE(183), - [sym_raw_string_literal] = STATE(183), - [sym_boolean_literal] = STATE(183), + [sym_delim_token_tree] = STATE(206), + [sym__delim_tokens] = STATE(213), + [sym__non_delim_token] = STATE(206), + [sym__literal] = STATE(201), + [sym_string_literal] = STATE(219), + [sym_raw_string_literal] = STATE(219), + [sym_boolean_literal] = STATE(219), [sym_line_comment] = STATE(99), [sym_block_comment] = STATE(99), - [aux_sym_token_tree_repeat1] = STATE(102), - [aux_sym__non_special_token_repeat1] = STATE(144), - [sym_identifier] = ACTIONS(702), - [anon_sym_SEMI] = ACTIONS(609), - [anon_sym_LPAREN] = ACTIONS(704), - [anon_sym_RPAREN] = ACTIONS(726), - [anon_sym_LBRACK] = ACTIONS(708), - [anon_sym_LBRACE] = ACTIONS(710), - [anon_sym_EQ_GT] = ACTIONS(609), - [anon_sym_COLON] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(712), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_STAR] = ACTIONS(619), - [anon_sym_QMARK] = ACTIONS(609), - [anon_sym_u8] = ACTIONS(702), - [anon_sym_i8] = ACTIONS(702), - [anon_sym_u16] = ACTIONS(702), - [anon_sym_i16] = ACTIONS(702), - [anon_sym_u32] = ACTIONS(702), - [anon_sym_i32] = ACTIONS(702), - [anon_sym_u64] = ACTIONS(702), - [anon_sym_i64] = ACTIONS(702), - [anon_sym_u128] = ACTIONS(702), - [anon_sym_i128] = ACTIONS(702), - [anon_sym_isize] = ACTIONS(702), - [anon_sym_usize] = ACTIONS(702), - [anon_sym_f32] = ACTIONS(702), - [anon_sym_f64] = ACTIONS(702), - [anon_sym_bool] = ACTIONS(702), - [anon_sym_str] = ACTIONS(702), - [anon_sym_char] = ACTIONS(702), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_SLASH] = ACTIONS(619), - [anon_sym_PERCENT] = ACTIONS(619), - [anon_sym_CARET] = ACTIONS(619), - [anon_sym_BANG] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(619), - [anon_sym_AMP_AMP] = ACTIONS(609), - [anon_sym_PIPE_PIPE] = ACTIONS(609), - [anon_sym_LT_LT] = ACTIONS(619), - [anon_sym_GT_GT] = ACTIONS(619), - [anon_sym_PLUS_EQ] = ACTIONS(609), - [anon_sym_DASH_EQ] = ACTIONS(609), - [anon_sym_STAR_EQ] = ACTIONS(609), - [anon_sym_SLASH_EQ] = ACTIONS(609), - [anon_sym_PERCENT_EQ] = ACTIONS(609), - [anon_sym_CARET_EQ] = ACTIONS(609), - [anon_sym_AMP_EQ] = ACTIONS(609), - [anon_sym_PIPE_EQ] = ACTIONS(609), - [anon_sym_LT_LT_EQ] = ACTIONS(609), - [anon_sym_GT_GT_EQ] = ACTIONS(609), - [anon_sym_EQ] = ACTIONS(619), - [anon_sym_EQ_EQ] = ACTIONS(609), - [anon_sym_BANG_EQ] = ACTIONS(609), - [anon_sym_GT] = ACTIONS(619), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_GT_EQ] = ACTIONS(609), - [anon_sym_LT_EQ] = ACTIONS(609), - [anon_sym_AT] = ACTIONS(609), - [anon_sym__] = ACTIONS(619), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_DOT_DOT] = ACTIONS(619), - [anon_sym_DOT_DOT_DOT] = ACTIONS(609), - [anon_sym_DOT_DOT_EQ] = ACTIONS(609), - [anon_sym_COMMA] = ACTIONS(609), - [anon_sym_COLON_COLON] = ACTIONS(609), - [anon_sym_DASH_GT] = ACTIONS(609), - [anon_sym_POUND] = ACTIONS(609), - [anon_sym_SQUOTE] = ACTIONS(702), - [anon_sym_as] = ACTIONS(702), - [anon_sym_async] = ACTIONS(702), - [anon_sym_await] = ACTIONS(702), - [anon_sym_break] = ACTIONS(702), - [anon_sym_const] = ACTIONS(702), - [anon_sym_continue] = ACTIONS(702), - [anon_sym_default] = ACTIONS(702), - [anon_sym_enum] = ACTIONS(702), - [anon_sym_fn] = ACTIONS(702), - [anon_sym_for] = ACTIONS(702), - [anon_sym_gen] = ACTIONS(702), - [anon_sym_if] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(702), - [anon_sym_let] = ACTIONS(702), - [anon_sym_loop] = ACTIONS(702), - [anon_sym_match] = ACTIONS(702), - [anon_sym_mod] = ACTIONS(702), - [anon_sym_pub] = ACTIONS(702), - [anon_sym_return] = ACTIONS(702), - [anon_sym_static] = ACTIONS(702), - [anon_sym_struct] = ACTIONS(702), - [anon_sym_trait] = ACTIONS(702), - [anon_sym_type] = ACTIONS(702), - [anon_sym_union] = ACTIONS(702), - [anon_sym_unsafe] = ACTIONS(702), - [anon_sym_use] = ACTIONS(702), - [anon_sym_where] = ACTIONS(702), - [anon_sym_while] = ACTIONS(702), - [sym_mutable_specifier] = ACTIONS(702), - [sym_integer_literal] = ACTIONS(623), - [aux_sym_string_literal_token1] = ACTIONS(625), - [sym_char_literal] = ACTIONS(623), - [anon_sym_true] = ACTIONS(627), - [anon_sym_false] = ACTIONS(627), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(702), - [sym_super] = ACTIONS(702), - [sym_crate] = ACTIONS(702), - [sym_metavariable] = ACTIONS(714), - [sym__raw_string_literal_start] = ACTIONS(631), - [sym_float_literal] = ACTIONS(623), + [aux_sym__non_special_token_repeat1] = STATE(176), + [aux_sym_delim_token_tree_repeat1] = STATE(83), + [sym_identifier] = ACTIONS(683), + [anon_sym_SEMI] = ACTIONS(685), + [anon_sym_LPAREN] = ACTIONS(687), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_LBRACE] = ACTIONS(693), + [anon_sym_RBRACE] = ACTIONS(727), + [anon_sym_EQ_GT] = ACTIONS(685), + [anon_sym_COLON] = ACTIONS(695), + [anon_sym_DOLLAR] = ACTIONS(697), + [anon_sym_PLUS] = ACTIONS(695), + [anon_sym_STAR] = ACTIONS(695), + [anon_sym_QMARK] = ACTIONS(685), + [anon_sym_u8] = ACTIONS(683), + [anon_sym_i8] = ACTIONS(683), + [anon_sym_u16] = ACTIONS(683), + [anon_sym_i16] = ACTIONS(683), + [anon_sym_u32] = ACTIONS(683), + [anon_sym_i32] = ACTIONS(683), + [anon_sym_u64] = ACTIONS(683), + [anon_sym_i64] = ACTIONS(683), + [anon_sym_u128] = ACTIONS(683), + [anon_sym_i128] = ACTIONS(683), + [anon_sym_isize] = ACTIONS(683), + [anon_sym_usize] = ACTIONS(683), + [anon_sym_f32] = ACTIONS(683), + [anon_sym_f64] = ACTIONS(683), + [anon_sym_bool] = ACTIONS(683), + [anon_sym_str] = ACTIONS(683), + [anon_sym_char] = ACTIONS(683), + [anon_sym_DASH] = ACTIONS(695), + [anon_sym_SLASH] = ACTIONS(695), + [anon_sym_PERCENT] = ACTIONS(695), + [anon_sym_CARET] = ACTIONS(695), + [anon_sym_BANG] = ACTIONS(695), + [anon_sym_AMP] = ACTIONS(695), + [anon_sym_PIPE] = ACTIONS(695), + [anon_sym_AMP_AMP] = ACTIONS(685), + [anon_sym_PIPE_PIPE] = ACTIONS(685), + [anon_sym_LT_LT] = ACTIONS(695), + [anon_sym_GT_GT] = ACTIONS(695), + [anon_sym_PLUS_EQ] = ACTIONS(685), + [anon_sym_DASH_EQ] = ACTIONS(685), + [anon_sym_STAR_EQ] = ACTIONS(685), + [anon_sym_SLASH_EQ] = ACTIONS(685), + [anon_sym_PERCENT_EQ] = ACTIONS(685), + [anon_sym_CARET_EQ] = ACTIONS(685), + [anon_sym_AMP_EQ] = ACTIONS(685), + [anon_sym_PIPE_EQ] = ACTIONS(685), + [anon_sym_LT_LT_EQ] = ACTIONS(685), + [anon_sym_GT_GT_EQ] = ACTIONS(685), + [anon_sym_EQ] = ACTIONS(695), + [anon_sym_EQ_EQ] = ACTIONS(685), + [anon_sym_BANG_EQ] = ACTIONS(685), + [anon_sym_GT] = ACTIONS(695), + [anon_sym_LT] = ACTIONS(695), + [anon_sym_GT_EQ] = ACTIONS(685), + [anon_sym_LT_EQ] = ACTIONS(685), + [anon_sym_AT] = ACTIONS(685), + [anon_sym__] = ACTIONS(695), + [anon_sym_DOT] = ACTIONS(695), + [anon_sym_DOT_DOT] = ACTIONS(695), + [anon_sym_DOT_DOT_DOT] = ACTIONS(685), + [anon_sym_DOT_DOT_EQ] = ACTIONS(685), + [anon_sym_COMMA] = ACTIONS(685), + [anon_sym_COLON_COLON] = ACTIONS(685), + [anon_sym_DASH_GT] = ACTIONS(685), + [anon_sym_POUND] = ACTIONS(685), + [anon_sym_SQUOTE] = ACTIONS(683), + [anon_sym_as] = ACTIONS(683), + [anon_sym_async] = ACTIONS(683), + [anon_sym_await] = ACTIONS(683), + [anon_sym_break] = ACTIONS(683), + [anon_sym_const] = ACTIONS(683), + [anon_sym_continue] = ACTIONS(683), + [anon_sym_default] = ACTIONS(683), + [anon_sym_enum] = ACTIONS(683), + [anon_sym_fn] = ACTIONS(683), + [anon_sym_for] = ACTIONS(683), + [anon_sym_gen] = ACTIONS(683), + [anon_sym_if] = ACTIONS(683), + [anon_sym_impl] = ACTIONS(683), + [anon_sym_let] = ACTIONS(683), + [anon_sym_loop] = ACTIONS(683), + [anon_sym_match] = ACTIONS(683), + [anon_sym_mod] = ACTIONS(683), + [anon_sym_pub] = ACTIONS(683), + [anon_sym_return] = ACTIONS(683), + [anon_sym_static] = ACTIONS(683), + [anon_sym_struct] = ACTIONS(683), + [anon_sym_trait] = ACTIONS(683), + [anon_sym_type] = ACTIONS(683), + [anon_sym_union] = ACTIONS(683), + [anon_sym_unsafe] = ACTIONS(683), + [anon_sym_use] = ACTIONS(683), + [anon_sym_where] = ACTIONS(683), + [anon_sym_while] = ACTIONS(683), + [sym_mutable_specifier] = ACTIONS(683), + [sym_integer_literal] = ACTIONS(699), + [aux_sym_string_literal_token1] = ACTIONS(701), + [sym_char_literal] = ACTIONS(699), + [anon_sym_true] = ACTIONS(703), + [anon_sym_false] = ACTIONS(703), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(683), + [sym_super] = ACTIONS(683), + [sym_crate] = ACTIONS(683), + [sym__raw_string_literal_start] = ACTIONS(705), + [sym_float_literal] = ACTIONS(699), }, [STATE(100)] = { - [sym_token_tree] = STATE(187), - [sym_token_repetition] = STATE(187), - [sym__literal] = STATE(187), - [sym_string_literal] = STATE(183), - [sym_raw_string_literal] = STATE(183), - [sym_boolean_literal] = STATE(183), + [sym_token_tree] = STATE(163), + [sym_token_repetition] = STATE(163), + [sym__literal] = STATE(163), + [sym_string_literal] = STATE(184), + [sym_raw_string_literal] = STATE(184), + [sym_boolean_literal] = STATE(184), [sym_line_comment] = STATE(100), [sym_block_comment] = STATE(100), - [aux_sym_token_tree_repeat1] = STATE(103), - [aux_sym__non_special_token_repeat1] = STATE(144), - [sym_identifier] = ACTIONS(702), - [anon_sym_SEMI] = ACTIONS(609), - [anon_sym_LPAREN] = ACTIONS(704), - [anon_sym_LBRACK] = ACTIONS(708), - [anon_sym_RBRACK] = ACTIONS(726), - [anon_sym_LBRACE] = ACTIONS(710), - [anon_sym_EQ_GT] = ACTIONS(609), - [anon_sym_COLON] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(712), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_STAR] = ACTIONS(619), - [anon_sym_QMARK] = ACTIONS(609), - [anon_sym_u8] = ACTIONS(702), - [anon_sym_i8] = ACTIONS(702), - [anon_sym_u16] = ACTIONS(702), - [anon_sym_i16] = ACTIONS(702), - [anon_sym_u32] = ACTIONS(702), - [anon_sym_i32] = ACTIONS(702), - [anon_sym_u64] = ACTIONS(702), - [anon_sym_i64] = ACTIONS(702), - [anon_sym_u128] = ACTIONS(702), - [anon_sym_i128] = ACTIONS(702), - [anon_sym_isize] = ACTIONS(702), - [anon_sym_usize] = ACTIONS(702), - [anon_sym_f32] = ACTIONS(702), - [anon_sym_f64] = ACTIONS(702), - [anon_sym_bool] = ACTIONS(702), - [anon_sym_str] = ACTIONS(702), - [anon_sym_char] = ACTIONS(702), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_SLASH] = ACTIONS(619), - [anon_sym_PERCENT] = ACTIONS(619), - [anon_sym_CARET] = ACTIONS(619), - [anon_sym_BANG] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(619), - [anon_sym_AMP_AMP] = ACTIONS(609), - [anon_sym_PIPE_PIPE] = ACTIONS(609), - [anon_sym_LT_LT] = ACTIONS(619), - [anon_sym_GT_GT] = ACTIONS(619), - [anon_sym_PLUS_EQ] = ACTIONS(609), - [anon_sym_DASH_EQ] = ACTIONS(609), - [anon_sym_STAR_EQ] = ACTIONS(609), - [anon_sym_SLASH_EQ] = ACTIONS(609), - [anon_sym_PERCENT_EQ] = ACTIONS(609), - [anon_sym_CARET_EQ] = ACTIONS(609), - [anon_sym_AMP_EQ] = ACTIONS(609), - [anon_sym_PIPE_EQ] = ACTIONS(609), - [anon_sym_LT_LT_EQ] = ACTIONS(609), - [anon_sym_GT_GT_EQ] = ACTIONS(609), - [anon_sym_EQ] = ACTIONS(619), - [anon_sym_EQ_EQ] = ACTIONS(609), - [anon_sym_BANG_EQ] = ACTIONS(609), - [anon_sym_GT] = ACTIONS(619), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_GT_EQ] = ACTIONS(609), - [anon_sym_LT_EQ] = ACTIONS(609), - [anon_sym_AT] = ACTIONS(609), - [anon_sym__] = ACTIONS(619), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_DOT_DOT] = ACTIONS(619), - [anon_sym_DOT_DOT_DOT] = ACTIONS(609), - [anon_sym_DOT_DOT_EQ] = ACTIONS(609), - [anon_sym_COMMA] = ACTIONS(609), - [anon_sym_COLON_COLON] = ACTIONS(609), - [anon_sym_DASH_GT] = ACTIONS(609), - [anon_sym_POUND] = ACTIONS(609), - [anon_sym_SQUOTE] = ACTIONS(702), - [anon_sym_as] = ACTIONS(702), - [anon_sym_async] = ACTIONS(702), - [anon_sym_await] = ACTIONS(702), - [anon_sym_break] = ACTIONS(702), - [anon_sym_const] = ACTIONS(702), - [anon_sym_continue] = ACTIONS(702), - [anon_sym_default] = ACTIONS(702), - [anon_sym_enum] = ACTIONS(702), - [anon_sym_fn] = ACTIONS(702), - [anon_sym_for] = ACTIONS(702), - [anon_sym_gen] = ACTIONS(702), - [anon_sym_if] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(702), - [anon_sym_let] = ACTIONS(702), - [anon_sym_loop] = ACTIONS(702), - [anon_sym_match] = ACTIONS(702), - [anon_sym_mod] = ACTIONS(702), - [anon_sym_pub] = ACTIONS(702), - [anon_sym_return] = ACTIONS(702), - [anon_sym_static] = ACTIONS(702), - [anon_sym_struct] = ACTIONS(702), - [anon_sym_trait] = ACTIONS(702), - [anon_sym_type] = ACTIONS(702), - [anon_sym_union] = ACTIONS(702), - [anon_sym_unsafe] = ACTIONS(702), - [anon_sym_use] = ACTIONS(702), - [anon_sym_where] = ACTIONS(702), - [anon_sym_while] = ACTIONS(702), - [sym_mutable_specifier] = ACTIONS(702), - [sym_integer_literal] = ACTIONS(623), - [aux_sym_string_literal_token1] = ACTIONS(625), - [sym_char_literal] = ACTIONS(623), - [anon_sym_true] = ACTIONS(627), - [anon_sym_false] = ACTIONS(627), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(702), - [sym_super] = ACTIONS(702), - [sym_crate] = ACTIONS(702), - [sym_metavariable] = ACTIONS(714), - [sym__raw_string_literal_start] = ACTIONS(631), - [sym_float_literal] = ACTIONS(623), + [aux_sym_token_tree_repeat1] = STATE(117), + [aux_sym__non_special_token_repeat1] = STATE(141), + [sym_identifier] = ACTIONS(713), + [anon_sym_SEMI] = ACTIONS(576), + [anon_sym_LPAREN] = ACTIONS(715), + [anon_sym_LBRACK] = ACTIONS(719), + [anon_sym_LBRACE] = ACTIONS(721), + [anon_sym_RBRACE] = ACTIONS(717), + [anon_sym_EQ_GT] = ACTIONS(576), + [anon_sym_COLON] = ACTIONS(586), + [anon_sym_DOLLAR] = ACTIONS(723), + [anon_sym_PLUS] = ACTIONS(586), + [anon_sym_STAR] = ACTIONS(586), + [anon_sym_QMARK] = ACTIONS(576), + [anon_sym_u8] = ACTIONS(713), + [anon_sym_i8] = ACTIONS(713), + [anon_sym_u16] = ACTIONS(713), + [anon_sym_i16] = ACTIONS(713), + [anon_sym_u32] = ACTIONS(713), + [anon_sym_i32] = ACTIONS(713), + [anon_sym_u64] = ACTIONS(713), + [anon_sym_i64] = ACTIONS(713), + [anon_sym_u128] = ACTIONS(713), + [anon_sym_i128] = ACTIONS(713), + [anon_sym_isize] = ACTIONS(713), + [anon_sym_usize] = ACTIONS(713), + [anon_sym_f32] = ACTIONS(713), + [anon_sym_f64] = ACTIONS(713), + [anon_sym_bool] = ACTIONS(713), + [anon_sym_str] = ACTIONS(713), + [anon_sym_char] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(586), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_PERCENT] = ACTIONS(586), + [anon_sym_CARET] = ACTIONS(586), + [anon_sym_BANG] = ACTIONS(586), + [anon_sym_AMP] = ACTIONS(586), + [anon_sym_PIPE] = ACTIONS(586), + [anon_sym_AMP_AMP] = ACTIONS(576), + [anon_sym_PIPE_PIPE] = ACTIONS(576), + [anon_sym_LT_LT] = ACTIONS(586), + [anon_sym_GT_GT] = ACTIONS(586), + [anon_sym_PLUS_EQ] = ACTIONS(576), + [anon_sym_DASH_EQ] = ACTIONS(576), + [anon_sym_STAR_EQ] = ACTIONS(576), + [anon_sym_SLASH_EQ] = ACTIONS(576), + [anon_sym_PERCENT_EQ] = ACTIONS(576), + [anon_sym_CARET_EQ] = ACTIONS(576), + [anon_sym_AMP_EQ] = ACTIONS(576), + [anon_sym_PIPE_EQ] = ACTIONS(576), + [anon_sym_LT_LT_EQ] = ACTIONS(576), + [anon_sym_GT_GT_EQ] = ACTIONS(576), + [anon_sym_EQ] = ACTIONS(586), + [anon_sym_EQ_EQ] = ACTIONS(576), + [anon_sym_BANG_EQ] = ACTIONS(576), + [anon_sym_GT] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(586), + [anon_sym_GT_EQ] = ACTIONS(576), + [anon_sym_LT_EQ] = ACTIONS(576), + [anon_sym_AT] = ACTIONS(576), + [anon_sym__] = ACTIONS(586), + [anon_sym_DOT] = ACTIONS(586), + [anon_sym_DOT_DOT] = ACTIONS(586), + [anon_sym_DOT_DOT_DOT] = ACTIONS(576), + [anon_sym_DOT_DOT_EQ] = ACTIONS(576), + [anon_sym_COMMA] = ACTIONS(576), + [anon_sym_COLON_COLON] = ACTIONS(576), + [anon_sym_DASH_GT] = ACTIONS(576), + [anon_sym_POUND] = ACTIONS(576), + [anon_sym_SQUOTE] = ACTIONS(713), + [anon_sym_as] = ACTIONS(713), + [anon_sym_async] = ACTIONS(713), + [anon_sym_await] = ACTIONS(713), + [anon_sym_break] = ACTIONS(713), + [anon_sym_const] = ACTIONS(713), + [anon_sym_continue] = ACTIONS(713), + [anon_sym_default] = ACTIONS(713), + [anon_sym_enum] = ACTIONS(713), + [anon_sym_fn] = ACTIONS(713), + [anon_sym_for] = ACTIONS(713), + [anon_sym_gen] = ACTIONS(713), + [anon_sym_if] = ACTIONS(713), + [anon_sym_impl] = ACTIONS(713), + [anon_sym_let] = ACTIONS(713), + [anon_sym_loop] = ACTIONS(713), + [anon_sym_match] = ACTIONS(713), + [anon_sym_mod] = ACTIONS(713), + [anon_sym_pub] = ACTIONS(713), + [anon_sym_return] = ACTIONS(713), + [anon_sym_static] = ACTIONS(713), + [anon_sym_struct] = ACTIONS(713), + [anon_sym_trait] = ACTIONS(713), + [anon_sym_type] = ACTIONS(713), + [anon_sym_union] = ACTIONS(713), + [anon_sym_unsafe] = ACTIONS(713), + [anon_sym_use] = ACTIONS(713), + [anon_sym_where] = ACTIONS(713), + [anon_sym_while] = ACTIONS(713), + [sym_mutable_specifier] = ACTIONS(713), + [sym_integer_literal] = ACTIONS(590), + [aux_sym_string_literal_token1] = ACTIONS(592), + [sym_char_literal] = ACTIONS(590), + [anon_sym_true] = ACTIONS(594), + [anon_sym_false] = ACTIONS(594), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(713), + [sym_super] = ACTIONS(713), + [sym_crate] = ACTIONS(713), + [sym_metavariable] = ACTIONS(725), + [sym__raw_string_literal_start] = ACTIONS(598), + [sym_float_literal] = ACTIONS(590), }, [STATE(101)] = { - [sym_token_tree] = STATE(187), - [sym_token_repetition] = STATE(187), - [sym__literal] = STATE(187), - [sym_string_literal] = STATE(183), - [sym_raw_string_literal] = STATE(183), - [sym_boolean_literal] = STATE(183), + [sym_token_tree] = STATE(163), + [sym_token_repetition] = STATE(163), + [sym__literal] = STATE(163), + [sym_string_literal] = STATE(184), + [sym_raw_string_literal] = STATE(184), + [sym_boolean_literal] = STATE(184), [sym_line_comment] = STATE(101), [sym_block_comment] = STATE(101), [aux_sym_token_tree_repeat1] = STATE(104), - [aux_sym__non_special_token_repeat1] = STATE(144), - [sym_identifier] = ACTIONS(702), - [anon_sym_SEMI] = ACTIONS(609), - [anon_sym_LPAREN] = ACTIONS(704), - [anon_sym_LBRACK] = ACTIONS(708), - [anon_sym_LBRACE] = ACTIONS(710), - [anon_sym_RBRACE] = ACTIONS(726), - [anon_sym_EQ_GT] = ACTIONS(609), - [anon_sym_COLON] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(712), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_STAR] = ACTIONS(619), - [anon_sym_QMARK] = ACTIONS(609), - [anon_sym_u8] = ACTIONS(702), - [anon_sym_i8] = ACTIONS(702), - [anon_sym_u16] = ACTIONS(702), - [anon_sym_i16] = ACTIONS(702), - [anon_sym_u32] = ACTIONS(702), - [anon_sym_i32] = ACTIONS(702), - [anon_sym_u64] = ACTIONS(702), - [anon_sym_i64] = ACTIONS(702), - [anon_sym_u128] = ACTIONS(702), - [anon_sym_i128] = ACTIONS(702), - [anon_sym_isize] = ACTIONS(702), - [anon_sym_usize] = ACTIONS(702), - [anon_sym_f32] = ACTIONS(702), - [anon_sym_f64] = ACTIONS(702), - [anon_sym_bool] = ACTIONS(702), - [anon_sym_str] = ACTIONS(702), - [anon_sym_char] = ACTIONS(702), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_SLASH] = ACTIONS(619), - [anon_sym_PERCENT] = ACTIONS(619), - [anon_sym_CARET] = ACTIONS(619), - [anon_sym_BANG] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(619), - [anon_sym_AMP_AMP] = ACTIONS(609), - [anon_sym_PIPE_PIPE] = ACTIONS(609), - [anon_sym_LT_LT] = ACTIONS(619), - [anon_sym_GT_GT] = ACTIONS(619), - [anon_sym_PLUS_EQ] = ACTIONS(609), - [anon_sym_DASH_EQ] = ACTIONS(609), - [anon_sym_STAR_EQ] = ACTIONS(609), - [anon_sym_SLASH_EQ] = ACTIONS(609), - [anon_sym_PERCENT_EQ] = ACTIONS(609), - [anon_sym_CARET_EQ] = ACTIONS(609), - [anon_sym_AMP_EQ] = ACTIONS(609), - [anon_sym_PIPE_EQ] = ACTIONS(609), - [anon_sym_LT_LT_EQ] = ACTIONS(609), - [anon_sym_GT_GT_EQ] = ACTIONS(609), - [anon_sym_EQ] = ACTIONS(619), - [anon_sym_EQ_EQ] = ACTIONS(609), - [anon_sym_BANG_EQ] = ACTIONS(609), - [anon_sym_GT] = ACTIONS(619), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_GT_EQ] = ACTIONS(609), - [anon_sym_LT_EQ] = ACTIONS(609), - [anon_sym_AT] = ACTIONS(609), - [anon_sym__] = ACTIONS(619), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_DOT_DOT] = ACTIONS(619), - [anon_sym_DOT_DOT_DOT] = ACTIONS(609), - [anon_sym_DOT_DOT_EQ] = ACTIONS(609), - [anon_sym_COMMA] = ACTIONS(609), - [anon_sym_COLON_COLON] = ACTIONS(609), - [anon_sym_DASH_GT] = ACTIONS(609), - [anon_sym_POUND] = ACTIONS(609), - [anon_sym_SQUOTE] = ACTIONS(702), - [anon_sym_as] = ACTIONS(702), - [anon_sym_async] = ACTIONS(702), - [anon_sym_await] = ACTIONS(702), - [anon_sym_break] = ACTIONS(702), - [anon_sym_const] = ACTIONS(702), - [anon_sym_continue] = ACTIONS(702), - [anon_sym_default] = ACTIONS(702), - [anon_sym_enum] = ACTIONS(702), - [anon_sym_fn] = ACTIONS(702), - [anon_sym_for] = ACTIONS(702), - [anon_sym_gen] = ACTIONS(702), - [anon_sym_if] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(702), - [anon_sym_let] = ACTIONS(702), - [anon_sym_loop] = ACTIONS(702), - [anon_sym_match] = ACTIONS(702), - [anon_sym_mod] = ACTIONS(702), - [anon_sym_pub] = ACTIONS(702), - [anon_sym_return] = ACTIONS(702), - [anon_sym_static] = ACTIONS(702), - [anon_sym_struct] = ACTIONS(702), - [anon_sym_trait] = ACTIONS(702), - [anon_sym_type] = ACTIONS(702), - [anon_sym_union] = ACTIONS(702), - [anon_sym_unsafe] = ACTIONS(702), - [anon_sym_use] = ACTIONS(702), - [anon_sym_where] = ACTIONS(702), - [anon_sym_while] = ACTIONS(702), - [sym_mutable_specifier] = ACTIONS(702), - [sym_integer_literal] = ACTIONS(623), - [aux_sym_string_literal_token1] = ACTIONS(625), - [sym_char_literal] = ACTIONS(623), - [anon_sym_true] = ACTIONS(627), - [anon_sym_false] = ACTIONS(627), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(702), - [sym_super] = ACTIONS(702), - [sym_crate] = ACTIONS(702), - [sym_metavariable] = ACTIONS(714), - [sym__raw_string_literal_start] = ACTIONS(631), - [sym_float_literal] = ACTIONS(623), + [aux_sym__non_special_token_repeat1] = STATE(141), + [sym_identifier] = ACTIONS(713), + [anon_sym_SEMI] = ACTIONS(576), + [anon_sym_LPAREN] = ACTIONS(715), + [anon_sym_RPAREN] = ACTIONS(729), + [anon_sym_LBRACK] = ACTIONS(719), + [anon_sym_LBRACE] = ACTIONS(721), + [anon_sym_EQ_GT] = ACTIONS(576), + [anon_sym_COLON] = ACTIONS(586), + [anon_sym_DOLLAR] = ACTIONS(723), + [anon_sym_PLUS] = ACTIONS(586), + [anon_sym_STAR] = ACTIONS(586), + [anon_sym_QMARK] = ACTIONS(576), + [anon_sym_u8] = ACTIONS(713), + [anon_sym_i8] = ACTIONS(713), + [anon_sym_u16] = ACTIONS(713), + [anon_sym_i16] = ACTIONS(713), + [anon_sym_u32] = ACTIONS(713), + [anon_sym_i32] = ACTIONS(713), + [anon_sym_u64] = ACTIONS(713), + [anon_sym_i64] = ACTIONS(713), + [anon_sym_u128] = ACTIONS(713), + [anon_sym_i128] = ACTIONS(713), + [anon_sym_isize] = ACTIONS(713), + [anon_sym_usize] = ACTIONS(713), + [anon_sym_f32] = ACTIONS(713), + [anon_sym_f64] = ACTIONS(713), + [anon_sym_bool] = ACTIONS(713), + [anon_sym_str] = ACTIONS(713), + [anon_sym_char] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(586), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_PERCENT] = ACTIONS(586), + [anon_sym_CARET] = ACTIONS(586), + [anon_sym_BANG] = ACTIONS(586), + [anon_sym_AMP] = ACTIONS(586), + [anon_sym_PIPE] = ACTIONS(586), + [anon_sym_AMP_AMP] = ACTIONS(576), + [anon_sym_PIPE_PIPE] = ACTIONS(576), + [anon_sym_LT_LT] = ACTIONS(586), + [anon_sym_GT_GT] = ACTIONS(586), + [anon_sym_PLUS_EQ] = ACTIONS(576), + [anon_sym_DASH_EQ] = ACTIONS(576), + [anon_sym_STAR_EQ] = ACTIONS(576), + [anon_sym_SLASH_EQ] = ACTIONS(576), + [anon_sym_PERCENT_EQ] = ACTIONS(576), + [anon_sym_CARET_EQ] = ACTIONS(576), + [anon_sym_AMP_EQ] = ACTIONS(576), + [anon_sym_PIPE_EQ] = ACTIONS(576), + [anon_sym_LT_LT_EQ] = ACTIONS(576), + [anon_sym_GT_GT_EQ] = ACTIONS(576), + [anon_sym_EQ] = ACTIONS(586), + [anon_sym_EQ_EQ] = ACTIONS(576), + [anon_sym_BANG_EQ] = ACTIONS(576), + [anon_sym_GT] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(586), + [anon_sym_GT_EQ] = ACTIONS(576), + [anon_sym_LT_EQ] = ACTIONS(576), + [anon_sym_AT] = ACTIONS(576), + [anon_sym__] = ACTIONS(586), + [anon_sym_DOT] = ACTIONS(586), + [anon_sym_DOT_DOT] = ACTIONS(586), + [anon_sym_DOT_DOT_DOT] = ACTIONS(576), + [anon_sym_DOT_DOT_EQ] = ACTIONS(576), + [anon_sym_COMMA] = ACTIONS(576), + [anon_sym_COLON_COLON] = ACTIONS(576), + [anon_sym_DASH_GT] = ACTIONS(576), + [anon_sym_POUND] = ACTIONS(576), + [anon_sym_SQUOTE] = ACTIONS(713), + [anon_sym_as] = ACTIONS(713), + [anon_sym_async] = ACTIONS(713), + [anon_sym_await] = ACTIONS(713), + [anon_sym_break] = ACTIONS(713), + [anon_sym_const] = ACTIONS(713), + [anon_sym_continue] = ACTIONS(713), + [anon_sym_default] = ACTIONS(713), + [anon_sym_enum] = ACTIONS(713), + [anon_sym_fn] = ACTIONS(713), + [anon_sym_for] = ACTIONS(713), + [anon_sym_gen] = ACTIONS(713), + [anon_sym_if] = ACTIONS(713), + [anon_sym_impl] = ACTIONS(713), + [anon_sym_let] = ACTIONS(713), + [anon_sym_loop] = ACTIONS(713), + [anon_sym_match] = ACTIONS(713), + [anon_sym_mod] = ACTIONS(713), + [anon_sym_pub] = ACTIONS(713), + [anon_sym_return] = ACTIONS(713), + [anon_sym_static] = ACTIONS(713), + [anon_sym_struct] = ACTIONS(713), + [anon_sym_trait] = ACTIONS(713), + [anon_sym_type] = ACTIONS(713), + [anon_sym_union] = ACTIONS(713), + [anon_sym_unsafe] = ACTIONS(713), + [anon_sym_use] = ACTIONS(713), + [anon_sym_where] = ACTIONS(713), + [anon_sym_while] = ACTIONS(713), + [sym_mutable_specifier] = ACTIONS(713), + [sym_integer_literal] = ACTIONS(590), + [aux_sym_string_literal_token1] = ACTIONS(592), + [sym_char_literal] = ACTIONS(590), + [anon_sym_true] = ACTIONS(594), + [anon_sym_false] = ACTIONS(594), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(713), + [sym_super] = ACTIONS(713), + [sym_crate] = ACTIONS(713), + [sym_metavariable] = ACTIONS(725), + [sym__raw_string_literal_start] = ACTIONS(598), + [sym_float_literal] = ACTIONS(590), }, [STATE(102)] = { - [sym_token_tree] = STATE(187), - [sym_token_repetition] = STATE(187), - [sym__literal] = STATE(187), - [sym_string_literal] = STATE(183), - [sym_raw_string_literal] = STATE(183), - [sym_boolean_literal] = STATE(183), + [sym_token_tree] = STATE(163), + [sym_token_repetition] = STATE(163), + [sym__literal] = STATE(163), + [sym_string_literal] = STATE(184), + [sym_raw_string_literal] = STATE(184), + [sym_boolean_literal] = STATE(184), [sym_line_comment] = STATE(102), [sym_block_comment] = STATE(102), - [aux_sym_token_tree_repeat1] = STATE(68), - [aux_sym__non_special_token_repeat1] = STATE(144), - [sym_identifier] = ACTIONS(702), - [anon_sym_SEMI] = ACTIONS(609), - [anon_sym_LPAREN] = ACTIONS(704), - [anon_sym_RPAREN] = ACTIONS(728), - [anon_sym_LBRACK] = ACTIONS(708), - [anon_sym_LBRACE] = ACTIONS(710), - [anon_sym_EQ_GT] = ACTIONS(609), - [anon_sym_COLON] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(712), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_STAR] = ACTIONS(619), - [anon_sym_QMARK] = ACTIONS(609), - [anon_sym_u8] = ACTIONS(702), - [anon_sym_i8] = ACTIONS(702), - [anon_sym_u16] = ACTIONS(702), - [anon_sym_i16] = ACTIONS(702), - [anon_sym_u32] = ACTIONS(702), - [anon_sym_i32] = ACTIONS(702), - [anon_sym_u64] = ACTIONS(702), - [anon_sym_i64] = ACTIONS(702), - [anon_sym_u128] = ACTIONS(702), - [anon_sym_i128] = ACTIONS(702), - [anon_sym_isize] = ACTIONS(702), - [anon_sym_usize] = ACTIONS(702), - [anon_sym_f32] = ACTIONS(702), - [anon_sym_f64] = ACTIONS(702), - [anon_sym_bool] = ACTIONS(702), - [anon_sym_str] = ACTIONS(702), - [anon_sym_char] = ACTIONS(702), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_SLASH] = ACTIONS(619), - [anon_sym_PERCENT] = ACTIONS(619), - [anon_sym_CARET] = ACTIONS(619), - [anon_sym_BANG] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(619), - [anon_sym_AMP_AMP] = ACTIONS(609), - [anon_sym_PIPE_PIPE] = ACTIONS(609), - [anon_sym_LT_LT] = ACTIONS(619), - [anon_sym_GT_GT] = ACTIONS(619), - [anon_sym_PLUS_EQ] = ACTIONS(609), - [anon_sym_DASH_EQ] = ACTIONS(609), - [anon_sym_STAR_EQ] = ACTIONS(609), - [anon_sym_SLASH_EQ] = ACTIONS(609), - [anon_sym_PERCENT_EQ] = ACTIONS(609), - [anon_sym_CARET_EQ] = ACTIONS(609), - [anon_sym_AMP_EQ] = ACTIONS(609), - [anon_sym_PIPE_EQ] = ACTIONS(609), - [anon_sym_LT_LT_EQ] = ACTIONS(609), - [anon_sym_GT_GT_EQ] = ACTIONS(609), - [anon_sym_EQ] = ACTIONS(619), - [anon_sym_EQ_EQ] = ACTIONS(609), - [anon_sym_BANG_EQ] = ACTIONS(609), - [anon_sym_GT] = ACTIONS(619), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_GT_EQ] = ACTIONS(609), - [anon_sym_LT_EQ] = ACTIONS(609), - [anon_sym_AT] = ACTIONS(609), - [anon_sym__] = ACTIONS(619), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_DOT_DOT] = ACTIONS(619), - [anon_sym_DOT_DOT_DOT] = ACTIONS(609), - [anon_sym_DOT_DOT_EQ] = ACTIONS(609), - [anon_sym_COMMA] = ACTIONS(609), - [anon_sym_COLON_COLON] = ACTIONS(609), - [anon_sym_DASH_GT] = ACTIONS(609), - [anon_sym_POUND] = ACTIONS(609), - [anon_sym_SQUOTE] = ACTIONS(702), - [anon_sym_as] = ACTIONS(702), - [anon_sym_async] = ACTIONS(702), - [anon_sym_await] = ACTIONS(702), - [anon_sym_break] = ACTIONS(702), - [anon_sym_const] = ACTIONS(702), - [anon_sym_continue] = ACTIONS(702), - [anon_sym_default] = ACTIONS(702), - [anon_sym_enum] = ACTIONS(702), - [anon_sym_fn] = ACTIONS(702), - [anon_sym_for] = ACTIONS(702), - [anon_sym_gen] = ACTIONS(702), - [anon_sym_if] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(702), - [anon_sym_let] = ACTIONS(702), - [anon_sym_loop] = ACTIONS(702), - [anon_sym_match] = ACTIONS(702), - [anon_sym_mod] = ACTIONS(702), - [anon_sym_pub] = ACTIONS(702), - [anon_sym_return] = ACTIONS(702), - [anon_sym_static] = ACTIONS(702), - [anon_sym_struct] = ACTIONS(702), - [anon_sym_trait] = ACTIONS(702), - [anon_sym_type] = ACTIONS(702), - [anon_sym_union] = ACTIONS(702), - [anon_sym_unsafe] = ACTIONS(702), - [anon_sym_use] = ACTIONS(702), - [anon_sym_where] = ACTIONS(702), - [anon_sym_while] = ACTIONS(702), - [sym_mutable_specifier] = ACTIONS(702), - [sym_integer_literal] = ACTIONS(623), - [aux_sym_string_literal_token1] = ACTIONS(625), - [sym_char_literal] = ACTIONS(623), - [anon_sym_true] = ACTIONS(627), - [anon_sym_false] = ACTIONS(627), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(702), - [sym_super] = ACTIONS(702), - [sym_crate] = ACTIONS(702), - [sym_metavariable] = ACTIONS(714), - [sym__raw_string_literal_start] = ACTIONS(631), - [sym_float_literal] = ACTIONS(623), + [aux_sym_token_tree_repeat1] = STATE(105), + [aux_sym__non_special_token_repeat1] = STATE(141), + [sym_identifier] = ACTIONS(713), + [anon_sym_SEMI] = ACTIONS(576), + [anon_sym_LPAREN] = ACTIONS(715), + [anon_sym_LBRACK] = ACTIONS(719), + [anon_sym_RBRACK] = ACTIONS(729), + [anon_sym_LBRACE] = ACTIONS(721), + [anon_sym_EQ_GT] = ACTIONS(576), + [anon_sym_COLON] = ACTIONS(586), + [anon_sym_DOLLAR] = ACTIONS(723), + [anon_sym_PLUS] = ACTIONS(586), + [anon_sym_STAR] = ACTIONS(586), + [anon_sym_QMARK] = ACTIONS(576), + [anon_sym_u8] = ACTIONS(713), + [anon_sym_i8] = ACTIONS(713), + [anon_sym_u16] = ACTIONS(713), + [anon_sym_i16] = ACTIONS(713), + [anon_sym_u32] = ACTIONS(713), + [anon_sym_i32] = ACTIONS(713), + [anon_sym_u64] = ACTIONS(713), + [anon_sym_i64] = ACTIONS(713), + [anon_sym_u128] = ACTIONS(713), + [anon_sym_i128] = ACTIONS(713), + [anon_sym_isize] = ACTIONS(713), + [anon_sym_usize] = ACTIONS(713), + [anon_sym_f32] = ACTIONS(713), + [anon_sym_f64] = ACTIONS(713), + [anon_sym_bool] = ACTIONS(713), + [anon_sym_str] = ACTIONS(713), + [anon_sym_char] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(586), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_PERCENT] = ACTIONS(586), + [anon_sym_CARET] = ACTIONS(586), + [anon_sym_BANG] = ACTIONS(586), + [anon_sym_AMP] = ACTIONS(586), + [anon_sym_PIPE] = ACTIONS(586), + [anon_sym_AMP_AMP] = ACTIONS(576), + [anon_sym_PIPE_PIPE] = ACTIONS(576), + [anon_sym_LT_LT] = ACTIONS(586), + [anon_sym_GT_GT] = ACTIONS(586), + [anon_sym_PLUS_EQ] = ACTIONS(576), + [anon_sym_DASH_EQ] = ACTIONS(576), + [anon_sym_STAR_EQ] = ACTIONS(576), + [anon_sym_SLASH_EQ] = ACTIONS(576), + [anon_sym_PERCENT_EQ] = ACTIONS(576), + [anon_sym_CARET_EQ] = ACTIONS(576), + [anon_sym_AMP_EQ] = ACTIONS(576), + [anon_sym_PIPE_EQ] = ACTIONS(576), + [anon_sym_LT_LT_EQ] = ACTIONS(576), + [anon_sym_GT_GT_EQ] = ACTIONS(576), + [anon_sym_EQ] = ACTIONS(586), + [anon_sym_EQ_EQ] = ACTIONS(576), + [anon_sym_BANG_EQ] = ACTIONS(576), + [anon_sym_GT] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(586), + [anon_sym_GT_EQ] = ACTIONS(576), + [anon_sym_LT_EQ] = ACTIONS(576), + [anon_sym_AT] = ACTIONS(576), + [anon_sym__] = ACTIONS(586), + [anon_sym_DOT] = ACTIONS(586), + [anon_sym_DOT_DOT] = ACTIONS(586), + [anon_sym_DOT_DOT_DOT] = ACTIONS(576), + [anon_sym_DOT_DOT_EQ] = ACTIONS(576), + [anon_sym_COMMA] = ACTIONS(576), + [anon_sym_COLON_COLON] = ACTIONS(576), + [anon_sym_DASH_GT] = ACTIONS(576), + [anon_sym_POUND] = ACTIONS(576), + [anon_sym_SQUOTE] = ACTIONS(713), + [anon_sym_as] = ACTIONS(713), + [anon_sym_async] = ACTIONS(713), + [anon_sym_await] = ACTIONS(713), + [anon_sym_break] = ACTIONS(713), + [anon_sym_const] = ACTIONS(713), + [anon_sym_continue] = ACTIONS(713), + [anon_sym_default] = ACTIONS(713), + [anon_sym_enum] = ACTIONS(713), + [anon_sym_fn] = ACTIONS(713), + [anon_sym_for] = ACTIONS(713), + [anon_sym_gen] = ACTIONS(713), + [anon_sym_if] = ACTIONS(713), + [anon_sym_impl] = ACTIONS(713), + [anon_sym_let] = ACTIONS(713), + [anon_sym_loop] = ACTIONS(713), + [anon_sym_match] = ACTIONS(713), + [anon_sym_mod] = ACTIONS(713), + [anon_sym_pub] = ACTIONS(713), + [anon_sym_return] = ACTIONS(713), + [anon_sym_static] = ACTIONS(713), + [anon_sym_struct] = ACTIONS(713), + [anon_sym_trait] = ACTIONS(713), + [anon_sym_type] = ACTIONS(713), + [anon_sym_union] = ACTIONS(713), + [anon_sym_unsafe] = ACTIONS(713), + [anon_sym_use] = ACTIONS(713), + [anon_sym_where] = ACTIONS(713), + [anon_sym_while] = ACTIONS(713), + [sym_mutable_specifier] = ACTIONS(713), + [sym_integer_literal] = ACTIONS(590), + [aux_sym_string_literal_token1] = ACTIONS(592), + [sym_char_literal] = ACTIONS(590), + [anon_sym_true] = ACTIONS(594), + [anon_sym_false] = ACTIONS(594), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(713), + [sym_super] = ACTIONS(713), + [sym_crate] = ACTIONS(713), + [sym_metavariable] = ACTIONS(725), + [sym__raw_string_literal_start] = ACTIONS(598), + [sym_float_literal] = ACTIONS(590), }, [STATE(103)] = { - [sym_token_tree] = STATE(187), - [sym_token_repetition] = STATE(187), - [sym__literal] = STATE(187), - [sym_string_literal] = STATE(183), - [sym_raw_string_literal] = STATE(183), - [sym_boolean_literal] = STATE(183), + [sym_token_tree] = STATE(163), + [sym_token_repetition] = STATE(163), + [sym__literal] = STATE(163), + [sym_string_literal] = STATE(184), + [sym_raw_string_literal] = STATE(184), + [sym_boolean_literal] = STATE(184), [sym_line_comment] = STATE(103), [sym_block_comment] = STATE(103), - [aux_sym_token_tree_repeat1] = STATE(68), - [aux_sym__non_special_token_repeat1] = STATE(144), - [sym_identifier] = ACTIONS(702), - [anon_sym_SEMI] = ACTIONS(609), - [anon_sym_LPAREN] = ACTIONS(704), - [anon_sym_LBRACK] = ACTIONS(708), - [anon_sym_RBRACK] = ACTIONS(728), - [anon_sym_LBRACE] = ACTIONS(710), - [anon_sym_EQ_GT] = ACTIONS(609), - [anon_sym_COLON] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(712), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_STAR] = ACTIONS(619), - [anon_sym_QMARK] = ACTIONS(609), - [anon_sym_u8] = ACTIONS(702), - [anon_sym_i8] = ACTIONS(702), - [anon_sym_u16] = ACTIONS(702), - [anon_sym_i16] = ACTIONS(702), - [anon_sym_u32] = ACTIONS(702), - [anon_sym_i32] = ACTIONS(702), - [anon_sym_u64] = ACTIONS(702), - [anon_sym_i64] = ACTIONS(702), - [anon_sym_u128] = ACTIONS(702), - [anon_sym_i128] = ACTIONS(702), - [anon_sym_isize] = ACTIONS(702), - [anon_sym_usize] = ACTIONS(702), - [anon_sym_f32] = ACTIONS(702), - [anon_sym_f64] = ACTIONS(702), - [anon_sym_bool] = ACTIONS(702), - [anon_sym_str] = ACTIONS(702), - [anon_sym_char] = ACTIONS(702), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_SLASH] = ACTIONS(619), - [anon_sym_PERCENT] = ACTIONS(619), - [anon_sym_CARET] = ACTIONS(619), - [anon_sym_BANG] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(619), - [anon_sym_AMP_AMP] = ACTIONS(609), - [anon_sym_PIPE_PIPE] = ACTIONS(609), - [anon_sym_LT_LT] = ACTIONS(619), - [anon_sym_GT_GT] = ACTIONS(619), - [anon_sym_PLUS_EQ] = ACTIONS(609), - [anon_sym_DASH_EQ] = ACTIONS(609), - [anon_sym_STAR_EQ] = ACTIONS(609), - [anon_sym_SLASH_EQ] = ACTIONS(609), - [anon_sym_PERCENT_EQ] = ACTIONS(609), - [anon_sym_CARET_EQ] = ACTIONS(609), - [anon_sym_AMP_EQ] = ACTIONS(609), - [anon_sym_PIPE_EQ] = ACTIONS(609), - [anon_sym_LT_LT_EQ] = ACTIONS(609), - [anon_sym_GT_GT_EQ] = ACTIONS(609), - [anon_sym_EQ] = ACTIONS(619), - [anon_sym_EQ_EQ] = ACTIONS(609), - [anon_sym_BANG_EQ] = ACTIONS(609), - [anon_sym_GT] = ACTIONS(619), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_GT_EQ] = ACTIONS(609), - [anon_sym_LT_EQ] = ACTIONS(609), - [anon_sym_AT] = ACTIONS(609), - [anon_sym__] = ACTIONS(619), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_DOT_DOT] = ACTIONS(619), - [anon_sym_DOT_DOT_DOT] = ACTIONS(609), - [anon_sym_DOT_DOT_EQ] = ACTIONS(609), - [anon_sym_COMMA] = ACTIONS(609), - [anon_sym_COLON_COLON] = ACTIONS(609), - [anon_sym_DASH_GT] = ACTIONS(609), - [anon_sym_POUND] = ACTIONS(609), - [anon_sym_SQUOTE] = ACTIONS(702), - [anon_sym_as] = ACTIONS(702), - [anon_sym_async] = ACTIONS(702), - [anon_sym_await] = ACTIONS(702), - [anon_sym_break] = ACTIONS(702), - [anon_sym_const] = ACTIONS(702), - [anon_sym_continue] = ACTIONS(702), - [anon_sym_default] = ACTIONS(702), - [anon_sym_enum] = ACTIONS(702), - [anon_sym_fn] = ACTIONS(702), - [anon_sym_for] = ACTIONS(702), - [anon_sym_gen] = ACTIONS(702), - [anon_sym_if] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(702), - [anon_sym_let] = ACTIONS(702), - [anon_sym_loop] = ACTIONS(702), - [anon_sym_match] = ACTIONS(702), - [anon_sym_mod] = ACTIONS(702), - [anon_sym_pub] = ACTIONS(702), - [anon_sym_return] = ACTIONS(702), - [anon_sym_static] = ACTIONS(702), - [anon_sym_struct] = ACTIONS(702), - [anon_sym_trait] = ACTIONS(702), - [anon_sym_type] = ACTIONS(702), - [anon_sym_union] = ACTIONS(702), - [anon_sym_unsafe] = ACTIONS(702), - [anon_sym_use] = ACTIONS(702), - [anon_sym_where] = ACTIONS(702), - [anon_sym_while] = ACTIONS(702), - [sym_mutable_specifier] = ACTIONS(702), - [sym_integer_literal] = ACTIONS(623), - [aux_sym_string_literal_token1] = ACTIONS(625), - [sym_char_literal] = ACTIONS(623), - [anon_sym_true] = ACTIONS(627), - [anon_sym_false] = ACTIONS(627), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(702), - [sym_super] = ACTIONS(702), - [sym_crate] = ACTIONS(702), - [sym_metavariable] = ACTIONS(714), - [sym__raw_string_literal_start] = ACTIONS(631), - [sym_float_literal] = ACTIONS(623), + [aux_sym_token_tree_repeat1] = STATE(106), + [aux_sym__non_special_token_repeat1] = STATE(141), + [sym_identifier] = ACTIONS(713), + [anon_sym_SEMI] = ACTIONS(576), + [anon_sym_LPAREN] = ACTIONS(715), + [anon_sym_LBRACK] = ACTIONS(719), + [anon_sym_LBRACE] = ACTIONS(721), + [anon_sym_RBRACE] = ACTIONS(729), + [anon_sym_EQ_GT] = ACTIONS(576), + [anon_sym_COLON] = ACTIONS(586), + [anon_sym_DOLLAR] = ACTIONS(723), + [anon_sym_PLUS] = ACTIONS(586), + [anon_sym_STAR] = ACTIONS(586), + [anon_sym_QMARK] = ACTIONS(576), + [anon_sym_u8] = ACTIONS(713), + [anon_sym_i8] = ACTIONS(713), + [anon_sym_u16] = ACTIONS(713), + [anon_sym_i16] = ACTIONS(713), + [anon_sym_u32] = ACTIONS(713), + [anon_sym_i32] = ACTIONS(713), + [anon_sym_u64] = ACTIONS(713), + [anon_sym_i64] = ACTIONS(713), + [anon_sym_u128] = ACTIONS(713), + [anon_sym_i128] = ACTIONS(713), + [anon_sym_isize] = ACTIONS(713), + [anon_sym_usize] = ACTIONS(713), + [anon_sym_f32] = ACTIONS(713), + [anon_sym_f64] = ACTIONS(713), + [anon_sym_bool] = ACTIONS(713), + [anon_sym_str] = ACTIONS(713), + [anon_sym_char] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(586), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_PERCENT] = ACTIONS(586), + [anon_sym_CARET] = ACTIONS(586), + [anon_sym_BANG] = ACTIONS(586), + [anon_sym_AMP] = ACTIONS(586), + [anon_sym_PIPE] = ACTIONS(586), + [anon_sym_AMP_AMP] = ACTIONS(576), + [anon_sym_PIPE_PIPE] = ACTIONS(576), + [anon_sym_LT_LT] = ACTIONS(586), + [anon_sym_GT_GT] = ACTIONS(586), + [anon_sym_PLUS_EQ] = ACTIONS(576), + [anon_sym_DASH_EQ] = ACTIONS(576), + [anon_sym_STAR_EQ] = ACTIONS(576), + [anon_sym_SLASH_EQ] = ACTIONS(576), + [anon_sym_PERCENT_EQ] = ACTIONS(576), + [anon_sym_CARET_EQ] = ACTIONS(576), + [anon_sym_AMP_EQ] = ACTIONS(576), + [anon_sym_PIPE_EQ] = ACTIONS(576), + [anon_sym_LT_LT_EQ] = ACTIONS(576), + [anon_sym_GT_GT_EQ] = ACTIONS(576), + [anon_sym_EQ] = ACTIONS(586), + [anon_sym_EQ_EQ] = ACTIONS(576), + [anon_sym_BANG_EQ] = ACTIONS(576), + [anon_sym_GT] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(586), + [anon_sym_GT_EQ] = ACTIONS(576), + [anon_sym_LT_EQ] = ACTIONS(576), + [anon_sym_AT] = ACTIONS(576), + [anon_sym__] = ACTIONS(586), + [anon_sym_DOT] = ACTIONS(586), + [anon_sym_DOT_DOT] = ACTIONS(586), + [anon_sym_DOT_DOT_DOT] = ACTIONS(576), + [anon_sym_DOT_DOT_EQ] = ACTIONS(576), + [anon_sym_COMMA] = ACTIONS(576), + [anon_sym_COLON_COLON] = ACTIONS(576), + [anon_sym_DASH_GT] = ACTIONS(576), + [anon_sym_POUND] = ACTIONS(576), + [anon_sym_SQUOTE] = ACTIONS(713), + [anon_sym_as] = ACTIONS(713), + [anon_sym_async] = ACTIONS(713), + [anon_sym_await] = ACTIONS(713), + [anon_sym_break] = ACTIONS(713), + [anon_sym_const] = ACTIONS(713), + [anon_sym_continue] = ACTIONS(713), + [anon_sym_default] = ACTIONS(713), + [anon_sym_enum] = ACTIONS(713), + [anon_sym_fn] = ACTIONS(713), + [anon_sym_for] = ACTIONS(713), + [anon_sym_gen] = ACTIONS(713), + [anon_sym_if] = ACTIONS(713), + [anon_sym_impl] = ACTIONS(713), + [anon_sym_let] = ACTIONS(713), + [anon_sym_loop] = ACTIONS(713), + [anon_sym_match] = ACTIONS(713), + [anon_sym_mod] = ACTIONS(713), + [anon_sym_pub] = ACTIONS(713), + [anon_sym_return] = ACTIONS(713), + [anon_sym_static] = ACTIONS(713), + [anon_sym_struct] = ACTIONS(713), + [anon_sym_trait] = ACTIONS(713), + [anon_sym_type] = ACTIONS(713), + [anon_sym_union] = ACTIONS(713), + [anon_sym_unsafe] = ACTIONS(713), + [anon_sym_use] = ACTIONS(713), + [anon_sym_where] = ACTIONS(713), + [anon_sym_while] = ACTIONS(713), + [sym_mutable_specifier] = ACTIONS(713), + [sym_integer_literal] = ACTIONS(590), + [aux_sym_string_literal_token1] = ACTIONS(592), + [sym_char_literal] = ACTIONS(590), + [anon_sym_true] = ACTIONS(594), + [anon_sym_false] = ACTIONS(594), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(713), + [sym_super] = ACTIONS(713), + [sym_crate] = ACTIONS(713), + [sym_metavariable] = ACTIONS(725), + [sym__raw_string_literal_start] = ACTIONS(598), + [sym_float_literal] = ACTIONS(590), }, [STATE(104)] = { - [sym_token_tree] = STATE(187), - [sym_token_repetition] = STATE(187), - [sym__literal] = STATE(187), - [sym_string_literal] = STATE(183), - [sym_raw_string_literal] = STATE(183), - [sym_boolean_literal] = STATE(183), + [sym_token_tree] = STATE(163), + [sym_token_repetition] = STATE(163), + [sym__literal] = STATE(163), + [sym_string_literal] = STATE(184), + [sym_raw_string_literal] = STATE(184), + [sym_boolean_literal] = STATE(184), [sym_line_comment] = STATE(104), [sym_block_comment] = STATE(104), - [aux_sym_token_tree_repeat1] = STATE(68), - [aux_sym__non_special_token_repeat1] = STATE(144), - [sym_identifier] = ACTIONS(702), - [anon_sym_SEMI] = ACTIONS(609), - [anon_sym_LPAREN] = ACTIONS(704), - [anon_sym_LBRACK] = ACTIONS(708), - [anon_sym_LBRACE] = ACTIONS(710), - [anon_sym_RBRACE] = ACTIONS(728), - [anon_sym_EQ_GT] = ACTIONS(609), - [anon_sym_COLON] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(712), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_STAR] = ACTIONS(619), - [anon_sym_QMARK] = ACTIONS(609), - [anon_sym_u8] = ACTIONS(702), - [anon_sym_i8] = ACTIONS(702), - [anon_sym_u16] = ACTIONS(702), - [anon_sym_i16] = ACTIONS(702), - [anon_sym_u32] = ACTIONS(702), - [anon_sym_i32] = ACTIONS(702), - [anon_sym_u64] = ACTIONS(702), - [anon_sym_i64] = ACTIONS(702), - [anon_sym_u128] = ACTIONS(702), - [anon_sym_i128] = ACTIONS(702), - [anon_sym_isize] = ACTIONS(702), - [anon_sym_usize] = ACTIONS(702), - [anon_sym_f32] = ACTIONS(702), - [anon_sym_f64] = ACTIONS(702), - [anon_sym_bool] = ACTIONS(702), - [anon_sym_str] = ACTIONS(702), - [anon_sym_char] = ACTIONS(702), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_SLASH] = ACTIONS(619), - [anon_sym_PERCENT] = ACTIONS(619), - [anon_sym_CARET] = ACTIONS(619), - [anon_sym_BANG] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(619), - [anon_sym_AMP_AMP] = ACTIONS(609), - [anon_sym_PIPE_PIPE] = ACTIONS(609), - [anon_sym_LT_LT] = ACTIONS(619), - [anon_sym_GT_GT] = ACTIONS(619), - [anon_sym_PLUS_EQ] = ACTIONS(609), - [anon_sym_DASH_EQ] = ACTIONS(609), - [anon_sym_STAR_EQ] = ACTIONS(609), - [anon_sym_SLASH_EQ] = ACTIONS(609), - [anon_sym_PERCENT_EQ] = ACTIONS(609), - [anon_sym_CARET_EQ] = ACTIONS(609), - [anon_sym_AMP_EQ] = ACTIONS(609), - [anon_sym_PIPE_EQ] = ACTIONS(609), - [anon_sym_LT_LT_EQ] = ACTIONS(609), - [anon_sym_GT_GT_EQ] = ACTIONS(609), - [anon_sym_EQ] = ACTIONS(619), - [anon_sym_EQ_EQ] = ACTIONS(609), - [anon_sym_BANG_EQ] = ACTIONS(609), - [anon_sym_GT] = ACTIONS(619), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_GT_EQ] = ACTIONS(609), - [anon_sym_LT_EQ] = ACTIONS(609), - [anon_sym_AT] = ACTIONS(609), - [anon_sym__] = ACTIONS(619), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_DOT_DOT] = ACTIONS(619), - [anon_sym_DOT_DOT_DOT] = ACTIONS(609), - [anon_sym_DOT_DOT_EQ] = ACTIONS(609), - [anon_sym_COMMA] = ACTIONS(609), - [anon_sym_COLON_COLON] = ACTIONS(609), - [anon_sym_DASH_GT] = ACTIONS(609), - [anon_sym_POUND] = ACTIONS(609), - [anon_sym_SQUOTE] = ACTIONS(702), - [anon_sym_as] = ACTIONS(702), - [anon_sym_async] = ACTIONS(702), - [anon_sym_await] = ACTIONS(702), - [anon_sym_break] = ACTIONS(702), - [anon_sym_const] = ACTIONS(702), - [anon_sym_continue] = ACTIONS(702), - [anon_sym_default] = ACTIONS(702), - [anon_sym_enum] = ACTIONS(702), - [anon_sym_fn] = ACTIONS(702), - [anon_sym_for] = ACTIONS(702), - [anon_sym_gen] = ACTIONS(702), - [anon_sym_if] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(702), - [anon_sym_let] = ACTIONS(702), - [anon_sym_loop] = ACTIONS(702), - [anon_sym_match] = ACTIONS(702), - [anon_sym_mod] = ACTIONS(702), - [anon_sym_pub] = ACTIONS(702), - [anon_sym_return] = ACTIONS(702), - [anon_sym_static] = ACTIONS(702), - [anon_sym_struct] = ACTIONS(702), - [anon_sym_trait] = ACTIONS(702), - [anon_sym_type] = ACTIONS(702), - [anon_sym_union] = ACTIONS(702), - [anon_sym_unsafe] = ACTIONS(702), - [anon_sym_use] = ACTIONS(702), - [anon_sym_where] = ACTIONS(702), - [anon_sym_while] = ACTIONS(702), - [sym_mutable_specifier] = ACTIONS(702), - [sym_integer_literal] = ACTIONS(623), - [aux_sym_string_literal_token1] = ACTIONS(625), - [sym_char_literal] = ACTIONS(623), - [anon_sym_true] = ACTIONS(627), - [anon_sym_false] = ACTIONS(627), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(702), - [sym_super] = ACTIONS(702), - [sym_crate] = ACTIONS(702), - [sym_metavariable] = ACTIONS(714), - [sym__raw_string_literal_start] = ACTIONS(631), - [sym_float_literal] = ACTIONS(623), + [aux_sym_token_tree_repeat1] = STATE(82), + [aux_sym__non_special_token_repeat1] = STATE(141), + [sym_identifier] = ACTIONS(713), + [anon_sym_SEMI] = ACTIONS(576), + [anon_sym_LPAREN] = ACTIONS(715), + [anon_sym_RPAREN] = ACTIONS(731), + [anon_sym_LBRACK] = ACTIONS(719), + [anon_sym_LBRACE] = ACTIONS(721), + [anon_sym_EQ_GT] = ACTIONS(576), + [anon_sym_COLON] = ACTIONS(586), + [anon_sym_DOLLAR] = ACTIONS(723), + [anon_sym_PLUS] = ACTIONS(586), + [anon_sym_STAR] = ACTIONS(586), + [anon_sym_QMARK] = ACTIONS(576), + [anon_sym_u8] = ACTIONS(713), + [anon_sym_i8] = ACTIONS(713), + [anon_sym_u16] = ACTIONS(713), + [anon_sym_i16] = ACTIONS(713), + [anon_sym_u32] = ACTIONS(713), + [anon_sym_i32] = ACTIONS(713), + [anon_sym_u64] = ACTIONS(713), + [anon_sym_i64] = ACTIONS(713), + [anon_sym_u128] = ACTIONS(713), + [anon_sym_i128] = ACTIONS(713), + [anon_sym_isize] = ACTIONS(713), + [anon_sym_usize] = ACTIONS(713), + [anon_sym_f32] = ACTIONS(713), + [anon_sym_f64] = ACTIONS(713), + [anon_sym_bool] = ACTIONS(713), + [anon_sym_str] = ACTIONS(713), + [anon_sym_char] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(586), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_PERCENT] = ACTIONS(586), + [anon_sym_CARET] = ACTIONS(586), + [anon_sym_BANG] = ACTIONS(586), + [anon_sym_AMP] = ACTIONS(586), + [anon_sym_PIPE] = ACTIONS(586), + [anon_sym_AMP_AMP] = ACTIONS(576), + [anon_sym_PIPE_PIPE] = ACTIONS(576), + [anon_sym_LT_LT] = ACTIONS(586), + [anon_sym_GT_GT] = ACTIONS(586), + [anon_sym_PLUS_EQ] = ACTIONS(576), + [anon_sym_DASH_EQ] = ACTIONS(576), + [anon_sym_STAR_EQ] = ACTIONS(576), + [anon_sym_SLASH_EQ] = ACTIONS(576), + [anon_sym_PERCENT_EQ] = ACTIONS(576), + [anon_sym_CARET_EQ] = ACTIONS(576), + [anon_sym_AMP_EQ] = ACTIONS(576), + [anon_sym_PIPE_EQ] = ACTIONS(576), + [anon_sym_LT_LT_EQ] = ACTIONS(576), + [anon_sym_GT_GT_EQ] = ACTIONS(576), + [anon_sym_EQ] = ACTIONS(586), + [anon_sym_EQ_EQ] = ACTIONS(576), + [anon_sym_BANG_EQ] = ACTIONS(576), + [anon_sym_GT] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(586), + [anon_sym_GT_EQ] = ACTIONS(576), + [anon_sym_LT_EQ] = ACTIONS(576), + [anon_sym_AT] = ACTIONS(576), + [anon_sym__] = ACTIONS(586), + [anon_sym_DOT] = ACTIONS(586), + [anon_sym_DOT_DOT] = ACTIONS(586), + [anon_sym_DOT_DOT_DOT] = ACTIONS(576), + [anon_sym_DOT_DOT_EQ] = ACTIONS(576), + [anon_sym_COMMA] = ACTIONS(576), + [anon_sym_COLON_COLON] = ACTIONS(576), + [anon_sym_DASH_GT] = ACTIONS(576), + [anon_sym_POUND] = ACTIONS(576), + [anon_sym_SQUOTE] = ACTIONS(713), + [anon_sym_as] = ACTIONS(713), + [anon_sym_async] = ACTIONS(713), + [anon_sym_await] = ACTIONS(713), + [anon_sym_break] = ACTIONS(713), + [anon_sym_const] = ACTIONS(713), + [anon_sym_continue] = ACTIONS(713), + [anon_sym_default] = ACTIONS(713), + [anon_sym_enum] = ACTIONS(713), + [anon_sym_fn] = ACTIONS(713), + [anon_sym_for] = ACTIONS(713), + [anon_sym_gen] = ACTIONS(713), + [anon_sym_if] = ACTIONS(713), + [anon_sym_impl] = ACTIONS(713), + [anon_sym_let] = ACTIONS(713), + [anon_sym_loop] = ACTIONS(713), + [anon_sym_match] = ACTIONS(713), + [anon_sym_mod] = ACTIONS(713), + [anon_sym_pub] = ACTIONS(713), + [anon_sym_return] = ACTIONS(713), + [anon_sym_static] = ACTIONS(713), + [anon_sym_struct] = ACTIONS(713), + [anon_sym_trait] = ACTIONS(713), + [anon_sym_type] = ACTIONS(713), + [anon_sym_union] = ACTIONS(713), + [anon_sym_unsafe] = ACTIONS(713), + [anon_sym_use] = ACTIONS(713), + [anon_sym_where] = ACTIONS(713), + [anon_sym_while] = ACTIONS(713), + [sym_mutable_specifier] = ACTIONS(713), + [sym_integer_literal] = ACTIONS(590), + [aux_sym_string_literal_token1] = ACTIONS(592), + [sym_char_literal] = ACTIONS(590), + [anon_sym_true] = ACTIONS(594), + [anon_sym_false] = ACTIONS(594), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(713), + [sym_super] = ACTIONS(713), + [sym_crate] = ACTIONS(713), + [sym_metavariable] = ACTIONS(725), + [sym__raw_string_literal_start] = ACTIONS(598), + [sym_float_literal] = ACTIONS(590), }, [STATE(105)] = { - [sym_delim_token_tree] = STATE(200), - [sym__delim_tokens] = STATE(208), - [sym__non_delim_token] = STATE(200), - [sym__literal] = STATE(210), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), + [sym_token_tree] = STATE(163), + [sym_token_repetition] = STATE(163), + [sym__literal] = STATE(163), + [sym_string_literal] = STATE(184), + [sym_raw_string_literal] = STATE(184), + [sym_boolean_literal] = STATE(184), [sym_line_comment] = STATE(105), [sym_block_comment] = STATE(105), - [aux_sym__non_special_token_repeat1] = STATE(147), - [aux_sym_delim_token_tree_repeat1] = STATE(133), - [sym_identifier] = ACTIONS(678), - [anon_sym_SEMI] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(682), - [anon_sym_RPAREN] = ACTIONS(730), - [anon_sym_LBRACK] = ACTIONS(684), - [anon_sym_LBRACE] = ACTIONS(688), - [anon_sym_EQ_GT] = ACTIONS(680), - [anon_sym_COLON] = ACTIONS(690), - [anon_sym_DOLLAR] = ACTIONS(692), - [anon_sym_PLUS] = ACTIONS(690), - [anon_sym_STAR] = ACTIONS(690), - [anon_sym_QMARK] = ACTIONS(680), - [anon_sym_u8] = ACTIONS(678), - [anon_sym_i8] = ACTIONS(678), - [anon_sym_u16] = ACTIONS(678), - [anon_sym_i16] = ACTIONS(678), - [anon_sym_u32] = ACTIONS(678), - [anon_sym_i32] = ACTIONS(678), - [anon_sym_u64] = ACTIONS(678), - [anon_sym_i64] = ACTIONS(678), - [anon_sym_u128] = ACTIONS(678), - [anon_sym_i128] = ACTIONS(678), - [anon_sym_isize] = ACTIONS(678), - [anon_sym_usize] = ACTIONS(678), - [anon_sym_f32] = ACTIONS(678), - [anon_sym_f64] = ACTIONS(678), - [anon_sym_bool] = ACTIONS(678), - [anon_sym_str] = ACTIONS(678), - [anon_sym_char] = ACTIONS(678), - [anon_sym_DASH] = ACTIONS(690), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_PERCENT] = ACTIONS(690), - [anon_sym_CARET] = ACTIONS(690), - [anon_sym_BANG] = ACTIONS(690), - [anon_sym_AMP] = ACTIONS(690), - [anon_sym_PIPE] = ACTIONS(690), - [anon_sym_AMP_AMP] = ACTIONS(680), - [anon_sym_PIPE_PIPE] = ACTIONS(680), - [anon_sym_LT_LT] = ACTIONS(690), - [anon_sym_GT_GT] = ACTIONS(690), - [anon_sym_PLUS_EQ] = ACTIONS(680), - [anon_sym_DASH_EQ] = ACTIONS(680), - [anon_sym_STAR_EQ] = ACTIONS(680), - [anon_sym_SLASH_EQ] = ACTIONS(680), - [anon_sym_PERCENT_EQ] = ACTIONS(680), - [anon_sym_CARET_EQ] = ACTIONS(680), - [anon_sym_AMP_EQ] = ACTIONS(680), - [anon_sym_PIPE_EQ] = ACTIONS(680), - [anon_sym_LT_LT_EQ] = ACTIONS(680), - [anon_sym_GT_GT_EQ] = ACTIONS(680), - [anon_sym_EQ] = ACTIONS(690), - [anon_sym_EQ_EQ] = ACTIONS(680), - [anon_sym_BANG_EQ] = ACTIONS(680), - [anon_sym_GT] = ACTIONS(690), - [anon_sym_LT] = ACTIONS(690), - [anon_sym_GT_EQ] = ACTIONS(680), - [anon_sym_LT_EQ] = ACTIONS(680), - [anon_sym_AT] = ACTIONS(680), - [anon_sym__] = ACTIONS(690), - [anon_sym_DOT] = ACTIONS(690), - [anon_sym_DOT_DOT] = ACTIONS(690), - [anon_sym_DOT_DOT_DOT] = ACTIONS(680), - [anon_sym_DOT_DOT_EQ] = ACTIONS(680), - [anon_sym_COMMA] = ACTIONS(680), - [anon_sym_COLON_COLON] = ACTIONS(680), - [anon_sym_DASH_GT] = ACTIONS(680), - [anon_sym_POUND] = ACTIONS(680), - [anon_sym_SQUOTE] = ACTIONS(678), - [anon_sym_as] = ACTIONS(678), - [anon_sym_async] = ACTIONS(678), - [anon_sym_await] = ACTIONS(678), - [anon_sym_break] = ACTIONS(678), - [anon_sym_const] = ACTIONS(678), - [anon_sym_continue] = ACTIONS(678), - [anon_sym_default] = ACTIONS(678), - [anon_sym_enum] = ACTIONS(678), - [anon_sym_fn] = ACTIONS(678), - [anon_sym_for] = ACTIONS(678), - [anon_sym_gen] = ACTIONS(678), - [anon_sym_if] = ACTIONS(678), - [anon_sym_impl] = ACTIONS(678), - [anon_sym_let] = ACTIONS(678), - [anon_sym_loop] = ACTIONS(678), - [anon_sym_match] = ACTIONS(678), - [anon_sym_mod] = ACTIONS(678), - [anon_sym_pub] = ACTIONS(678), - [anon_sym_return] = ACTIONS(678), - [anon_sym_static] = ACTIONS(678), - [anon_sym_struct] = ACTIONS(678), - [anon_sym_trait] = ACTIONS(678), - [anon_sym_type] = ACTIONS(678), - [anon_sym_union] = ACTIONS(678), - [anon_sym_unsafe] = ACTIONS(678), - [anon_sym_use] = ACTIONS(678), - [anon_sym_where] = ACTIONS(678), - [anon_sym_while] = ACTIONS(678), - [sym_mutable_specifier] = ACTIONS(678), - [sym_integer_literal] = ACTIONS(694), - [aux_sym_string_literal_token1] = ACTIONS(696), - [sym_char_literal] = ACTIONS(694), - [anon_sym_true] = ACTIONS(698), - [anon_sym_false] = ACTIONS(698), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(678), - [sym_super] = ACTIONS(678), - [sym_crate] = ACTIONS(678), - [sym__raw_string_literal_start] = ACTIONS(700), - [sym_float_literal] = ACTIONS(694), + [aux_sym_token_tree_repeat1] = STATE(82), + [aux_sym__non_special_token_repeat1] = STATE(141), + [sym_identifier] = ACTIONS(713), + [anon_sym_SEMI] = ACTIONS(576), + [anon_sym_LPAREN] = ACTIONS(715), + [anon_sym_LBRACK] = ACTIONS(719), + [anon_sym_RBRACK] = ACTIONS(731), + [anon_sym_LBRACE] = ACTIONS(721), + [anon_sym_EQ_GT] = ACTIONS(576), + [anon_sym_COLON] = ACTIONS(586), + [anon_sym_DOLLAR] = ACTIONS(723), + [anon_sym_PLUS] = ACTIONS(586), + [anon_sym_STAR] = ACTIONS(586), + [anon_sym_QMARK] = ACTIONS(576), + [anon_sym_u8] = ACTIONS(713), + [anon_sym_i8] = ACTIONS(713), + [anon_sym_u16] = ACTIONS(713), + [anon_sym_i16] = ACTIONS(713), + [anon_sym_u32] = ACTIONS(713), + [anon_sym_i32] = ACTIONS(713), + [anon_sym_u64] = ACTIONS(713), + [anon_sym_i64] = ACTIONS(713), + [anon_sym_u128] = ACTIONS(713), + [anon_sym_i128] = ACTIONS(713), + [anon_sym_isize] = ACTIONS(713), + [anon_sym_usize] = ACTIONS(713), + [anon_sym_f32] = ACTIONS(713), + [anon_sym_f64] = ACTIONS(713), + [anon_sym_bool] = ACTIONS(713), + [anon_sym_str] = ACTIONS(713), + [anon_sym_char] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(586), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_PERCENT] = ACTIONS(586), + [anon_sym_CARET] = ACTIONS(586), + [anon_sym_BANG] = ACTIONS(586), + [anon_sym_AMP] = ACTIONS(586), + [anon_sym_PIPE] = ACTIONS(586), + [anon_sym_AMP_AMP] = ACTIONS(576), + [anon_sym_PIPE_PIPE] = ACTIONS(576), + [anon_sym_LT_LT] = ACTIONS(586), + [anon_sym_GT_GT] = ACTIONS(586), + [anon_sym_PLUS_EQ] = ACTIONS(576), + [anon_sym_DASH_EQ] = ACTIONS(576), + [anon_sym_STAR_EQ] = ACTIONS(576), + [anon_sym_SLASH_EQ] = ACTIONS(576), + [anon_sym_PERCENT_EQ] = ACTIONS(576), + [anon_sym_CARET_EQ] = ACTIONS(576), + [anon_sym_AMP_EQ] = ACTIONS(576), + [anon_sym_PIPE_EQ] = ACTIONS(576), + [anon_sym_LT_LT_EQ] = ACTIONS(576), + [anon_sym_GT_GT_EQ] = ACTIONS(576), + [anon_sym_EQ] = ACTIONS(586), + [anon_sym_EQ_EQ] = ACTIONS(576), + [anon_sym_BANG_EQ] = ACTIONS(576), + [anon_sym_GT] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(586), + [anon_sym_GT_EQ] = ACTIONS(576), + [anon_sym_LT_EQ] = ACTIONS(576), + [anon_sym_AT] = ACTIONS(576), + [anon_sym__] = ACTIONS(586), + [anon_sym_DOT] = ACTIONS(586), + [anon_sym_DOT_DOT] = ACTIONS(586), + [anon_sym_DOT_DOT_DOT] = ACTIONS(576), + [anon_sym_DOT_DOT_EQ] = ACTIONS(576), + [anon_sym_COMMA] = ACTIONS(576), + [anon_sym_COLON_COLON] = ACTIONS(576), + [anon_sym_DASH_GT] = ACTIONS(576), + [anon_sym_POUND] = ACTIONS(576), + [anon_sym_SQUOTE] = ACTIONS(713), + [anon_sym_as] = ACTIONS(713), + [anon_sym_async] = ACTIONS(713), + [anon_sym_await] = ACTIONS(713), + [anon_sym_break] = ACTIONS(713), + [anon_sym_const] = ACTIONS(713), + [anon_sym_continue] = ACTIONS(713), + [anon_sym_default] = ACTIONS(713), + [anon_sym_enum] = ACTIONS(713), + [anon_sym_fn] = ACTIONS(713), + [anon_sym_for] = ACTIONS(713), + [anon_sym_gen] = ACTIONS(713), + [anon_sym_if] = ACTIONS(713), + [anon_sym_impl] = ACTIONS(713), + [anon_sym_let] = ACTIONS(713), + [anon_sym_loop] = ACTIONS(713), + [anon_sym_match] = ACTIONS(713), + [anon_sym_mod] = ACTIONS(713), + [anon_sym_pub] = ACTIONS(713), + [anon_sym_return] = ACTIONS(713), + [anon_sym_static] = ACTIONS(713), + [anon_sym_struct] = ACTIONS(713), + [anon_sym_trait] = ACTIONS(713), + [anon_sym_type] = ACTIONS(713), + [anon_sym_union] = ACTIONS(713), + [anon_sym_unsafe] = ACTIONS(713), + [anon_sym_use] = ACTIONS(713), + [anon_sym_where] = ACTIONS(713), + [anon_sym_while] = ACTIONS(713), + [sym_mutable_specifier] = ACTIONS(713), + [sym_integer_literal] = ACTIONS(590), + [aux_sym_string_literal_token1] = ACTIONS(592), + [sym_char_literal] = ACTIONS(590), + [anon_sym_true] = ACTIONS(594), + [anon_sym_false] = ACTIONS(594), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(713), + [sym_super] = ACTIONS(713), + [sym_crate] = ACTIONS(713), + [sym_metavariable] = ACTIONS(725), + [sym__raw_string_literal_start] = ACTIONS(598), + [sym_float_literal] = ACTIONS(590), }, [STATE(106)] = { - [sym_delim_token_tree] = STATE(200), - [sym__delim_tokens] = STATE(208), - [sym__non_delim_token] = STATE(200), - [sym__literal] = STATE(210), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), + [sym_token_tree] = STATE(163), + [sym_token_repetition] = STATE(163), + [sym__literal] = STATE(163), + [sym_string_literal] = STATE(184), + [sym_raw_string_literal] = STATE(184), + [sym_boolean_literal] = STATE(184), [sym_line_comment] = STATE(106), [sym_block_comment] = STATE(106), - [aux_sym__non_special_token_repeat1] = STATE(147), - [aux_sym_delim_token_tree_repeat1] = STATE(109), - [sym_identifier] = ACTIONS(678), - [anon_sym_SEMI] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(682), - [anon_sym_LBRACK] = ACTIONS(684), - [anon_sym_RBRACK] = ACTIONS(730), - [anon_sym_LBRACE] = ACTIONS(688), - [anon_sym_EQ_GT] = ACTIONS(680), - [anon_sym_COLON] = ACTIONS(690), - [anon_sym_DOLLAR] = ACTIONS(692), - [anon_sym_PLUS] = ACTIONS(690), - [anon_sym_STAR] = ACTIONS(690), - [anon_sym_QMARK] = ACTIONS(680), - [anon_sym_u8] = ACTIONS(678), - [anon_sym_i8] = ACTIONS(678), - [anon_sym_u16] = ACTIONS(678), - [anon_sym_i16] = ACTIONS(678), - [anon_sym_u32] = ACTIONS(678), - [anon_sym_i32] = ACTIONS(678), - [anon_sym_u64] = ACTIONS(678), - [anon_sym_i64] = ACTIONS(678), - [anon_sym_u128] = ACTIONS(678), - [anon_sym_i128] = ACTIONS(678), - [anon_sym_isize] = ACTIONS(678), - [anon_sym_usize] = ACTIONS(678), - [anon_sym_f32] = ACTIONS(678), - [anon_sym_f64] = ACTIONS(678), - [anon_sym_bool] = ACTIONS(678), - [anon_sym_str] = ACTIONS(678), - [anon_sym_char] = ACTIONS(678), - [anon_sym_DASH] = ACTIONS(690), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_PERCENT] = ACTIONS(690), - [anon_sym_CARET] = ACTIONS(690), - [anon_sym_BANG] = ACTIONS(690), - [anon_sym_AMP] = ACTIONS(690), - [anon_sym_PIPE] = ACTIONS(690), - [anon_sym_AMP_AMP] = ACTIONS(680), - [anon_sym_PIPE_PIPE] = ACTIONS(680), - [anon_sym_LT_LT] = ACTIONS(690), - [anon_sym_GT_GT] = ACTIONS(690), - [anon_sym_PLUS_EQ] = ACTIONS(680), - [anon_sym_DASH_EQ] = ACTIONS(680), - [anon_sym_STAR_EQ] = ACTIONS(680), - [anon_sym_SLASH_EQ] = ACTIONS(680), - [anon_sym_PERCENT_EQ] = ACTIONS(680), - [anon_sym_CARET_EQ] = ACTIONS(680), - [anon_sym_AMP_EQ] = ACTIONS(680), - [anon_sym_PIPE_EQ] = ACTIONS(680), - [anon_sym_LT_LT_EQ] = ACTIONS(680), - [anon_sym_GT_GT_EQ] = ACTIONS(680), - [anon_sym_EQ] = ACTIONS(690), - [anon_sym_EQ_EQ] = ACTIONS(680), - [anon_sym_BANG_EQ] = ACTIONS(680), - [anon_sym_GT] = ACTIONS(690), - [anon_sym_LT] = ACTIONS(690), - [anon_sym_GT_EQ] = ACTIONS(680), - [anon_sym_LT_EQ] = ACTIONS(680), - [anon_sym_AT] = ACTIONS(680), - [anon_sym__] = ACTIONS(690), - [anon_sym_DOT] = ACTIONS(690), - [anon_sym_DOT_DOT] = ACTIONS(690), - [anon_sym_DOT_DOT_DOT] = ACTIONS(680), - [anon_sym_DOT_DOT_EQ] = ACTIONS(680), - [anon_sym_COMMA] = ACTIONS(680), - [anon_sym_COLON_COLON] = ACTIONS(680), - [anon_sym_DASH_GT] = ACTIONS(680), - [anon_sym_POUND] = ACTIONS(680), - [anon_sym_SQUOTE] = ACTIONS(678), - [anon_sym_as] = ACTIONS(678), - [anon_sym_async] = ACTIONS(678), - [anon_sym_await] = ACTIONS(678), - [anon_sym_break] = ACTIONS(678), - [anon_sym_const] = ACTIONS(678), - [anon_sym_continue] = ACTIONS(678), - [anon_sym_default] = ACTIONS(678), - [anon_sym_enum] = ACTIONS(678), - [anon_sym_fn] = ACTIONS(678), - [anon_sym_for] = ACTIONS(678), - [anon_sym_gen] = ACTIONS(678), - [anon_sym_if] = ACTIONS(678), - [anon_sym_impl] = ACTIONS(678), - [anon_sym_let] = ACTIONS(678), - [anon_sym_loop] = ACTIONS(678), - [anon_sym_match] = ACTIONS(678), - [anon_sym_mod] = ACTIONS(678), - [anon_sym_pub] = ACTIONS(678), - [anon_sym_return] = ACTIONS(678), - [anon_sym_static] = ACTIONS(678), - [anon_sym_struct] = ACTIONS(678), - [anon_sym_trait] = ACTIONS(678), - [anon_sym_type] = ACTIONS(678), - [anon_sym_union] = ACTIONS(678), - [anon_sym_unsafe] = ACTIONS(678), - [anon_sym_use] = ACTIONS(678), - [anon_sym_where] = ACTIONS(678), - [anon_sym_while] = ACTIONS(678), - [sym_mutable_specifier] = ACTIONS(678), - [sym_integer_literal] = ACTIONS(694), - [aux_sym_string_literal_token1] = ACTIONS(696), - [sym_char_literal] = ACTIONS(694), - [anon_sym_true] = ACTIONS(698), - [anon_sym_false] = ACTIONS(698), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(678), - [sym_super] = ACTIONS(678), - [sym_crate] = ACTIONS(678), - [sym__raw_string_literal_start] = ACTIONS(700), - [sym_float_literal] = ACTIONS(694), + [aux_sym_token_tree_repeat1] = STATE(82), + [aux_sym__non_special_token_repeat1] = STATE(141), + [sym_identifier] = ACTIONS(713), + [anon_sym_SEMI] = ACTIONS(576), + [anon_sym_LPAREN] = ACTIONS(715), + [anon_sym_LBRACK] = ACTIONS(719), + [anon_sym_LBRACE] = ACTIONS(721), + [anon_sym_RBRACE] = ACTIONS(731), + [anon_sym_EQ_GT] = ACTIONS(576), + [anon_sym_COLON] = ACTIONS(586), + [anon_sym_DOLLAR] = ACTIONS(723), + [anon_sym_PLUS] = ACTIONS(586), + [anon_sym_STAR] = ACTIONS(586), + [anon_sym_QMARK] = ACTIONS(576), + [anon_sym_u8] = ACTIONS(713), + [anon_sym_i8] = ACTIONS(713), + [anon_sym_u16] = ACTIONS(713), + [anon_sym_i16] = ACTIONS(713), + [anon_sym_u32] = ACTIONS(713), + [anon_sym_i32] = ACTIONS(713), + [anon_sym_u64] = ACTIONS(713), + [anon_sym_i64] = ACTIONS(713), + [anon_sym_u128] = ACTIONS(713), + [anon_sym_i128] = ACTIONS(713), + [anon_sym_isize] = ACTIONS(713), + [anon_sym_usize] = ACTIONS(713), + [anon_sym_f32] = ACTIONS(713), + [anon_sym_f64] = ACTIONS(713), + [anon_sym_bool] = ACTIONS(713), + [anon_sym_str] = ACTIONS(713), + [anon_sym_char] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(586), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_PERCENT] = ACTIONS(586), + [anon_sym_CARET] = ACTIONS(586), + [anon_sym_BANG] = ACTIONS(586), + [anon_sym_AMP] = ACTIONS(586), + [anon_sym_PIPE] = ACTIONS(586), + [anon_sym_AMP_AMP] = ACTIONS(576), + [anon_sym_PIPE_PIPE] = ACTIONS(576), + [anon_sym_LT_LT] = ACTIONS(586), + [anon_sym_GT_GT] = ACTIONS(586), + [anon_sym_PLUS_EQ] = ACTIONS(576), + [anon_sym_DASH_EQ] = ACTIONS(576), + [anon_sym_STAR_EQ] = ACTIONS(576), + [anon_sym_SLASH_EQ] = ACTIONS(576), + [anon_sym_PERCENT_EQ] = ACTIONS(576), + [anon_sym_CARET_EQ] = ACTIONS(576), + [anon_sym_AMP_EQ] = ACTIONS(576), + [anon_sym_PIPE_EQ] = ACTIONS(576), + [anon_sym_LT_LT_EQ] = ACTIONS(576), + [anon_sym_GT_GT_EQ] = ACTIONS(576), + [anon_sym_EQ] = ACTIONS(586), + [anon_sym_EQ_EQ] = ACTIONS(576), + [anon_sym_BANG_EQ] = ACTIONS(576), + [anon_sym_GT] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(586), + [anon_sym_GT_EQ] = ACTIONS(576), + [anon_sym_LT_EQ] = ACTIONS(576), + [anon_sym_AT] = ACTIONS(576), + [anon_sym__] = ACTIONS(586), + [anon_sym_DOT] = ACTIONS(586), + [anon_sym_DOT_DOT] = ACTIONS(586), + [anon_sym_DOT_DOT_DOT] = ACTIONS(576), + [anon_sym_DOT_DOT_EQ] = ACTIONS(576), + [anon_sym_COMMA] = ACTIONS(576), + [anon_sym_COLON_COLON] = ACTIONS(576), + [anon_sym_DASH_GT] = ACTIONS(576), + [anon_sym_POUND] = ACTIONS(576), + [anon_sym_SQUOTE] = ACTIONS(713), + [anon_sym_as] = ACTIONS(713), + [anon_sym_async] = ACTIONS(713), + [anon_sym_await] = ACTIONS(713), + [anon_sym_break] = ACTIONS(713), + [anon_sym_const] = ACTIONS(713), + [anon_sym_continue] = ACTIONS(713), + [anon_sym_default] = ACTIONS(713), + [anon_sym_enum] = ACTIONS(713), + [anon_sym_fn] = ACTIONS(713), + [anon_sym_for] = ACTIONS(713), + [anon_sym_gen] = ACTIONS(713), + [anon_sym_if] = ACTIONS(713), + [anon_sym_impl] = ACTIONS(713), + [anon_sym_let] = ACTIONS(713), + [anon_sym_loop] = ACTIONS(713), + [anon_sym_match] = ACTIONS(713), + [anon_sym_mod] = ACTIONS(713), + [anon_sym_pub] = ACTIONS(713), + [anon_sym_return] = ACTIONS(713), + [anon_sym_static] = ACTIONS(713), + [anon_sym_struct] = ACTIONS(713), + [anon_sym_trait] = ACTIONS(713), + [anon_sym_type] = ACTIONS(713), + [anon_sym_union] = ACTIONS(713), + [anon_sym_unsafe] = ACTIONS(713), + [anon_sym_use] = ACTIONS(713), + [anon_sym_where] = ACTIONS(713), + [anon_sym_while] = ACTIONS(713), + [sym_mutable_specifier] = ACTIONS(713), + [sym_integer_literal] = ACTIONS(590), + [aux_sym_string_literal_token1] = ACTIONS(592), + [sym_char_literal] = ACTIONS(590), + [anon_sym_true] = ACTIONS(594), + [anon_sym_false] = ACTIONS(594), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(713), + [sym_super] = ACTIONS(713), + [sym_crate] = ACTIONS(713), + [sym_metavariable] = ACTIONS(725), + [sym__raw_string_literal_start] = ACTIONS(598), + [sym_float_literal] = ACTIONS(590), }, [STATE(107)] = { - [sym_delim_token_tree] = STATE(200), - [sym__delim_tokens] = STATE(208), - [sym__non_delim_token] = STATE(200), - [sym__literal] = STATE(210), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), + [sym_delim_token_tree] = STATE(206), + [sym__delim_tokens] = STATE(213), + [sym__non_delim_token] = STATE(206), + [sym__literal] = STATE(201), + [sym_string_literal] = STATE(219), + [sym_raw_string_literal] = STATE(219), + [sym_boolean_literal] = STATE(219), [sym_line_comment] = STATE(107), [sym_block_comment] = STATE(107), - [aux_sym__non_special_token_repeat1] = STATE(147), + [aux_sym__non_special_token_repeat1] = STATE(176), [aux_sym_delim_token_tree_repeat1] = STATE(110), - [sym_identifier] = ACTIONS(678), - [anon_sym_SEMI] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(682), - [anon_sym_LBRACK] = ACTIONS(684), - [anon_sym_LBRACE] = ACTIONS(688), - [anon_sym_RBRACE] = ACTIONS(730), - [anon_sym_EQ_GT] = ACTIONS(680), - [anon_sym_COLON] = ACTIONS(690), - [anon_sym_DOLLAR] = ACTIONS(692), - [anon_sym_PLUS] = ACTIONS(690), - [anon_sym_STAR] = ACTIONS(690), - [anon_sym_QMARK] = ACTIONS(680), - [anon_sym_u8] = ACTIONS(678), - [anon_sym_i8] = ACTIONS(678), - [anon_sym_u16] = ACTIONS(678), - [anon_sym_i16] = ACTIONS(678), - [anon_sym_u32] = ACTIONS(678), - [anon_sym_i32] = ACTIONS(678), - [anon_sym_u64] = ACTIONS(678), - [anon_sym_i64] = ACTIONS(678), - [anon_sym_u128] = ACTIONS(678), - [anon_sym_i128] = ACTIONS(678), - [anon_sym_isize] = ACTIONS(678), - [anon_sym_usize] = ACTIONS(678), - [anon_sym_f32] = ACTIONS(678), - [anon_sym_f64] = ACTIONS(678), - [anon_sym_bool] = ACTIONS(678), - [anon_sym_str] = ACTIONS(678), - [anon_sym_char] = ACTIONS(678), - [anon_sym_DASH] = ACTIONS(690), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_PERCENT] = ACTIONS(690), - [anon_sym_CARET] = ACTIONS(690), - [anon_sym_BANG] = ACTIONS(690), - [anon_sym_AMP] = ACTIONS(690), - [anon_sym_PIPE] = ACTIONS(690), - [anon_sym_AMP_AMP] = ACTIONS(680), - [anon_sym_PIPE_PIPE] = ACTIONS(680), - [anon_sym_LT_LT] = ACTIONS(690), - [anon_sym_GT_GT] = ACTIONS(690), - [anon_sym_PLUS_EQ] = ACTIONS(680), - [anon_sym_DASH_EQ] = ACTIONS(680), - [anon_sym_STAR_EQ] = ACTIONS(680), - [anon_sym_SLASH_EQ] = ACTIONS(680), - [anon_sym_PERCENT_EQ] = ACTIONS(680), - [anon_sym_CARET_EQ] = ACTIONS(680), - [anon_sym_AMP_EQ] = ACTIONS(680), - [anon_sym_PIPE_EQ] = ACTIONS(680), - [anon_sym_LT_LT_EQ] = ACTIONS(680), - [anon_sym_GT_GT_EQ] = ACTIONS(680), - [anon_sym_EQ] = ACTIONS(690), - [anon_sym_EQ_EQ] = ACTIONS(680), - [anon_sym_BANG_EQ] = ACTIONS(680), - [anon_sym_GT] = ACTIONS(690), - [anon_sym_LT] = ACTIONS(690), - [anon_sym_GT_EQ] = ACTIONS(680), - [anon_sym_LT_EQ] = ACTIONS(680), - [anon_sym_AT] = ACTIONS(680), - [anon_sym__] = ACTIONS(690), - [anon_sym_DOT] = ACTIONS(690), - [anon_sym_DOT_DOT] = ACTIONS(690), - [anon_sym_DOT_DOT_DOT] = ACTIONS(680), - [anon_sym_DOT_DOT_EQ] = ACTIONS(680), - [anon_sym_COMMA] = ACTIONS(680), - [anon_sym_COLON_COLON] = ACTIONS(680), - [anon_sym_DASH_GT] = ACTIONS(680), - [anon_sym_POUND] = ACTIONS(680), - [anon_sym_SQUOTE] = ACTIONS(678), - [anon_sym_as] = ACTIONS(678), - [anon_sym_async] = ACTIONS(678), - [anon_sym_await] = ACTIONS(678), - [anon_sym_break] = ACTIONS(678), - [anon_sym_const] = ACTIONS(678), - [anon_sym_continue] = ACTIONS(678), - [anon_sym_default] = ACTIONS(678), - [anon_sym_enum] = ACTIONS(678), - [anon_sym_fn] = ACTIONS(678), - [anon_sym_for] = ACTIONS(678), - [anon_sym_gen] = ACTIONS(678), - [anon_sym_if] = ACTIONS(678), - [anon_sym_impl] = ACTIONS(678), - [anon_sym_let] = ACTIONS(678), - [anon_sym_loop] = ACTIONS(678), - [anon_sym_match] = ACTIONS(678), - [anon_sym_mod] = ACTIONS(678), - [anon_sym_pub] = ACTIONS(678), - [anon_sym_return] = ACTIONS(678), - [anon_sym_static] = ACTIONS(678), - [anon_sym_struct] = ACTIONS(678), - [anon_sym_trait] = ACTIONS(678), - [anon_sym_type] = ACTIONS(678), - [anon_sym_union] = ACTIONS(678), - [anon_sym_unsafe] = ACTIONS(678), - [anon_sym_use] = ACTIONS(678), - [anon_sym_where] = ACTIONS(678), - [anon_sym_while] = ACTIONS(678), - [sym_mutable_specifier] = ACTIONS(678), - [sym_integer_literal] = ACTIONS(694), - [aux_sym_string_literal_token1] = ACTIONS(696), - [sym_char_literal] = ACTIONS(694), - [anon_sym_true] = ACTIONS(698), - [anon_sym_false] = ACTIONS(698), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(678), - [sym_super] = ACTIONS(678), - [sym_crate] = ACTIONS(678), - [sym__raw_string_literal_start] = ACTIONS(700), - [sym_float_literal] = ACTIONS(694), + [sym_identifier] = ACTIONS(683), + [anon_sym_SEMI] = ACTIONS(685), + [anon_sym_LPAREN] = ACTIONS(687), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_RBRACK] = ACTIONS(733), + [anon_sym_LBRACE] = ACTIONS(693), + [anon_sym_EQ_GT] = ACTIONS(685), + [anon_sym_COLON] = ACTIONS(695), + [anon_sym_DOLLAR] = ACTIONS(697), + [anon_sym_PLUS] = ACTIONS(695), + [anon_sym_STAR] = ACTIONS(695), + [anon_sym_QMARK] = ACTIONS(685), + [anon_sym_u8] = ACTIONS(683), + [anon_sym_i8] = ACTIONS(683), + [anon_sym_u16] = ACTIONS(683), + [anon_sym_i16] = ACTIONS(683), + [anon_sym_u32] = ACTIONS(683), + [anon_sym_i32] = ACTIONS(683), + [anon_sym_u64] = ACTIONS(683), + [anon_sym_i64] = ACTIONS(683), + [anon_sym_u128] = ACTIONS(683), + [anon_sym_i128] = ACTIONS(683), + [anon_sym_isize] = ACTIONS(683), + [anon_sym_usize] = ACTIONS(683), + [anon_sym_f32] = ACTIONS(683), + [anon_sym_f64] = ACTIONS(683), + [anon_sym_bool] = ACTIONS(683), + [anon_sym_str] = ACTIONS(683), + [anon_sym_char] = ACTIONS(683), + [anon_sym_DASH] = ACTIONS(695), + [anon_sym_SLASH] = ACTIONS(695), + [anon_sym_PERCENT] = ACTIONS(695), + [anon_sym_CARET] = ACTIONS(695), + [anon_sym_BANG] = ACTIONS(695), + [anon_sym_AMP] = ACTIONS(695), + [anon_sym_PIPE] = ACTIONS(695), + [anon_sym_AMP_AMP] = ACTIONS(685), + [anon_sym_PIPE_PIPE] = ACTIONS(685), + [anon_sym_LT_LT] = ACTIONS(695), + [anon_sym_GT_GT] = ACTIONS(695), + [anon_sym_PLUS_EQ] = ACTIONS(685), + [anon_sym_DASH_EQ] = ACTIONS(685), + [anon_sym_STAR_EQ] = ACTIONS(685), + [anon_sym_SLASH_EQ] = ACTIONS(685), + [anon_sym_PERCENT_EQ] = ACTIONS(685), + [anon_sym_CARET_EQ] = ACTIONS(685), + [anon_sym_AMP_EQ] = ACTIONS(685), + [anon_sym_PIPE_EQ] = ACTIONS(685), + [anon_sym_LT_LT_EQ] = ACTIONS(685), + [anon_sym_GT_GT_EQ] = ACTIONS(685), + [anon_sym_EQ] = ACTIONS(695), + [anon_sym_EQ_EQ] = ACTIONS(685), + [anon_sym_BANG_EQ] = ACTIONS(685), + [anon_sym_GT] = ACTIONS(695), + [anon_sym_LT] = ACTIONS(695), + [anon_sym_GT_EQ] = ACTIONS(685), + [anon_sym_LT_EQ] = ACTIONS(685), + [anon_sym_AT] = ACTIONS(685), + [anon_sym__] = ACTIONS(695), + [anon_sym_DOT] = ACTIONS(695), + [anon_sym_DOT_DOT] = ACTIONS(695), + [anon_sym_DOT_DOT_DOT] = ACTIONS(685), + [anon_sym_DOT_DOT_EQ] = ACTIONS(685), + [anon_sym_COMMA] = ACTIONS(685), + [anon_sym_COLON_COLON] = ACTIONS(685), + [anon_sym_DASH_GT] = ACTIONS(685), + [anon_sym_POUND] = ACTIONS(685), + [anon_sym_SQUOTE] = ACTIONS(683), + [anon_sym_as] = ACTIONS(683), + [anon_sym_async] = ACTIONS(683), + [anon_sym_await] = ACTIONS(683), + [anon_sym_break] = ACTIONS(683), + [anon_sym_const] = ACTIONS(683), + [anon_sym_continue] = ACTIONS(683), + [anon_sym_default] = ACTIONS(683), + [anon_sym_enum] = ACTIONS(683), + [anon_sym_fn] = ACTIONS(683), + [anon_sym_for] = ACTIONS(683), + [anon_sym_gen] = ACTIONS(683), + [anon_sym_if] = ACTIONS(683), + [anon_sym_impl] = ACTIONS(683), + [anon_sym_let] = ACTIONS(683), + [anon_sym_loop] = ACTIONS(683), + [anon_sym_match] = ACTIONS(683), + [anon_sym_mod] = ACTIONS(683), + [anon_sym_pub] = ACTIONS(683), + [anon_sym_return] = ACTIONS(683), + [anon_sym_static] = ACTIONS(683), + [anon_sym_struct] = ACTIONS(683), + [anon_sym_trait] = ACTIONS(683), + [anon_sym_type] = ACTIONS(683), + [anon_sym_union] = ACTIONS(683), + [anon_sym_unsafe] = ACTIONS(683), + [anon_sym_use] = ACTIONS(683), + [anon_sym_where] = ACTIONS(683), + [anon_sym_while] = ACTIONS(683), + [sym_mutable_specifier] = ACTIONS(683), + [sym_integer_literal] = ACTIONS(699), + [aux_sym_string_literal_token1] = ACTIONS(701), + [sym_char_literal] = ACTIONS(699), + [anon_sym_true] = ACTIONS(703), + [anon_sym_false] = ACTIONS(703), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(683), + [sym_super] = ACTIONS(683), + [sym_crate] = ACTIONS(683), + [sym__raw_string_literal_start] = ACTIONS(705), + [sym_float_literal] = ACTIONS(699), }, [STATE(108)] = { - [sym_token_tree] = STATE(187), - [sym_token_repetition] = STATE(187), - [sym__literal] = STATE(187), - [sym_string_literal] = STATE(183), - [sym_raw_string_literal] = STATE(183), - [sym_boolean_literal] = STATE(183), + [sym_delim_token_tree] = STATE(206), + [sym__delim_tokens] = STATE(213), + [sym__non_delim_token] = STATE(206), + [sym__literal] = STATE(201), + [sym_string_literal] = STATE(219), + [sym_raw_string_literal] = STATE(219), + [sym_boolean_literal] = STATE(219), [sym_line_comment] = STATE(108), [sym_block_comment] = STATE(108), - [aux_sym_token_tree_repeat1] = STATE(68), - [aux_sym__non_special_token_repeat1] = STATE(144), - [sym_identifier] = ACTIONS(702), - [anon_sym_SEMI] = ACTIONS(609), - [anon_sym_LPAREN] = ACTIONS(704), - [anon_sym_LBRACK] = ACTIONS(708), - [anon_sym_LBRACE] = ACTIONS(710), - [anon_sym_RBRACE] = ACTIONS(732), - [anon_sym_EQ_GT] = ACTIONS(609), - [anon_sym_COLON] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(712), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_STAR] = ACTIONS(619), - [anon_sym_QMARK] = ACTIONS(609), - [anon_sym_u8] = ACTIONS(702), - [anon_sym_i8] = ACTIONS(702), - [anon_sym_u16] = ACTIONS(702), - [anon_sym_i16] = ACTIONS(702), - [anon_sym_u32] = ACTIONS(702), - [anon_sym_i32] = ACTIONS(702), - [anon_sym_u64] = ACTIONS(702), - [anon_sym_i64] = ACTIONS(702), - [anon_sym_u128] = ACTIONS(702), - [anon_sym_i128] = ACTIONS(702), - [anon_sym_isize] = ACTIONS(702), - [anon_sym_usize] = ACTIONS(702), - [anon_sym_f32] = ACTIONS(702), - [anon_sym_f64] = ACTIONS(702), - [anon_sym_bool] = ACTIONS(702), - [anon_sym_str] = ACTIONS(702), - [anon_sym_char] = ACTIONS(702), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_SLASH] = ACTIONS(619), - [anon_sym_PERCENT] = ACTIONS(619), - [anon_sym_CARET] = ACTIONS(619), - [anon_sym_BANG] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(619), - [anon_sym_AMP_AMP] = ACTIONS(609), - [anon_sym_PIPE_PIPE] = ACTIONS(609), - [anon_sym_LT_LT] = ACTIONS(619), - [anon_sym_GT_GT] = ACTIONS(619), - [anon_sym_PLUS_EQ] = ACTIONS(609), - [anon_sym_DASH_EQ] = ACTIONS(609), - [anon_sym_STAR_EQ] = ACTIONS(609), - [anon_sym_SLASH_EQ] = ACTIONS(609), - [anon_sym_PERCENT_EQ] = ACTIONS(609), - [anon_sym_CARET_EQ] = ACTIONS(609), - [anon_sym_AMP_EQ] = ACTIONS(609), - [anon_sym_PIPE_EQ] = ACTIONS(609), - [anon_sym_LT_LT_EQ] = ACTIONS(609), - [anon_sym_GT_GT_EQ] = ACTIONS(609), - [anon_sym_EQ] = ACTIONS(619), - [anon_sym_EQ_EQ] = ACTIONS(609), - [anon_sym_BANG_EQ] = ACTIONS(609), - [anon_sym_GT] = ACTIONS(619), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_GT_EQ] = ACTIONS(609), - [anon_sym_LT_EQ] = ACTIONS(609), - [anon_sym_AT] = ACTIONS(609), - [anon_sym__] = ACTIONS(619), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_DOT_DOT] = ACTIONS(619), - [anon_sym_DOT_DOT_DOT] = ACTIONS(609), - [anon_sym_DOT_DOT_EQ] = ACTIONS(609), - [anon_sym_COMMA] = ACTIONS(609), - [anon_sym_COLON_COLON] = ACTIONS(609), - [anon_sym_DASH_GT] = ACTIONS(609), - [anon_sym_POUND] = ACTIONS(609), - [anon_sym_SQUOTE] = ACTIONS(702), - [anon_sym_as] = ACTIONS(702), - [anon_sym_async] = ACTIONS(702), - [anon_sym_await] = ACTIONS(702), - [anon_sym_break] = ACTIONS(702), - [anon_sym_const] = ACTIONS(702), - [anon_sym_continue] = ACTIONS(702), - [anon_sym_default] = ACTIONS(702), - [anon_sym_enum] = ACTIONS(702), - [anon_sym_fn] = ACTIONS(702), - [anon_sym_for] = ACTIONS(702), - [anon_sym_gen] = ACTIONS(702), - [anon_sym_if] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(702), - [anon_sym_let] = ACTIONS(702), - [anon_sym_loop] = ACTIONS(702), - [anon_sym_match] = ACTIONS(702), - [anon_sym_mod] = ACTIONS(702), - [anon_sym_pub] = ACTIONS(702), - [anon_sym_return] = ACTIONS(702), - [anon_sym_static] = ACTIONS(702), - [anon_sym_struct] = ACTIONS(702), - [anon_sym_trait] = ACTIONS(702), - [anon_sym_type] = ACTIONS(702), - [anon_sym_union] = ACTIONS(702), - [anon_sym_unsafe] = ACTIONS(702), - [anon_sym_use] = ACTIONS(702), - [anon_sym_where] = ACTIONS(702), - [anon_sym_while] = ACTIONS(702), - [sym_mutable_specifier] = ACTIONS(702), - [sym_integer_literal] = ACTIONS(623), - [aux_sym_string_literal_token1] = ACTIONS(625), - [sym_char_literal] = ACTIONS(623), - [anon_sym_true] = ACTIONS(627), - [anon_sym_false] = ACTIONS(627), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(702), - [sym_super] = ACTIONS(702), - [sym_crate] = ACTIONS(702), - [sym_metavariable] = ACTIONS(714), - [sym__raw_string_literal_start] = ACTIONS(631), - [sym_float_literal] = ACTIONS(623), + [aux_sym__non_special_token_repeat1] = STATE(176), + [aux_sym_delim_token_tree_repeat1] = STATE(111), + [sym_identifier] = ACTIONS(683), + [anon_sym_SEMI] = ACTIONS(685), + [anon_sym_LPAREN] = ACTIONS(687), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_LBRACE] = ACTIONS(693), + [anon_sym_RBRACE] = ACTIONS(733), + [anon_sym_EQ_GT] = ACTIONS(685), + [anon_sym_COLON] = ACTIONS(695), + [anon_sym_DOLLAR] = ACTIONS(697), + [anon_sym_PLUS] = ACTIONS(695), + [anon_sym_STAR] = ACTIONS(695), + [anon_sym_QMARK] = ACTIONS(685), + [anon_sym_u8] = ACTIONS(683), + [anon_sym_i8] = ACTIONS(683), + [anon_sym_u16] = ACTIONS(683), + [anon_sym_i16] = ACTIONS(683), + [anon_sym_u32] = ACTIONS(683), + [anon_sym_i32] = ACTIONS(683), + [anon_sym_u64] = ACTIONS(683), + [anon_sym_i64] = ACTIONS(683), + [anon_sym_u128] = ACTIONS(683), + [anon_sym_i128] = ACTIONS(683), + [anon_sym_isize] = ACTIONS(683), + [anon_sym_usize] = ACTIONS(683), + [anon_sym_f32] = ACTIONS(683), + [anon_sym_f64] = ACTIONS(683), + [anon_sym_bool] = ACTIONS(683), + [anon_sym_str] = ACTIONS(683), + [anon_sym_char] = ACTIONS(683), + [anon_sym_DASH] = ACTIONS(695), + [anon_sym_SLASH] = ACTIONS(695), + [anon_sym_PERCENT] = ACTIONS(695), + [anon_sym_CARET] = ACTIONS(695), + [anon_sym_BANG] = ACTIONS(695), + [anon_sym_AMP] = ACTIONS(695), + [anon_sym_PIPE] = ACTIONS(695), + [anon_sym_AMP_AMP] = ACTIONS(685), + [anon_sym_PIPE_PIPE] = ACTIONS(685), + [anon_sym_LT_LT] = ACTIONS(695), + [anon_sym_GT_GT] = ACTIONS(695), + [anon_sym_PLUS_EQ] = ACTIONS(685), + [anon_sym_DASH_EQ] = ACTIONS(685), + [anon_sym_STAR_EQ] = ACTIONS(685), + [anon_sym_SLASH_EQ] = ACTIONS(685), + [anon_sym_PERCENT_EQ] = ACTIONS(685), + [anon_sym_CARET_EQ] = ACTIONS(685), + [anon_sym_AMP_EQ] = ACTIONS(685), + [anon_sym_PIPE_EQ] = ACTIONS(685), + [anon_sym_LT_LT_EQ] = ACTIONS(685), + [anon_sym_GT_GT_EQ] = ACTIONS(685), + [anon_sym_EQ] = ACTIONS(695), + [anon_sym_EQ_EQ] = ACTIONS(685), + [anon_sym_BANG_EQ] = ACTIONS(685), + [anon_sym_GT] = ACTIONS(695), + [anon_sym_LT] = ACTIONS(695), + [anon_sym_GT_EQ] = ACTIONS(685), + [anon_sym_LT_EQ] = ACTIONS(685), + [anon_sym_AT] = ACTIONS(685), + [anon_sym__] = ACTIONS(695), + [anon_sym_DOT] = ACTIONS(695), + [anon_sym_DOT_DOT] = ACTIONS(695), + [anon_sym_DOT_DOT_DOT] = ACTIONS(685), + [anon_sym_DOT_DOT_EQ] = ACTIONS(685), + [anon_sym_COMMA] = ACTIONS(685), + [anon_sym_COLON_COLON] = ACTIONS(685), + [anon_sym_DASH_GT] = ACTIONS(685), + [anon_sym_POUND] = ACTIONS(685), + [anon_sym_SQUOTE] = ACTIONS(683), + [anon_sym_as] = ACTIONS(683), + [anon_sym_async] = ACTIONS(683), + [anon_sym_await] = ACTIONS(683), + [anon_sym_break] = ACTIONS(683), + [anon_sym_const] = ACTIONS(683), + [anon_sym_continue] = ACTIONS(683), + [anon_sym_default] = ACTIONS(683), + [anon_sym_enum] = ACTIONS(683), + [anon_sym_fn] = ACTIONS(683), + [anon_sym_for] = ACTIONS(683), + [anon_sym_gen] = ACTIONS(683), + [anon_sym_if] = ACTIONS(683), + [anon_sym_impl] = ACTIONS(683), + [anon_sym_let] = ACTIONS(683), + [anon_sym_loop] = ACTIONS(683), + [anon_sym_match] = ACTIONS(683), + [anon_sym_mod] = ACTIONS(683), + [anon_sym_pub] = ACTIONS(683), + [anon_sym_return] = ACTIONS(683), + [anon_sym_static] = ACTIONS(683), + [anon_sym_struct] = ACTIONS(683), + [anon_sym_trait] = ACTIONS(683), + [anon_sym_type] = ACTIONS(683), + [anon_sym_union] = ACTIONS(683), + [anon_sym_unsafe] = ACTIONS(683), + [anon_sym_use] = ACTIONS(683), + [anon_sym_where] = ACTIONS(683), + [anon_sym_while] = ACTIONS(683), + [sym_mutable_specifier] = ACTIONS(683), + [sym_integer_literal] = ACTIONS(699), + [aux_sym_string_literal_token1] = ACTIONS(701), + [sym_char_literal] = ACTIONS(699), + [anon_sym_true] = ACTIONS(703), + [anon_sym_false] = ACTIONS(703), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(683), + [sym_super] = ACTIONS(683), + [sym_crate] = ACTIONS(683), + [sym__raw_string_literal_start] = ACTIONS(705), + [sym_float_literal] = ACTIONS(699), }, [STATE(109)] = { - [sym_delim_token_tree] = STATE(200), - [sym__delim_tokens] = STATE(208), - [sym__non_delim_token] = STATE(200), - [sym__literal] = STATE(210), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), + [sym_delim_token_tree] = STATE(206), + [sym__delim_tokens] = STATE(213), + [sym__non_delim_token] = STATE(206), + [sym__literal] = STATE(201), + [sym_string_literal] = STATE(219), + [sym_raw_string_literal] = STATE(219), + [sym_boolean_literal] = STATE(219), [sym_line_comment] = STATE(109), [sym_block_comment] = STATE(109), - [aux_sym__non_special_token_repeat1] = STATE(147), + [aux_sym__non_special_token_repeat1] = STATE(176), [aux_sym_delim_token_tree_repeat1] = STATE(83), - [sym_identifier] = ACTIONS(678), - [anon_sym_SEMI] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(682), - [anon_sym_LBRACK] = ACTIONS(684), - [anon_sym_RBRACK] = ACTIONS(734), - [anon_sym_LBRACE] = ACTIONS(688), - [anon_sym_EQ_GT] = ACTIONS(680), - [anon_sym_COLON] = ACTIONS(690), - [anon_sym_DOLLAR] = ACTIONS(692), - [anon_sym_PLUS] = ACTIONS(690), - [anon_sym_STAR] = ACTIONS(690), - [anon_sym_QMARK] = ACTIONS(680), - [anon_sym_u8] = ACTIONS(678), - [anon_sym_i8] = ACTIONS(678), - [anon_sym_u16] = ACTIONS(678), - [anon_sym_i16] = ACTIONS(678), - [anon_sym_u32] = ACTIONS(678), - [anon_sym_i32] = ACTIONS(678), - [anon_sym_u64] = ACTIONS(678), - [anon_sym_i64] = ACTIONS(678), - [anon_sym_u128] = ACTIONS(678), - [anon_sym_i128] = ACTIONS(678), - [anon_sym_isize] = ACTIONS(678), - [anon_sym_usize] = ACTIONS(678), - [anon_sym_f32] = ACTIONS(678), - [anon_sym_f64] = ACTIONS(678), - [anon_sym_bool] = ACTIONS(678), - [anon_sym_str] = ACTIONS(678), - [anon_sym_char] = ACTIONS(678), - [anon_sym_DASH] = ACTIONS(690), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_PERCENT] = ACTIONS(690), - [anon_sym_CARET] = ACTIONS(690), - [anon_sym_BANG] = ACTIONS(690), - [anon_sym_AMP] = ACTIONS(690), - [anon_sym_PIPE] = ACTIONS(690), - [anon_sym_AMP_AMP] = ACTIONS(680), - [anon_sym_PIPE_PIPE] = ACTIONS(680), - [anon_sym_LT_LT] = ACTIONS(690), - [anon_sym_GT_GT] = ACTIONS(690), - [anon_sym_PLUS_EQ] = ACTIONS(680), - [anon_sym_DASH_EQ] = ACTIONS(680), - [anon_sym_STAR_EQ] = ACTIONS(680), - [anon_sym_SLASH_EQ] = ACTIONS(680), - [anon_sym_PERCENT_EQ] = ACTIONS(680), - [anon_sym_CARET_EQ] = ACTIONS(680), - [anon_sym_AMP_EQ] = ACTIONS(680), - [anon_sym_PIPE_EQ] = ACTIONS(680), - [anon_sym_LT_LT_EQ] = ACTIONS(680), - [anon_sym_GT_GT_EQ] = ACTIONS(680), - [anon_sym_EQ] = ACTIONS(690), - [anon_sym_EQ_EQ] = ACTIONS(680), - [anon_sym_BANG_EQ] = ACTIONS(680), - [anon_sym_GT] = ACTIONS(690), - [anon_sym_LT] = ACTIONS(690), - [anon_sym_GT_EQ] = ACTIONS(680), - [anon_sym_LT_EQ] = ACTIONS(680), - [anon_sym_AT] = ACTIONS(680), - [anon_sym__] = ACTIONS(690), - [anon_sym_DOT] = ACTIONS(690), - [anon_sym_DOT_DOT] = ACTIONS(690), - [anon_sym_DOT_DOT_DOT] = ACTIONS(680), - [anon_sym_DOT_DOT_EQ] = ACTIONS(680), - [anon_sym_COMMA] = ACTIONS(680), - [anon_sym_COLON_COLON] = ACTIONS(680), - [anon_sym_DASH_GT] = ACTIONS(680), - [anon_sym_POUND] = ACTIONS(680), - [anon_sym_SQUOTE] = ACTIONS(678), - [anon_sym_as] = ACTIONS(678), - [anon_sym_async] = ACTIONS(678), - [anon_sym_await] = ACTIONS(678), - [anon_sym_break] = ACTIONS(678), - [anon_sym_const] = ACTIONS(678), - [anon_sym_continue] = ACTIONS(678), - [anon_sym_default] = ACTIONS(678), - [anon_sym_enum] = ACTIONS(678), - [anon_sym_fn] = ACTIONS(678), - [anon_sym_for] = ACTIONS(678), - [anon_sym_gen] = ACTIONS(678), - [anon_sym_if] = ACTIONS(678), - [anon_sym_impl] = ACTIONS(678), - [anon_sym_let] = ACTIONS(678), - [anon_sym_loop] = ACTIONS(678), - [anon_sym_match] = ACTIONS(678), - [anon_sym_mod] = ACTIONS(678), - [anon_sym_pub] = ACTIONS(678), - [anon_sym_return] = ACTIONS(678), - [anon_sym_static] = ACTIONS(678), - [anon_sym_struct] = ACTIONS(678), - [anon_sym_trait] = ACTIONS(678), - [anon_sym_type] = ACTIONS(678), - [anon_sym_union] = ACTIONS(678), - [anon_sym_unsafe] = ACTIONS(678), - [anon_sym_use] = ACTIONS(678), - [anon_sym_where] = ACTIONS(678), - [anon_sym_while] = ACTIONS(678), - [sym_mutable_specifier] = ACTIONS(678), - [sym_integer_literal] = ACTIONS(694), - [aux_sym_string_literal_token1] = ACTIONS(696), - [sym_char_literal] = ACTIONS(694), - [anon_sym_true] = ACTIONS(698), - [anon_sym_false] = ACTIONS(698), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(678), - [sym_super] = ACTIONS(678), - [sym_crate] = ACTIONS(678), - [sym__raw_string_literal_start] = ACTIONS(700), - [sym_float_literal] = ACTIONS(694), + [sym_identifier] = ACTIONS(683), + [anon_sym_SEMI] = ACTIONS(685), + [anon_sym_LPAREN] = ACTIONS(687), + [anon_sym_RPAREN] = ACTIONS(735), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_LBRACE] = ACTIONS(693), + [anon_sym_EQ_GT] = ACTIONS(685), + [anon_sym_COLON] = ACTIONS(695), + [anon_sym_DOLLAR] = ACTIONS(697), + [anon_sym_PLUS] = ACTIONS(695), + [anon_sym_STAR] = ACTIONS(695), + [anon_sym_QMARK] = ACTIONS(685), + [anon_sym_u8] = ACTIONS(683), + [anon_sym_i8] = ACTIONS(683), + [anon_sym_u16] = ACTIONS(683), + [anon_sym_i16] = ACTIONS(683), + [anon_sym_u32] = ACTIONS(683), + [anon_sym_i32] = ACTIONS(683), + [anon_sym_u64] = ACTIONS(683), + [anon_sym_i64] = ACTIONS(683), + [anon_sym_u128] = ACTIONS(683), + [anon_sym_i128] = ACTIONS(683), + [anon_sym_isize] = ACTIONS(683), + [anon_sym_usize] = ACTIONS(683), + [anon_sym_f32] = ACTIONS(683), + [anon_sym_f64] = ACTIONS(683), + [anon_sym_bool] = ACTIONS(683), + [anon_sym_str] = ACTIONS(683), + [anon_sym_char] = ACTIONS(683), + [anon_sym_DASH] = ACTIONS(695), + [anon_sym_SLASH] = ACTIONS(695), + [anon_sym_PERCENT] = ACTIONS(695), + [anon_sym_CARET] = ACTIONS(695), + [anon_sym_BANG] = ACTIONS(695), + [anon_sym_AMP] = ACTIONS(695), + [anon_sym_PIPE] = ACTIONS(695), + [anon_sym_AMP_AMP] = ACTIONS(685), + [anon_sym_PIPE_PIPE] = ACTIONS(685), + [anon_sym_LT_LT] = ACTIONS(695), + [anon_sym_GT_GT] = ACTIONS(695), + [anon_sym_PLUS_EQ] = ACTIONS(685), + [anon_sym_DASH_EQ] = ACTIONS(685), + [anon_sym_STAR_EQ] = ACTIONS(685), + [anon_sym_SLASH_EQ] = ACTIONS(685), + [anon_sym_PERCENT_EQ] = ACTIONS(685), + [anon_sym_CARET_EQ] = ACTIONS(685), + [anon_sym_AMP_EQ] = ACTIONS(685), + [anon_sym_PIPE_EQ] = ACTIONS(685), + [anon_sym_LT_LT_EQ] = ACTIONS(685), + [anon_sym_GT_GT_EQ] = ACTIONS(685), + [anon_sym_EQ] = ACTIONS(695), + [anon_sym_EQ_EQ] = ACTIONS(685), + [anon_sym_BANG_EQ] = ACTIONS(685), + [anon_sym_GT] = ACTIONS(695), + [anon_sym_LT] = ACTIONS(695), + [anon_sym_GT_EQ] = ACTIONS(685), + [anon_sym_LT_EQ] = ACTIONS(685), + [anon_sym_AT] = ACTIONS(685), + [anon_sym__] = ACTIONS(695), + [anon_sym_DOT] = ACTIONS(695), + [anon_sym_DOT_DOT] = ACTIONS(695), + [anon_sym_DOT_DOT_DOT] = ACTIONS(685), + [anon_sym_DOT_DOT_EQ] = ACTIONS(685), + [anon_sym_COMMA] = ACTIONS(685), + [anon_sym_COLON_COLON] = ACTIONS(685), + [anon_sym_DASH_GT] = ACTIONS(685), + [anon_sym_POUND] = ACTIONS(685), + [anon_sym_SQUOTE] = ACTIONS(683), + [anon_sym_as] = ACTIONS(683), + [anon_sym_async] = ACTIONS(683), + [anon_sym_await] = ACTIONS(683), + [anon_sym_break] = ACTIONS(683), + [anon_sym_const] = ACTIONS(683), + [anon_sym_continue] = ACTIONS(683), + [anon_sym_default] = ACTIONS(683), + [anon_sym_enum] = ACTIONS(683), + [anon_sym_fn] = ACTIONS(683), + [anon_sym_for] = ACTIONS(683), + [anon_sym_gen] = ACTIONS(683), + [anon_sym_if] = ACTIONS(683), + [anon_sym_impl] = ACTIONS(683), + [anon_sym_let] = ACTIONS(683), + [anon_sym_loop] = ACTIONS(683), + [anon_sym_match] = ACTIONS(683), + [anon_sym_mod] = ACTIONS(683), + [anon_sym_pub] = ACTIONS(683), + [anon_sym_return] = ACTIONS(683), + [anon_sym_static] = ACTIONS(683), + [anon_sym_struct] = ACTIONS(683), + [anon_sym_trait] = ACTIONS(683), + [anon_sym_type] = ACTIONS(683), + [anon_sym_union] = ACTIONS(683), + [anon_sym_unsafe] = ACTIONS(683), + [anon_sym_use] = ACTIONS(683), + [anon_sym_where] = ACTIONS(683), + [anon_sym_while] = ACTIONS(683), + [sym_mutable_specifier] = ACTIONS(683), + [sym_integer_literal] = ACTIONS(699), + [aux_sym_string_literal_token1] = ACTIONS(701), + [sym_char_literal] = ACTIONS(699), + [anon_sym_true] = ACTIONS(703), + [anon_sym_false] = ACTIONS(703), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(683), + [sym_super] = ACTIONS(683), + [sym_crate] = ACTIONS(683), + [sym__raw_string_literal_start] = ACTIONS(705), + [sym_float_literal] = ACTIONS(699), }, [STATE(110)] = { - [sym_delim_token_tree] = STATE(200), - [sym__delim_tokens] = STATE(208), - [sym__non_delim_token] = STATE(200), - [sym__literal] = STATE(210), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), + [sym_delim_token_tree] = STATE(206), + [sym__delim_tokens] = STATE(213), + [sym__non_delim_token] = STATE(206), + [sym__literal] = STATE(201), + [sym_string_literal] = STATE(219), + [sym_raw_string_literal] = STATE(219), + [sym_boolean_literal] = STATE(219), [sym_line_comment] = STATE(110), [sym_block_comment] = STATE(110), - [aux_sym__non_special_token_repeat1] = STATE(147), + [aux_sym__non_special_token_repeat1] = STATE(176), [aux_sym_delim_token_tree_repeat1] = STATE(83), - [sym_identifier] = ACTIONS(678), - [anon_sym_SEMI] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(682), - [anon_sym_LBRACK] = ACTIONS(684), - [anon_sym_LBRACE] = ACTIONS(688), - [anon_sym_RBRACE] = ACTIONS(734), - [anon_sym_EQ_GT] = ACTIONS(680), - [anon_sym_COLON] = ACTIONS(690), - [anon_sym_DOLLAR] = ACTIONS(692), - [anon_sym_PLUS] = ACTIONS(690), - [anon_sym_STAR] = ACTIONS(690), - [anon_sym_QMARK] = ACTIONS(680), - [anon_sym_u8] = ACTIONS(678), - [anon_sym_i8] = ACTIONS(678), - [anon_sym_u16] = ACTIONS(678), - [anon_sym_i16] = ACTIONS(678), - [anon_sym_u32] = ACTIONS(678), - [anon_sym_i32] = ACTIONS(678), - [anon_sym_u64] = ACTIONS(678), - [anon_sym_i64] = ACTIONS(678), - [anon_sym_u128] = ACTIONS(678), - [anon_sym_i128] = ACTIONS(678), - [anon_sym_isize] = ACTIONS(678), - [anon_sym_usize] = ACTIONS(678), - [anon_sym_f32] = ACTIONS(678), - [anon_sym_f64] = ACTIONS(678), - [anon_sym_bool] = ACTIONS(678), - [anon_sym_str] = ACTIONS(678), - [anon_sym_char] = ACTIONS(678), - [anon_sym_DASH] = ACTIONS(690), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_PERCENT] = ACTIONS(690), - [anon_sym_CARET] = ACTIONS(690), - [anon_sym_BANG] = ACTIONS(690), - [anon_sym_AMP] = ACTIONS(690), - [anon_sym_PIPE] = ACTIONS(690), - [anon_sym_AMP_AMP] = ACTIONS(680), - [anon_sym_PIPE_PIPE] = ACTIONS(680), - [anon_sym_LT_LT] = ACTIONS(690), - [anon_sym_GT_GT] = ACTIONS(690), - [anon_sym_PLUS_EQ] = ACTIONS(680), - [anon_sym_DASH_EQ] = ACTIONS(680), - [anon_sym_STAR_EQ] = ACTIONS(680), - [anon_sym_SLASH_EQ] = ACTIONS(680), - [anon_sym_PERCENT_EQ] = ACTIONS(680), - [anon_sym_CARET_EQ] = ACTIONS(680), - [anon_sym_AMP_EQ] = ACTIONS(680), - [anon_sym_PIPE_EQ] = ACTIONS(680), - [anon_sym_LT_LT_EQ] = ACTIONS(680), - [anon_sym_GT_GT_EQ] = ACTIONS(680), - [anon_sym_EQ] = ACTIONS(690), - [anon_sym_EQ_EQ] = ACTIONS(680), - [anon_sym_BANG_EQ] = ACTIONS(680), - [anon_sym_GT] = ACTIONS(690), - [anon_sym_LT] = ACTIONS(690), - [anon_sym_GT_EQ] = ACTIONS(680), - [anon_sym_LT_EQ] = ACTIONS(680), - [anon_sym_AT] = ACTIONS(680), - [anon_sym__] = ACTIONS(690), - [anon_sym_DOT] = ACTIONS(690), - [anon_sym_DOT_DOT] = ACTIONS(690), - [anon_sym_DOT_DOT_DOT] = ACTIONS(680), - [anon_sym_DOT_DOT_EQ] = ACTIONS(680), - [anon_sym_COMMA] = ACTIONS(680), - [anon_sym_COLON_COLON] = ACTIONS(680), - [anon_sym_DASH_GT] = ACTIONS(680), - [anon_sym_POUND] = ACTIONS(680), - [anon_sym_SQUOTE] = ACTIONS(678), - [anon_sym_as] = ACTIONS(678), - [anon_sym_async] = ACTIONS(678), - [anon_sym_await] = ACTIONS(678), - [anon_sym_break] = ACTIONS(678), - [anon_sym_const] = ACTIONS(678), - [anon_sym_continue] = ACTIONS(678), - [anon_sym_default] = ACTIONS(678), - [anon_sym_enum] = ACTIONS(678), - [anon_sym_fn] = ACTIONS(678), - [anon_sym_for] = ACTIONS(678), - [anon_sym_gen] = ACTIONS(678), - [anon_sym_if] = ACTIONS(678), - [anon_sym_impl] = ACTIONS(678), - [anon_sym_let] = ACTIONS(678), - [anon_sym_loop] = ACTIONS(678), - [anon_sym_match] = ACTIONS(678), - [anon_sym_mod] = ACTIONS(678), - [anon_sym_pub] = ACTIONS(678), - [anon_sym_return] = ACTIONS(678), - [anon_sym_static] = ACTIONS(678), - [anon_sym_struct] = ACTIONS(678), - [anon_sym_trait] = ACTIONS(678), - [anon_sym_type] = ACTIONS(678), - [anon_sym_union] = ACTIONS(678), - [anon_sym_unsafe] = ACTIONS(678), - [anon_sym_use] = ACTIONS(678), - [anon_sym_where] = ACTIONS(678), - [anon_sym_while] = ACTIONS(678), - [sym_mutable_specifier] = ACTIONS(678), - [sym_integer_literal] = ACTIONS(694), - [aux_sym_string_literal_token1] = ACTIONS(696), - [sym_char_literal] = ACTIONS(694), - [anon_sym_true] = ACTIONS(698), - [anon_sym_false] = ACTIONS(698), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(678), - [sym_super] = ACTIONS(678), - [sym_crate] = ACTIONS(678), - [sym__raw_string_literal_start] = ACTIONS(700), - [sym_float_literal] = ACTIONS(694), + [sym_identifier] = ACTIONS(683), + [anon_sym_SEMI] = ACTIONS(685), + [anon_sym_LPAREN] = ACTIONS(687), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_RBRACK] = ACTIONS(735), + [anon_sym_LBRACE] = ACTIONS(693), + [anon_sym_EQ_GT] = ACTIONS(685), + [anon_sym_COLON] = ACTIONS(695), + [anon_sym_DOLLAR] = ACTIONS(697), + [anon_sym_PLUS] = ACTIONS(695), + [anon_sym_STAR] = ACTIONS(695), + [anon_sym_QMARK] = ACTIONS(685), + [anon_sym_u8] = ACTIONS(683), + [anon_sym_i8] = ACTIONS(683), + [anon_sym_u16] = ACTIONS(683), + [anon_sym_i16] = ACTIONS(683), + [anon_sym_u32] = ACTIONS(683), + [anon_sym_i32] = ACTIONS(683), + [anon_sym_u64] = ACTIONS(683), + [anon_sym_i64] = ACTIONS(683), + [anon_sym_u128] = ACTIONS(683), + [anon_sym_i128] = ACTIONS(683), + [anon_sym_isize] = ACTIONS(683), + [anon_sym_usize] = ACTIONS(683), + [anon_sym_f32] = ACTIONS(683), + [anon_sym_f64] = ACTIONS(683), + [anon_sym_bool] = ACTIONS(683), + [anon_sym_str] = ACTIONS(683), + [anon_sym_char] = ACTIONS(683), + [anon_sym_DASH] = ACTIONS(695), + [anon_sym_SLASH] = ACTIONS(695), + [anon_sym_PERCENT] = ACTIONS(695), + [anon_sym_CARET] = ACTIONS(695), + [anon_sym_BANG] = ACTIONS(695), + [anon_sym_AMP] = ACTIONS(695), + [anon_sym_PIPE] = ACTIONS(695), + [anon_sym_AMP_AMP] = ACTIONS(685), + [anon_sym_PIPE_PIPE] = ACTIONS(685), + [anon_sym_LT_LT] = ACTIONS(695), + [anon_sym_GT_GT] = ACTIONS(695), + [anon_sym_PLUS_EQ] = ACTIONS(685), + [anon_sym_DASH_EQ] = ACTIONS(685), + [anon_sym_STAR_EQ] = ACTIONS(685), + [anon_sym_SLASH_EQ] = ACTIONS(685), + [anon_sym_PERCENT_EQ] = ACTIONS(685), + [anon_sym_CARET_EQ] = ACTIONS(685), + [anon_sym_AMP_EQ] = ACTIONS(685), + [anon_sym_PIPE_EQ] = ACTIONS(685), + [anon_sym_LT_LT_EQ] = ACTIONS(685), + [anon_sym_GT_GT_EQ] = ACTIONS(685), + [anon_sym_EQ] = ACTIONS(695), + [anon_sym_EQ_EQ] = ACTIONS(685), + [anon_sym_BANG_EQ] = ACTIONS(685), + [anon_sym_GT] = ACTIONS(695), + [anon_sym_LT] = ACTIONS(695), + [anon_sym_GT_EQ] = ACTIONS(685), + [anon_sym_LT_EQ] = ACTIONS(685), + [anon_sym_AT] = ACTIONS(685), + [anon_sym__] = ACTIONS(695), + [anon_sym_DOT] = ACTIONS(695), + [anon_sym_DOT_DOT] = ACTIONS(695), + [anon_sym_DOT_DOT_DOT] = ACTIONS(685), + [anon_sym_DOT_DOT_EQ] = ACTIONS(685), + [anon_sym_COMMA] = ACTIONS(685), + [anon_sym_COLON_COLON] = ACTIONS(685), + [anon_sym_DASH_GT] = ACTIONS(685), + [anon_sym_POUND] = ACTIONS(685), + [anon_sym_SQUOTE] = ACTIONS(683), + [anon_sym_as] = ACTIONS(683), + [anon_sym_async] = ACTIONS(683), + [anon_sym_await] = ACTIONS(683), + [anon_sym_break] = ACTIONS(683), + [anon_sym_const] = ACTIONS(683), + [anon_sym_continue] = ACTIONS(683), + [anon_sym_default] = ACTIONS(683), + [anon_sym_enum] = ACTIONS(683), + [anon_sym_fn] = ACTIONS(683), + [anon_sym_for] = ACTIONS(683), + [anon_sym_gen] = ACTIONS(683), + [anon_sym_if] = ACTIONS(683), + [anon_sym_impl] = ACTIONS(683), + [anon_sym_let] = ACTIONS(683), + [anon_sym_loop] = ACTIONS(683), + [anon_sym_match] = ACTIONS(683), + [anon_sym_mod] = ACTIONS(683), + [anon_sym_pub] = ACTIONS(683), + [anon_sym_return] = ACTIONS(683), + [anon_sym_static] = ACTIONS(683), + [anon_sym_struct] = ACTIONS(683), + [anon_sym_trait] = ACTIONS(683), + [anon_sym_type] = ACTIONS(683), + [anon_sym_union] = ACTIONS(683), + [anon_sym_unsafe] = ACTIONS(683), + [anon_sym_use] = ACTIONS(683), + [anon_sym_where] = ACTIONS(683), + [anon_sym_while] = ACTIONS(683), + [sym_mutable_specifier] = ACTIONS(683), + [sym_integer_literal] = ACTIONS(699), + [aux_sym_string_literal_token1] = ACTIONS(701), + [sym_char_literal] = ACTIONS(699), + [anon_sym_true] = ACTIONS(703), + [anon_sym_false] = ACTIONS(703), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(683), + [sym_super] = ACTIONS(683), + [sym_crate] = ACTIONS(683), + [sym__raw_string_literal_start] = ACTIONS(705), + [sym_float_literal] = ACTIONS(699), }, [STATE(111)] = { - [sym_delim_token_tree] = STATE(200), - [sym__delim_tokens] = STATE(208), - [sym__non_delim_token] = STATE(200), - [sym__literal] = STATE(210), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), + [sym_delim_token_tree] = STATE(206), + [sym__delim_tokens] = STATE(213), + [sym__non_delim_token] = STATE(206), + [sym__literal] = STATE(201), + [sym_string_literal] = STATE(219), + [sym_raw_string_literal] = STATE(219), + [sym_boolean_literal] = STATE(219), [sym_line_comment] = STATE(111), [sym_block_comment] = STATE(111), - [aux_sym__non_special_token_repeat1] = STATE(147), - [aux_sym_delim_token_tree_repeat1] = STATE(114), - [sym_identifier] = ACTIONS(678), - [anon_sym_SEMI] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(682), - [anon_sym_RPAREN] = ACTIONS(736), - [anon_sym_LBRACK] = ACTIONS(684), - [anon_sym_LBRACE] = ACTIONS(688), - [anon_sym_EQ_GT] = ACTIONS(680), - [anon_sym_COLON] = ACTIONS(690), - [anon_sym_DOLLAR] = ACTIONS(692), - [anon_sym_PLUS] = ACTIONS(690), - [anon_sym_STAR] = ACTIONS(690), - [anon_sym_QMARK] = ACTIONS(680), - [anon_sym_u8] = ACTIONS(678), - [anon_sym_i8] = ACTIONS(678), - [anon_sym_u16] = ACTIONS(678), - [anon_sym_i16] = ACTIONS(678), - [anon_sym_u32] = ACTIONS(678), - [anon_sym_i32] = ACTIONS(678), - [anon_sym_u64] = ACTIONS(678), - [anon_sym_i64] = ACTIONS(678), - [anon_sym_u128] = ACTIONS(678), - [anon_sym_i128] = ACTIONS(678), - [anon_sym_isize] = ACTIONS(678), - [anon_sym_usize] = ACTIONS(678), - [anon_sym_f32] = ACTIONS(678), - [anon_sym_f64] = ACTIONS(678), - [anon_sym_bool] = ACTIONS(678), - [anon_sym_str] = ACTIONS(678), - [anon_sym_char] = ACTIONS(678), - [anon_sym_DASH] = ACTIONS(690), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_PERCENT] = ACTIONS(690), - [anon_sym_CARET] = ACTIONS(690), - [anon_sym_BANG] = ACTIONS(690), - [anon_sym_AMP] = ACTIONS(690), - [anon_sym_PIPE] = ACTIONS(690), - [anon_sym_AMP_AMP] = ACTIONS(680), - [anon_sym_PIPE_PIPE] = ACTIONS(680), - [anon_sym_LT_LT] = ACTIONS(690), - [anon_sym_GT_GT] = ACTIONS(690), - [anon_sym_PLUS_EQ] = ACTIONS(680), - [anon_sym_DASH_EQ] = ACTIONS(680), - [anon_sym_STAR_EQ] = ACTIONS(680), - [anon_sym_SLASH_EQ] = ACTIONS(680), - [anon_sym_PERCENT_EQ] = ACTIONS(680), - [anon_sym_CARET_EQ] = ACTIONS(680), - [anon_sym_AMP_EQ] = ACTIONS(680), - [anon_sym_PIPE_EQ] = ACTIONS(680), - [anon_sym_LT_LT_EQ] = ACTIONS(680), - [anon_sym_GT_GT_EQ] = ACTIONS(680), - [anon_sym_EQ] = ACTIONS(690), - [anon_sym_EQ_EQ] = ACTIONS(680), - [anon_sym_BANG_EQ] = ACTIONS(680), - [anon_sym_GT] = ACTIONS(690), - [anon_sym_LT] = ACTIONS(690), - [anon_sym_GT_EQ] = ACTIONS(680), - [anon_sym_LT_EQ] = ACTIONS(680), - [anon_sym_AT] = ACTIONS(680), - [anon_sym__] = ACTIONS(690), - [anon_sym_DOT] = ACTIONS(690), - [anon_sym_DOT_DOT] = ACTIONS(690), - [anon_sym_DOT_DOT_DOT] = ACTIONS(680), - [anon_sym_DOT_DOT_EQ] = ACTIONS(680), - [anon_sym_COMMA] = ACTIONS(680), - [anon_sym_COLON_COLON] = ACTIONS(680), - [anon_sym_DASH_GT] = ACTIONS(680), - [anon_sym_POUND] = ACTIONS(680), - [anon_sym_SQUOTE] = ACTIONS(678), - [anon_sym_as] = ACTIONS(678), - [anon_sym_async] = ACTIONS(678), - [anon_sym_await] = ACTIONS(678), - [anon_sym_break] = ACTIONS(678), - [anon_sym_const] = ACTIONS(678), - [anon_sym_continue] = ACTIONS(678), - [anon_sym_default] = ACTIONS(678), - [anon_sym_enum] = ACTIONS(678), - [anon_sym_fn] = ACTIONS(678), - [anon_sym_for] = ACTIONS(678), - [anon_sym_gen] = ACTIONS(678), - [anon_sym_if] = ACTIONS(678), - [anon_sym_impl] = ACTIONS(678), - [anon_sym_let] = ACTIONS(678), - [anon_sym_loop] = ACTIONS(678), - [anon_sym_match] = ACTIONS(678), - [anon_sym_mod] = ACTIONS(678), - [anon_sym_pub] = ACTIONS(678), - [anon_sym_return] = ACTIONS(678), - [anon_sym_static] = ACTIONS(678), - [anon_sym_struct] = ACTIONS(678), - [anon_sym_trait] = ACTIONS(678), - [anon_sym_type] = ACTIONS(678), - [anon_sym_union] = ACTIONS(678), - [anon_sym_unsafe] = ACTIONS(678), - [anon_sym_use] = ACTIONS(678), - [anon_sym_where] = ACTIONS(678), - [anon_sym_while] = ACTIONS(678), - [sym_mutable_specifier] = ACTIONS(678), - [sym_integer_literal] = ACTIONS(694), - [aux_sym_string_literal_token1] = ACTIONS(696), - [sym_char_literal] = ACTIONS(694), - [anon_sym_true] = ACTIONS(698), - [anon_sym_false] = ACTIONS(698), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(678), - [sym_super] = ACTIONS(678), - [sym_crate] = ACTIONS(678), - [sym__raw_string_literal_start] = ACTIONS(700), - [sym_float_literal] = ACTIONS(694), + [aux_sym__non_special_token_repeat1] = STATE(176), + [aux_sym_delim_token_tree_repeat1] = STATE(83), + [sym_identifier] = ACTIONS(683), + [anon_sym_SEMI] = ACTIONS(685), + [anon_sym_LPAREN] = ACTIONS(687), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_LBRACE] = ACTIONS(693), + [anon_sym_RBRACE] = ACTIONS(735), + [anon_sym_EQ_GT] = ACTIONS(685), + [anon_sym_COLON] = ACTIONS(695), + [anon_sym_DOLLAR] = ACTIONS(697), + [anon_sym_PLUS] = ACTIONS(695), + [anon_sym_STAR] = ACTIONS(695), + [anon_sym_QMARK] = ACTIONS(685), + [anon_sym_u8] = ACTIONS(683), + [anon_sym_i8] = ACTIONS(683), + [anon_sym_u16] = ACTIONS(683), + [anon_sym_i16] = ACTIONS(683), + [anon_sym_u32] = ACTIONS(683), + [anon_sym_i32] = ACTIONS(683), + [anon_sym_u64] = ACTIONS(683), + [anon_sym_i64] = ACTIONS(683), + [anon_sym_u128] = ACTIONS(683), + [anon_sym_i128] = ACTIONS(683), + [anon_sym_isize] = ACTIONS(683), + [anon_sym_usize] = ACTIONS(683), + [anon_sym_f32] = ACTIONS(683), + [anon_sym_f64] = ACTIONS(683), + [anon_sym_bool] = ACTIONS(683), + [anon_sym_str] = ACTIONS(683), + [anon_sym_char] = ACTIONS(683), + [anon_sym_DASH] = ACTIONS(695), + [anon_sym_SLASH] = ACTIONS(695), + [anon_sym_PERCENT] = ACTIONS(695), + [anon_sym_CARET] = ACTIONS(695), + [anon_sym_BANG] = ACTIONS(695), + [anon_sym_AMP] = ACTIONS(695), + [anon_sym_PIPE] = ACTIONS(695), + [anon_sym_AMP_AMP] = ACTIONS(685), + [anon_sym_PIPE_PIPE] = ACTIONS(685), + [anon_sym_LT_LT] = ACTIONS(695), + [anon_sym_GT_GT] = ACTIONS(695), + [anon_sym_PLUS_EQ] = ACTIONS(685), + [anon_sym_DASH_EQ] = ACTIONS(685), + [anon_sym_STAR_EQ] = ACTIONS(685), + [anon_sym_SLASH_EQ] = ACTIONS(685), + [anon_sym_PERCENT_EQ] = ACTIONS(685), + [anon_sym_CARET_EQ] = ACTIONS(685), + [anon_sym_AMP_EQ] = ACTIONS(685), + [anon_sym_PIPE_EQ] = ACTIONS(685), + [anon_sym_LT_LT_EQ] = ACTIONS(685), + [anon_sym_GT_GT_EQ] = ACTIONS(685), + [anon_sym_EQ] = ACTIONS(695), + [anon_sym_EQ_EQ] = ACTIONS(685), + [anon_sym_BANG_EQ] = ACTIONS(685), + [anon_sym_GT] = ACTIONS(695), + [anon_sym_LT] = ACTIONS(695), + [anon_sym_GT_EQ] = ACTIONS(685), + [anon_sym_LT_EQ] = ACTIONS(685), + [anon_sym_AT] = ACTIONS(685), + [anon_sym__] = ACTIONS(695), + [anon_sym_DOT] = ACTIONS(695), + [anon_sym_DOT_DOT] = ACTIONS(695), + [anon_sym_DOT_DOT_DOT] = ACTIONS(685), + [anon_sym_DOT_DOT_EQ] = ACTIONS(685), + [anon_sym_COMMA] = ACTIONS(685), + [anon_sym_COLON_COLON] = ACTIONS(685), + [anon_sym_DASH_GT] = ACTIONS(685), + [anon_sym_POUND] = ACTIONS(685), + [anon_sym_SQUOTE] = ACTIONS(683), + [anon_sym_as] = ACTIONS(683), + [anon_sym_async] = ACTIONS(683), + [anon_sym_await] = ACTIONS(683), + [anon_sym_break] = ACTIONS(683), + [anon_sym_const] = ACTIONS(683), + [anon_sym_continue] = ACTIONS(683), + [anon_sym_default] = ACTIONS(683), + [anon_sym_enum] = ACTIONS(683), + [anon_sym_fn] = ACTIONS(683), + [anon_sym_for] = ACTIONS(683), + [anon_sym_gen] = ACTIONS(683), + [anon_sym_if] = ACTIONS(683), + [anon_sym_impl] = ACTIONS(683), + [anon_sym_let] = ACTIONS(683), + [anon_sym_loop] = ACTIONS(683), + [anon_sym_match] = ACTIONS(683), + [anon_sym_mod] = ACTIONS(683), + [anon_sym_pub] = ACTIONS(683), + [anon_sym_return] = ACTIONS(683), + [anon_sym_static] = ACTIONS(683), + [anon_sym_struct] = ACTIONS(683), + [anon_sym_trait] = ACTIONS(683), + [anon_sym_type] = ACTIONS(683), + [anon_sym_union] = ACTIONS(683), + [anon_sym_unsafe] = ACTIONS(683), + [anon_sym_use] = ACTIONS(683), + [anon_sym_where] = ACTIONS(683), + [anon_sym_while] = ACTIONS(683), + [sym_mutable_specifier] = ACTIONS(683), + [sym_integer_literal] = ACTIONS(699), + [aux_sym_string_literal_token1] = ACTIONS(701), + [sym_char_literal] = ACTIONS(699), + [anon_sym_true] = ACTIONS(703), + [anon_sym_false] = ACTIONS(703), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(683), + [sym_super] = ACTIONS(683), + [sym_crate] = ACTIONS(683), + [sym__raw_string_literal_start] = ACTIONS(705), + [sym_float_literal] = ACTIONS(699), }, [STATE(112)] = { - [sym_delim_token_tree] = STATE(200), - [sym__delim_tokens] = STATE(208), - [sym__non_delim_token] = STATE(200), - [sym__literal] = STATE(210), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), + [sym_token_tree] = STATE(163), + [sym_token_repetition] = STATE(163), + [sym__literal] = STATE(163), + [sym_string_literal] = STATE(184), + [sym_raw_string_literal] = STATE(184), + [sym_boolean_literal] = STATE(184), [sym_line_comment] = STATE(112), [sym_block_comment] = STATE(112), - [aux_sym__non_special_token_repeat1] = STATE(147), - [aux_sym_delim_token_tree_repeat1] = STATE(115), - [sym_identifier] = ACTIONS(678), - [anon_sym_SEMI] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(682), - [anon_sym_LBRACK] = ACTIONS(684), - [anon_sym_RBRACK] = ACTIONS(736), - [anon_sym_LBRACE] = ACTIONS(688), - [anon_sym_EQ_GT] = ACTIONS(680), - [anon_sym_COLON] = ACTIONS(690), - [anon_sym_DOLLAR] = ACTIONS(692), - [anon_sym_PLUS] = ACTIONS(690), - [anon_sym_STAR] = ACTIONS(690), - [anon_sym_QMARK] = ACTIONS(680), - [anon_sym_u8] = ACTIONS(678), - [anon_sym_i8] = ACTIONS(678), - [anon_sym_u16] = ACTIONS(678), - [anon_sym_i16] = ACTIONS(678), - [anon_sym_u32] = ACTIONS(678), - [anon_sym_i32] = ACTIONS(678), - [anon_sym_u64] = ACTIONS(678), - [anon_sym_i64] = ACTIONS(678), - [anon_sym_u128] = ACTIONS(678), - [anon_sym_i128] = ACTIONS(678), - [anon_sym_isize] = ACTIONS(678), - [anon_sym_usize] = ACTIONS(678), - [anon_sym_f32] = ACTIONS(678), - [anon_sym_f64] = ACTIONS(678), - [anon_sym_bool] = ACTIONS(678), - [anon_sym_str] = ACTIONS(678), - [anon_sym_char] = ACTIONS(678), - [anon_sym_DASH] = ACTIONS(690), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_PERCENT] = ACTIONS(690), - [anon_sym_CARET] = ACTIONS(690), - [anon_sym_BANG] = ACTIONS(690), - [anon_sym_AMP] = ACTIONS(690), - [anon_sym_PIPE] = ACTIONS(690), - [anon_sym_AMP_AMP] = ACTIONS(680), - [anon_sym_PIPE_PIPE] = ACTIONS(680), - [anon_sym_LT_LT] = ACTIONS(690), - [anon_sym_GT_GT] = ACTIONS(690), - [anon_sym_PLUS_EQ] = ACTIONS(680), - [anon_sym_DASH_EQ] = ACTIONS(680), - [anon_sym_STAR_EQ] = ACTIONS(680), - [anon_sym_SLASH_EQ] = ACTIONS(680), - [anon_sym_PERCENT_EQ] = ACTIONS(680), - [anon_sym_CARET_EQ] = ACTIONS(680), - [anon_sym_AMP_EQ] = ACTIONS(680), - [anon_sym_PIPE_EQ] = ACTIONS(680), - [anon_sym_LT_LT_EQ] = ACTIONS(680), - [anon_sym_GT_GT_EQ] = ACTIONS(680), - [anon_sym_EQ] = ACTIONS(690), - [anon_sym_EQ_EQ] = ACTIONS(680), - [anon_sym_BANG_EQ] = ACTIONS(680), - [anon_sym_GT] = ACTIONS(690), - [anon_sym_LT] = ACTIONS(690), - [anon_sym_GT_EQ] = ACTIONS(680), - [anon_sym_LT_EQ] = ACTIONS(680), - [anon_sym_AT] = ACTIONS(680), - [anon_sym__] = ACTIONS(690), - [anon_sym_DOT] = ACTIONS(690), - [anon_sym_DOT_DOT] = ACTIONS(690), - [anon_sym_DOT_DOT_DOT] = ACTIONS(680), - [anon_sym_DOT_DOT_EQ] = ACTIONS(680), - [anon_sym_COMMA] = ACTIONS(680), - [anon_sym_COLON_COLON] = ACTIONS(680), - [anon_sym_DASH_GT] = ACTIONS(680), - [anon_sym_POUND] = ACTIONS(680), - [anon_sym_SQUOTE] = ACTIONS(678), - [anon_sym_as] = ACTIONS(678), - [anon_sym_async] = ACTIONS(678), - [anon_sym_await] = ACTIONS(678), - [anon_sym_break] = ACTIONS(678), - [anon_sym_const] = ACTIONS(678), - [anon_sym_continue] = ACTIONS(678), - [anon_sym_default] = ACTIONS(678), - [anon_sym_enum] = ACTIONS(678), - [anon_sym_fn] = ACTIONS(678), - [anon_sym_for] = ACTIONS(678), - [anon_sym_gen] = ACTIONS(678), - [anon_sym_if] = ACTIONS(678), - [anon_sym_impl] = ACTIONS(678), - [anon_sym_let] = ACTIONS(678), - [anon_sym_loop] = ACTIONS(678), - [anon_sym_match] = ACTIONS(678), - [anon_sym_mod] = ACTIONS(678), - [anon_sym_pub] = ACTIONS(678), - [anon_sym_return] = ACTIONS(678), - [anon_sym_static] = ACTIONS(678), - [anon_sym_struct] = ACTIONS(678), - [anon_sym_trait] = ACTIONS(678), - [anon_sym_type] = ACTIONS(678), - [anon_sym_union] = ACTIONS(678), - [anon_sym_unsafe] = ACTIONS(678), - [anon_sym_use] = ACTIONS(678), - [anon_sym_where] = ACTIONS(678), - [anon_sym_while] = ACTIONS(678), - [sym_mutable_specifier] = ACTIONS(678), - [sym_integer_literal] = ACTIONS(694), - [aux_sym_string_literal_token1] = ACTIONS(696), - [sym_char_literal] = ACTIONS(694), - [anon_sym_true] = ACTIONS(698), - [anon_sym_false] = ACTIONS(698), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(678), - [sym_super] = ACTIONS(678), - [sym_crate] = ACTIONS(678), - [sym__raw_string_literal_start] = ACTIONS(700), - [sym_float_literal] = ACTIONS(694), - }, - [STATE(113)] = { - [sym_delim_token_tree] = STATE(200), - [sym__delim_tokens] = STATE(208), - [sym__non_delim_token] = STATE(200), - [sym__literal] = STATE(210), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), - [sym_line_comment] = STATE(113), - [sym_block_comment] = STATE(113), - [aux_sym__non_special_token_repeat1] = STATE(147), - [aux_sym_delim_token_tree_repeat1] = STATE(116), - [sym_identifier] = ACTIONS(678), - [anon_sym_SEMI] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(682), - [anon_sym_LBRACK] = ACTIONS(684), - [anon_sym_LBRACE] = ACTIONS(688), - [anon_sym_RBRACE] = ACTIONS(736), - [anon_sym_EQ_GT] = ACTIONS(680), - [anon_sym_COLON] = ACTIONS(690), - [anon_sym_DOLLAR] = ACTIONS(692), - [anon_sym_PLUS] = ACTIONS(690), - [anon_sym_STAR] = ACTIONS(690), - [anon_sym_QMARK] = ACTIONS(680), - [anon_sym_u8] = ACTIONS(678), - [anon_sym_i8] = ACTIONS(678), - [anon_sym_u16] = ACTIONS(678), - [anon_sym_i16] = ACTIONS(678), - [anon_sym_u32] = ACTIONS(678), - [anon_sym_i32] = ACTIONS(678), - [anon_sym_u64] = ACTIONS(678), - [anon_sym_i64] = ACTIONS(678), - [anon_sym_u128] = ACTIONS(678), - [anon_sym_i128] = ACTIONS(678), - [anon_sym_isize] = ACTIONS(678), - [anon_sym_usize] = ACTIONS(678), - [anon_sym_f32] = ACTIONS(678), - [anon_sym_f64] = ACTIONS(678), - [anon_sym_bool] = ACTIONS(678), - [anon_sym_str] = ACTIONS(678), - [anon_sym_char] = ACTIONS(678), - [anon_sym_DASH] = ACTIONS(690), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_PERCENT] = ACTIONS(690), - [anon_sym_CARET] = ACTIONS(690), - [anon_sym_BANG] = ACTIONS(690), - [anon_sym_AMP] = ACTIONS(690), - [anon_sym_PIPE] = ACTIONS(690), - [anon_sym_AMP_AMP] = ACTIONS(680), - [anon_sym_PIPE_PIPE] = ACTIONS(680), - [anon_sym_LT_LT] = ACTIONS(690), - [anon_sym_GT_GT] = ACTIONS(690), - [anon_sym_PLUS_EQ] = ACTIONS(680), - [anon_sym_DASH_EQ] = ACTIONS(680), - [anon_sym_STAR_EQ] = ACTIONS(680), - [anon_sym_SLASH_EQ] = ACTIONS(680), - [anon_sym_PERCENT_EQ] = ACTIONS(680), - [anon_sym_CARET_EQ] = ACTIONS(680), - [anon_sym_AMP_EQ] = ACTIONS(680), - [anon_sym_PIPE_EQ] = ACTIONS(680), - [anon_sym_LT_LT_EQ] = ACTIONS(680), - [anon_sym_GT_GT_EQ] = ACTIONS(680), - [anon_sym_EQ] = ACTIONS(690), - [anon_sym_EQ_EQ] = ACTIONS(680), - [anon_sym_BANG_EQ] = ACTIONS(680), - [anon_sym_GT] = ACTIONS(690), - [anon_sym_LT] = ACTIONS(690), - [anon_sym_GT_EQ] = ACTIONS(680), - [anon_sym_LT_EQ] = ACTIONS(680), - [anon_sym_AT] = ACTIONS(680), - [anon_sym__] = ACTIONS(690), - [anon_sym_DOT] = ACTIONS(690), - [anon_sym_DOT_DOT] = ACTIONS(690), - [anon_sym_DOT_DOT_DOT] = ACTIONS(680), - [anon_sym_DOT_DOT_EQ] = ACTIONS(680), - [anon_sym_COMMA] = ACTIONS(680), - [anon_sym_COLON_COLON] = ACTIONS(680), - [anon_sym_DASH_GT] = ACTIONS(680), - [anon_sym_POUND] = ACTIONS(680), - [anon_sym_SQUOTE] = ACTIONS(678), - [anon_sym_as] = ACTIONS(678), - [anon_sym_async] = ACTIONS(678), - [anon_sym_await] = ACTIONS(678), - [anon_sym_break] = ACTIONS(678), - [anon_sym_const] = ACTIONS(678), - [anon_sym_continue] = ACTIONS(678), - [anon_sym_default] = ACTIONS(678), - [anon_sym_enum] = ACTIONS(678), - [anon_sym_fn] = ACTIONS(678), - [anon_sym_for] = ACTIONS(678), - [anon_sym_gen] = ACTIONS(678), - [anon_sym_if] = ACTIONS(678), - [anon_sym_impl] = ACTIONS(678), - [anon_sym_let] = ACTIONS(678), - [anon_sym_loop] = ACTIONS(678), - [anon_sym_match] = ACTIONS(678), - [anon_sym_mod] = ACTIONS(678), - [anon_sym_pub] = ACTIONS(678), - [anon_sym_return] = ACTIONS(678), - [anon_sym_static] = ACTIONS(678), - [anon_sym_struct] = ACTIONS(678), - [anon_sym_trait] = ACTIONS(678), - [anon_sym_type] = ACTIONS(678), - [anon_sym_union] = ACTIONS(678), - [anon_sym_unsafe] = ACTIONS(678), - [anon_sym_use] = ACTIONS(678), - [anon_sym_where] = ACTIONS(678), - [anon_sym_while] = ACTIONS(678), - [sym_mutable_specifier] = ACTIONS(678), - [sym_integer_literal] = ACTIONS(694), - [aux_sym_string_literal_token1] = ACTIONS(696), - [sym_char_literal] = ACTIONS(694), - [anon_sym_true] = ACTIONS(698), - [anon_sym_false] = ACTIONS(698), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(678), - [sym_super] = ACTIONS(678), - [sym_crate] = ACTIONS(678), - [sym__raw_string_literal_start] = ACTIONS(700), - [sym_float_literal] = ACTIONS(694), - }, - [STATE(114)] = { - [sym_delim_token_tree] = STATE(200), - [sym__delim_tokens] = STATE(208), - [sym__non_delim_token] = STATE(200), - [sym__literal] = STATE(210), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), - [sym_line_comment] = STATE(114), - [sym_block_comment] = STATE(114), - [aux_sym__non_special_token_repeat1] = STATE(147), - [aux_sym_delim_token_tree_repeat1] = STATE(83), - [sym_identifier] = ACTIONS(678), - [anon_sym_SEMI] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(682), - [anon_sym_RPAREN] = ACTIONS(738), - [anon_sym_LBRACK] = ACTIONS(684), - [anon_sym_LBRACE] = ACTIONS(688), - [anon_sym_EQ_GT] = ACTIONS(680), - [anon_sym_COLON] = ACTIONS(690), - [anon_sym_DOLLAR] = ACTIONS(692), - [anon_sym_PLUS] = ACTIONS(690), - [anon_sym_STAR] = ACTIONS(690), - [anon_sym_QMARK] = ACTIONS(680), - [anon_sym_u8] = ACTIONS(678), - [anon_sym_i8] = ACTIONS(678), - [anon_sym_u16] = ACTIONS(678), - [anon_sym_i16] = ACTIONS(678), - [anon_sym_u32] = ACTIONS(678), - [anon_sym_i32] = ACTIONS(678), - [anon_sym_u64] = ACTIONS(678), - [anon_sym_i64] = ACTIONS(678), - [anon_sym_u128] = ACTIONS(678), - [anon_sym_i128] = ACTIONS(678), - [anon_sym_isize] = ACTIONS(678), - [anon_sym_usize] = ACTIONS(678), - [anon_sym_f32] = ACTIONS(678), - [anon_sym_f64] = ACTIONS(678), - [anon_sym_bool] = ACTIONS(678), - [anon_sym_str] = ACTIONS(678), - [anon_sym_char] = ACTIONS(678), - [anon_sym_DASH] = ACTIONS(690), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_PERCENT] = ACTIONS(690), - [anon_sym_CARET] = ACTIONS(690), - [anon_sym_BANG] = ACTIONS(690), - [anon_sym_AMP] = ACTIONS(690), - [anon_sym_PIPE] = ACTIONS(690), - [anon_sym_AMP_AMP] = ACTIONS(680), - [anon_sym_PIPE_PIPE] = ACTIONS(680), - [anon_sym_LT_LT] = ACTIONS(690), - [anon_sym_GT_GT] = ACTIONS(690), - [anon_sym_PLUS_EQ] = ACTIONS(680), - [anon_sym_DASH_EQ] = ACTIONS(680), - [anon_sym_STAR_EQ] = ACTIONS(680), - [anon_sym_SLASH_EQ] = ACTIONS(680), - [anon_sym_PERCENT_EQ] = ACTIONS(680), - [anon_sym_CARET_EQ] = ACTIONS(680), - [anon_sym_AMP_EQ] = ACTIONS(680), - [anon_sym_PIPE_EQ] = ACTIONS(680), - [anon_sym_LT_LT_EQ] = ACTIONS(680), - [anon_sym_GT_GT_EQ] = ACTIONS(680), - [anon_sym_EQ] = ACTIONS(690), - [anon_sym_EQ_EQ] = ACTIONS(680), - [anon_sym_BANG_EQ] = ACTIONS(680), - [anon_sym_GT] = ACTIONS(690), - [anon_sym_LT] = ACTIONS(690), - [anon_sym_GT_EQ] = ACTIONS(680), - [anon_sym_LT_EQ] = ACTIONS(680), - [anon_sym_AT] = ACTIONS(680), - [anon_sym__] = ACTIONS(690), - [anon_sym_DOT] = ACTIONS(690), - [anon_sym_DOT_DOT] = ACTIONS(690), - [anon_sym_DOT_DOT_DOT] = ACTIONS(680), - [anon_sym_DOT_DOT_EQ] = ACTIONS(680), - [anon_sym_COMMA] = ACTIONS(680), - [anon_sym_COLON_COLON] = ACTIONS(680), - [anon_sym_DASH_GT] = ACTIONS(680), - [anon_sym_POUND] = ACTIONS(680), - [anon_sym_SQUOTE] = ACTIONS(678), - [anon_sym_as] = ACTIONS(678), - [anon_sym_async] = ACTIONS(678), - [anon_sym_await] = ACTIONS(678), - [anon_sym_break] = ACTIONS(678), - [anon_sym_const] = ACTIONS(678), - [anon_sym_continue] = ACTIONS(678), - [anon_sym_default] = ACTIONS(678), - [anon_sym_enum] = ACTIONS(678), - [anon_sym_fn] = ACTIONS(678), - [anon_sym_for] = ACTIONS(678), - [anon_sym_gen] = ACTIONS(678), - [anon_sym_if] = ACTIONS(678), - [anon_sym_impl] = ACTIONS(678), - [anon_sym_let] = ACTIONS(678), - [anon_sym_loop] = ACTIONS(678), - [anon_sym_match] = ACTIONS(678), - [anon_sym_mod] = ACTIONS(678), - [anon_sym_pub] = ACTIONS(678), - [anon_sym_return] = ACTIONS(678), - [anon_sym_static] = ACTIONS(678), - [anon_sym_struct] = ACTIONS(678), - [anon_sym_trait] = ACTIONS(678), - [anon_sym_type] = ACTIONS(678), - [anon_sym_union] = ACTIONS(678), - [anon_sym_unsafe] = ACTIONS(678), - [anon_sym_use] = ACTIONS(678), - [anon_sym_where] = ACTIONS(678), - [anon_sym_while] = ACTIONS(678), - [sym_mutable_specifier] = ACTIONS(678), - [sym_integer_literal] = ACTIONS(694), - [aux_sym_string_literal_token1] = ACTIONS(696), - [sym_char_literal] = ACTIONS(694), - [anon_sym_true] = ACTIONS(698), - [anon_sym_false] = ACTIONS(698), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(678), - [sym_super] = ACTIONS(678), - [sym_crate] = ACTIONS(678), - [sym__raw_string_literal_start] = ACTIONS(700), - [sym_float_literal] = ACTIONS(694), + [aux_sym_token_tree_repeat1] = STATE(82), + [aux_sym__non_special_token_repeat1] = STATE(141), + [sym_identifier] = ACTIONS(713), + [anon_sym_SEMI] = ACTIONS(576), + [anon_sym_LPAREN] = ACTIONS(715), + [anon_sym_RPAREN] = ACTIONS(737), + [anon_sym_LBRACK] = ACTIONS(719), + [anon_sym_LBRACE] = ACTIONS(721), + [anon_sym_EQ_GT] = ACTIONS(576), + [anon_sym_COLON] = ACTIONS(586), + [anon_sym_DOLLAR] = ACTIONS(723), + [anon_sym_PLUS] = ACTIONS(586), + [anon_sym_STAR] = ACTIONS(586), + [anon_sym_QMARK] = ACTIONS(576), + [anon_sym_u8] = ACTIONS(713), + [anon_sym_i8] = ACTIONS(713), + [anon_sym_u16] = ACTIONS(713), + [anon_sym_i16] = ACTIONS(713), + [anon_sym_u32] = ACTIONS(713), + [anon_sym_i32] = ACTIONS(713), + [anon_sym_u64] = ACTIONS(713), + [anon_sym_i64] = ACTIONS(713), + [anon_sym_u128] = ACTIONS(713), + [anon_sym_i128] = ACTIONS(713), + [anon_sym_isize] = ACTIONS(713), + [anon_sym_usize] = ACTIONS(713), + [anon_sym_f32] = ACTIONS(713), + [anon_sym_f64] = ACTIONS(713), + [anon_sym_bool] = ACTIONS(713), + [anon_sym_str] = ACTIONS(713), + [anon_sym_char] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(586), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_PERCENT] = ACTIONS(586), + [anon_sym_CARET] = ACTIONS(586), + [anon_sym_BANG] = ACTIONS(586), + [anon_sym_AMP] = ACTIONS(586), + [anon_sym_PIPE] = ACTIONS(586), + [anon_sym_AMP_AMP] = ACTIONS(576), + [anon_sym_PIPE_PIPE] = ACTIONS(576), + [anon_sym_LT_LT] = ACTIONS(586), + [anon_sym_GT_GT] = ACTIONS(586), + [anon_sym_PLUS_EQ] = ACTIONS(576), + [anon_sym_DASH_EQ] = ACTIONS(576), + [anon_sym_STAR_EQ] = ACTIONS(576), + [anon_sym_SLASH_EQ] = ACTIONS(576), + [anon_sym_PERCENT_EQ] = ACTIONS(576), + [anon_sym_CARET_EQ] = ACTIONS(576), + [anon_sym_AMP_EQ] = ACTIONS(576), + [anon_sym_PIPE_EQ] = ACTIONS(576), + [anon_sym_LT_LT_EQ] = ACTIONS(576), + [anon_sym_GT_GT_EQ] = ACTIONS(576), + [anon_sym_EQ] = ACTIONS(586), + [anon_sym_EQ_EQ] = ACTIONS(576), + [anon_sym_BANG_EQ] = ACTIONS(576), + [anon_sym_GT] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(586), + [anon_sym_GT_EQ] = ACTIONS(576), + [anon_sym_LT_EQ] = ACTIONS(576), + [anon_sym_AT] = ACTIONS(576), + [anon_sym__] = ACTIONS(586), + [anon_sym_DOT] = ACTIONS(586), + [anon_sym_DOT_DOT] = ACTIONS(586), + [anon_sym_DOT_DOT_DOT] = ACTIONS(576), + [anon_sym_DOT_DOT_EQ] = ACTIONS(576), + [anon_sym_COMMA] = ACTIONS(576), + [anon_sym_COLON_COLON] = ACTIONS(576), + [anon_sym_DASH_GT] = ACTIONS(576), + [anon_sym_POUND] = ACTIONS(576), + [anon_sym_SQUOTE] = ACTIONS(713), + [anon_sym_as] = ACTIONS(713), + [anon_sym_async] = ACTIONS(713), + [anon_sym_await] = ACTIONS(713), + [anon_sym_break] = ACTIONS(713), + [anon_sym_const] = ACTIONS(713), + [anon_sym_continue] = ACTIONS(713), + [anon_sym_default] = ACTIONS(713), + [anon_sym_enum] = ACTIONS(713), + [anon_sym_fn] = ACTIONS(713), + [anon_sym_for] = ACTIONS(713), + [anon_sym_gen] = ACTIONS(713), + [anon_sym_if] = ACTIONS(713), + [anon_sym_impl] = ACTIONS(713), + [anon_sym_let] = ACTIONS(713), + [anon_sym_loop] = ACTIONS(713), + [anon_sym_match] = ACTIONS(713), + [anon_sym_mod] = ACTIONS(713), + [anon_sym_pub] = ACTIONS(713), + [anon_sym_return] = ACTIONS(713), + [anon_sym_static] = ACTIONS(713), + [anon_sym_struct] = ACTIONS(713), + [anon_sym_trait] = ACTIONS(713), + [anon_sym_type] = ACTIONS(713), + [anon_sym_union] = ACTIONS(713), + [anon_sym_unsafe] = ACTIONS(713), + [anon_sym_use] = ACTIONS(713), + [anon_sym_where] = ACTIONS(713), + [anon_sym_while] = ACTIONS(713), + [sym_mutable_specifier] = ACTIONS(713), + [sym_integer_literal] = ACTIONS(590), + [aux_sym_string_literal_token1] = ACTIONS(592), + [sym_char_literal] = ACTIONS(590), + [anon_sym_true] = ACTIONS(594), + [anon_sym_false] = ACTIONS(594), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(713), + [sym_super] = ACTIONS(713), + [sym_crate] = ACTIONS(713), + [sym_metavariable] = ACTIONS(725), + [sym__raw_string_literal_start] = ACTIONS(598), + [sym_float_literal] = ACTIONS(590), + }, + [STATE(113)] = { + [sym_token_tree] = STATE(163), + [sym_token_repetition] = STATE(163), + [sym__literal] = STATE(163), + [sym_string_literal] = STATE(184), + [sym_raw_string_literal] = STATE(184), + [sym_boolean_literal] = STATE(184), + [sym_line_comment] = STATE(113), + [sym_block_comment] = STATE(113), + [aux_sym_token_tree_repeat1] = STATE(82), + [aux_sym__non_special_token_repeat1] = STATE(141), + [sym_identifier] = ACTIONS(713), + [anon_sym_SEMI] = ACTIONS(576), + [anon_sym_LPAREN] = ACTIONS(715), + [anon_sym_LBRACK] = ACTIONS(719), + [anon_sym_RBRACK] = ACTIONS(737), + [anon_sym_LBRACE] = ACTIONS(721), + [anon_sym_EQ_GT] = ACTIONS(576), + [anon_sym_COLON] = ACTIONS(586), + [anon_sym_DOLLAR] = ACTIONS(723), + [anon_sym_PLUS] = ACTIONS(586), + [anon_sym_STAR] = ACTIONS(586), + [anon_sym_QMARK] = ACTIONS(576), + [anon_sym_u8] = ACTIONS(713), + [anon_sym_i8] = ACTIONS(713), + [anon_sym_u16] = ACTIONS(713), + [anon_sym_i16] = ACTIONS(713), + [anon_sym_u32] = ACTIONS(713), + [anon_sym_i32] = ACTIONS(713), + [anon_sym_u64] = ACTIONS(713), + [anon_sym_i64] = ACTIONS(713), + [anon_sym_u128] = ACTIONS(713), + [anon_sym_i128] = ACTIONS(713), + [anon_sym_isize] = ACTIONS(713), + [anon_sym_usize] = ACTIONS(713), + [anon_sym_f32] = ACTIONS(713), + [anon_sym_f64] = ACTIONS(713), + [anon_sym_bool] = ACTIONS(713), + [anon_sym_str] = ACTIONS(713), + [anon_sym_char] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(586), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_PERCENT] = ACTIONS(586), + [anon_sym_CARET] = ACTIONS(586), + [anon_sym_BANG] = ACTIONS(586), + [anon_sym_AMP] = ACTIONS(586), + [anon_sym_PIPE] = ACTIONS(586), + [anon_sym_AMP_AMP] = ACTIONS(576), + [anon_sym_PIPE_PIPE] = ACTIONS(576), + [anon_sym_LT_LT] = ACTIONS(586), + [anon_sym_GT_GT] = ACTIONS(586), + [anon_sym_PLUS_EQ] = ACTIONS(576), + [anon_sym_DASH_EQ] = ACTIONS(576), + [anon_sym_STAR_EQ] = ACTIONS(576), + [anon_sym_SLASH_EQ] = ACTIONS(576), + [anon_sym_PERCENT_EQ] = ACTIONS(576), + [anon_sym_CARET_EQ] = ACTIONS(576), + [anon_sym_AMP_EQ] = ACTIONS(576), + [anon_sym_PIPE_EQ] = ACTIONS(576), + [anon_sym_LT_LT_EQ] = ACTIONS(576), + [anon_sym_GT_GT_EQ] = ACTIONS(576), + [anon_sym_EQ] = ACTIONS(586), + [anon_sym_EQ_EQ] = ACTIONS(576), + [anon_sym_BANG_EQ] = ACTIONS(576), + [anon_sym_GT] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(586), + [anon_sym_GT_EQ] = ACTIONS(576), + [anon_sym_LT_EQ] = ACTIONS(576), + [anon_sym_AT] = ACTIONS(576), + [anon_sym__] = ACTIONS(586), + [anon_sym_DOT] = ACTIONS(586), + [anon_sym_DOT_DOT] = ACTIONS(586), + [anon_sym_DOT_DOT_DOT] = ACTIONS(576), + [anon_sym_DOT_DOT_EQ] = ACTIONS(576), + [anon_sym_COMMA] = ACTIONS(576), + [anon_sym_COLON_COLON] = ACTIONS(576), + [anon_sym_DASH_GT] = ACTIONS(576), + [anon_sym_POUND] = ACTIONS(576), + [anon_sym_SQUOTE] = ACTIONS(713), + [anon_sym_as] = ACTIONS(713), + [anon_sym_async] = ACTIONS(713), + [anon_sym_await] = ACTIONS(713), + [anon_sym_break] = ACTIONS(713), + [anon_sym_const] = ACTIONS(713), + [anon_sym_continue] = ACTIONS(713), + [anon_sym_default] = ACTIONS(713), + [anon_sym_enum] = ACTIONS(713), + [anon_sym_fn] = ACTIONS(713), + [anon_sym_for] = ACTIONS(713), + [anon_sym_gen] = ACTIONS(713), + [anon_sym_if] = ACTIONS(713), + [anon_sym_impl] = ACTIONS(713), + [anon_sym_let] = ACTIONS(713), + [anon_sym_loop] = ACTIONS(713), + [anon_sym_match] = ACTIONS(713), + [anon_sym_mod] = ACTIONS(713), + [anon_sym_pub] = ACTIONS(713), + [anon_sym_return] = ACTIONS(713), + [anon_sym_static] = ACTIONS(713), + [anon_sym_struct] = ACTIONS(713), + [anon_sym_trait] = ACTIONS(713), + [anon_sym_type] = ACTIONS(713), + [anon_sym_union] = ACTIONS(713), + [anon_sym_unsafe] = ACTIONS(713), + [anon_sym_use] = ACTIONS(713), + [anon_sym_where] = ACTIONS(713), + [anon_sym_while] = ACTIONS(713), + [sym_mutable_specifier] = ACTIONS(713), + [sym_integer_literal] = ACTIONS(590), + [aux_sym_string_literal_token1] = ACTIONS(592), + [sym_char_literal] = ACTIONS(590), + [anon_sym_true] = ACTIONS(594), + [anon_sym_false] = ACTIONS(594), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(713), + [sym_super] = ACTIONS(713), + [sym_crate] = ACTIONS(713), + [sym_metavariable] = ACTIONS(725), + [sym__raw_string_literal_start] = ACTIONS(598), + [sym_float_literal] = ACTIONS(590), + }, + [STATE(114)] = { + [sym_delim_token_tree] = STATE(206), + [sym__delim_tokens] = STATE(213), + [sym__non_delim_token] = STATE(206), + [sym__literal] = STATE(201), + [sym_string_literal] = STATE(219), + [sym_raw_string_literal] = STATE(219), + [sym_boolean_literal] = STATE(219), + [sym_line_comment] = STATE(114), + [sym_block_comment] = STATE(114), + [aux_sym__non_special_token_repeat1] = STATE(176), + [aux_sym_delim_token_tree_repeat1] = STATE(118), + [sym_identifier] = ACTIONS(683), + [anon_sym_SEMI] = ACTIONS(685), + [anon_sym_LPAREN] = ACTIONS(687), + [anon_sym_RPAREN] = ACTIONS(739), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_LBRACE] = ACTIONS(693), + [anon_sym_EQ_GT] = ACTIONS(685), + [anon_sym_COLON] = ACTIONS(695), + [anon_sym_DOLLAR] = ACTIONS(697), + [anon_sym_PLUS] = ACTIONS(695), + [anon_sym_STAR] = ACTIONS(695), + [anon_sym_QMARK] = ACTIONS(685), + [anon_sym_u8] = ACTIONS(683), + [anon_sym_i8] = ACTIONS(683), + [anon_sym_u16] = ACTIONS(683), + [anon_sym_i16] = ACTIONS(683), + [anon_sym_u32] = ACTIONS(683), + [anon_sym_i32] = ACTIONS(683), + [anon_sym_u64] = ACTIONS(683), + [anon_sym_i64] = ACTIONS(683), + [anon_sym_u128] = ACTIONS(683), + [anon_sym_i128] = ACTIONS(683), + [anon_sym_isize] = ACTIONS(683), + [anon_sym_usize] = ACTIONS(683), + [anon_sym_f32] = ACTIONS(683), + [anon_sym_f64] = ACTIONS(683), + [anon_sym_bool] = ACTIONS(683), + [anon_sym_str] = ACTIONS(683), + [anon_sym_char] = ACTIONS(683), + [anon_sym_DASH] = ACTIONS(695), + [anon_sym_SLASH] = ACTIONS(695), + [anon_sym_PERCENT] = ACTIONS(695), + [anon_sym_CARET] = ACTIONS(695), + [anon_sym_BANG] = ACTIONS(695), + [anon_sym_AMP] = ACTIONS(695), + [anon_sym_PIPE] = ACTIONS(695), + [anon_sym_AMP_AMP] = ACTIONS(685), + [anon_sym_PIPE_PIPE] = ACTIONS(685), + [anon_sym_LT_LT] = ACTIONS(695), + [anon_sym_GT_GT] = ACTIONS(695), + [anon_sym_PLUS_EQ] = ACTIONS(685), + [anon_sym_DASH_EQ] = ACTIONS(685), + [anon_sym_STAR_EQ] = ACTIONS(685), + [anon_sym_SLASH_EQ] = ACTIONS(685), + [anon_sym_PERCENT_EQ] = ACTIONS(685), + [anon_sym_CARET_EQ] = ACTIONS(685), + [anon_sym_AMP_EQ] = ACTIONS(685), + [anon_sym_PIPE_EQ] = ACTIONS(685), + [anon_sym_LT_LT_EQ] = ACTIONS(685), + [anon_sym_GT_GT_EQ] = ACTIONS(685), + [anon_sym_EQ] = ACTIONS(695), + [anon_sym_EQ_EQ] = ACTIONS(685), + [anon_sym_BANG_EQ] = ACTIONS(685), + [anon_sym_GT] = ACTIONS(695), + [anon_sym_LT] = ACTIONS(695), + [anon_sym_GT_EQ] = ACTIONS(685), + [anon_sym_LT_EQ] = ACTIONS(685), + [anon_sym_AT] = ACTIONS(685), + [anon_sym__] = ACTIONS(695), + [anon_sym_DOT] = ACTIONS(695), + [anon_sym_DOT_DOT] = ACTIONS(695), + [anon_sym_DOT_DOT_DOT] = ACTIONS(685), + [anon_sym_DOT_DOT_EQ] = ACTIONS(685), + [anon_sym_COMMA] = ACTIONS(685), + [anon_sym_COLON_COLON] = ACTIONS(685), + [anon_sym_DASH_GT] = ACTIONS(685), + [anon_sym_POUND] = ACTIONS(685), + [anon_sym_SQUOTE] = ACTIONS(683), + [anon_sym_as] = ACTIONS(683), + [anon_sym_async] = ACTIONS(683), + [anon_sym_await] = ACTIONS(683), + [anon_sym_break] = ACTIONS(683), + [anon_sym_const] = ACTIONS(683), + [anon_sym_continue] = ACTIONS(683), + [anon_sym_default] = ACTIONS(683), + [anon_sym_enum] = ACTIONS(683), + [anon_sym_fn] = ACTIONS(683), + [anon_sym_for] = ACTIONS(683), + [anon_sym_gen] = ACTIONS(683), + [anon_sym_if] = ACTIONS(683), + [anon_sym_impl] = ACTIONS(683), + [anon_sym_let] = ACTIONS(683), + [anon_sym_loop] = ACTIONS(683), + [anon_sym_match] = ACTIONS(683), + [anon_sym_mod] = ACTIONS(683), + [anon_sym_pub] = ACTIONS(683), + [anon_sym_return] = ACTIONS(683), + [anon_sym_static] = ACTIONS(683), + [anon_sym_struct] = ACTIONS(683), + [anon_sym_trait] = ACTIONS(683), + [anon_sym_type] = ACTIONS(683), + [anon_sym_union] = ACTIONS(683), + [anon_sym_unsafe] = ACTIONS(683), + [anon_sym_use] = ACTIONS(683), + [anon_sym_where] = ACTIONS(683), + [anon_sym_while] = ACTIONS(683), + [sym_mutable_specifier] = ACTIONS(683), + [sym_integer_literal] = ACTIONS(699), + [aux_sym_string_literal_token1] = ACTIONS(701), + [sym_char_literal] = ACTIONS(699), + [anon_sym_true] = ACTIONS(703), + [anon_sym_false] = ACTIONS(703), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(683), + [sym_super] = ACTIONS(683), + [sym_crate] = ACTIONS(683), + [sym__raw_string_literal_start] = ACTIONS(705), + [sym_float_literal] = ACTIONS(699), }, [STATE(115)] = { - [sym_delim_token_tree] = STATE(200), - [sym__delim_tokens] = STATE(208), - [sym__non_delim_token] = STATE(200), - [sym__literal] = STATE(210), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), + [sym_delim_token_tree] = STATE(206), + [sym__delim_tokens] = STATE(213), + [sym__non_delim_token] = STATE(206), + [sym__literal] = STATE(201), + [sym_string_literal] = STATE(219), + [sym_raw_string_literal] = STATE(219), + [sym_boolean_literal] = STATE(219), [sym_line_comment] = STATE(115), [sym_block_comment] = STATE(115), - [aux_sym__non_special_token_repeat1] = STATE(147), - [aux_sym_delim_token_tree_repeat1] = STATE(83), - [sym_identifier] = ACTIONS(678), - [anon_sym_SEMI] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(682), - [anon_sym_LBRACK] = ACTIONS(684), - [anon_sym_RBRACK] = ACTIONS(738), - [anon_sym_LBRACE] = ACTIONS(688), - [anon_sym_EQ_GT] = ACTIONS(680), - [anon_sym_COLON] = ACTIONS(690), - [anon_sym_DOLLAR] = ACTIONS(692), - [anon_sym_PLUS] = ACTIONS(690), - [anon_sym_STAR] = ACTIONS(690), - [anon_sym_QMARK] = ACTIONS(680), - [anon_sym_u8] = ACTIONS(678), - [anon_sym_i8] = ACTIONS(678), - [anon_sym_u16] = ACTIONS(678), - [anon_sym_i16] = ACTIONS(678), - [anon_sym_u32] = ACTIONS(678), - [anon_sym_i32] = ACTIONS(678), - [anon_sym_u64] = ACTIONS(678), - [anon_sym_i64] = ACTIONS(678), - [anon_sym_u128] = ACTIONS(678), - [anon_sym_i128] = ACTIONS(678), - [anon_sym_isize] = ACTIONS(678), - [anon_sym_usize] = ACTIONS(678), - [anon_sym_f32] = ACTIONS(678), - [anon_sym_f64] = ACTIONS(678), - [anon_sym_bool] = ACTIONS(678), - [anon_sym_str] = ACTIONS(678), - [anon_sym_char] = ACTIONS(678), - [anon_sym_DASH] = ACTIONS(690), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_PERCENT] = ACTIONS(690), - [anon_sym_CARET] = ACTIONS(690), - [anon_sym_BANG] = ACTIONS(690), - [anon_sym_AMP] = ACTIONS(690), - [anon_sym_PIPE] = ACTIONS(690), - [anon_sym_AMP_AMP] = ACTIONS(680), - [anon_sym_PIPE_PIPE] = ACTIONS(680), - [anon_sym_LT_LT] = ACTIONS(690), - [anon_sym_GT_GT] = ACTIONS(690), - [anon_sym_PLUS_EQ] = ACTIONS(680), - [anon_sym_DASH_EQ] = ACTIONS(680), - [anon_sym_STAR_EQ] = ACTIONS(680), - [anon_sym_SLASH_EQ] = ACTIONS(680), - [anon_sym_PERCENT_EQ] = ACTIONS(680), - [anon_sym_CARET_EQ] = ACTIONS(680), - [anon_sym_AMP_EQ] = ACTIONS(680), - [anon_sym_PIPE_EQ] = ACTIONS(680), - [anon_sym_LT_LT_EQ] = ACTIONS(680), - [anon_sym_GT_GT_EQ] = ACTIONS(680), - [anon_sym_EQ] = ACTIONS(690), - [anon_sym_EQ_EQ] = ACTIONS(680), - [anon_sym_BANG_EQ] = ACTIONS(680), - [anon_sym_GT] = ACTIONS(690), - [anon_sym_LT] = ACTIONS(690), - [anon_sym_GT_EQ] = ACTIONS(680), - [anon_sym_LT_EQ] = ACTIONS(680), - [anon_sym_AT] = ACTIONS(680), - [anon_sym__] = ACTIONS(690), - [anon_sym_DOT] = ACTIONS(690), - [anon_sym_DOT_DOT] = ACTIONS(690), - [anon_sym_DOT_DOT_DOT] = ACTIONS(680), - [anon_sym_DOT_DOT_EQ] = ACTIONS(680), - [anon_sym_COMMA] = ACTIONS(680), - [anon_sym_COLON_COLON] = ACTIONS(680), - [anon_sym_DASH_GT] = ACTIONS(680), - [anon_sym_POUND] = ACTIONS(680), - [anon_sym_SQUOTE] = ACTIONS(678), - [anon_sym_as] = ACTIONS(678), - [anon_sym_async] = ACTIONS(678), - [anon_sym_await] = ACTIONS(678), - [anon_sym_break] = ACTIONS(678), - [anon_sym_const] = ACTIONS(678), - [anon_sym_continue] = ACTIONS(678), - [anon_sym_default] = ACTIONS(678), - [anon_sym_enum] = ACTIONS(678), - [anon_sym_fn] = ACTIONS(678), - [anon_sym_for] = ACTIONS(678), - [anon_sym_gen] = ACTIONS(678), - [anon_sym_if] = ACTIONS(678), - [anon_sym_impl] = ACTIONS(678), - [anon_sym_let] = ACTIONS(678), - [anon_sym_loop] = ACTIONS(678), - [anon_sym_match] = ACTIONS(678), - [anon_sym_mod] = ACTIONS(678), - [anon_sym_pub] = ACTIONS(678), - [anon_sym_return] = ACTIONS(678), - [anon_sym_static] = ACTIONS(678), - [anon_sym_struct] = ACTIONS(678), - [anon_sym_trait] = ACTIONS(678), - [anon_sym_type] = ACTIONS(678), - [anon_sym_union] = ACTIONS(678), - [anon_sym_unsafe] = ACTIONS(678), - [anon_sym_use] = ACTIONS(678), - [anon_sym_where] = ACTIONS(678), - [anon_sym_while] = ACTIONS(678), - [sym_mutable_specifier] = ACTIONS(678), - [sym_integer_literal] = ACTIONS(694), - [aux_sym_string_literal_token1] = ACTIONS(696), - [sym_char_literal] = ACTIONS(694), - [anon_sym_true] = ACTIONS(698), - [anon_sym_false] = ACTIONS(698), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(678), - [sym_super] = ACTIONS(678), - [sym_crate] = ACTIONS(678), - [sym__raw_string_literal_start] = ACTIONS(700), - [sym_float_literal] = ACTIONS(694), + [aux_sym__non_special_token_repeat1] = STATE(176), + [aux_sym_delim_token_tree_repeat1] = STATE(119), + [sym_identifier] = ACTIONS(683), + [anon_sym_SEMI] = ACTIONS(685), + [anon_sym_LPAREN] = ACTIONS(687), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_RBRACK] = ACTIONS(739), + [anon_sym_LBRACE] = ACTIONS(693), + [anon_sym_EQ_GT] = ACTIONS(685), + [anon_sym_COLON] = ACTIONS(695), + [anon_sym_DOLLAR] = ACTIONS(697), + [anon_sym_PLUS] = ACTIONS(695), + [anon_sym_STAR] = ACTIONS(695), + [anon_sym_QMARK] = ACTIONS(685), + [anon_sym_u8] = ACTIONS(683), + [anon_sym_i8] = ACTIONS(683), + [anon_sym_u16] = ACTIONS(683), + [anon_sym_i16] = ACTIONS(683), + [anon_sym_u32] = ACTIONS(683), + [anon_sym_i32] = ACTIONS(683), + [anon_sym_u64] = ACTIONS(683), + [anon_sym_i64] = ACTIONS(683), + [anon_sym_u128] = ACTIONS(683), + [anon_sym_i128] = ACTIONS(683), + [anon_sym_isize] = ACTIONS(683), + [anon_sym_usize] = ACTIONS(683), + [anon_sym_f32] = ACTIONS(683), + [anon_sym_f64] = ACTIONS(683), + [anon_sym_bool] = ACTIONS(683), + [anon_sym_str] = ACTIONS(683), + [anon_sym_char] = ACTIONS(683), + [anon_sym_DASH] = ACTIONS(695), + [anon_sym_SLASH] = ACTIONS(695), + [anon_sym_PERCENT] = ACTIONS(695), + [anon_sym_CARET] = ACTIONS(695), + [anon_sym_BANG] = ACTIONS(695), + [anon_sym_AMP] = ACTIONS(695), + [anon_sym_PIPE] = ACTIONS(695), + [anon_sym_AMP_AMP] = ACTIONS(685), + [anon_sym_PIPE_PIPE] = ACTIONS(685), + [anon_sym_LT_LT] = ACTIONS(695), + [anon_sym_GT_GT] = ACTIONS(695), + [anon_sym_PLUS_EQ] = ACTIONS(685), + [anon_sym_DASH_EQ] = ACTIONS(685), + [anon_sym_STAR_EQ] = ACTIONS(685), + [anon_sym_SLASH_EQ] = ACTIONS(685), + [anon_sym_PERCENT_EQ] = ACTIONS(685), + [anon_sym_CARET_EQ] = ACTIONS(685), + [anon_sym_AMP_EQ] = ACTIONS(685), + [anon_sym_PIPE_EQ] = ACTIONS(685), + [anon_sym_LT_LT_EQ] = ACTIONS(685), + [anon_sym_GT_GT_EQ] = ACTIONS(685), + [anon_sym_EQ] = ACTIONS(695), + [anon_sym_EQ_EQ] = ACTIONS(685), + [anon_sym_BANG_EQ] = ACTIONS(685), + [anon_sym_GT] = ACTIONS(695), + [anon_sym_LT] = ACTIONS(695), + [anon_sym_GT_EQ] = ACTIONS(685), + [anon_sym_LT_EQ] = ACTIONS(685), + [anon_sym_AT] = ACTIONS(685), + [anon_sym__] = ACTIONS(695), + [anon_sym_DOT] = ACTIONS(695), + [anon_sym_DOT_DOT] = ACTIONS(695), + [anon_sym_DOT_DOT_DOT] = ACTIONS(685), + [anon_sym_DOT_DOT_EQ] = ACTIONS(685), + [anon_sym_COMMA] = ACTIONS(685), + [anon_sym_COLON_COLON] = ACTIONS(685), + [anon_sym_DASH_GT] = ACTIONS(685), + [anon_sym_POUND] = ACTIONS(685), + [anon_sym_SQUOTE] = ACTIONS(683), + [anon_sym_as] = ACTIONS(683), + [anon_sym_async] = ACTIONS(683), + [anon_sym_await] = ACTIONS(683), + [anon_sym_break] = ACTIONS(683), + [anon_sym_const] = ACTIONS(683), + [anon_sym_continue] = ACTIONS(683), + [anon_sym_default] = ACTIONS(683), + [anon_sym_enum] = ACTIONS(683), + [anon_sym_fn] = ACTIONS(683), + [anon_sym_for] = ACTIONS(683), + [anon_sym_gen] = ACTIONS(683), + [anon_sym_if] = ACTIONS(683), + [anon_sym_impl] = ACTIONS(683), + [anon_sym_let] = ACTIONS(683), + [anon_sym_loop] = ACTIONS(683), + [anon_sym_match] = ACTIONS(683), + [anon_sym_mod] = ACTIONS(683), + [anon_sym_pub] = ACTIONS(683), + [anon_sym_return] = ACTIONS(683), + [anon_sym_static] = ACTIONS(683), + [anon_sym_struct] = ACTIONS(683), + [anon_sym_trait] = ACTIONS(683), + [anon_sym_type] = ACTIONS(683), + [anon_sym_union] = ACTIONS(683), + [anon_sym_unsafe] = ACTIONS(683), + [anon_sym_use] = ACTIONS(683), + [anon_sym_where] = ACTIONS(683), + [anon_sym_while] = ACTIONS(683), + [sym_mutable_specifier] = ACTIONS(683), + [sym_integer_literal] = ACTIONS(699), + [aux_sym_string_literal_token1] = ACTIONS(701), + [sym_char_literal] = ACTIONS(699), + [anon_sym_true] = ACTIONS(703), + [anon_sym_false] = ACTIONS(703), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(683), + [sym_super] = ACTIONS(683), + [sym_crate] = ACTIONS(683), + [sym__raw_string_literal_start] = ACTIONS(705), + [sym_float_literal] = ACTIONS(699), }, [STATE(116)] = { - [sym_delim_token_tree] = STATE(200), - [sym__delim_tokens] = STATE(208), - [sym__non_delim_token] = STATE(200), - [sym__literal] = STATE(210), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), + [sym_delim_token_tree] = STATE(206), + [sym__delim_tokens] = STATE(213), + [sym__non_delim_token] = STATE(206), + [sym__literal] = STATE(201), + [sym_string_literal] = STATE(219), + [sym_raw_string_literal] = STATE(219), + [sym_boolean_literal] = STATE(219), [sym_line_comment] = STATE(116), [sym_block_comment] = STATE(116), - [aux_sym__non_special_token_repeat1] = STATE(147), - [aux_sym_delim_token_tree_repeat1] = STATE(83), - [sym_identifier] = ACTIONS(678), - [anon_sym_SEMI] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(682), - [anon_sym_LBRACK] = ACTIONS(684), - [anon_sym_LBRACE] = ACTIONS(688), - [anon_sym_RBRACE] = ACTIONS(738), - [anon_sym_EQ_GT] = ACTIONS(680), - [anon_sym_COLON] = ACTIONS(690), - [anon_sym_DOLLAR] = ACTIONS(692), - [anon_sym_PLUS] = ACTIONS(690), - [anon_sym_STAR] = ACTIONS(690), - [anon_sym_QMARK] = ACTIONS(680), - [anon_sym_u8] = ACTIONS(678), - [anon_sym_i8] = ACTIONS(678), - [anon_sym_u16] = ACTIONS(678), - [anon_sym_i16] = ACTIONS(678), - [anon_sym_u32] = ACTIONS(678), - [anon_sym_i32] = ACTIONS(678), - [anon_sym_u64] = ACTIONS(678), - [anon_sym_i64] = ACTIONS(678), - [anon_sym_u128] = ACTIONS(678), - [anon_sym_i128] = ACTIONS(678), - [anon_sym_isize] = ACTIONS(678), - [anon_sym_usize] = ACTIONS(678), - [anon_sym_f32] = ACTIONS(678), - [anon_sym_f64] = ACTIONS(678), - [anon_sym_bool] = ACTIONS(678), - [anon_sym_str] = ACTIONS(678), - [anon_sym_char] = ACTIONS(678), - [anon_sym_DASH] = ACTIONS(690), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_PERCENT] = ACTIONS(690), - [anon_sym_CARET] = ACTIONS(690), - [anon_sym_BANG] = ACTIONS(690), - [anon_sym_AMP] = ACTIONS(690), - [anon_sym_PIPE] = ACTIONS(690), - [anon_sym_AMP_AMP] = ACTIONS(680), - [anon_sym_PIPE_PIPE] = ACTIONS(680), - [anon_sym_LT_LT] = ACTIONS(690), - [anon_sym_GT_GT] = ACTIONS(690), - [anon_sym_PLUS_EQ] = ACTIONS(680), - [anon_sym_DASH_EQ] = ACTIONS(680), - [anon_sym_STAR_EQ] = ACTIONS(680), - [anon_sym_SLASH_EQ] = ACTIONS(680), - [anon_sym_PERCENT_EQ] = ACTIONS(680), - [anon_sym_CARET_EQ] = ACTIONS(680), - [anon_sym_AMP_EQ] = ACTIONS(680), - [anon_sym_PIPE_EQ] = ACTIONS(680), - [anon_sym_LT_LT_EQ] = ACTIONS(680), - [anon_sym_GT_GT_EQ] = ACTIONS(680), - [anon_sym_EQ] = ACTIONS(690), - [anon_sym_EQ_EQ] = ACTIONS(680), - [anon_sym_BANG_EQ] = ACTIONS(680), - [anon_sym_GT] = ACTIONS(690), - [anon_sym_LT] = ACTIONS(690), - [anon_sym_GT_EQ] = ACTIONS(680), - [anon_sym_LT_EQ] = ACTIONS(680), - [anon_sym_AT] = ACTIONS(680), - [anon_sym__] = ACTIONS(690), - [anon_sym_DOT] = ACTIONS(690), - [anon_sym_DOT_DOT] = ACTIONS(690), - [anon_sym_DOT_DOT_DOT] = ACTIONS(680), - [anon_sym_DOT_DOT_EQ] = ACTIONS(680), - [anon_sym_COMMA] = ACTIONS(680), - [anon_sym_COLON_COLON] = ACTIONS(680), - [anon_sym_DASH_GT] = ACTIONS(680), - [anon_sym_POUND] = ACTIONS(680), - [anon_sym_SQUOTE] = ACTIONS(678), - [anon_sym_as] = ACTIONS(678), - [anon_sym_async] = ACTIONS(678), - [anon_sym_await] = ACTIONS(678), - [anon_sym_break] = ACTIONS(678), - [anon_sym_const] = ACTIONS(678), - [anon_sym_continue] = ACTIONS(678), - [anon_sym_default] = ACTIONS(678), - [anon_sym_enum] = ACTIONS(678), - [anon_sym_fn] = ACTIONS(678), - [anon_sym_for] = ACTIONS(678), - [anon_sym_gen] = ACTIONS(678), - [anon_sym_if] = ACTIONS(678), - [anon_sym_impl] = ACTIONS(678), - [anon_sym_let] = ACTIONS(678), - [anon_sym_loop] = ACTIONS(678), - [anon_sym_match] = ACTIONS(678), - [anon_sym_mod] = ACTIONS(678), - [anon_sym_pub] = ACTIONS(678), - [anon_sym_return] = ACTIONS(678), - [anon_sym_static] = ACTIONS(678), - [anon_sym_struct] = ACTIONS(678), - [anon_sym_trait] = ACTIONS(678), - [anon_sym_type] = ACTIONS(678), - [anon_sym_union] = ACTIONS(678), - [anon_sym_unsafe] = ACTIONS(678), - [anon_sym_use] = ACTIONS(678), - [anon_sym_where] = ACTIONS(678), - [anon_sym_while] = ACTIONS(678), - [sym_mutable_specifier] = ACTIONS(678), - [sym_integer_literal] = ACTIONS(694), - [aux_sym_string_literal_token1] = ACTIONS(696), - [sym_char_literal] = ACTIONS(694), - [anon_sym_true] = ACTIONS(698), - [anon_sym_false] = ACTIONS(698), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(678), - [sym_super] = ACTIONS(678), - [sym_crate] = ACTIONS(678), - [sym__raw_string_literal_start] = ACTIONS(700), - [sym_float_literal] = ACTIONS(694), + [aux_sym__non_special_token_repeat1] = STATE(176), + [aux_sym_delim_token_tree_repeat1] = STATE(120), + [sym_identifier] = ACTIONS(683), + [anon_sym_SEMI] = ACTIONS(685), + [anon_sym_LPAREN] = ACTIONS(687), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_LBRACE] = ACTIONS(693), + [anon_sym_RBRACE] = ACTIONS(739), + [anon_sym_EQ_GT] = ACTIONS(685), + [anon_sym_COLON] = ACTIONS(695), + [anon_sym_DOLLAR] = ACTIONS(697), + [anon_sym_PLUS] = ACTIONS(695), + [anon_sym_STAR] = ACTIONS(695), + [anon_sym_QMARK] = ACTIONS(685), + [anon_sym_u8] = ACTIONS(683), + [anon_sym_i8] = ACTIONS(683), + [anon_sym_u16] = ACTIONS(683), + [anon_sym_i16] = ACTIONS(683), + [anon_sym_u32] = ACTIONS(683), + [anon_sym_i32] = ACTIONS(683), + [anon_sym_u64] = ACTIONS(683), + [anon_sym_i64] = ACTIONS(683), + [anon_sym_u128] = ACTIONS(683), + [anon_sym_i128] = ACTIONS(683), + [anon_sym_isize] = ACTIONS(683), + [anon_sym_usize] = ACTIONS(683), + [anon_sym_f32] = ACTIONS(683), + [anon_sym_f64] = ACTIONS(683), + [anon_sym_bool] = ACTIONS(683), + [anon_sym_str] = ACTIONS(683), + [anon_sym_char] = ACTIONS(683), + [anon_sym_DASH] = ACTIONS(695), + [anon_sym_SLASH] = ACTIONS(695), + [anon_sym_PERCENT] = ACTIONS(695), + [anon_sym_CARET] = ACTIONS(695), + [anon_sym_BANG] = ACTIONS(695), + [anon_sym_AMP] = ACTIONS(695), + [anon_sym_PIPE] = ACTIONS(695), + [anon_sym_AMP_AMP] = ACTIONS(685), + [anon_sym_PIPE_PIPE] = ACTIONS(685), + [anon_sym_LT_LT] = ACTIONS(695), + [anon_sym_GT_GT] = ACTIONS(695), + [anon_sym_PLUS_EQ] = ACTIONS(685), + [anon_sym_DASH_EQ] = ACTIONS(685), + [anon_sym_STAR_EQ] = ACTIONS(685), + [anon_sym_SLASH_EQ] = ACTIONS(685), + [anon_sym_PERCENT_EQ] = ACTIONS(685), + [anon_sym_CARET_EQ] = ACTIONS(685), + [anon_sym_AMP_EQ] = ACTIONS(685), + [anon_sym_PIPE_EQ] = ACTIONS(685), + [anon_sym_LT_LT_EQ] = ACTIONS(685), + [anon_sym_GT_GT_EQ] = ACTIONS(685), + [anon_sym_EQ] = ACTIONS(695), + [anon_sym_EQ_EQ] = ACTIONS(685), + [anon_sym_BANG_EQ] = ACTIONS(685), + [anon_sym_GT] = ACTIONS(695), + [anon_sym_LT] = ACTIONS(695), + [anon_sym_GT_EQ] = ACTIONS(685), + [anon_sym_LT_EQ] = ACTIONS(685), + [anon_sym_AT] = ACTIONS(685), + [anon_sym__] = ACTIONS(695), + [anon_sym_DOT] = ACTIONS(695), + [anon_sym_DOT_DOT] = ACTIONS(695), + [anon_sym_DOT_DOT_DOT] = ACTIONS(685), + [anon_sym_DOT_DOT_EQ] = ACTIONS(685), + [anon_sym_COMMA] = ACTIONS(685), + [anon_sym_COLON_COLON] = ACTIONS(685), + [anon_sym_DASH_GT] = ACTIONS(685), + [anon_sym_POUND] = ACTIONS(685), + [anon_sym_SQUOTE] = ACTIONS(683), + [anon_sym_as] = ACTIONS(683), + [anon_sym_async] = ACTIONS(683), + [anon_sym_await] = ACTIONS(683), + [anon_sym_break] = ACTIONS(683), + [anon_sym_const] = ACTIONS(683), + [anon_sym_continue] = ACTIONS(683), + [anon_sym_default] = ACTIONS(683), + [anon_sym_enum] = ACTIONS(683), + [anon_sym_fn] = ACTIONS(683), + [anon_sym_for] = ACTIONS(683), + [anon_sym_gen] = ACTIONS(683), + [anon_sym_if] = ACTIONS(683), + [anon_sym_impl] = ACTIONS(683), + [anon_sym_let] = ACTIONS(683), + [anon_sym_loop] = ACTIONS(683), + [anon_sym_match] = ACTIONS(683), + [anon_sym_mod] = ACTIONS(683), + [anon_sym_pub] = ACTIONS(683), + [anon_sym_return] = ACTIONS(683), + [anon_sym_static] = ACTIONS(683), + [anon_sym_struct] = ACTIONS(683), + [anon_sym_trait] = ACTIONS(683), + [anon_sym_type] = ACTIONS(683), + [anon_sym_union] = ACTIONS(683), + [anon_sym_unsafe] = ACTIONS(683), + [anon_sym_use] = ACTIONS(683), + [anon_sym_where] = ACTIONS(683), + [anon_sym_while] = ACTIONS(683), + [sym_mutable_specifier] = ACTIONS(683), + [sym_integer_literal] = ACTIONS(699), + [aux_sym_string_literal_token1] = ACTIONS(701), + [sym_char_literal] = ACTIONS(699), + [anon_sym_true] = ACTIONS(703), + [anon_sym_false] = ACTIONS(703), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(683), + [sym_super] = ACTIONS(683), + [sym_crate] = ACTIONS(683), + [sym__raw_string_literal_start] = ACTIONS(705), + [sym_float_literal] = ACTIONS(699), }, [STATE(117)] = { - [sym_token_tree] = STATE(187), - [sym_token_repetition] = STATE(187), - [sym__literal] = STATE(187), - [sym_string_literal] = STATE(183), - [sym_raw_string_literal] = STATE(183), - [sym_boolean_literal] = STATE(183), + [sym_token_tree] = STATE(163), + [sym_token_repetition] = STATE(163), + [sym__literal] = STATE(163), + [sym_string_literal] = STATE(184), + [sym_raw_string_literal] = STATE(184), + [sym_boolean_literal] = STATE(184), [sym_line_comment] = STATE(117), [sym_block_comment] = STATE(117), - [aux_sym_token_tree_repeat1] = STATE(131), - [aux_sym__non_special_token_repeat1] = STATE(144), - [sym_identifier] = ACTIONS(702), - [anon_sym_SEMI] = ACTIONS(609), - [anon_sym_LPAREN] = ACTIONS(704), - [anon_sym_RPAREN] = ACTIONS(740), - [anon_sym_LBRACK] = ACTIONS(708), - [anon_sym_LBRACE] = ACTIONS(710), - [anon_sym_EQ_GT] = ACTIONS(609), - [anon_sym_COLON] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(712), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_STAR] = ACTIONS(619), - [anon_sym_QMARK] = ACTIONS(609), - [anon_sym_u8] = ACTIONS(702), - [anon_sym_i8] = ACTIONS(702), - [anon_sym_u16] = ACTIONS(702), - [anon_sym_i16] = ACTIONS(702), - [anon_sym_u32] = ACTIONS(702), - [anon_sym_i32] = ACTIONS(702), - [anon_sym_u64] = ACTIONS(702), - [anon_sym_i64] = ACTIONS(702), - [anon_sym_u128] = ACTIONS(702), - [anon_sym_i128] = ACTIONS(702), - [anon_sym_isize] = ACTIONS(702), - [anon_sym_usize] = ACTIONS(702), - [anon_sym_f32] = ACTIONS(702), - [anon_sym_f64] = ACTIONS(702), - [anon_sym_bool] = ACTIONS(702), - [anon_sym_str] = ACTIONS(702), - [anon_sym_char] = ACTIONS(702), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_SLASH] = ACTIONS(619), - [anon_sym_PERCENT] = ACTIONS(619), - [anon_sym_CARET] = ACTIONS(619), - [anon_sym_BANG] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(619), - [anon_sym_AMP_AMP] = ACTIONS(609), - [anon_sym_PIPE_PIPE] = ACTIONS(609), - [anon_sym_LT_LT] = ACTIONS(619), - [anon_sym_GT_GT] = ACTIONS(619), - [anon_sym_PLUS_EQ] = ACTIONS(609), - [anon_sym_DASH_EQ] = ACTIONS(609), - [anon_sym_STAR_EQ] = ACTIONS(609), - [anon_sym_SLASH_EQ] = ACTIONS(609), - [anon_sym_PERCENT_EQ] = ACTIONS(609), - [anon_sym_CARET_EQ] = ACTIONS(609), - [anon_sym_AMP_EQ] = ACTIONS(609), - [anon_sym_PIPE_EQ] = ACTIONS(609), - [anon_sym_LT_LT_EQ] = ACTIONS(609), - [anon_sym_GT_GT_EQ] = ACTIONS(609), - [anon_sym_EQ] = ACTIONS(619), - [anon_sym_EQ_EQ] = ACTIONS(609), - [anon_sym_BANG_EQ] = ACTIONS(609), - [anon_sym_GT] = ACTIONS(619), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_GT_EQ] = ACTIONS(609), - [anon_sym_LT_EQ] = ACTIONS(609), - [anon_sym_AT] = ACTIONS(609), - [anon_sym__] = ACTIONS(619), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_DOT_DOT] = ACTIONS(619), - [anon_sym_DOT_DOT_DOT] = ACTIONS(609), - [anon_sym_DOT_DOT_EQ] = ACTIONS(609), - [anon_sym_COMMA] = ACTIONS(609), - [anon_sym_COLON_COLON] = ACTIONS(609), - [anon_sym_DASH_GT] = ACTIONS(609), - [anon_sym_POUND] = ACTIONS(609), - [anon_sym_SQUOTE] = ACTIONS(702), - [anon_sym_as] = ACTIONS(702), - [anon_sym_async] = ACTIONS(702), - [anon_sym_await] = ACTIONS(702), - [anon_sym_break] = ACTIONS(702), - [anon_sym_const] = ACTIONS(702), - [anon_sym_continue] = ACTIONS(702), - [anon_sym_default] = ACTIONS(702), - [anon_sym_enum] = ACTIONS(702), - [anon_sym_fn] = ACTIONS(702), - [anon_sym_for] = ACTIONS(702), - [anon_sym_gen] = ACTIONS(702), - [anon_sym_if] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(702), - [anon_sym_let] = ACTIONS(702), - [anon_sym_loop] = ACTIONS(702), - [anon_sym_match] = ACTIONS(702), - [anon_sym_mod] = ACTIONS(702), - [anon_sym_pub] = ACTIONS(702), - [anon_sym_return] = ACTIONS(702), - [anon_sym_static] = ACTIONS(702), - [anon_sym_struct] = ACTIONS(702), - [anon_sym_trait] = ACTIONS(702), - [anon_sym_type] = ACTIONS(702), - [anon_sym_union] = ACTIONS(702), - [anon_sym_unsafe] = ACTIONS(702), - [anon_sym_use] = ACTIONS(702), - [anon_sym_where] = ACTIONS(702), - [anon_sym_while] = ACTIONS(702), - [sym_mutable_specifier] = ACTIONS(702), - [sym_integer_literal] = ACTIONS(623), - [aux_sym_string_literal_token1] = ACTIONS(625), - [sym_char_literal] = ACTIONS(623), - [anon_sym_true] = ACTIONS(627), - [anon_sym_false] = ACTIONS(627), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(702), - [sym_super] = ACTIONS(702), - [sym_crate] = ACTIONS(702), - [sym_metavariable] = ACTIONS(714), - [sym__raw_string_literal_start] = ACTIONS(631), - [sym_float_literal] = ACTIONS(623), + [aux_sym_token_tree_repeat1] = STATE(82), + [aux_sym__non_special_token_repeat1] = STATE(141), + [sym_identifier] = ACTIONS(713), + [anon_sym_SEMI] = ACTIONS(576), + [anon_sym_LPAREN] = ACTIONS(715), + [anon_sym_LBRACK] = ACTIONS(719), + [anon_sym_LBRACE] = ACTIONS(721), + [anon_sym_RBRACE] = ACTIONS(737), + [anon_sym_EQ_GT] = ACTIONS(576), + [anon_sym_COLON] = ACTIONS(586), + [anon_sym_DOLLAR] = ACTIONS(723), + [anon_sym_PLUS] = ACTIONS(586), + [anon_sym_STAR] = ACTIONS(586), + [anon_sym_QMARK] = ACTIONS(576), + [anon_sym_u8] = ACTIONS(713), + [anon_sym_i8] = ACTIONS(713), + [anon_sym_u16] = ACTIONS(713), + [anon_sym_i16] = ACTIONS(713), + [anon_sym_u32] = ACTIONS(713), + [anon_sym_i32] = ACTIONS(713), + [anon_sym_u64] = ACTIONS(713), + [anon_sym_i64] = ACTIONS(713), + [anon_sym_u128] = ACTIONS(713), + [anon_sym_i128] = ACTIONS(713), + [anon_sym_isize] = ACTIONS(713), + [anon_sym_usize] = ACTIONS(713), + [anon_sym_f32] = ACTIONS(713), + [anon_sym_f64] = ACTIONS(713), + [anon_sym_bool] = ACTIONS(713), + [anon_sym_str] = ACTIONS(713), + [anon_sym_char] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(586), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_PERCENT] = ACTIONS(586), + [anon_sym_CARET] = ACTIONS(586), + [anon_sym_BANG] = ACTIONS(586), + [anon_sym_AMP] = ACTIONS(586), + [anon_sym_PIPE] = ACTIONS(586), + [anon_sym_AMP_AMP] = ACTIONS(576), + [anon_sym_PIPE_PIPE] = ACTIONS(576), + [anon_sym_LT_LT] = ACTIONS(586), + [anon_sym_GT_GT] = ACTIONS(586), + [anon_sym_PLUS_EQ] = ACTIONS(576), + [anon_sym_DASH_EQ] = ACTIONS(576), + [anon_sym_STAR_EQ] = ACTIONS(576), + [anon_sym_SLASH_EQ] = ACTIONS(576), + [anon_sym_PERCENT_EQ] = ACTIONS(576), + [anon_sym_CARET_EQ] = ACTIONS(576), + [anon_sym_AMP_EQ] = ACTIONS(576), + [anon_sym_PIPE_EQ] = ACTIONS(576), + [anon_sym_LT_LT_EQ] = ACTIONS(576), + [anon_sym_GT_GT_EQ] = ACTIONS(576), + [anon_sym_EQ] = ACTIONS(586), + [anon_sym_EQ_EQ] = ACTIONS(576), + [anon_sym_BANG_EQ] = ACTIONS(576), + [anon_sym_GT] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(586), + [anon_sym_GT_EQ] = ACTIONS(576), + [anon_sym_LT_EQ] = ACTIONS(576), + [anon_sym_AT] = ACTIONS(576), + [anon_sym__] = ACTIONS(586), + [anon_sym_DOT] = ACTIONS(586), + [anon_sym_DOT_DOT] = ACTIONS(586), + [anon_sym_DOT_DOT_DOT] = ACTIONS(576), + [anon_sym_DOT_DOT_EQ] = ACTIONS(576), + [anon_sym_COMMA] = ACTIONS(576), + [anon_sym_COLON_COLON] = ACTIONS(576), + [anon_sym_DASH_GT] = ACTIONS(576), + [anon_sym_POUND] = ACTIONS(576), + [anon_sym_SQUOTE] = ACTIONS(713), + [anon_sym_as] = ACTIONS(713), + [anon_sym_async] = ACTIONS(713), + [anon_sym_await] = ACTIONS(713), + [anon_sym_break] = ACTIONS(713), + [anon_sym_const] = ACTIONS(713), + [anon_sym_continue] = ACTIONS(713), + [anon_sym_default] = ACTIONS(713), + [anon_sym_enum] = ACTIONS(713), + [anon_sym_fn] = ACTIONS(713), + [anon_sym_for] = ACTIONS(713), + [anon_sym_gen] = ACTIONS(713), + [anon_sym_if] = ACTIONS(713), + [anon_sym_impl] = ACTIONS(713), + [anon_sym_let] = ACTIONS(713), + [anon_sym_loop] = ACTIONS(713), + [anon_sym_match] = ACTIONS(713), + [anon_sym_mod] = ACTIONS(713), + [anon_sym_pub] = ACTIONS(713), + [anon_sym_return] = ACTIONS(713), + [anon_sym_static] = ACTIONS(713), + [anon_sym_struct] = ACTIONS(713), + [anon_sym_trait] = ACTIONS(713), + [anon_sym_type] = ACTIONS(713), + [anon_sym_union] = ACTIONS(713), + [anon_sym_unsafe] = ACTIONS(713), + [anon_sym_use] = ACTIONS(713), + [anon_sym_where] = ACTIONS(713), + [anon_sym_while] = ACTIONS(713), + [sym_mutable_specifier] = ACTIONS(713), + [sym_integer_literal] = ACTIONS(590), + [aux_sym_string_literal_token1] = ACTIONS(592), + [sym_char_literal] = ACTIONS(590), + [anon_sym_true] = ACTIONS(594), + [anon_sym_false] = ACTIONS(594), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(713), + [sym_super] = ACTIONS(713), + [sym_crate] = ACTIONS(713), + [sym_metavariable] = ACTIONS(725), + [sym__raw_string_literal_start] = ACTIONS(598), + [sym_float_literal] = ACTIONS(590), }, [STATE(118)] = { - [sym_token_tree] = STATE(187), - [sym_token_repetition] = STATE(187), - [sym__literal] = STATE(187), - [sym_string_literal] = STATE(183), - [sym_raw_string_literal] = STATE(183), - [sym_boolean_literal] = STATE(183), + [sym_delim_token_tree] = STATE(206), + [sym__delim_tokens] = STATE(213), + [sym__non_delim_token] = STATE(206), + [sym__literal] = STATE(201), + [sym_string_literal] = STATE(219), + [sym_raw_string_literal] = STATE(219), + [sym_boolean_literal] = STATE(219), [sym_line_comment] = STATE(118), [sym_block_comment] = STATE(118), - [aux_sym_token_tree_repeat1] = STATE(132), - [aux_sym__non_special_token_repeat1] = STATE(144), - [sym_identifier] = ACTIONS(702), - [anon_sym_SEMI] = ACTIONS(609), - [anon_sym_LPAREN] = ACTIONS(704), - [anon_sym_LBRACK] = ACTIONS(708), - [anon_sym_RBRACK] = ACTIONS(740), - [anon_sym_LBRACE] = ACTIONS(710), - [anon_sym_EQ_GT] = ACTIONS(609), - [anon_sym_COLON] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(712), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_STAR] = ACTIONS(619), - [anon_sym_QMARK] = ACTIONS(609), - [anon_sym_u8] = ACTIONS(702), - [anon_sym_i8] = ACTIONS(702), - [anon_sym_u16] = ACTIONS(702), - [anon_sym_i16] = ACTIONS(702), - [anon_sym_u32] = ACTIONS(702), - [anon_sym_i32] = ACTIONS(702), - [anon_sym_u64] = ACTIONS(702), - [anon_sym_i64] = ACTIONS(702), - [anon_sym_u128] = ACTIONS(702), - [anon_sym_i128] = ACTIONS(702), - [anon_sym_isize] = ACTIONS(702), - [anon_sym_usize] = ACTIONS(702), - [anon_sym_f32] = ACTIONS(702), - [anon_sym_f64] = ACTIONS(702), - [anon_sym_bool] = ACTIONS(702), - [anon_sym_str] = ACTIONS(702), - [anon_sym_char] = ACTIONS(702), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_SLASH] = ACTIONS(619), - [anon_sym_PERCENT] = ACTIONS(619), - [anon_sym_CARET] = ACTIONS(619), - [anon_sym_BANG] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(619), - [anon_sym_AMP_AMP] = ACTIONS(609), - [anon_sym_PIPE_PIPE] = ACTIONS(609), - [anon_sym_LT_LT] = ACTIONS(619), - [anon_sym_GT_GT] = ACTIONS(619), - [anon_sym_PLUS_EQ] = ACTIONS(609), - [anon_sym_DASH_EQ] = ACTIONS(609), - [anon_sym_STAR_EQ] = ACTIONS(609), - [anon_sym_SLASH_EQ] = ACTIONS(609), - [anon_sym_PERCENT_EQ] = ACTIONS(609), - [anon_sym_CARET_EQ] = ACTIONS(609), - [anon_sym_AMP_EQ] = ACTIONS(609), - [anon_sym_PIPE_EQ] = ACTIONS(609), - [anon_sym_LT_LT_EQ] = ACTIONS(609), - [anon_sym_GT_GT_EQ] = ACTIONS(609), - [anon_sym_EQ] = ACTIONS(619), - [anon_sym_EQ_EQ] = ACTIONS(609), - [anon_sym_BANG_EQ] = ACTIONS(609), - [anon_sym_GT] = ACTIONS(619), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_GT_EQ] = ACTIONS(609), - [anon_sym_LT_EQ] = ACTIONS(609), - [anon_sym_AT] = ACTIONS(609), - [anon_sym__] = ACTIONS(619), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_DOT_DOT] = ACTIONS(619), - [anon_sym_DOT_DOT_DOT] = ACTIONS(609), - [anon_sym_DOT_DOT_EQ] = ACTIONS(609), - [anon_sym_COMMA] = ACTIONS(609), - [anon_sym_COLON_COLON] = ACTIONS(609), - [anon_sym_DASH_GT] = ACTIONS(609), - [anon_sym_POUND] = ACTIONS(609), - [anon_sym_SQUOTE] = ACTIONS(702), - [anon_sym_as] = ACTIONS(702), - [anon_sym_async] = ACTIONS(702), - [anon_sym_await] = ACTIONS(702), - [anon_sym_break] = ACTIONS(702), - [anon_sym_const] = ACTIONS(702), - [anon_sym_continue] = ACTIONS(702), - [anon_sym_default] = ACTIONS(702), - [anon_sym_enum] = ACTIONS(702), - [anon_sym_fn] = ACTIONS(702), - [anon_sym_for] = ACTIONS(702), - [anon_sym_gen] = ACTIONS(702), - [anon_sym_if] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(702), - [anon_sym_let] = ACTIONS(702), - [anon_sym_loop] = ACTIONS(702), - [anon_sym_match] = ACTIONS(702), - [anon_sym_mod] = ACTIONS(702), - [anon_sym_pub] = ACTIONS(702), - [anon_sym_return] = ACTIONS(702), - [anon_sym_static] = ACTIONS(702), - [anon_sym_struct] = ACTIONS(702), - [anon_sym_trait] = ACTIONS(702), - [anon_sym_type] = ACTIONS(702), - [anon_sym_union] = ACTIONS(702), - [anon_sym_unsafe] = ACTIONS(702), - [anon_sym_use] = ACTIONS(702), - [anon_sym_where] = ACTIONS(702), - [anon_sym_while] = ACTIONS(702), - [sym_mutable_specifier] = ACTIONS(702), - [sym_integer_literal] = ACTIONS(623), - [aux_sym_string_literal_token1] = ACTIONS(625), - [sym_char_literal] = ACTIONS(623), - [anon_sym_true] = ACTIONS(627), - [anon_sym_false] = ACTIONS(627), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(702), - [sym_super] = ACTIONS(702), - [sym_crate] = ACTIONS(702), - [sym_metavariable] = ACTIONS(714), - [sym__raw_string_literal_start] = ACTIONS(631), - [sym_float_literal] = ACTIONS(623), + [aux_sym__non_special_token_repeat1] = STATE(176), + [aux_sym_delim_token_tree_repeat1] = STATE(83), + [sym_identifier] = ACTIONS(683), + [anon_sym_SEMI] = ACTIONS(685), + [anon_sym_LPAREN] = ACTIONS(687), + [anon_sym_RPAREN] = ACTIONS(741), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_LBRACE] = ACTIONS(693), + [anon_sym_EQ_GT] = ACTIONS(685), + [anon_sym_COLON] = ACTIONS(695), + [anon_sym_DOLLAR] = ACTIONS(697), + [anon_sym_PLUS] = ACTIONS(695), + [anon_sym_STAR] = ACTIONS(695), + [anon_sym_QMARK] = ACTIONS(685), + [anon_sym_u8] = ACTIONS(683), + [anon_sym_i8] = ACTIONS(683), + [anon_sym_u16] = ACTIONS(683), + [anon_sym_i16] = ACTIONS(683), + [anon_sym_u32] = ACTIONS(683), + [anon_sym_i32] = ACTIONS(683), + [anon_sym_u64] = ACTIONS(683), + [anon_sym_i64] = ACTIONS(683), + [anon_sym_u128] = ACTIONS(683), + [anon_sym_i128] = ACTIONS(683), + [anon_sym_isize] = ACTIONS(683), + [anon_sym_usize] = ACTIONS(683), + [anon_sym_f32] = ACTIONS(683), + [anon_sym_f64] = ACTIONS(683), + [anon_sym_bool] = ACTIONS(683), + [anon_sym_str] = ACTIONS(683), + [anon_sym_char] = ACTIONS(683), + [anon_sym_DASH] = ACTIONS(695), + [anon_sym_SLASH] = ACTIONS(695), + [anon_sym_PERCENT] = ACTIONS(695), + [anon_sym_CARET] = ACTIONS(695), + [anon_sym_BANG] = ACTIONS(695), + [anon_sym_AMP] = ACTIONS(695), + [anon_sym_PIPE] = ACTIONS(695), + [anon_sym_AMP_AMP] = ACTIONS(685), + [anon_sym_PIPE_PIPE] = ACTIONS(685), + [anon_sym_LT_LT] = ACTIONS(695), + [anon_sym_GT_GT] = ACTIONS(695), + [anon_sym_PLUS_EQ] = ACTIONS(685), + [anon_sym_DASH_EQ] = ACTIONS(685), + [anon_sym_STAR_EQ] = ACTIONS(685), + [anon_sym_SLASH_EQ] = ACTIONS(685), + [anon_sym_PERCENT_EQ] = ACTIONS(685), + [anon_sym_CARET_EQ] = ACTIONS(685), + [anon_sym_AMP_EQ] = ACTIONS(685), + [anon_sym_PIPE_EQ] = ACTIONS(685), + [anon_sym_LT_LT_EQ] = ACTIONS(685), + [anon_sym_GT_GT_EQ] = ACTIONS(685), + [anon_sym_EQ] = ACTIONS(695), + [anon_sym_EQ_EQ] = ACTIONS(685), + [anon_sym_BANG_EQ] = ACTIONS(685), + [anon_sym_GT] = ACTIONS(695), + [anon_sym_LT] = ACTIONS(695), + [anon_sym_GT_EQ] = ACTIONS(685), + [anon_sym_LT_EQ] = ACTIONS(685), + [anon_sym_AT] = ACTIONS(685), + [anon_sym__] = ACTIONS(695), + [anon_sym_DOT] = ACTIONS(695), + [anon_sym_DOT_DOT] = ACTIONS(695), + [anon_sym_DOT_DOT_DOT] = ACTIONS(685), + [anon_sym_DOT_DOT_EQ] = ACTIONS(685), + [anon_sym_COMMA] = ACTIONS(685), + [anon_sym_COLON_COLON] = ACTIONS(685), + [anon_sym_DASH_GT] = ACTIONS(685), + [anon_sym_POUND] = ACTIONS(685), + [anon_sym_SQUOTE] = ACTIONS(683), + [anon_sym_as] = ACTIONS(683), + [anon_sym_async] = ACTIONS(683), + [anon_sym_await] = ACTIONS(683), + [anon_sym_break] = ACTIONS(683), + [anon_sym_const] = ACTIONS(683), + [anon_sym_continue] = ACTIONS(683), + [anon_sym_default] = ACTIONS(683), + [anon_sym_enum] = ACTIONS(683), + [anon_sym_fn] = ACTIONS(683), + [anon_sym_for] = ACTIONS(683), + [anon_sym_gen] = ACTIONS(683), + [anon_sym_if] = ACTIONS(683), + [anon_sym_impl] = ACTIONS(683), + [anon_sym_let] = ACTIONS(683), + [anon_sym_loop] = ACTIONS(683), + [anon_sym_match] = ACTIONS(683), + [anon_sym_mod] = ACTIONS(683), + [anon_sym_pub] = ACTIONS(683), + [anon_sym_return] = ACTIONS(683), + [anon_sym_static] = ACTIONS(683), + [anon_sym_struct] = ACTIONS(683), + [anon_sym_trait] = ACTIONS(683), + [anon_sym_type] = ACTIONS(683), + [anon_sym_union] = ACTIONS(683), + [anon_sym_unsafe] = ACTIONS(683), + [anon_sym_use] = ACTIONS(683), + [anon_sym_where] = ACTIONS(683), + [anon_sym_while] = ACTIONS(683), + [sym_mutable_specifier] = ACTIONS(683), + [sym_integer_literal] = ACTIONS(699), + [aux_sym_string_literal_token1] = ACTIONS(701), + [sym_char_literal] = ACTIONS(699), + [anon_sym_true] = ACTIONS(703), + [anon_sym_false] = ACTIONS(703), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(683), + [sym_super] = ACTIONS(683), + [sym_crate] = ACTIONS(683), + [sym__raw_string_literal_start] = ACTIONS(705), + [sym_float_literal] = ACTIONS(699), }, [STATE(119)] = { - [sym_delim_token_tree] = STATE(200), - [sym__delim_tokens] = STATE(208), - [sym__non_delim_token] = STATE(200), - [sym__literal] = STATE(210), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), + [sym_delim_token_tree] = STATE(206), + [sym__delim_tokens] = STATE(213), + [sym__non_delim_token] = STATE(206), + [sym__literal] = STATE(201), + [sym_string_literal] = STATE(219), + [sym_raw_string_literal] = STATE(219), + [sym_boolean_literal] = STATE(219), [sym_line_comment] = STATE(119), [sym_block_comment] = STATE(119), - [aux_sym__non_special_token_repeat1] = STATE(147), - [aux_sym_delim_token_tree_repeat1] = STATE(123), - [sym_identifier] = ACTIONS(678), - [anon_sym_SEMI] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(682), - [anon_sym_RPAREN] = ACTIONS(742), - [anon_sym_LBRACK] = ACTIONS(684), - [anon_sym_LBRACE] = ACTIONS(688), - [anon_sym_EQ_GT] = ACTIONS(680), - [anon_sym_COLON] = ACTIONS(690), - [anon_sym_DOLLAR] = ACTIONS(692), - [anon_sym_PLUS] = ACTIONS(690), - [anon_sym_STAR] = ACTIONS(690), - [anon_sym_QMARK] = ACTIONS(680), - [anon_sym_u8] = ACTIONS(678), - [anon_sym_i8] = ACTIONS(678), - [anon_sym_u16] = ACTIONS(678), - [anon_sym_i16] = ACTIONS(678), - [anon_sym_u32] = ACTIONS(678), - [anon_sym_i32] = ACTIONS(678), - [anon_sym_u64] = ACTIONS(678), - [anon_sym_i64] = ACTIONS(678), - [anon_sym_u128] = ACTIONS(678), - [anon_sym_i128] = ACTIONS(678), - [anon_sym_isize] = ACTIONS(678), - [anon_sym_usize] = ACTIONS(678), - [anon_sym_f32] = ACTIONS(678), - [anon_sym_f64] = ACTIONS(678), - [anon_sym_bool] = ACTIONS(678), - [anon_sym_str] = ACTIONS(678), - [anon_sym_char] = ACTIONS(678), - [anon_sym_DASH] = ACTIONS(690), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_PERCENT] = ACTIONS(690), - [anon_sym_CARET] = ACTIONS(690), - [anon_sym_BANG] = ACTIONS(690), - [anon_sym_AMP] = ACTIONS(690), - [anon_sym_PIPE] = ACTIONS(690), - [anon_sym_AMP_AMP] = ACTIONS(680), - [anon_sym_PIPE_PIPE] = ACTIONS(680), - [anon_sym_LT_LT] = ACTIONS(690), - [anon_sym_GT_GT] = ACTIONS(690), - [anon_sym_PLUS_EQ] = ACTIONS(680), - [anon_sym_DASH_EQ] = ACTIONS(680), - [anon_sym_STAR_EQ] = ACTIONS(680), - [anon_sym_SLASH_EQ] = ACTIONS(680), - [anon_sym_PERCENT_EQ] = ACTIONS(680), - [anon_sym_CARET_EQ] = ACTIONS(680), - [anon_sym_AMP_EQ] = ACTIONS(680), - [anon_sym_PIPE_EQ] = ACTIONS(680), - [anon_sym_LT_LT_EQ] = ACTIONS(680), - [anon_sym_GT_GT_EQ] = ACTIONS(680), - [anon_sym_EQ] = ACTIONS(690), - [anon_sym_EQ_EQ] = ACTIONS(680), - [anon_sym_BANG_EQ] = ACTIONS(680), - [anon_sym_GT] = ACTIONS(690), - [anon_sym_LT] = ACTIONS(690), - [anon_sym_GT_EQ] = ACTIONS(680), - [anon_sym_LT_EQ] = ACTIONS(680), - [anon_sym_AT] = ACTIONS(680), - [anon_sym__] = ACTIONS(690), - [anon_sym_DOT] = ACTIONS(690), - [anon_sym_DOT_DOT] = ACTIONS(690), - [anon_sym_DOT_DOT_DOT] = ACTIONS(680), - [anon_sym_DOT_DOT_EQ] = ACTIONS(680), - [anon_sym_COMMA] = ACTIONS(680), - [anon_sym_COLON_COLON] = ACTIONS(680), - [anon_sym_DASH_GT] = ACTIONS(680), - [anon_sym_POUND] = ACTIONS(680), - [anon_sym_SQUOTE] = ACTIONS(678), - [anon_sym_as] = ACTIONS(678), - [anon_sym_async] = ACTIONS(678), - [anon_sym_await] = ACTIONS(678), - [anon_sym_break] = ACTIONS(678), - [anon_sym_const] = ACTIONS(678), - [anon_sym_continue] = ACTIONS(678), - [anon_sym_default] = ACTIONS(678), - [anon_sym_enum] = ACTIONS(678), - [anon_sym_fn] = ACTIONS(678), - [anon_sym_for] = ACTIONS(678), - [anon_sym_gen] = ACTIONS(678), - [anon_sym_if] = ACTIONS(678), - [anon_sym_impl] = ACTIONS(678), - [anon_sym_let] = ACTIONS(678), - [anon_sym_loop] = ACTIONS(678), - [anon_sym_match] = ACTIONS(678), - [anon_sym_mod] = ACTIONS(678), - [anon_sym_pub] = ACTIONS(678), - [anon_sym_return] = ACTIONS(678), - [anon_sym_static] = ACTIONS(678), - [anon_sym_struct] = ACTIONS(678), - [anon_sym_trait] = ACTIONS(678), - [anon_sym_type] = ACTIONS(678), - [anon_sym_union] = ACTIONS(678), - [anon_sym_unsafe] = ACTIONS(678), - [anon_sym_use] = ACTIONS(678), - [anon_sym_where] = ACTIONS(678), - [anon_sym_while] = ACTIONS(678), - [sym_mutable_specifier] = ACTIONS(678), - [sym_integer_literal] = ACTIONS(694), - [aux_sym_string_literal_token1] = ACTIONS(696), - [sym_char_literal] = ACTIONS(694), - [anon_sym_true] = ACTIONS(698), - [anon_sym_false] = ACTIONS(698), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(678), - [sym_super] = ACTIONS(678), - [sym_crate] = ACTIONS(678), - [sym__raw_string_literal_start] = ACTIONS(700), - [sym_float_literal] = ACTIONS(694), + [aux_sym__non_special_token_repeat1] = STATE(176), + [aux_sym_delim_token_tree_repeat1] = STATE(83), + [sym_identifier] = ACTIONS(683), + [anon_sym_SEMI] = ACTIONS(685), + [anon_sym_LPAREN] = ACTIONS(687), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_RBRACK] = ACTIONS(741), + [anon_sym_LBRACE] = ACTIONS(693), + [anon_sym_EQ_GT] = ACTIONS(685), + [anon_sym_COLON] = ACTIONS(695), + [anon_sym_DOLLAR] = ACTIONS(697), + [anon_sym_PLUS] = ACTIONS(695), + [anon_sym_STAR] = ACTIONS(695), + [anon_sym_QMARK] = ACTIONS(685), + [anon_sym_u8] = ACTIONS(683), + [anon_sym_i8] = ACTIONS(683), + [anon_sym_u16] = ACTIONS(683), + [anon_sym_i16] = ACTIONS(683), + [anon_sym_u32] = ACTIONS(683), + [anon_sym_i32] = ACTIONS(683), + [anon_sym_u64] = ACTIONS(683), + [anon_sym_i64] = ACTIONS(683), + [anon_sym_u128] = ACTIONS(683), + [anon_sym_i128] = ACTIONS(683), + [anon_sym_isize] = ACTIONS(683), + [anon_sym_usize] = ACTIONS(683), + [anon_sym_f32] = ACTIONS(683), + [anon_sym_f64] = ACTIONS(683), + [anon_sym_bool] = ACTIONS(683), + [anon_sym_str] = ACTIONS(683), + [anon_sym_char] = ACTIONS(683), + [anon_sym_DASH] = ACTIONS(695), + [anon_sym_SLASH] = ACTIONS(695), + [anon_sym_PERCENT] = ACTIONS(695), + [anon_sym_CARET] = ACTIONS(695), + [anon_sym_BANG] = ACTIONS(695), + [anon_sym_AMP] = ACTIONS(695), + [anon_sym_PIPE] = ACTIONS(695), + [anon_sym_AMP_AMP] = ACTIONS(685), + [anon_sym_PIPE_PIPE] = ACTIONS(685), + [anon_sym_LT_LT] = ACTIONS(695), + [anon_sym_GT_GT] = ACTIONS(695), + [anon_sym_PLUS_EQ] = ACTIONS(685), + [anon_sym_DASH_EQ] = ACTIONS(685), + [anon_sym_STAR_EQ] = ACTIONS(685), + [anon_sym_SLASH_EQ] = ACTIONS(685), + [anon_sym_PERCENT_EQ] = ACTIONS(685), + [anon_sym_CARET_EQ] = ACTIONS(685), + [anon_sym_AMP_EQ] = ACTIONS(685), + [anon_sym_PIPE_EQ] = ACTIONS(685), + [anon_sym_LT_LT_EQ] = ACTIONS(685), + [anon_sym_GT_GT_EQ] = ACTIONS(685), + [anon_sym_EQ] = ACTIONS(695), + [anon_sym_EQ_EQ] = ACTIONS(685), + [anon_sym_BANG_EQ] = ACTIONS(685), + [anon_sym_GT] = ACTIONS(695), + [anon_sym_LT] = ACTIONS(695), + [anon_sym_GT_EQ] = ACTIONS(685), + [anon_sym_LT_EQ] = ACTIONS(685), + [anon_sym_AT] = ACTIONS(685), + [anon_sym__] = ACTIONS(695), + [anon_sym_DOT] = ACTIONS(695), + [anon_sym_DOT_DOT] = ACTIONS(695), + [anon_sym_DOT_DOT_DOT] = ACTIONS(685), + [anon_sym_DOT_DOT_EQ] = ACTIONS(685), + [anon_sym_COMMA] = ACTIONS(685), + [anon_sym_COLON_COLON] = ACTIONS(685), + [anon_sym_DASH_GT] = ACTIONS(685), + [anon_sym_POUND] = ACTIONS(685), + [anon_sym_SQUOTE] = ACTIONS(683), + [anon_sym_as] = ACTIONS(683), + [anon_sym_async] = ACTIONS(683), + [anon_sym_await] = ACTIONS(683), + [anon_sym_break] = ACTIONS(683), + [anon_sym_const] = ACTIONS(683), + [anon_sym_continue] = ACTIONS(683), + [anon_sym_default] = ACTIONS(683), + [anon_sym_enum] = ACTIONS(683), + [anon_sym_fn] = ACTIONS(683), + [anon_sym_for] = ACTIONS(683), + [anon_sym_gen] = ACTIONS(683), + [anon_sym_if] = ACTIONS(683), + [anon_sym_impl] = ACTIONS(683), + [anon_sym_let] = ACTIONS(683), + [anon_sym_loop] = ACTIONS(683), + [anon_sym_match] = ACTIONS(683), + [anon_sym_mod] = ACTIONS(683), + [anon_sym_pub] = ACTIONS(683), + [anon_sym_return] = ACTIONS(683), + [anon_sym_static] = ACTIONS(683), + [anon_sym_struct] = ACTIONS(683), + [anon_sym_trait] = ACTIONS(683), + [anon_sym_type] = ACTIONS(683), + [anon_sym_union] = ACTIONS(683), + [anon_sym_unsafe] = ACTIONS(683), + [anon_sym_use] = ACTIONS(683), + [anon_sym_where] = ACTIONS(683), + [anon_sym_while] = ACTIONS(683), + [sym_mutable_specifier] = ACTIONS(683), + [sym_integer_literal] = ACTIONS(699), + [aux_sym_string_literal_token1] = ACTIONS(701), + [sym_char_literal] = ACTIONS(699), + [anon_sym_true] = ACTIONS(703), + [anon_sym_false] = ACTIONS(703), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(683), + [sym_super] = ACTIONS(683), + [sym_crate] = ACTIONS(683), + [sym__raw_string_literal_start] = ACTIONS(705), + [sym_float_literal] = ACTIONS(699), }, [STATE(120)] = { - [sym_delim_token_tree] = STATE(200), - [sym__delim_tokens] = STATE(208), - [sym__non_delim_token] = STATE(200), - [sym__literal] = STATE(210), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), + [sym_delim_token_tree] = STATE(206), + [sym__delim_tokens] = STATE(213), + [sym__non_delim_token] = STATE(206), + [sym__literal] = STATE(201), + [sym_string_literal] = STATE(219), + [sym_raw_string_literal] = STATE(219), + [sym_boolean_literal] = STATE(219), [sym_line_comment] = STATE(120), [sym_block_comment] = STATE(120), - [aux_sym__non_special_token_repeat1] = STATE(147), - [aux_sym_delim_token_tree_repeat1] = STATE(124), - [sym_identifier] = ACTIONS(678), - [anon_sym_SEMI] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(682), - [anon_sym_LBRACK] = ACTIONS(684), - [anon_sym_RBRACK] = ACTIONS(742), - [anon_sym_LBRACE] = ACTIONS(688), - [anon_sym_EQ_GT] = ACTIONS(680), - [anon_sym_COLON] = ACTIONS(690), - [anon_sym_DOLLAR] = ACTIONS(692), - [anon_sym_PLUS] = ACTIONS(690), - [anon_sym_STAR] = ACTIONS(690), - [anon_sym_QMARK] = ACTIONS(680), - [anon_sym_u8] = ACTIONS(678), - [anon_sym_i8] = ACTIONS(678), - [anon_sym_u16] = ACTIONS(678), - [anon_sym_i16] = ACTIONS(678), - [anon_sym_u32] = ACTIONS(678), - [anon_sym_i32] = ACTIONS(678), - [anon_sym_u64] = ACTIONS(678), - [anon_sym_i64] = ACTIONS(678), - [anon_sym_u128] = ACTIONS(678), - [anon_sym_i128] = ACTIONS(678), - [anon_sym_isize] = ACTIONS(678), - [anon_sym_usize] = ACTIONS(678), - [anon_sym_f32] = ACTIONS(678), - [anon_sym_f64] = ACTIONS(678), - [anon_sym_bool] = ACTIONS(678), - [anon_sym_str] = ACTIONS(678), - [anon_sym_char] = ACTIONS(678), - [anon_sym_DASH] = ACTIONS(690), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_PERCENT] = ACTIONS(690), - [anon_sym_CARET] = ACTIONS(690), - [anon_sym_BANG] = ACTIONS(690), - [anon_sym_AMP] = ACTIONS(690), - [anon_sym_PIPE] = ACTIONS(690), - [anon_sym_AMP_AMP] = ACTIONS(680), - [anon_sym_PIPE_PIPE] = ACTIONS(680), - [anon_sym_LT_LT] = ACTIONS(690), - [anon_sym_GT_GT] = ACTIONS(690), - [anon_sym_PLUS_EQ] = ACTIONS(680), - [anon_sym_DASH_EQ] = ACTIONS(680), - [anon_sym_STAR_EQ] = ACTIONS(680), - [anon_sym_SLASH_EQ] = ACTIONS(680), - [anon_sym_PERCENT_EQ] = ACTIONS(680), - [anon_sym_CARET_EQ] = ACTIONS(680), - [anon_sym_AMP_EQ] = ACTIONS(680), - [anon_sym_PIPE_EQ] = ACTIONS(680), - [anon_sym_LT_LT_EQ] = ACTIONS(680), - [anon_sym_GT_GT_EQ] = ACTIONS(680), - [anon_sym_EQ] = ACTIONS(690), - [anon_sym_EQ_EQ] = ACTIONS(680), - [anon_sym_BANG_EQ] = ACTIONS(680), - [anon_sym_GT] = ACTIONS(690), - [anon_sym_LT] = ACTIONS(690), - [anon_sym_GT_EQ] = ACTIONS(680), - [anon_sym_LT_EQ] = ACTIONS(680), - [anon_sym_AT] = ACTIONS(680), - [anon_sym__] = ACTIONS(690), - [anon_sym_DOT] = ACTIONS(690), - [anon_sym_DOT_DOT] = ACTIONS(690), - [anon_sym_DOT_DOT_DOT] = ACTIONS(680), - [anon_sym_DOT_DOT_EQ] = ACTIONS(680), - [anon_sym_COMMA] = ACTIONS(680), - [anon_sym_COLON_COLON] = ACTIONS(680), - [anon_sym_DASH_GT] = ACTIONS(680), - [anon_sym_POUND] = ACTIONS(680), - [anon_sym_SQUOTE] = ACTIONS(678), - [anon_sym_as] = ACTIONS(678), - [anon_sym_async] = ACTIONS(678), - [anon_sym_await] = ACTIONS(678), - [anon_sym_break] = ACTIONS(678), - [anon_sym_const] = ACTIONS(678), - [anon_sym_continue] = ACTIONS(678), - [anon_sym_default] = ACTIONS(678), - [anon_sym_enum] = ACTIONS(678), - [anon_sym_fn] = ACTIONS(678), - [anon_sym_for] = ACTIONS(678), - [anon_sym_gen] = ACTIONS(678), - [anon_sym_if] = ACTIONS(678), - [anon_sym_impl] = ACTIONS(678), - [anon_sym_let] = ACTIONS(678), - [anon_sym_loop] = ACTIONS(678), - [anon_sym_match] = ACTIONS(678), - [anon_sym_mod] = ACTIONS(678), - [anon_sym_pub] = ACTIONS(678), - [anon_sym_return] = ACTIONS(678), - [anon_sym_static] = ACTIONS(678), - [anon_sym_struct] = ACTIONS(678), - [anon_sym_trait] = ACTIONS(678), - [anon_sym_type] = ACTIONS(678), - [anon_sym_union] = ACTIONS(678), - [anon_sym_unsafe] = ACTIONS(678), - [anon_sym_use] = ACTIONS(678), - [anon_sym_where] = ACTIONS(678), - [anon_sym_while] = ACTIONS(678), - [sym_mutable_specifier] = ACTIONS(678), - [sym_integer_literal] = ACTIONS(694), - [aux_sym_string_literal_token1] = ACTIONS(696), - [sym_char_literal] = ACTIONS(694), - [anon_sym_true] = ACTIONS(698), - [anon_sym_false] = ACTIONS(698), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(678), - [sym_super] = ACTIONS(678), - [sym_crate] = ACTIONS(678), - [sym__raw_string_literal_start] = ACTIONS(700), - [sym_float_literal] = ACTIONS(694), + [aux_sym__non_special_token_repeat1] = STATE(176), + [aux_sym_delim_token_tree_repeat1] = STATE(83), + [sym_identifier] = ACTIONS(683), + [anon_sym_SEMI] = ACTIONS(685), + [anon_sym_LPAREN] = ACTIONS(687), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_LBRACE] = ACTIONS(693), + [anon_sym_RBRACE] = ACTIONS(741), + [anon_sym_EQ_GT] = ACTIONS(685), + [anon_sym_COLON] = ACTIONS(695), + [anon_sym_DOLLAR] = ACTIONS(697), + [anon_sym_PLUS] = ACTIONS(695), + [anon_sym_STAR] = ACTIONS(695), + [anon_sym_QMARK] = ACTIONS(685), + [anon_sym_u8] = ACTIONS(683), + [anon_sym_i8] = ACTIONS(683), + [anon_sym_u16] = ACTIONS(683), + [anon_sym_i16] = ACTIONS(683), + [anon_sym_u32] = ACTIONS(683), + [anon_sym_i32] = ACTIONS(683), + [anon_sym_u64] = ACTIONS(683), + [anon_sym_i64] = ACTIONS(683), + [anon_sym_u128] = ACTIONS(683), + [anon_sym_i128] = ACTIONS(683), + [anon_sym_isize] = ACTIONS(683), + [anon_sym_usize] = ACTIONS(683), + [anon_sym_f32] = ACTIONS(683), + [anon_sym_f64] = ACTIONS(683), + [anon_sym_bool] = ACTIONS(683), + [anon_sym_str] = ACTIONS(683), + [anon_sym_char] = ACTIONS(683), + [anon_sym_DASH] = ACTIONS(695), + [anon_sym_SLASH] = ACTIONS(695), + [anon_sym_PERCENT] = ACTIONS(695), + [anon_sym_CARET] = ACTIONS(695), + [anon_sym_BANG] = ACTIONS(695), + [anon_sym_AMP] = ACTIONS(695), + [anon_sym_PIPE] = ACTIONS(695), + [anon_sym_AMP_AMP] = ACTIONS(685), + [anon_sym_PIPE_PIPE] = ACTIONS(685), + [anon_sym_LT_LT] = ACTIONS(695), + [anon_sym_GT_GT] = ACTIONS(695), + [anon_sym_PLUS_EQ] = ACTIONS(685), + [anon_sym_DASH_EQ] = ACTIONS(685), + [anon_sym_STAR_EQ] = ACTIONS(685), + [anon_sym_SLASH_EQ] = ACTIONS(685), + [anon_sym_PERCENT_EQ] = ACTIONS(685), + [anon_sym_CARET_EQ] = ACTIONS(685), + [anon_sym_AMP_EQ] = ACTIONS(685), + [anon_sym_PIPE_EQ] = ACTIONS(685), + [anon_sym_LT_LT_EQ] = ACTIONS(685), + [anon_sym_GT_GT_EQ] = ACTIONS(685), + [anon_sym_EQ] = ACTIONS(695), + [anon_sym_EQ_EQ] = ACTIONS(685), + [anon_sym_BANG_EQ] = ACTIONS(685), + [anon_sym_GT] = ACTIONS(695), + [anon_sym_LT] = ACTIONS(695), + [anon_sym_GT_EQ] = ACTIONS(685), + [anon_sym_LT_EQ] = ACTIONS(685), + [anon_sym_AT] = ACTIONS(685), + [anon_sym__] = ACTIONS(695), + [anon_sym_DOT] = ACTIONS(695), + [anon_sym_DOT_DOT] = ACTIONS(695), + [anon_sym_DOT_DOT_DOT] = ACTIONS(685), + [anon_sym_DOT_DOT_EQ] = ACTIONS(685), + [anon_sym_COMMA] = ACTIONS(685), + [anon_sym_COLON_COLON] = ACTIONS(685), + [anon_sym_DASH_GT] = ACTIONS(685), + [anon_sym_POUND] = ACTIONS(685), + [anon_sym_SQUOTE] = ACTIONS(683), + [anon_sym_as] = ACTIONS(683), + [anon_sym_async] = ACTIONS(683), + [anon_sym_await] = ACTIONS(683), + [anon_sym_break] = ACTIONS(683), + [anon_sym_const] = ACTIONS(683), + [anon_sym_continue] = ACTIONS(683), + [anon_sym_default] = ACTIONS(683), + [anon_sym_enum] = ACTIONS(683), + [anon_sym_fn] = ACTIONS(683), + [anon_sym_for] = ACTIONS(683), + [anon_sym_gen] = ACTIONS(683), + [anon_sym_if] = ACTIONS(683), + [anon_sym_impl] = ACTIONS(683), + [anon_sym_let] = ACTIONS(683), + [anon_sym_loop] = ACTIONS(683), + [anon_sym_match] = ACTIONS(683), + [anon_sym_mod] = ACTIONS(683), + [anon_sym_pub] = ACTIONS(683), + [anon_sym_return] = ACTIONS(683), + [anon_sym_static] = ACTIONS(683), + [anon_sym_struct] = ACTIONS(683), + [anon_sym_trait] = ACTIONS(683), + [anon_sym_type] = ACTIONS(683), + [anon_sym_union] = ACTIONS(683), + [anon_sym_unsafe] = ACTIONS(683), + [anon_sym_use] = ACTIONS(683), + [anon_sym_where] = ACTIONS(683), + [anon_sym_while] = ACTIONS(683), + [sym_mutable_specifier] = ACTIONS(683), + [sym_integer_literal] = ACTIONS(699), + [aux_sym_string_literal_token1] = ACTIONS(701), + [sym_char_literal] = ACTIONS(699), + [anon_sym_true] = ACTIONS(703), + [anon_sym_false] = ACTIONS(703), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(683), + [sym_super] = ACTIONS(683), + [sym_crate] = ACTIONS(683), + [sym__raw_string_literal_start] = ACTIONS(705), + [sym_float_literal] = ACTIONS(699), }, [STATE(121)] = { - [sym_delim_token_tree] = STATE(200), - [sym__delim_tokens] = STATE(208), - [sym__non_delim_token] = STATE(200), - [sym__literal] = STATE(210), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), + [sym_token_tree] = STATE(163), + [sym_token_repetition] = STATE(163), + [sym__literal] = STATE(163), + [sym_string_literal] = STATE(184), + [sym_raw_string_literal] = STATE(184), + [sym_boolean_literal] = STATE(184), [sym_line_comment] = STATE(121), [sym_block_comment] = STATE(121), - [aux_sym__non_special_token_repeat1] = STATE(147), - [aux_sym_delim_token_tree_repeat1] = STATE(125), - [sym_identifier] = ACTIONS(678), - [anon_sym_SEMI] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(682), - [anon_sym_LBRACK] = ACTIONS(684), - [anon_sym_LBRACE] = ACTIONS(688), - [anon_sym_RBRACE] = ACTIONS(742), - [anon_sym_EQ_GT] = ACTIONS(680), - [anon_sym_COLON] = ACTIONS(690), - [anon_sym_DOLLAR] = ACTIONS(692), - [anon_sym_PLUS] = ACTIONS(690), - [anon_sym_STAR] = ACTIONS(690), - [anon_sym_QMARK] = ACTIONS(680), - [anon_sym_u8] = ACTIONS(678), - [anon_sym_i8] = ACTIONS(678), - [anon_sym_u16] = ACTIONS(678), - [anon_sym_i16] = ACTIONS(678), - [anon_sym_u32] = ACTIONS(678), - [anon_sym_i32] = ACTIONS(678), - [anon_sym_u64] = ACTIONS(678), - [anon_sym_i64] = ACTIONS(678), - [anon_sym_u128] = ACTIONS(678), - [anon_sym_i128] = ACTIONS(678), - [anon_sym_isize] = ACTIONS(678), - [anon_sym_usize] = ACTIONS(678), - [anon_sym_f32] = ACTIONS(678), - [anon_sym_f64] = ACTIONS(678), - [anon_sym_bool] = ACTIONS(678), - [anon_sym_str] = ACTIONS(678), - [anon_sym_char] = ACTIONS(678), - [anon_sym_DASH] = ACTIONS(690), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_PERCENT] = ACTIONS(690), - [anon_sym_CARET] = ACTIONS(690), - [anon_sym_BANG] = ACTIONS(690), - [anon_sym_AMP] = ACTIONS(690), - [anon_sym_PIPE] = ACTIONS(690), - [anon_sym_AMP_AMP] = ACTIONS(680), - [anon_sym_PIPE_PIPE] = ACTIONS(680), - [anon_sym_LT_LT] = ACTIONS(690), - [anon_sym_GT_GT] = ACTIONS(690), - [anon_sym_PLUS_EQ] = ACTIONS(680), - [anon_sym_DASH_EQ] = ACTIONS(680), - [anon_sym_STAR_EQ] = ACTIONS(680), - [anon_sym_SLASH_EQ] = ACTIONS(680), - [anon_sym_PERCENT_EQ] = ACTIONS(680), - [anon_sym_CARET_EQ] = ACTIONS(680), - [anon_sym_AMP_EQ] = ACTIONS(680), - [anon_sym_PIPE_EQ] = ACTIONS(680), - [anon_sym_LT_LT_EQ] = ACTIONS(680), - [anon_sym_GT_GT_EQ] = ACTIONS(680), - [anon_sym_EQ] = ACTIONS(690), - [anon_sym_EQ_EQ] = ACTIONS(680), - [anon_sym_BANG_EQ] = ACTIONS(680), - [anon_sym_GT] = ACTIONS(690), - [anon_sym_LT] = ACTIONS(690), - [anon_sym_GT_EQ] = ACTIONS(680), - [anon_sym_LT_EQ] = ACTIONS(680), - [anon_sym_AT] = ACTIONS(680), - [anon_sym__] = ACTIONS(690), - [anon_sym_DOT] = ACTIONS(690), - [anon_sym_DOT_DOT] = ACTIONS(690), - [anon_sym_DOT_DOT_DOT] = ACTIONS(680), - [anon_sym_DOT_DOT_EQ] = ACTIONS(680), - [anon_sym_COMMA] = ACTIONS(680), - [anon_sym_COLON_COLON] = ACTIONS(680), - [anon_sym_DASH_GT] = ACTIONS(680), - [anon_sym_POUND] = ACTIONS(680), - [anon_sym_SQUOTE] = ACTIONS(678), - [anon_sym_as] = ACTIONS(678), - [anon_sym_async] = ACTIONS(678), - [anon_sym_await] = ACTIONS(678), - [anon_sym_break] = ACTIONS(678), - [anon_sym_const] = ACTIONS(678), - [anon_sym_continue] = ACTIONS(678), - [anon_sym_default] = ACTIONS(678), - [anon_sym_enum] = ACTIONS(678), - [anon_sym_fn] = ACTIONS(678), - [anon_sym_for] = ACTIONS(678), - [anon_sym_gen] = ACTIONS(678), - [anon_sym_if] = ACTIONS(678), - [anon_sym_impl] = ACTIONS(678), - [anon_sym_let] = ACTIONS(678), - [anon_sym_loop] = ACTIONS(678), - [anon_sym_match] = ACTIONS(678), - [anon_sym_mod] = ACTIONS(678), - [anon_sym_pub] = ACTIONS(678), - [anon_sym_return] = ACTIONS(678), - [anon_sym_static] = ACTIONS(678), - [anon_sym_struct] = ACTIONS(678), - [anon_sym_trait] = ACTIONS(678), - [anon_sym_type] = ACTIONS(678), - [anon_sym_union] = ACTIONS(678), - [anon_sym_unsafe] = ACTIONS(678), - [anon_sym_use] = ACTIONS(678), - [anon_sym_where] = ACTIONS(678), - [anon_sym_while] = ACTIONS(678), - [sym_mutable_specifier] = ACTIONS(678), - [sym_integer_literal] = ACTIONS(694), - [aux_sym_string_literal_token1] = ACTIONS(696), - [sym_char_literal] = ACTIONS(694), - [anon_sym_true] = ACTIONS(698), - [anon_sym_false] = ACTIONS(698), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(678), - [sym_super] = ACTIONS(678), - [sym_crate] = ACTIONS(678), - [sym__raw_string_literal_start] = ACTIONS(700), - [sym_float_literal] = ACTIONS(694), + [aux_sym_token_tree_repeat1] = STATE(128), + [aux_sym__non_special_token_repeat1] = STATE(141), + [sym_identifier] = ACTIONS(713), + [anon_sym_SEMI] = ACTIONS(576), + [anon_sym_LPAREN] = ACTIONS(715), + [anon_sym_RPAREN] = ACTIONS(743), + [anon_sym_LBRACK] = ACTIONS(719), + [anon_sym_LBRACE] = ACTIONS(721), + [anon_sym_EQ_GT] = ACTIONS(576), + [anon_sym_COLON] = ACTIONS(586), + [anon_sym_DOLLAR] = ACTIONS(723), + [anon_sym_PLUS] = ACTIONS(586), + [anon_sym_STAR] = ACTIONS(586), + [anon_sym_QMARK] = ACTIONS(576), + [anon_sym_u8] = ACTIONS(713), + [anon_sym_i8] = ACTIONS(713), + [anon_sym_u16] = ACTIONS(713), + [anon_sym_i16] = ACTIONS(713), + [anon_sym_u32] = ACTIONS(713), + [anon_sym_i32] = ACTIONS(713), + [anon_sym_u64] = ACTIONS(713), + [anon_sym_i64] = ACTIONS(713), + [anon_sym_u128] = ACTIONS(713), + [anon_sym_i128] = ACTIONS(713), + [anon_sym_isize] = ACTIONS(713), + [anon_sym_usize] = ACTIONS(713), + [anon_sym_f32] = ACTIONS(713), + [anon_sym_f64] = ACTIONS(713), + [anon_sym_bool] = ACTIONS(713), + [anon_sym_str] = ACTIONS(713), + [anon_sym_char] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(586), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_PERCENT] = ACTIONS(586), + [anon_sym_CARET] = ACTIONS(586), + [anon_sym_BANG] = ACTIONS(586), + [anon_sym_AMP] = ACTIONS(586), + [anon_sym_PIPE] = ACTIONS(586), + [anon_sym_AMP_AMP] = ACTIONS(576), + [anon_sym_PIPE_PIPE] = ACTIONS(576), + [anon_sym_LT_LT] = ACTIONS(586), + [anon_sym_GT_GT] = ACTIONS(586), + [anon_sym_PLUS_EQ] = ACTIONS(576), + [anon_sym_DASH_EQ] = ACTIONS(576), + [anon_sym_STAR_EQ] = ACTIONS(576), + [anon_sym_SLASH_EQ] = ACTIONS(576), + [anon_sym_PERCENT_EQ] = ACTIONS(576), + [anon_sym_CARET_EQ] = ACTIONS(576), + [anon_sym_AMP_EQ] = ACTIONS(576), + [anon_sym_PIPE_EQ] = ACTIONS(576), + [anon_sym_LT_LT_EQ] = ACTIONS(576), + [anon_sym_GT_GT_EQ] = ACTIONS(576), + [anon_sym_EQ] = ACTIONS(586), + [anon_sym_EQ_EQ] = ACTIONS(576), + [anon_sym_BANG_EQ] = ACTIONS(576), + [anon_sym_GT] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(586), + [anon_sym_GT_EQ] = ACTIONS(576), + [anon_sym_LT_EQ] = ACTIONS(576), + [anon_sym_AT] = ACTIONS(576), + [anon_sym__] = ACTIONS(586), + [anon_sym_DOT] = ACTIONS(586), + [anon_sym_DOT_DOT] = ACTIONS(586), + [anon_sym_DOT_DOT_DOT] = ACTIONS(576), + [anon_sym_DOT_DOT_EQ] = ACTIONS(576), + [anon_sym_COMMA] = ACTIONS(576), + [anon_sym_COLON_COLON] = ACTIONS(576), + [anon_sym_DASH_GT] = ACTIONS(576), + [anon_sym_POUND] = ACTIONS(576), + [anon_sym_SQUOTE] = ACTIONS(713), + [anon_sym_as] = ACTIONS(713), + [anon_sym_async] = ACTIONS(713), + [anon_sym_await] = ACTIONS(713), + [anon_sym_break] = ACTIONS(713), + [anon_sym_const] = ACTIONS(713), + [anon_sym_continue] = ACTIONS(713), + [anon_sym_default] = ACTIONS(713), + [anon_sym_enum] = ACTIONS(713), + [anon_sym_fn] = ACTIONS(713), + [anon_sym_for] = ACTIONS(713), + [anon_sym_gen] = ACTIONS(713), + [anon_sym_if] = ACTIONS(713), + [anon_sym_impl] = ACTIONS(713), + [anon_sym_let] = ACTIONS(713), + [anon_sym_loop] = ACTIONS(713), + [anon_sym_match] = ACTIONS(713), + [anon_sym_mod] = ACTIONS(713), + [anon_sym_pub] = ACTIONS(713), + [anon_sym_return] = ACTIONS(713), + [anon_sym_static] = ACTIONS(713), + [anon_sym_struct] = ACTIONS(713), + [anon_sym_trait] = ACTIONS(713), + [anon_sym_type] = ACTIONS(713), + [anon_sym_union] = ACTIONS(713), + [anon_sym_unsafe] = ACTIONS(713), + [anon_sym_use] = ACTIONS(713), + [anon_sym_where] = ACTIONS(713), + [anon_sym_while] = ACTIONS(713), + [sym_mutable_specifier] = ACTIONS(713), + [sym_integer_literal] = ACTIONS(590), + [aux_sym_string_literal_token1] = ACTIONS(592), + [sym_char_literal] = ACTIONS(590), + [anon_sym_true] = ACTIONS(594), + [anon_sym_false] = ACTIONS(594), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(713), + [sym_super] = ACTIONS(713), + [sym_crate] = ACTIONS(713), + [sym_metavariable] = ACTIONS(725), + [sym__raw_string_literal_start] = ACTIONS(598), + [sym_float_literal] = ACTIONS(590), }, [STATE(122)] = { - [sym_token_tree] = STATE(187), - [sym_token_repetition] = STATE(187), - [sym__literal] = STATE(187), - [sym_string_literal] = STATE(183), - [sym_raw_string_literal] = STATE(183), - [sym_boolean_literal] = STATE(183), + [sym_delim_token_tree] = STATE(206), + [sym__delim_tokens] = STATE(213), + [sym__non_delim_token] = STATE(206), + [sym__literal] = STATE(201), + [sym_string_literal] = STATE(219), + [sym_raw_string_literal] = STATE(219), + [sym_boolean_literal] = STATE(219), [sym_line_comment] = STATE(122), [sym_block_comment] = STATE(122), - [aux_sym_token_tree_repeat1] = STATE(108), - [aux_sym__non_special_token_repeat1] = STATE(144), - [sym_identifier] = ACTIONS(702), - [anon_sym_SEMI] = ACTIONS(609), - [anon_sym_LPAREN] = ACTIONS(704), - [anon_sym_LBRACK] = ACTIONS(708), - [anon_sym_LBRACE] = ACTIONS(710), - [anon_sym_RBRACE] = ACTIONS(740), - [anon_sym_EQ_GT] = ACTIONS(609), - [anon_sym_COLON] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(712), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_STAR] = ACTIONS(619), - [anon_sym_QMARK] = ACTIONS(609), - [anon_sym_u8] = ACTIONS(702), - [anon_sym_i8] = ACTIONS(702), - [anon_sym_u16] = ACTIONS(702), - [anon_sym_i16] = ACTIONS(702), - [anon_sym_u32] = ACTIONS(702), - [anon_sym_i32] = ACTIONS(702), - [anon_sym_u64] = ACTIONS(702), - [anon_sym_i64] = ACTIONS(702), - [anon_sym_u128] = ACTIONS(702), - [anon_sym_i128] = ACTIONS(702), - [anon_sym_isize] = ACTIONS(702), - [anon_sym_usize] = ACTIONS(702), - [anon_sym_f32] = ACTIONS(702), - [anon_sym_f64] = ACTIONS(702), - [anon_sym_bool] = ACTIONS(702), - [anon_sym_str] = ACTIONS(702), - [anon_sym_char] = ACTIONS(702), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_SLASH] = ACTIONS(619), - [anon_sym_PERCENT] = ACTIONS(619), - [anon_sym_CARET] = ACTIONS(619), - [anon_sym_BANG] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(619), - [anon_sym_AMP_AMP] = ACTIONS(609), - [anon_sym_PIPE_PIPE] = ACTIONS(609), - [anon_sym_LT_LT] = ACTIONS(619), - [anon_sym_GT_GT] = ACTIONS(619), - [anon_sym_PLUS_EQ] = ACTIONS(609), - [anon_sym_DASH_EQ] = ACTIONS(609), - [anon_sym_STAR_EQ] = ACTIONS(609), - [anon_sym_SLASH_EQ] = ACTIONS(609), - [anon_sym_PERCENT_EQ] = ACTIONS(609), - [anon_sym_CARET_EQ] = ACTIONS(609), - [anon_sym_AMP_EQ] = ACTIONS(609), - [anon_sym_PIPE_EQ] = ACTIONS(609), - [anon_sym_LT_LT_EQ] = ACTIONS(609), - [anon_sym_GT_GT_EQ] = ACTIONS(609), - [anon_sym_EQ] = ACTIONS(619), - [anon_sym_EQ_EQ] = ACTIONS(609), - [anon_sym_BANG_EQ] = ACTIONS(609), - [anon_sym_GT] = ACTIONS(619), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_GT_EQ] = ACTIONS(609), - [anon_sym_LT_EQ] = ACTIONS(609), - [anon_sym_AT] = ACTIONS(609), - [anon_sym__] = ACTIONS(619), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_DOT_DOT] = ACTIONS(619), - [anon_sym_DOT_DOT_DOT] = ACTIONS(609), - [anon_sym_DOT_DOT_EQ] = ACTIONS(609), - [anon_sym_COMMA] = ACTIONS(609), - [anon_sym_COLON_COLON] = ACTIONS(609), - [anon_sym_DASH_GT] = ACTIONS(609), - [anon_sym_POUND] = ACTIONS(609), - [anon_sym_SQUOTE] = ACTIONS(702), - [anon_sym_as] = ACTIONS(702), - [anon_sym_async] = ACTIONS(702), - [anon_sym_await] = ACTIONS(702), - [anon_sym_break] = ACTIONS(702), - [anon_sym_const] = ACTIONS(702), - [anon_sym_continue] = ACTIONS(702), - [anon_sym_default] = ACTIONS(702), - [anon_sym_enum] = ACTIONS(702), - [anon_sym_fn] = ACTIONS(702), - [anon_sym_for] = ACTIONS(702), - [anon_sym_gen] = ACTIONS(702), - [anon_sym_if] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(702), - [anon_sym_let] = ACTIONS(702), - [anon_sym_loop] = ACTIONS(702), - [anon_sym_match] = ACTIONS(702), - [anon_sym_mod] = ACTIONS(702), - [anon_sym_pub] = ACTIONS(702), - [anon_sym_return] = ACTIONS(702), - [anon_sym_static] = ACTIONS(702), - [anon_sym_struct] = ACTIONS(702), - [anon_sym_trait] = ACTIONS(702), - [anon_sym_type] = ACTIONS(702), - [anon_sym_union] = ACTIONS(702), - [anon_sym_unsafe] = ACTIONS(702), - [anon_sym_use] = ACTIONS(702), - [anon_sym_where] = ACTIONS(702), - [anon_sym_while] = ACTIONS(702), - [sym_mutable_specifier] = ACTIONS(702), - [sym_integer_literal] = ACTIONS(623), - [aux_sym_string_literal_token1] = ACTIONS(625), - [sym_char_literal] = ACTIONS(623), - [anon_sym_true] = ACTIONS(627), - [anon_sym_false] = ACTIONS(627), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(702), - [sym_super] = ACTIONS(702), - [sym_crate] = ACTIONS(702), - [sym_metavariable] = ACTIONS(714), - [sym__raw_string_literal_start] = ACTIONS(631), - [sym_float_literal] = ACTIONS(623), + [aux_sym__non_special_token_repeat1] = STATE(176), + [aux_sym_delim_token_tree_repeat1] = STATE(125), + [sym_identifier] = ACTIONS(683), + [anon_sym_SEMI] = ACTIONS(685), + [anon_sym_LPAREN] = ACTIONS(687), + [anon_sym_RPAREN] = ACTIONS(745), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_LBRACE] = ACTIONS(693), + [anon_sym_EQ_GT] = ACTIONS(685), + [anon_sym_COLON] = ACTIONS(695), + [anon_sym_DOLLAR] = ACTIONS(697), + [anon_sym_PLUS] = ACTIONS(695), + [anon_sym_STAR] = ACTIONS(695), + [anon_sym_QMARK] = ACTIONS(685), + [anon_sym_u8] = ACTIONS(683), + [anon_sym_i8] = ACTIONS(683), + [anon_sym_u16] = ACTIONS(683), + [anon_sym_i16] = ACTIONS(683), + [anon_sym_u32] = ACTIONS(683), + [anon_sym_i32] = ACTIONS(683), + [anon_sym_u64] = ACTIONS(683), + [anon_sym_i64] = ACTIONS(683), + [anon_sym_u128] = ACTIONS(683), + [anon_sym_i128] = ACTIONS(683), + [anon_sym_isize] = ACTIONS(683), + [anon_sym_usize] = ACTIONS(683), + [anon_sym_f32] = ACTIONS(683), + [anon_sym_f64] = ACTIONS(683), + [anon_sym_bool] = ACTIONS(683), + [anon_sym_str] = ACTIONS(683), + [anon_sym_char] = ACTIONS(683), + [anon_sym_DASH] = ACTIONS(695), + [anon_sym_SLASH] = ACTIONS(695), + [anon_sym_PERCENT] = ACTIONS(695), + [anon_sym_CARET] = ACTIONS(695), + [anon_sym_BANG] = ACTIONS(695), + [anon_sym_AMP] = ACTIONS(695), + [anon_sym_PIPE] = ACTIONS(695), + [anon_sym_AMP_AMP] = ACTIONS(685), + [anon_sym_PIPE_PIPE] = ACTIONS(685), + [anon_sym_LT_LT] = ACTIONS(695), + [anon_sym_GT_GT] = ACTIONS(695), + [anon_sym_PLUS_EQ] = ACTIONS(685), + [anon_sym_DASH_EQ] = ACTIONS(685), + [anon_sym_STAR_EQ] = ACTIONS(685), + [anon_sym_SLASH_EQ] = ACTIONS(685), + [anon_sym_PERCENT_EQ] = ACTIONS(685), + [anon_sym_CARET_EQ] = ACTIONS(685), + [anon_sym_AMP_EQ] = ACTIONS(685), + [anon_sym_PIPE_EQ] = ACTIONS(685), + [anon_sym_LT_LT_EQ] = ACTIONS(685), + [anon_sym_GT_GT_EQ] = ACTIONS(685), + [anon_sym_EQ] = ACTIONS(695), + [anon_sym_EQ_EQ] = ACTIONS(685), + [anon_sym_BANG_EQ] = ACTIONS(685), + [anon_sym_GT] = ACTIONS(695), + [anon_sym_LT] = ACTIONS(695), + [anon_sym_GT_EQ] = ACTIONS(685), + [anon_sym_LT_EQ] = ACTIONS(685), + [anon_sym_AT] = ACTIONS(685), + [anon_sym__] = ACTIONS(695), + [anon_sym_DOT] = ACTIONS(695), + [anon_sym_DOT_DOT] = ACTIONS(695), + [anon_sym_DOT_DOT_DOT] = ACTIONS(685), + [anon_sym_DOT_DOT_EQ] = ACTIONS(685), + [anon_sym_COMMA] = ACTIONS(685), + [anon_sym_COLON_COLON] = ACTIONS(685), + [anon_sym_DASH_GT] = ACTIONS(685), + [anon_sym_POUND] = ACTIONS(685), + [anon_sym_SQUOTE] = ACTIONS(683), + [anon_sym_as] = ACTIONS(683), + [anon_sym_async] = ACTIONS(683), + [anon_sym_await] = ACTIONS(683), + [anon_sym_break] = ACTIONS(683), + [anon_sym_const] = ACTIONS(683), + [anon_sym_continue] = ACTIONS(683), + [anon_sym_default] = ACTIONS(683), + [anon_sym_enum] = ACTIONS(683), + [anon_sym_fn] = ACTIONS(683), + [anon_sym_for] = ACTIONS(683), + [anon_sym_gen] = ACTIONS(683), + [anon_sym_if] = ACTIONS(683), + [anon_sym_impl] = ACTIONS(683), + [anon_sym_let] = ACTIONS(683), + [anon_sym_loop] = ACTIONS(683), + [anon_sym_match] = ACTIONS(683), + [anon_sym_mod] = ACTIONS(683), + [anon_sym_pub] = ACTIONS(683), + [anon_sym_return] = ACTIONS(683), + [anon_sym_static] = ACTIONS(683), + [anon_sym_struct] = ACTIONS(683), + [anon_sym_trait] = ACTIONS(683), + [anon_sym_type] = ACTIONS(683), + [anon_sym_union] = ACTIONS(683), + [anon_sym_unsafe] = ACTIONS(683), + [anon_sym_use] = ACTIONS(683), + [anon_sym_where] = ACTIONS(683), + [anon_sym_while] = ACTIONS(683), + [sym_mutable_specifier] = ACTIONS(683), + [sym_integer_literal] = ACTIONS(699), + [aux_sym_string_literal_token1] = ACTIONS(701), + [sym_char_literal] = ACTIONS(699), + [anon_sym_true] = ACTIONS(703), + [anon_sym_false] = ACTIONS(703), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(683), + [sym_super] = ACTIONS(683), + [sym_crate] = ACTIONS(683), + [sym__raw_string_literal_start] = ACTIONS(705), + [sym_float_literal] = ACTIONS(699), }, [STATE(123)] = { - [sym_delim_token_tree] = STATE(200), - [sym__delim_tokens] = STATE(208), - [sym__non_delim_token] = STATE(200), - [sym__literal] = STATE(210), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), + [sym_delim_token_tree] = STATE(206), + [sym__delim_tokens] = STATE(213), + [sym__non_delim_token] = STATE(206), + [sym__literal] = STATE(201), + [sym_string_literal] = STATE(219), + [sym_raw_string_literal] = STATE(219), + [sym_boolean_literal] = STATE(219), [sym_line_comment] = STATE(123), [sym_block_comment] = STATE(123), - [aux_sym__non_special_token_repeat1] = STATE(147), - [aux_sym_delim_token_tree_repeat1] = STATE(83), - [sym_identifier] = ACTIONS(678), - [anon_sym_SEMI] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(682), - [anon_sym_RPAREN] = ACTIONS(744), - [anon_sym_LBRACK] = ACTIONS(684), - [anon_sym_LBRACE] = ACTIONS(688), - [anon_sym_EQ_GT] = ACTIONS(680), - [anon_sym_COLON] = ACTIONS(690), - [anon_sym_DOLLAR] = ACTIONS(692), - [anon_sym_PLUS] = ACTIONS(690), - [anon_sym_STAR] = ACTIONS(690), - [anon_sym_QMARK] = ACTIONS(680), - [anon_sym_u8] = ACTIONS(678), - [anon_sym_i8] = ACTIONS(678), - [anon_sym_u16] = ACTIONS(678), - [anon_sym_i16] = ACTIONS(678), - [anon_sym_u32] = ACTIONS(678), - [anon_sym_i32] = ACTIONS(678), - [anon_sym_u64] = ACTIONS(678), - [anon_sym_i64] = ACTIONS(678), - [anon_sym_u128] = ACTIONS(678), - [anon_sym_i128] = ACTIONS(678), - [anon_sym_isize] = ACTIONS(678), - [anon_sym_usize] = ACTIONS(678), - [anon_sym_f32] = ACTIONS(678), - [anon_sym_f64] = ACTIONS(678), - [anon_sym_bool] = ACTIONS(678), - [anon_sym_str] = ACTIONS(678), - [anon_sym_char] = ACTIONS(678), - [anon_sym_DASH] = ACTIONS(690), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_PERCENT] = ACTIONS(690), - [anon_sym_CARET] = ACTIONS(690), - [anon_sym_BANG] = ACTIONS(690), - [anon_sym_AMP] = ACTIONS(690), - [anon_sym_PIPE] = ACTIONS(690), - [anon_sym_AMP_AMP] = ACTIONS(680), - [anon_sym_PIPE_PIPE] = ACTIONS(680), - [anon_sym_LT_LT] = ACTIONS(690), - [anon_sym_GT_GT] = ACTIONS(690), - [anon_sym_PLUS_EQ] = ACTIONS(680), - [anon_sym_DASH_EQ] = ACTIONS(680), - [anon_sym_STAR_EQ] = ACTIONS(680), - [anon_sym_SLASH_EQ] = ACTIONS(680), - [anon_sym_PERCENT_EQ] = ACTIONS(680), - [anon_sym_CARET_EQ] = ACTIONS(680), - [anon_sym_AMP_EQ] = ACTIONS(680), - [anon_sym_PIPE_EQ] = ACTIONS(680), - [anon_sym_LT_LT_EQ] = ACTIONS(680), - [anon_sym_GT_GT_EQ] = ACTIONS(680), - [anon_sym_EQ] = ACTIONS(690), - [anon_sym_EQ_EQ] = ACTIONS(680), - [anon_sym_BANG_EQ] = ACTIONS(680), - [anon_sym_GT] = ACTIONS(690), - [anon_sym_LT] = ACTIONS(690), - [anon_sym_GT_EQ] = ACTIONS(680), - [anon_sym_LT_EQ] = ACTIONS(680), - [anon_sym_AT] = ACTIONS(680), - [anon_sym__] = ACTIONS(690), - [anon_sym_DOT] = ACTIONS(690), - [anon_sym_DOT_DOT] = ACTIONS(690), - [anon_sym_DOT_DOT_DOT] = ACTIONS(680), - [anon_sym_DOT_DOT_EQ] = ACTIONS(680), - [anon_sym_COMMA] = ACTIONS(680), - [anon_sym_COLON_COLON] = ACTIONS(680), - [anon_sym_DASH_GT] = ACTIONS(680), - [anon_sym_POUND] = ACTIONS(680), - [anon_sym_SQUOTE] = ACTIONS(678), - [anon_sym_as] = ACTIONS(678), - [anon_sym_async] = ACTIONS(678), - [anon_sym_await] = ACTIONS(678), - [anon_sym_break] = ACTIONS(678), - [anon_sym_const] = ACTIONS(678), - [anon_sym_continue] = ACTIONS(678), - [anon_sym_default] = ACTIONS(678), - [anon_sym_enum] = ACTIONS(678), - [anon_sym_fn] = ACTIONS(678), - [anon_sym_for] = ACTIONS(678), - [anon_sym_gen] = ACTIONS(678), - [anon_sym_if] = ACTIONS(678), - [anon_sym_impl] = ACTIONS(678), - [anon_sym_let] = ACTIONS(678), - [anon_sym_loop] = ACTIONS(678), - [anon_sym_match] = ACTIONS(678), - [anon_sym_mod] = ACTIONS(678), - [anon_sym_pub] = ACTIONS(678), - [anon_sym_return] = ACTIONS(678), - [anon_sym_static] = ACTIONS(678), - [anon_sym_struct] = ACTIONS(678), - [anon_sym_trait] = ACTIONS(678), - [anon_sym_type] = ACTIONS(678), - [anon_sym_union] = ACTIONS(678), - [anon_sym_unsafe] = ACTIONS(678), - [anon_sym_use] = ACTIONS(678), - [anon_sym_where] = ACTIONS(678), - [anon_sym_while] = ACTIONS(678), - [sym_mutable_specifier] = ACTIONS(678), - [sym_integer_literal] = ACTIONS(694), - [aux_sym_string_literal_token1] = ACTIONS(696), - [sym_char_literal] = ACTIONS(694), - [anon_sym_true] = ACTIONS(698), - [anon_sym_false] = ACTIONS(698), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(678), - [sym_super] = ACTIONS(678), - [sym_crate] = ACTIONS(678), - [sym__raw_string_literal_start] = ACTIONS(700), - [sym_float_literal] = ACTIONS(694), + [aux_sym__non_special_token_repeat1] = STATE(176), + [aux_sym_delim_token_tree_repeat1] = STATE(126), + [sym_identifier] = ACTIONS(683), + [anon_sym_SEMI] = ACTIONS(685), + [anon_sym_LPAREN] = ACTIONS(687), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_RBRACK] = ACTIONS(745), + [anon_sym_LBRACE] = ACTIONS(693), + [anon_sym_EQ_GT] = ACTIONS(685), + [anon_sym_COLON] = ACTIONS(695), + [anon_sym_DOLLAR] = ACTIONS(697), + [anon_sym_PLUS] = ACTIONS(695), + [anon_sym_STAR] = ACTIONS(695), + [anon_sym_QMARK] = ACTIONS(685), + [anon_sym_u8] = ACTIONS(683), + [anon_sym_i8] = ACTIONS(683), + [anon_sym_u16] = ACTIONS(683), + [anon_sym_i16] = ACTIONS(683), + [anon_sym_u32] = ACTIONS(683), + [anon_sym_i32] = ACTIONS(683), + [anon_sym_u64] = ACTIONS(683), + [anon_sym_i64] = ACTIONS(683), + [anon_sym_u128] = ACTIONS(683), + [anon_sym_i128] = ACTIONS(683), + [anon_sym_isize] = ACTIONS(683), + [anon_sym_usize] = ACTIONS(683), + [anon_sym_f32] = ACTIONS(683), + [anon_sym_f64] = ACTIONS(683), + [anon_sym_bool] = ACTIONS(683), + [anon_sym_str] = ACTIONS(683), + [anon_sym_char] = ACTIONS(683), + [anon_sym_DASH] = ACTIONS(695), + [anon_sym_SLASH] = ACTIONS(695), + [anon_sym_PERCENT] = ACTIONS(695), + [anon_sym_CARET] = ACTIONS(695), + [anon_sym_BANG] = ACTIONS(695), + [anon_sym_AMP] = ACTIONS(695), + [anon_sym_PIPE] = ACTIONS(695), + [anon_sym_AMP_AMP] = ACTIONS(685), + [anon_sym_PIPE_PIPE] = ACTIONS(685), + [anon_sym_LT_LT] = ACTIONS(695), + [anon_sym_GT_GT] = ACTIONS(695), + [anon_sym_PLUS_EQ] = ACTIONS(685), + [anon_sym_DASH_EQ] = ACTIONS(685), + [anon_sym_STAR_EQ] = ACTIONS(685), + [anon_sym_SLASH_EQ] = ACTIONS(685), + [anon_sym_PERCENT_EQ] = ACTIONS(685), + [anon_sym_CARET_EQ] = ACTIONS(685), + [anon_sym_AMP_EQ] = ACTIONS(685), + [anon_sym_PIPE_EQ] = ACTIONS(685), + [anon_sym_LT_LT_EQ] = ACTIONS(685), + [anon_sym_GT_GT_EQ] = ACTIONS(685), + [anon_sym_EQ] = ACTIONS(695), + [anon_sym_EQ_EQ] = ACTIONS(685), + [anon_sym_BANG_EQ] = ACTIONS(685), + [anon_sym_GT] = ACTIONS(695), + [anon_sym_LT] = ACTIONS(695), + [anon_sym_GT_EQ] = ACTIONS(685), + [anon_sym_LT_EQ] = ACTIONS(685), + [anon_sym_AT] = ACTIONS(685), + [anon_sym__] = ACTIONS(695), + [anon_sym_DOT] = ACTIONS(695), + [anon_sym_DOT_DOT] = ACTIONS(695), + [anon_sym_DOT_DOT_DOT] = ACTIONS(685), + [anon_sym_DOT_DOT_EQ] = ACTIONS(685), + [anon_sym_COMMA] = ACTIONS(685), + [anon_sym_COLON_COLON] = ACTIONS(685), + [anon_sym_DASH_GT] = ACTIONS(685), + [anon_sym_POUND] = ACTIONS(685), + [anon_sym_SQUOTE] = ACTIONS(683), + [anon_sym_as] = ACTIONS(683), + [anon_sym_async] = ACTIONS(683), + [anon_sym_await] = ACTIONS(683), + [anon_sym_break] = ACTIONS(683), + [anon_sym_const] = ACTIONS(683), + [anon_sym_continue] = ACTIONS(683), + [anon_sym_default] = ACTIONS(683), + [anon_sym_enum] = ACTIONS(683), + [anon_sym_fn] = ACTIONS(683), + [anon_sym_for] = ACTIONS(683), + [anon_sym_gen] = ACTIONS(683), + [anon_sym_if] = ACTIONS(683), + [anon_sym_impl] = ACTIONS(683), + [anon_sym_let] = ACTIONS(683), + [anon_sym_loop] = ACTIONS(683), + [anon_sym_match] = ACTIONS(683), + [anon_sym_mod] = ACTIONS(683), + [anon_sym_pub] = ACTIONS(683), + [anon_sym_return] = ACTIONS(683), + [anon_sym_static] = ACTIONS(683), + [anon_sym_struct] = ACTIONS(683), + [anon_sym_trait] = ACTIONS(683), + [anon_sym_type] = ACTIONS(683), + [anon_sym_union] = ACTIONS(683), + [anon_sym_unsafe] = ACTIONS(683), + [anon_sym_use] = ACTIONS(683), + [anon_sym_where] = ACTIONS(683), + [anon_sym_while] = ACTIONS(683), + [sym_mutable_specifier] = ACTIONS(683), + [sym_integer_literal] = ACTIONS(699), + [aux_sym_string_literal_token1] = ACTIONS(701), + [sym_char_literal] = ACTIONS(699), + [anon_sym_true] = ACTIONS(703), + [anon_sym_false] = ACTIONS(703), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(683), + [sym_super] = ACTIONS(683), + [sym_crate] = ACTIONS(683), + [sym__raw_string_literal_start] = ACTIONS(705), + [sym_float_literal] = ACTIONS(699), }, [STATE(124)] = { - [sym_delim_token_tree] = STATE(200), - [sym__delim_tokens] = STATE(208), - [sym__non_delim_token] = STATE(200), - [sym__literal] = STATE(210), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), + [sym_delim_token_tree] = STATE(206), + [sym__delim_tokens] = STATE(213), + [sym__non_delim_token] = STATE(206), + [sym__literal] = STATE(201), + [sym_string_literal] = STATE(219), + [sym_raw_string_literal] = STATE(219), + [sym_boolean_literal] = STATE(219), [sym_line_comment] = STATE(124), [sym_block_comment] = STATE(124), - [aux_sym__non_special_token_repeat1] = STATE(147), - [aux_sym_delim_token_tree_repeat1] = STATE(83), - [sym_identifier] = ACTIONS(678), - [anon_sym_SEMI] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(682), - [anon_sym_LBRACK] = ACTIONS(684), - [anon_sym_RBRACK] = ACTIONS(744), - [anon_sym_LBRACE] = ACTIONS(688), - [anon_sym_EQ_GT] = ACTIONS(680), - [anon_sym_COLON] = ACTIONS(690), - [anon_sym_DOLLAR] = ACTIONS(692), - [anon_sym_PLUS] = ACTIONS(690), - [anon_sym_STAR] = ACTIONS(690), - [anon_sym_QMARK] = ACTIONS(680), - [anon_sym_u8] = ACTIONS(678), - [anon_sym_i8] = ACTIONS(678), - [anon_sym_u16] = ACTIONS(678), - [anon_sym_i16] = ACTIONS(678), - [anon_sym_u32] = ACTIONS(678), - [anon_sym_i32] = ACTIONS(678), - [anon_sym_u64] = ACTIONS(678), - [anon_sym_i64] = ACTIONS(678), - [anon_sym_u128] = ACTIONS(678), - [anon_sym_i128] = ACTIONS(678), - [anon_sym_isize] = ACTIONS(678), - [anon_sym_usize] = ACTIONS(678), - [anon_sym_f32] = ACTIONS(678), - [anon_sym_f64] = ACTIONS(678), - [anon_sym_bool] = ACTIONS(678), - [anon_sym_str] = ACTIONS(678), - [anon_sym_char] = ACTIONS(678), - [anon_sym_DASH] = ACTIONS(690), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_PERCENT] = ACTIONS(690), - [anon_sym_CARET] = ACTIONS(690), - [anon_sym_BANG] = ACTIONS(690), - [anon_sym_AMP] = ACTIONS(690), - [anon_sym_PIPE] = ACTIONS(690), - [anon_sym_AMP_AMP] = ACTIONS(680), - [anon_sym_PIPE_PIPE] = ACTIONS(680), - [anon_sym_LT_LT] = ACTIONS(690), - [anon_sym_GT_GT] = ACTIONS(690), - [anon_sym_PLUS_EQ] = ACTIONS(680), - [anon_sym_DASH_EQ] = ACTIONS(680), - [anon_sym_STAR_EQ] = ACTIONS(680), - [anon_sym_SLASH_EQ] = ACTIONS(680), - [anon_sym_PERCENT_EQ] = ACTIONS(680), - [anon_sym_CARET_EQ] = ACTIONS(680), - [anon_sym_AMP_EQ] = ACTIONS(680), - [anon_sym_PIPE_EQ] = ACTIONS(680), - [anon_sym_LT_LT_EQ] = ACTIONS(680), - [anon_sym_GT_GT_EQ] = ACTIONS(680), - [anon_sym_EQ] = ACTIONS(690), - [anon_sym_EQ_EQ] = ACTIONS(680), - [anon_sym_BANG_EQ] = ACTIONS(680), - [anon_sym_GT] = ACTIONS(690), - [anon_sym_LT] = ACTIONS(690), - [anon_sym_GT_EQ] = ACTIONS(680), - [anon_sym_LT_EQ] = ACTIONS(680), - [anon_sym_AT] = ACTIONS(680), - [anon_sym__] = ACTIONS(690), - [anon_sym_DOT] = ACTIONS(690), - [anon_sym_DOT_DOT] = ACTIONS(690), - [anon_sym_DOT_DOT_DOT] = ACTIONS(680), - [anon_sym_DOT_DOT_EQ] = ACTIONS(680), - [anon_sym_COMMA] = ACTIONS(680), - [anon_sym_COLON_COLON] = ACTIONS(680), - [anon_sym_DASH_GT] = ACTIONS(680), - [anon_sym_POUND] = ACTIONS(680), - [anon_sym_SQUOTE] = ACTIONS(678), - [anon_sym_as] = ACTIONS(678), - [anon_sym_async] = ACTIONS(678), - [anon_sym_await] = ACTIONS(678), - [anon_sym_break] = ACTIONS(678), - [anon_sym_const] = ACTIONS(678), - [anon_sym_continue] = ACTIONS(678), - [anon_sym_default] = ACTIONS(678), - [anon_sym_enum] = ACTIONS(678), - [anon_sym_fn] = ACTIONS(678), - [anon_sym_for] = ACTIONS(678), - [anon_sym_gen] = ACTIONS(678), - [anon_sym_if] = ACTIONS(678), - [anon_sym_impl] = ACTIONS(678), - [anon_sym_let] = ACTIONS(678), - [anon_sym_loop] = ACTIONS(678), - [anon_sym_match] = ACTIONS(678), - [anon_sym_mod] = ACTIONS(678), - [anon_sym_pub] = ACTIONS(678), - [anon_sym_return] = ACTIONS(678), - [anon_sym_static] = ACTIONS(678), - [anon_sym_struct] = ACTIONS(678), - [anon_sym_trait] = ACTIONS(678), - [anon_sym_type] = ACTIONS(678), - [anon_sym_union] = ACTIONS(678), - [anon_sym_unsafe] = ACTIONS(678), - [anon_sym_use] = ACTIONS(678), - [anon_sym_where] = ACTIONS(678), - [anon_sym_while] = ACTIONS(678), - [sym_mutable_specifier] = ACTIONS(678), - [sym_integer_literal] = ACTIONS(694), - [aux_sym_string_literal_token1] = ACTIONS(696), - [sym_char_literal] = ACTIONS(694), - [anon_sym_true] = ACTIONS(698), - [anon_sym_false] = ACTIONS(698), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(678), - [sym_super] = ACTIONS(678), - [sym_crate] = ACTIONS(678), - [sym__raw_string_literal_start] = ACTIONS(700), - [sym_float_literal] = ACTIONS(694), + [aux_sym__non_special_token_repeat1] = STATE(176), + [aux_sym_delim_token_tree_repeat1] = STATE(127), + [sym_identifier] = ACTIONS(683), + [anon_sym_SEMI] = ACTIONS(685), + [anon_sym_LPAREN] = ACTIONS(687), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_LBRACE] = ACTIONS(693), + [anon_sym_RBRACE] = ACTIONS(745), + [anon_sym_EQ_GT] = ACTIONS(685), + [anon_sym_COLON] = ACTIONS(695), + [anon_sym_DOLLAR] = ACTIONS(697), + [anon_sym_PLUS] = ACTIONS(695), + [anon_sym_STAR] = ACTIONS(695), + [anon_sym_QMARK] = ACTIONS(685), + [anon_sym_u8] = ACTIONS(683), + [anon_sym_i8] = ACTIONS(683), + [anon_sym_u16] = ACTIONS(683), + [anon_sym_i16] = ACTIONS(683), + [anon_sym_u32] = ACTIONS(683), + [anon_sym_i32] = ACTIONS(683), + [anon_sym_u64] = ACTIONS(683), + [anon_sym_i64] = ACTIONS(683), + [anon_sym_u128] = ACTIONS(683), + [anon_sym_i128] = ACTIONS(683), + [anon_sym_isize] = ACTIONS(683), + [anon_sym_usize] = ACTIONS(683), + [anon_sym_f32] = ACTIONS(683), + [anon_sym_f64] = ACTIONS(683), + [anon_sym_bool] = ACTIONS(683), + [anon_sym_str] = ACTIONS(683), + [anon_sym_char] = ACTIONS(683), + [anon_sym_DASH] = ACTIONS(695), + [anon_sym_SLASH] = ACTIONS(695), + [anon_sym_PERCENT] = ACTIONS(695), + [anon_sym_CARET] = ACTIONS(695), + [anon_sym_BANG] = ACTIONS(695), + [anon_sym_AMP] = ACTIONS(695), + [anon_sym_PIPE] = ACTIONS(695), + [anon_sym_AMP_AMP] = ACTIONS(685), + [anon_sym_PIPE_PIPE] = ACTIONS(685), + [anon_sym_LT_LT] = ACTIONS(695), + [anon_sym_GT_GT] = ACTIONS(695), + [anon_sym_PLUS_EQ] = ACTIONS(685), + [anon_sym_DASH_EQ] = ACTIONS(685), + [anon_sym_STAR_EQ] = ACTIONS(685), + [anon_sym_SLASH_EQ] = ACTIONS(685), + [anon_sym_PERCENT_EQ] = ACTIONS(685), + [anon_sym_CARET_EQ] = ACTIONS(685), + [anon_sym_AMP_EQ] = ACTIONS(685), + [anon_sym_PIPE_EQ] = ACTIONS(685), + [anon_sym_LT_LT_EQ] = ACTIONS(685), + [anon_sym_GT_GT_EQ] = ACTIONS(685), + [anon_sym_EQ] = ACTIONS(695), + [anon_sym_EQ_EQ] = ACTIONS(685), + [anon_sym_BANG_EQ] = ACTIONS(685), + [anon_sym_GT] = ACTIONS(695), + [anon_sym_LT] = ACTIONS(695), + [anon_sym_GT_EQ] = ACTIONS(685), + [anon_sym_LT_EQ] = ACTIONS(685), + [anon_sym_AT] = ACTIONS(685), + [anon_sym__] = ACTIONS(695), + [anon_sym_DOT] = ACTIONS(695), + [anon_sym_DOT_DOT] = ACTIONS(695), + [anon_sym_DOT_DOT_DOT] = ACTIONS(685), + [anon_sym_DOT_DOT_EQ] = ACTIONS(685), + [anon_sym_COMMA] = ACTIONS(685), + [anon_sym_COLON_COLON] = ACTIONS(685), + [anon_sym_DASH_GT] = ACTIONS(685), + [anon_sym_POUND] = ACTIONS(685), + [anon_sym_SQUOTE] = ACTIONS(683), + [anon_sym_as] = ACTIONS(683), + [anon_sym_async] = ACTIONS(683), + [anon_sym_await] = ACTIONS(683), + [anon_sym_break] = ACTIONS(683), + [anon_sym_const] = ACTIONS(683), + [anon_sym_continue] = ACTIONS(683), + [anon_sym_default] = ACTIONS(683), + [anon_sym_enum] = ACTIONS(683), + [anon_sym_fn] = ACTIONS(683), + [anon_sym_for] = ACTIONS(683), + [anon_sym_gen] = ACTIONS(683), + [anon_sym_if] = ACTIONS(683), + [anon_sym_impl] = ACTIONS(683), + [anon_sym_let] = ACTIONS(683), + [anon_sym_loop] = ACTIONS(683), + [anon_sym_match] = ACTIONS(683), + [anon_sym_mod] = ACTIONS(683), + [anon_sym_pub] = ACTIONS(683), + [anon_sym_return] = ACTIONS(683), + [anon_sym_static] = ACTIONS(683), + [anon_sym_struct] = ACTIONS(683), + [anon_sym_trait] = ACTIONS(683), + [anon_sym_type] = ACTIONS(683), + [anon_sym_union] = ACTIONS(683), + [anon_sym_unsafe] = ACTIONS(683), + [anon_sym_use] = ACTIONS(683), + [anon_sym_where] = ACTIONS(683), + [anon_sym_while] = ACTIONS(683), + [sym_mutable_specifier] = ACTIONS(683), + [sym_integer_literal] = ACTIONS(699), + [aux_sym_string_literal_token1] = ACTIONS(701), + [sym_char_literal] = ACTIONS(699), + [anon_sym_true] = ACTIONS(703), + [anon_sym_false] = ACTIONS(703), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(683), + [sym_super] = ACTIONS(683), + [sym_crate] = ACTIONS(683), + [sym__raw_string_literal_start] = ACTIONS(705), + [sym_float_literal] = ACTIONS(699), }, [STATE(125)] = { - [sym_delim_token_tree] = STATE(200), - [sym__delim_tokens] = STATE(208), - [sym__non_delim_token] = STATE(200), - [sym__literal] = STATE(210), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), + [sym_delim_token_tree] = STATE(206), + [sym__delim_tokens] = STATE(213), + [sym__non_delim_token] = STATE(206), + [sym__literal] = STATE(201), + [sym_string_literal] = STATE(219), + [sym_raw_string_literal] = STATE(219), + [sym_boolean_literal] = STATE(219), [sym_line_comment] = STATE(125), [sym_block_comment] = STATE(125), - [aux_sym__non_special_token_repeat1] = STATE(147), + [aux_sym__non_special_token_repeat1] = STATE(176), [aux_sym_delim_token_tree_repeat1] = STATE(83), - [sym_identifier] = ACTIONS(678), - [anon_sym_SEMI] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(682), - [anon_sym_LBRACK] = ACTIONS(684), - [anon_sym_LBRACE] = ACTIONS(688), - [anon_sym_RBRACE] = ACTIONS(744), - [anon_sym_EQ_GT] = ACTIONS(680), - [anon_sym_COLON] = ACTIONS(690), - [anon_sym_DOLLAR] = ACTIONS(692), - [anon_sym_PLUS] = ACTIONS(690), - [anon_sym_STAR] = ACTIONS(690), - [anon_sym_QMARK] = ACTIONS(680), - [anon_sym_u8] = ACTIONS(678), - [anon_sym_i8] = ACTIONS(678), - [anon_sym_u16] = ACTIONS(678), - [anon_sym_i16] = ACTIONS(678), - [anon_sym_u32] = ACTIONS(678), - [anon_sym_i32] = ACTIONS(678), - [anon_sym_u64] = ACTIONS(678), - [anon_sym_i64] = ACTIONS(678), - [anon_sym_u128] = ACTIONS(678), - [anon_sym_i128] = ACTIONS(678), - [anon_sym_isize] = ACTIONS(678), - [anon_sym_usize] = ACTIONS(678), - [anon_sym_f32] = ACTIONS(678), - [anon_sym_f64] = ACTIONS(678), - [anon_sym_bool] = ACTIONS(678), - [anon_sym_str] = ACTIONS(678), - [anon_sym_char] = ACTIONS(678), - [anon_sym_DASH] = ACTIONS(690), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_PERCENT] = ACTIONS(690), - [anon_sym_CARET] = ACTIONS(690), - [anon_sym_BANG] = ACTIONS(690), - [anon_sym_AMP] = ACTIONS(690), - [anon_sym_PIPE] = ACTIONS(690), - [anon_sym_AMP_AMP] = ACTIONS(680), - [anon_sym_PIPE_PIPE] = ACTIONS(680), - [anon_sym_LT_LT] = ACTIONS(690), - [anon_sym_GT_GT] = ACTIONS(690), - [anon_sym_PLUS_EQ] = ACTIONS(680), - [anon_sym_DASH_EQ] = ACTIONS(680), - [anon_sym_STAR_EQ] = ACTIONS(680), - [anon_sym_SLASH_EQ] = ACTIONS(680), - [anon_sym_PERCENT_EQ] = ACTIONS(680), - [anon_sym_CARET_EQ] = ACTIONS(680), - [anon_sym_AMP_EQ] = ACTIONS(680), - [anon_sym_PIPE_EQ] = ACTIONS(680), - [anon_sym_LT_LT_EQ] = ACTIONS(680), - [anon_sym_GT_GT_EQ] = ACTIONS(680), - [anon_sym_EQ] = ACTIONS(690), - [anon_sym_EQ_EQ] = ACTIONS(680), - [anon_sym_BANG_EQ] = ACTIONS(680), - [anon_sym_GT] = ACTIONS(690), - [anon_sym_LT] = ACTIONS(690), - [anon_sym_GT_EQ] = ACTIONS(680), - [anon_sym_LT_EQ] = ACTIONS(680), - [anon_sym_AT] = ACTIONS(680), - [anon_sym__] = ACTIONS(690), - [anon_sym_DOT] = ACTIONS(690), - [anon_sym_DOT_DOT] = ACTIONS(690), - [anon_sym_DOT_DOT_DOT] = ACTIONS(680), - [anon_sym_DOT_DOT_EQ] = ACTIONS(680), - [anon_sym_COMMA] = ACTIONS(680), - [anon_sym_COLON_COLON] = ACTIONS(680), - [anon_sym_DASH_GT] = ACTIONS(680), - [anon_sym_POUND] = ACTIONS(680), - [anon_sym_SQUOTE] = ACTIONS(678), - [anon_sym_as] = ACTIONS(678), - [anon_sym_async] = ACTIONS(678), - [anon_sym_await] = ACTIONS(678), - [anon_sym_break] = ACTIONS(678), - [anon_sym_const] = ACTIONS(678), - [anon_sym_continue] = ACTIONS(678), - [anon_sym_default] = ACTIONS(678), - [anon_sym_enum] = ACTIONS(678), - [anon_sym_fn] = ACTIONS(678), - [anon_sym_for] = ACTIONS(678), - [anon_sym_gen] = ACTIONS(678), - [anon_sym_if] = ACTIONS(678), - [anon_sym_impl] = ACTIONS(678), - [anon_sym_let] = ACTIONS(678), - [anon_sym_loop] = ACTIONS(678), - [anon_sym_match] = ACTIONS(678), - [anon_sym_mod] = ACTIONS(678), - [anon_sym_pub] = ACTIONS(678), - [anon_sym_return] = ACTIONS(678), - [anon_sym_static] = ACTIONS(678), - [anon_sym_struct] = ACTIONS(678), - [anon_sym_trait] = ACTIONS(678), - [anon_sym_type] = ACTIONS(678), - [anon_sym_union] = ACTIONS(678), - [anon_sym_unsafe] = ACTIONS(678), - [anon_sym_use] = ACTIONS(678), - [anon_sym_where] = ACTIONS(678), - [anon_sym_while] = ACTIONS(678), - [sym_mutable_specifier] = ACTIONS(678), - [sym_integer_literal] = ACTIONS(694), - [aux_sym_string_literal_token1] = ACTIONS(696), - [sym_char_literal] = ACTIONS(694), - [anon_sym_true] = ACTIONS(698), - [anon_sym_false] = ACTIONS(698), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(678), - [sym_super] = ACTIONS(678), - [sym_crate] = ACTIONS(678), - [sym__raw_string_literal_start] = ACTIONS(700), - [sym_float_literal] = ACTIONS(694), + [sym_identifier] = ACTIONS(683), + [anon_sym_SEMI] = ACTIONS(685), + [anon_sym_LPAREN] = ACTIONS(687), + [anon_sym_RPAREN] = ACTIONS(747), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_LBRACE] = ACTIONS(693), + [anon_sym_EQ_GT] = ACTIONS(685), + [anon_sym_COLON] = ACTIONS(695), + [anon_sym_DOLLAR] = ACTIONS(697), + [anon_sym_PLUS] = ACTIONS(695), + [anon_sym_STAR] = ACTIONS(695), + [anon_sym_QMARK] = ACTIONS(685), + [anon_sym_u8] = ACTIONS(683), + [anon_sym_i8] = ACTIONS(683), + [anon_sym_u16] = ACTIONS(683), + [anon_sym_i16] = ACTIONS(683), + [anon_sym_u32] = ACTIONS(683), + [anon_sym_i32] = ACTIONS(683), + [anon_sym_u64] = ACTIONS(683), + [anon_sym_i64] = ACTIONS(683), + [anon_sym_u128] = ACTIONS(683), + [anon_sym_i128] = ACTIONS(683), + [anon_sym_isize] = ACTIONS(683), + [anon_sym_usize] = ACTIONS(683), + [anon_sym_f32] = ACTIONS(683), + [anon_sym_f64] = ACTIONS(683), + [anon_sym_bool] = ACTIONS(683), + [anon_sym_str] = ACTIONS(683), + [anon_sym_char] = ACTIONS(683), + [anon_sym_DASH] = ACTIONS(695), + [anon_sym_SLASH] = ACTIONS(695), + [anon_sym_PERCENT] = ACTIONS(695), + [anon_sym_CARET] = ACTIONS(695), + [anon_sym_BANG] = ACTIONS(695), + [anon_sym_AMP] = ACTIONS(695), + [anon_sym_PIPE] = ACTIONS(695), + [anon_sym_AMP_AMP] = ACTIONS(685), + [anon_sym_PIPE_PIPE] = ACTIONS(685), + [anon_sym_LT_LT] = ACTIONS(695), + [anon_sym_GT_GT] = ACTIONS(695), + [anon_sym_PLUS_EQ] = ACTIONS(685), + [anon_sym_DASH_EQ] = ACTIONS(685), + [anon_sym_STAR_EQ] = ACTIONS(685), + [anon_sym_SLASH_EQ] = ACTIONS(685), + [anon_sym_PERCENT_EQ] = ACTIONS(685), + [anon_sym_CARET_EQ] = ACTIONS(685), + [anon_sym_AMP_EQ] = ACTIONS(685), + [anon_sym_PIPE_EQ] = ACTIONS(685), + [anon_sym_LT_LT_EQ] = ACTIONS(685), + [anon_sym_GT_GT_EQ] = ACTIONS(685), + [anon_sym_EQ] = ACTIONS(695), + [anon_sym_EQ_EQ] = ACTIONS(685), + [anon_sym_BANG_EQ] = ACTIONS(685), + [anon_sym_GT] = ACTIONS(695), + [anon_sym_LT] = ACTIONS(695), + [anon_sym_GT_EQ] = ACTIONS(685), + [anon_sym_LT_EQ] = ACTIONS(685), + [anon_sym_AT] = ACTIONS(685), + [anon_sym__] = ACTIONS(695), + [anon_sym_DOT] = ACTIONS(695), + [anon_sym_DOT_DOT] = ACTIONS(695), + [anon_sym_DOT_DOT_DOT] = ACTIONS(685), + [anon_sym_DOT_DOT_EQ] = ACTIONS(685), + [anon_sym_COMMA] = ACTIONS(685), + [anon_sym_COLON_COLON] = ACTIONS(685), + [anon_sym_DASH_GT] = ACTIONS(685), + [anon_sym_POUND] = ACTIONS(685), + [anon_sym_SQUOTE] = ACTIONS(683), + [anon_sym_as] = ACTIONS(683), + [anon_sym_async] = ACTIONS(683), + [anon_sym_await] = ACTIONS(683), + [anon_sym_break] = ACTIONS(683), + [anon_sym_const] = ACTIONS(683), + [anon_sym_continue] = ACTIONS(683), + [anon_sym_default] = ACTIONS(683), + [anon_sym_enum] = ACTIONS(683), + [anon_sym_fn] = ACTIONS(683), + [anon_sym_for] = ACTIONS(683), + [anon_sym_gen] = ACTIONS(683), + [anon_sym_if] = ACTIONS(683), + [anon_sym_impl] = ACTIONS(683), + [anon_sym_let] = ACTIONS(683), + [anon_sym_loop] = ACTIONS(683), + [anon_sym_match] = ACTIONS(683), + [anon_sym_mod] = ACTIONS(683), + [anon_sym_pub] = ACTIONS(683), + [anon_sym_return] = ACTIONS(683), + [anon_sym_static] = ACTIONS(683), + [anon_sym_struct] = ACTIONS(683), + [anon_sym_trait] = ACTIONS(683), + [anon_sym_type] = ACTIONS(683), + [anon_sym_union] = ACTIONS(683), + [anon_sym_unsafe] = ACTIONS(683), + [anon_sym_use] = ACTIONS(683), + [anon_sym_where] = ACTIONS(683), + [anon_sym_while] = ACTIONS(683), + [sym_mutable_specifier] = ACTIONS(683), + [sym_integer_literal] = ACTIONS(699), + [aux_sym_string_literal_token1] = ACTIONS(701), + [sym_char_literal] = ACTIONS(699), + [anon_sym_true] = ACTIONS(703), + [anon_sym_false] = ACTIONS(703), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(683), + [sym_super] = ACTIONS(683), + [sym_crate] = ACTIONS(683), + [sym__raw_string_literal_start] = ACTIONS(705), + [sym_float_literal] = ACTIONS(699), }, [STATE(126)] = { - [sym_delim_token_tree] = STATE(200), - [sym__delim_tokens] = STATE(208), - [sym__non_delim_token] = STATE(200), - [sym__literal] = STATE(210), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), + [sym_delim_token_tree] = STATE(206), + [sym__delim_tokens] = STATE(213), + [sym__non_delim_token] = STATE(206), + [sym__literal] = STATE(201), + [sym_string_literal] = STATE(219), + [sym_raw_string_literal] = STATE(219), + [sym_boolean_literal] = STATE(219), [sym_line_comment] = STATE(126), [sym_block_comment] = STATE(126), - [aux_sym__non_special_token_repeat1] = STATE(147), - [aux_sym_delim_token_tree_repeat1] = STATE(129), - [sym_identifier] = ACTIONS(678), - [anon_sym_SEMI] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(682), - [anon_sym_RPAREN] = ACTIONS(746), - [anon_sym_LBRACK] = ACTIONS(684), - [anon_sym_LBRACE] = ACTIONS(688), - [anon_sym_EQ_GT] = ACTIONS(680), - [anon_sym_COLON] = ACTIONS(690), - [anon_sym_DOLLAR] = ACTIONS(692), - [anon_sym_PLUS] = ACTIONS(690), - [anon_sym_STAR] = ACTIONS(690), - [anon_sym_QMARK] = ACTIONS(680), - [anon_sym_u8] = ACTIONS(678), - [anon_sym_i8] = ACTIONS(678), - [anon_sym_u16] = ACTIONS(678), - [anon_sym_i16] = ACTIONS(678), - [anon_sym_u32] = ACTIONS(678), - [anon_sym_i32] = ACTIONS(678), - [anon_sym_u64] = ACTIONS(678), - [anon_sym_i64] = ACTIONS(678), - [anon_sym_u128] = ACTIONS(678), - [anon_sym_i128] = ACTIONS(678), - [anon_sym_isize] = ACTIONS(678), - [anon_sym_usize] = ACTIONS(678), - [anon_sym_f32] = ACTIONS(678), - [anon_sym_f64] = ACTIONS(678), - [anon_sym_bool] = ACTIONS(678), - [anon_sym_str] = ACTIONS(678), - [anon_sym_char] = ACTIONS(678), - [anon_sym_DASH] = ACTIONS(690), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_PERCENT] = ACTIONS(690), - [anon_sym_CARET] = ACTIONS(690), - [anon_sym_BANG] = ACTIONS(690), - [anon_sym_AMP] = ACTIONS(690), - [anon_sym_PIPE] = ACTIONS(690), - [anon_sym_AMP_AMP] = ACTIONS(680), - [anon_sym_PIPE_PIPE] = ACTIONS(680), - [anon_sym_LT_LT] = ACTIONS(690), - [anon_sym_GT_GT] = ACTIONS(690), - [anon_sym_PLUS_EQ] = ACTIONS(680), - [anon_sym_DASH_EQ] = ACTIONS(680), - [anon_sym_STAR_EQ] = ACTIONS(680), - [anon_sym_SLASH_EQ] = ACTIONS(680), - [anon_sym_PERCENT_EQ] = ACTIONS(680), - [anon_sym_CARET_EQ] = ACTIONS(680), - [anon_sym_AMP_EQ] = ACTIONS(680), - [anon_sym_PIPE_EQ] = ACTIONS(680), - [anon_sym_LT_LT_EQ] = ACTIONS(680), - [anon_sym_GT_GT_EQ] = ACTIONS(680), - [anon_sym_EQ] = ACTIONS(690), - [anon_sym_EQ_EQ] = ACTIONS(680), - [anon_sym_BANG_EQ] = ACTIONS(680), - [anon_sym_GT] = ACTIONS(690), - [anon_sym_LT] = ACTIONS(690), - [anon_sym_GT_EQ] = ACTIONS(680), - [anon_sym_LT_EQ] = ACTIONS(680), - [anon_sym_AT] = ACTIONS(680), - [anon_sym__] = ACTIONS(690), - [anon_sym_DOT] = ACTIONS(690), - [anon_sym_DOT_DOT] = ACTIONS(690), - [anon_sym_DOT_DOT_DOT] = ACTIONS(680), - [anon_sym_DOT_DOT_EQ] = ACTIONS(680), - [anon_sym_COMMA] = ACTIONS(680), - [anon_sym_COLON_COLON] = ACTIONS(680), - [anon_sym_DASH_GT] = ACTIONS(680), - [anon_sym_POUND] = ACTIONS(680), - [anon_sym_SQUOTE] = ACTIONS(678), - [anon_sym_as] = ACTIONS(678), - [anon_sym_async] = ACTIONS(678), - [anon_sym_await] = ACTIONS(678), - [anon_sym_break] = ACTIONS(678), - [anon_sym_const] = ACTIONS(678), - [anon_sym_continue] = ACTIONS(678), - [anon_sym_default] = ACTIONS(678), - [anon_sym_enum] = ACTIONS(678), - [anon_sym_fn] = ACTIONS(678), - [anon_sym_for] = ACTIONS(678), - [anon_sym_gen] = ACTIONS(678), - [anon_sym_if] = ACTIONS(678), - [anon_sym_impl] = ACTIONS(678), - [anon_sym_let] = ACTIONS(678), - [anon_sym_loop] = ACTIONS(678), - [anon_sym_match] = ACTIONS(678), - [anon_sym_mod] = ACTIONS(678), - [anon_sym_pub] = ACTIONS(678), - [anon_sym_return] = ACTIONS(678), - [anon_sym_static] = ACTIONS(678), - [anon_sym_struct] = ACTIONS(678), - [anon_sym_trait] = ACTIONS(678), - [anon_sym_type] = ACTIONS(678), - [anon_sym_union] = ACTIONS(678), - [anon_sym_unsafe] = ACTIONS(678), - [anon_sym_use] = ACTIONS(678), - [anon_sym_where] = ACTIONS(678), - [anon_sym_while] = ACTIONS(678), - [sym_mutable_specifier] = ACTIONS(678), - [sym_integer_literal] = ACTIONS(694), - [aux_sym_string_literal_token1] = ACTIONS(696), - [sym_char_literal] = ACTIONS(694), - [anon_sym_true] = ACTIONS(698), - [anon_sym_false] = ACTIONS(698), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(678), - [sym_super] = ACTIONS(678), - [sym_crate] = ACTIONS(678), - [sym__raw_string_literal_start] = ACTIONS(700), - [sym_float_literal] = ACTIONS(694), + [aux_sym__non_special_token_repeat1] = STATE(176), + [aux_sym_delim_token_tree_repeat1] = STATE(83), + [sym_identifier] = ACTIONS(683), + [anon_sym_SEMI] = ACTIONS(685), + [anon_sym_LPAREN] = ACTIONS(687), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_RBRACK] = ACTIONS(747), + [anon_sym_LBRACE] = ACTIONS(693), + [anon_sym_EQ_GT] = ACTIONS(685), + [anon_sym_COLON] = ACTIONS(695), + [anon_sym_DOLLAR] = ACTIONS(697), + [anon_sym_PLUS] = ACTIONS(695), + [anon_sym_STAR] = ACTIONS(695), + [anon_sym_QMARK] = ACTIONS(685), + [anon_sym_u8] = ACTIONS(683), + [anon_sym_i8] = ACTIONS(683), + [anon_sym_u16] = ACTIONS(683), + [anon_sym_i16] = ACTIONS(683), + [anon_sym_u32] = ACTIONS(683), + [anon_sym_i32] = ACTIONS(683), + [anon_sym_u64] = ACTIONS(683), + [anon_sym_i64] = ACTIONS(683), + [anon_sym_u128] = ACTIONS(683), + [anon_sym_i128] = ACTIONS(683), + [anon_sym_isize] = ACTIONS(683), + [anon_sym_usize] = ACTIONS(683), + [anon_sym_f32] = ACTIONS(683), + [anon_sym_f64] = ACTIONS(683), + [anon_sym_bool] = ACTIONS(683), + [anon_sym_str] = ACTIONS(683), + [anon_sym_char] = ACTIONS(683), + [anon_sym_DASH] = ACTIONS(695), + [anon_sym_SLASH] = ACTIONS(695), + [anon_sym_PERCENT] = ACTIONS(695), + [anon_sym_CARET] = ACTIONS(695), + [anon_sym_BANG] = ACTIONS(695), + [anon_sym_AMP] = ACTIONS(695), + [anon_sym_PIPE] = ACTIONS(695), + [anon_sym_AMP_AMP] = ACTIONS(685), + [anon_sym_PIPE_PIPE] = ACTIONS(685), + [anon_sym_LT_LT] = ACTIONS(695), + [anon_sym_GT_GT] = ACTIONS(695), + [anon_sym_PLUS_EQ] = ACTIONS(685), + [anon_sym_DASH_EQ] = ACTIONS(685), + [anon_sym_STAR_EQ] = ACTIONS(685), + [anon_sym_SLASH_EQ] = ACTIONS(685), + [anon_sym_PERCENT_EQ] = ACTIONS(685), + [anon_sym_CARET_EQ] = ACTIONS(685), + [anon_sym_AMP_EQ] = ACTIONS(685), + [anon_sym_PIPE_EQ] = ACTIONS(685), + [anon_sym_LT_LT_EQ] = ACTIONS(685), + [anon_sym_GT_GT_EQ] = ACTIONS(685), + [anon_sym_EQ] = ACTIONS(695), + [anon_sym_EQ_EQ] = ACTIONS(685), + [anon_sym_BANG_EQ] = ACTIONS(685), + [anon_sym_GT] = ACTIONS(695), + [anon_sym_LT] = ACTIONS(695), + [anon_sym_GT_EQ] = ACTIONS(685), + [anon_sym_LT_EQ] = ACTIONS(685), + [anon_sym_AT] = ACTIONS(685), + [anon_sym__] = ACTIONS(695), + [anon_sym_DOT] = ACTIONS(695), + [anon_sym_DOT_DOT] = ACTIONS(695), + [anon_sym_DOT_DOT_DOT] = ACTIONS(685), + [anon_sym_DOT_DOT_EQ] = ACTIONS(685), + [anon_sym_COMMA] = ACTIONS(685), + [anon_sym_COLON_COLON] = ACTIONS(685), + [anon_sym_DASH_GT] = ACTIONS(685), + [anon_sym_POUND] = ACTIONS(685), + [anon_sym_SQUOTE] = ACTIONS(683), + [anon_sym_as] = ACTIONS(683), + [anon_sym_async] = ACTIONS(683), + [anon_sym_await] = ACTIONS(683), + [anon_sym_break] = ACTIONS(683), + [anon_sym_const] = ACTIONS(683), + [anon_sym_continue] = ACTIONS(683), + [anon_sym_default] = ACTIONS(683), + [anon_sym_enum] = ACTIONS(683), + [anon_sym_fn] = ACTIONS(683), + [anon_sym_for] = ACTIONS(683), + [anon_sym_gen] = ACTIONS(683), + [anon_sym_if] = ACTIONS(683), + [anon_sym_impl] = ACTIONS(683), + [anon_sym_let] = ACTIONS(683), + [anon_sym_loop] = ACTIONS(683), + [anon_sym_match] = ACTIONS(683), + [anon_sym_mod] = ACTIONS(683), + [anon_sym_pub] = ACTIONS(683), + [anon_sym_return] = ACTIONS(683), + [anon_sym_static] = ACTIONS(683), + [anon_sym_struct] = ACTIONS(683), + [anon_sym_trait] = ACTIONS(683), + [anon_sym_type] = ACTIONS(683), + [anon_sym_union] = ACTIONS(683), + [anon_sym_unsafe] = ACTIONS(683), + [anon_sym_use] = ACTIONS(683), + [anon_sym_where] = ACTIONS(683), + [anon_sym_while] = ACTIONS(683), + [sym_mutable_specifier] = ACTIONS(683), + [sym_integer_literal] = ACTIONS(699), + [aux_sym_string_literal_token1] = ACTIONS(701), + [sym_char_literal] = ACTIONS(699), + [anon_sym_true] = ACTIONS(703), + [anon_sym_false] = ACTIONS(703), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(683), + [sym_super] = ACTIONS(683), + [sym_crate] = ACTIONS(683), + [sym__raw_string_literal_start] = ACTIONS(705), + [sym_float_literal] = ACTIONS(699), }, [STATE(127)] = { - [sym_delim_token_tree] = STATE(200), - [sym__delim_tokens] = STATE(208), - [sym__non_delim_token] = STATE(200), - [sym__literal] = STATE(210), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), + [sym_delim_token_tree] = STATE(206), + [sym__delim_tokens] = STATE(213), + [sym__non_delim_token] = STATE(206), + [sym__literal] = STATE(201), + [sym_string_literal] = STATE(219), + [sym_raw_string_literal] = STATE(219), + [sym_boolean_literal] = STATE(219), [sym_line_comment] = STATE(127), [sym_block_comment] = STATE(127), - [aux_sym__non_special_token_repeat1] = STATE(147), - [aux_sym_delim_token_tree_repeat1] = STATE(84), - [sym_identifier] = ACTIONS(678), - [anon_sym_SEMI] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(682), - [anon_sym_LBRACK] = ACTIONS(684), - [anon_sym_RBRACK] = ACTIONS(746), - [anon_sym_LBRACE] = ACTIONS(688), - [anon_sym_EQ_GT] = ACTIONS(680), - [anon_sym_COLON] = ACTIONS(690), - [anon_sym_DOLLAR] = ACTIONS(692), - [anon_sym_PLUS] = ACTIONS(690), - [anon_sym_STAR] = ACTIONS(690), - [anon_sym_QMARK] = ACTIONS(680), - [anon_sym_u8] = ACTIONS(678), - [anon_sym_i8] = ACTIONS(678), - [anon_sym_u16] = ACTIONS(678), - [anon_sym_i16] = ACTIONS(678), - [anon_sym_u32] = ACTIONS(678), - [anon_sym_i32] = ACTIONS(678), - [anon_sym_u64] = ACTIONS(678), - [anon_sym_i64] = ACTIONS(678), - [anon_sym_u128] = ACTIONS(678), - [anon_sym_i128] = ACTIONS(678), - [anon_sym_isize] = ACTIONS(678), - [anon_sym_usize] = ACTIONS(678), - [anon_sym_f32] = ACTIONS(678), - [anon_sym_f64] = ACTIONS(678), - [anon_sym_bool] = ACTIONS(678), - [anon_sym_str] = ACTIONS(678), - [anon_sym_char] = ACTIONS(678), - [anon_sym_DASH] = ACTIONS(690), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_PERCENT] = ACTIONS(690), - [anon_sym_CARET] = ACTIONS(690), - [anon_sym_BANG] = ACTIONS(690), - [anon_sym_AMP] = ACTIONS(690), - [anon_sym_PIPE] = ACTIONS(690), - [anon_sym_AMP_AMP] = ACTIONS(680), - [anon_sym_PIPE_PIPE] = ACTIONS(680), - [anon_sym_LT_LT] = ACTIONS(690), - [anon_sym_GT_GT] = ACTIONS(690), - [anon_sym_PLUS_EQ] = ACTIONS(680), - [anon_sym_DASH_EQ] = ACTIONS(680), - [anon_sym_STAR_EQ] = ACTIONS(680), - [anon_sym_SLASH_EQ] = ACTIONS(680), - [anon_sym_PERCENT_EQ] = ACTIONS(680), - [anon_sym_CARET_EQ] = ACTIONS(680), - [anon_sym_AMP_EQ] = ACTIONS(680), - [anon_sym_PIPE_EQ] = ACTIONS(680), - [anon_sym_LT_LT_EQ] = ACTIONS(680), - [anon_sym_GT_GT_EQ] = ACTIONS(680), - [anon_sym_EQ] = ACTIONS(690), - [anon_sym_EQ_EQ] = ACTIONS(680), - [anon_sym_BANG_EQ] = ACTIONS(680), - [anon_sym_GT] = ACTIONS(690), - [anon_sym_LT] = ACTIONS(690), - [anon_sym_GT_EQ] = ACTIONS(680), - [anon_sym_LT_EQ] = ACTIONS(680), - [anon_sym_AT] = ACTIONS(680), - [anon_sym__] = ACTIONS(690), - [anon_sym_DOT] = ACTIONS(690), - [anon_sym_DOT_DOT] = ACTIONS(690), - [anon_sym_DOT_DOT_DOT] = ACTIONS(680), - [anon_sym_DOT_DOT_EQ] = ACTIONS(680), - [anon_sym_COMMA] = ACTIONS(680), - [anon_sym_COLON_COLON] = ACTIONS(680), - [anon_sym_DASH_GT] = ACTIONS(680), - [anon_sym_POUND] = ACTIONS(680), - [anon_sym_SQUOTE] = ACTIONS(678), - [anon_sym_as] = ACTIONS(678), - [anon_sym_async] = ACTIONS(678), - [anon_sym_await] = ACTIONS(678), - [anon_sym_break] = ACTIONS(678), - [anon_sym_const] = ACTIONS(678), - [anon_sym_continue] = ACTIONS(678), - [anon_sym_default] = ACTIONS(678), - [anon_sym_enum] = ACTIONS(678), - [anon_sym_fn] = ACTIONS(678), - [anon_sym_for] = ACTIONS(678), - [anon_sym_gen] = ACTIONS(678), - [anon_sym_if] = ACTIONS(678), - [anon_sym_impl] = ACTIONS(678), - [anon_sym_let] = ACTIONS(678), - [anon_sym_loop] = ACTIONS(678), - [anon_sym_match] = ACTIONS(678), - [anon_sym_mod] = ACTIONS(678), - [anon_sym_pub] = ACTIONS(678), - [anon_sym_return] = ACTIONS(678), - [anon_sym_static] = ACTIONS(678), - [anon_sym_struct] = ACTIONS(678), - [anon_sym_trait] = ACTIONS(678), - [anon_sym_type] = ACTIONS(678), - [anon_sym_union] = ACTIONS(678), - [anon_sym_unsafe] = ACTIONS(678), - [anon_sym_use] = ACTIONS(678), - [anon_sym_where] = ACTIONS(678), - [anon_sym_while] = ACTIONS(678), - [sym_mutable_specifier] = ACTIONS(678), - [sym_integer_literal] = ACTIONS(694), - [aux_sym_string_literal_token1] = ACTIONS(696), - [sym_char_literal] = ACTIONS(694), - [anon_sym_true] = ACTIONS(698), - [anon_sym_false] = ACTIONS(698), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(678), - [sym_super] = ACTIONS(678), - [sym_crate] = ACTIONS(678), - [sym__raw_string_literal_start] = ACTIONS(700), - [sym_float_literal] = ACTIONS(694), + [aux_sym__non_special_token_repeat1] = STATE(176), + [aux_sym_delim_token_tree_repeat1] = STATE(83), + [sym_identifier] = ACTIONS(683), + [anon_sym_SEMI] = ACTIONS(685), + [anon_sym_LPAREN] = ACTIONS(687), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_LBRACE] = ACTIONS(693), + [anon_sym_RBRACE] = ACTIONS(747), + [anon_sym_EQ_GT] = ACTIONS(685), + [anon_sym_COLON] = ACTIONS(695), + [anon_sym_DOLLAR] = ACTIONS(697), + [anon_sym_PLUS] = ACTIONS(695), + [anon_sym_STAR] = ACTIONS(695), + [anon_sym_QMARK] = ACTIONS(685), + [anon_sym_u8] = ACTIONS(683), + [anon_sym_i8] = ACTIONS(683), + [anon_sym_u16] = ACTIONS(683), + [anon_sym_i16] = ACTIONS(683), + [anon_sym_u32] = ACTIONS(683), + [anon_sym_i32] = ACTIONS(683), + [anon_sym_u64] = ACTIONS(683), + [anon_sym_i64] = ACTIONS(683), + [anon_sym_u128] = ACTIONS(683), + [anon_sym_i128] = ACTIONS(683), + [anon_sym_isize] = ACTIONS(683), + [anon_sym_usize] = ACTIONS(683), + [anon_sym_f32] = ACTIONS(683), + [anon_sym_f64] = ACTIONS(683), + [anon_sym_bool] = ACTIONS(683), + [anon_sym_str] = ACTIONS(683), + [anon_sym_char] = ACTIONS(683), + [anon_sym_DASH] = ACTIONS(695), + [anon_sym_SLASH] = ACTIONS(695), + [anon_sym_PERCENT] = ACTIONS(695), + [anon_sym_CARET] = ACTIONS(695), + [anon_sym_BANG] = ACTIONS(695), + [anon_sym_AMP] = ACTIONS(695), + [anon_sym_PIPE] = ACTIONS(695), + [anon_sym_AMP_AMP] = ACTIONS(685), + [anon_sym_PIPE_PIPE] = ACTIONS(685), + [anon_sym_LT_LT] = ACTIONS(695), + [anon_sym_GT_GT] = ACTIONS(695), + [anon_sym_PLUS_EQ] = ACTIONS(685), + [anon_sym_DASH_EQ] = ACTIONS(685), + [anon_sym_STAR_EQ] = ACTIONS(685), + [anon_sym_SLASH_EQ] = ACTIONS(685), + [anon_sym_PERCENT_EQ] = ACTIONS(685), + [anon_sym_CARET_EQ] = ACTIONS(685), + [anon_sym_AMP_EQ] = ACTIONS(685), + [anon_sym_PIPE_EQ] = ACTIONS(685), + [anon_sym_LT_LT_EQ] = ACTIONS(685), + [anon_sym_GT_GT_EQ] = ACTIONS(685), + [anon_sym_EQ] = ACTIONS(695), + [anon_sym_EQ_EQ] = ACTIONS(685), + [anon_sym_BANG_EQ] = ACTIONS(685), + [anon_sym_GT] = ACTIONS(695), + [anon_sym_LT] = ACTIONS(695), + [anon_sym_GT_EQ] = ACTIONS(685), + [anon_sym_LT_EQ] = ACTIONS(685), + [anon_sym_AT] = ACTIONS(685), + [anon_sym__] = ACTIONS(695), + [anon_sym_DOT] = ACTIONS(695), + [anon_sym_DOT_DOT] = ACTIONS(695), + [anon_sym_DOT_DOT_DOT] = ACTIONS(685), + [anon_sym_DOT_DOT_EQ] = ACTIONS(685), + [anon_sym_COMMA] = ACTIONS(685), + [anon_sym_COLON_COLON] = ACTIONS(685), + [anon_sym_DASH_GT] = ACTIONS(685), + [anon_sym_POUND] = ACTIONS(685), + [anon_sym_SQUOTE] = ACTIONS(683), + [anon_sym_as] = ACTIONS(683), + [anon_sym_async] = ACTIONS(683), + [anon_sym_await] = ACTIONS(683), + [anon_sym_break] = ACTIONS(683), + [anon_sym_const] = ACTIONS(683), + [anon_sym_continue] = ACTIONS(683), + [anon_sym_default] = ACTIONS(683), + [anon_sym_enum] = ACTIONS(683), + [anon_sym_fn] = ACTIONS(683), + [anon_sym_for] = ACTIONS(683), + [anon_sym_gen] = ACTIONS(683), + [anon_sym_if] = ACTIONS(683), + [anon_sym_impl] = ACTIONS(683), + [anon_sym_let] = ACTIONS(683), + [anon_sym_loop] = ACTIONS(683), + [anon_sym_match] = ACTIONS(683), + [anon_sym_mod] = ACTIONS(683), + [anon_sym_pub] = ACTIONS(683), + [anon_sym_return] = ACTIONS(683), + [anon_sym_static] = ACTIONS(683), + [anon_sym_struct] = ACTIONS(683), + [anon_sym_trait] = ACTIONS(683), + [anon_sym_type] = ACTIONS(683), + [anon_sym_union] = ACTIONS(683), + [anon_sym_unsafe] = ACTIONS(683), + [anon_sym_use] = ACTIONS(683), + [anon_sym_where] = ACTIONS(683), + [anon_sym_while] = ACTIONS(683), + [sym_mutable_specifier] = ACTIONS(683), + [sym_integer_literal] = ACTIONS(699), + [aux_sym_string_literal_token1] = ACTIONS(701), + [sym_char_literal] = ACTIONS(699), + [anon_sym_true] = ACTIONS(703), + [anon_sym_false] = ACTIONS(703), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(683), + [sym_super] = ACTIONS(683), + [sym_crate] = ACTIONS(683), + [sym__raw_string_literal_start] = ACTIONS(705), + [sym_float_literal] = ACTIONS(699), }, [STATE(128)] = { - [sym_delim_token_tree] = STATE(200), - [sym__delim_tokens] = STATE(208), - [sym__non_delim_token] = STATE(200), - [sym__literal] = STATE(210), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), + [sym_token_tree] = STATE(163), + [sym_token_repetition] = STATE(163), + [sym__literal] = STATE(163), + [sym_string_literal] = STATE(184), + [sym_raw_string_literal] = STATE(184), + [sym_boolean_literal] = STATE(184), [sym_line_comment] = STATE(128), [sym_block_comment] = STATE(128), - [aux_sym__non_special_token_repeat1] = STATE(147), - [aux_sym_delim_token_tree_repeat1] = STATE(130), - [sym_identifier] = ACTIONS(678), - [anon_sym_SEMI] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(682), - [anon_sym_LBRACK] = ACTIONS(684), - [anon_sym_LBRACE] = ACTIONS(688), - [anon_sym_RBRACE] = ACTIONS(746), - [anon_sym_EQ_GT] = ACTIONS(680), - [anon_sym_COLON] = ACTIONS(690), - [anon_sym_DOLLAR] = ACTIONS(692), - [anon_sym_PLUS] = ACTIONS(690), - [anon_sym_STAR] = ACTIONS(690), - [anon_sym_QMARK] = ACTIONS(680), - [anon_sym_u8] = ACTIONS(678), - [anon_sym_i8] = ACTIONS(678), - [anon_sym_u16] = ACTIONS(678), - [anon_sym_i16] = ACTIONS(678), - [anon_sym_u32] = ACTIONS(678), - [anon_sym_i32] = ACTIONS(678), - [anon_sym_u64] = ACTIONS(678), - [anon_sym_i64] = ACTIONS(678), - [anon_sym_u128] = ACTIONS(678), - [anon_sym_i128] = ACTIONS(678), - [anon_sym_isize] = ACTIONS(678), - [anon_sym_usize] = ACTIONS(678), - [anon_sym_f32] = ACTIONS(678), - [anon_sym_f64] = ACTIONS(678), - [anon_sym_bool] = ACTIONS(678), - [anon_sym_str] = ACTIONS(678), - [anon_sym_char] = ACTIONS(678), - [anon_sym_DASH] = ACTIONS(690), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_PERCENT] = ACTIONS(690), - [anon_sym_CARET] = ACTIONS(690), - [anon_sym_BANG] = ACTIONS(690), - [anon_sym_AMP] = ACTIONS(690), - [anon_sym_PIPE] = ACTIONS(690), - [anon_sym_AMP_AMP] = ACTIONS(680), - [anon_sym_PIPE_PIPE] = ACTIONS(680), - [anon_sym_LT_LT] = ACTIONS(690), - [anon_sym_GT_GT] = ACTIONS(690), - [anon_sym_PLUS_EQ] = ACTIONS(680), - [anon_sym_DASH_EQ] = ACTIONS(680), - [anon_sym_STAR_EQ] = ACTIONS(680), - [anon_sym_SLASH_EQ] = ACTIONS(680), - [anon_sym_PERCENT_EQ] = ACTIONS(680), - [anon_sym_CARET_EQ] = ACTIONS(680), - [anon_sym_AMP_EQ] = ACTIONS(680), - [anon_sym_PIPE_EQ] = ACTIONS(680), - [anon_sym_LT_LT_EQ] = ACTIONS(680), - [anon_sym_GT_GT_EQ] = ACTIONS(680), - [anon_sym_EQ] = ACTIONS(690), - [anon_sym_EQ_EQ] = ACTIONS(680), - [anon_sym_BANG_EQ] = ACTIONS(680), - [anon_sym_GT] = ACTIONS(690), - [anon_sym_LT] = ACTIONS(690), - [anon_sym_GT_EQ] = ACTIONS(680), - [anon_sym_LT_EQ] = ACTIONS(680), - [anon_sym_AT] = ACTIONS(680), - [anon_sym__] = ACTIONS(690), - [anon_sym_DOT] = ACTIONS(690), - [anon_sym_DOT_DOT] = ACTIONS(690), - [anon_sym_DOT_DOT_DOT] = ACTIONS(680), - [anon_sym_DOT_DOT_EQ] = ACTIONS(680), - [anon_sym_COMMA] = ACTIONS(680), - [anon_sym_COLON_COLON] = ACTIONS(680), - [anon_sym_DASH_GT] = ACTIONS(680), - [anon_sym_POUND] = ACTIONS(680), - [anon_sym_SQUOTE] = ACTIONS(678), - [anon_sym_as] = ACTIONS(678), - [anon_sym_async] = ACTIONS(678), - [anon_sym_await] = ACTIONS(678), - [anon_sym_break] = ACTIONS(678), - [anon_sym_const] = ACTIONS(678), - [anon_sym_continue] = ACTIONS(678), - [anon_sym_default] = ACTIONS(678), - [anon_sym_enum] = ACTIONS(678), - [anon_sym_fn] = ACTIONS(678), - [anon_sym_for] = ACTIONS(678), - [anon_sym_gen] = ACTIONS(678), - [anon_sym_if] = ACTIONS(678), - [anon_sym_impl] = ACTIONS(678), - [anon_sym_let] = ACTIONS(678), - [anon_sym_loop] = ACTIONS(678), - [anon_sym_match] = ACTIONS(678), - [anon_sym_mod] = ACTIONS(678), - [anon_sym_pub] = ACTIONS(678), - [anon_sym_return] = ACTIONS(678), - [anon_sym_static] = ACTIONS(678), - [anon_sym_struct] = ACTIONS(678), - [anon_sym_trait] = ACTIONS(678), - [anon_sym_type] = ACTIONS(678), - [anon_sym_union] = ACTIONS(678), - [anon_sym_unsafe] = ACTIONS(678), - [anon_sym_use] = ACTIONS(678), - [anon_sym_where] = ACTIONS(678), - [anon_sym_while] = ACTIONS(678), - [sym_mutable_specifier] = ACTIONS(678), - [sym_integer_literal] = ACTIONS(694), - [aux_sym_string_literal_token1] = ACTIONS(696), - [sym_char_literal] = ACTIONS(694), - [anon_sym_true] = ACTIONS(698), - [anon_sym_false] = ACTIONS(698), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(678), - [sym_super] = ACTIONS(678), - [sym_crate] = ACTIONS(678), - [sym__raw_string_literal_start] = ACTIONS(700), - [sym_float_literal] = ACTIONS(694), + [aux_sym_token_tree_repeat1] = STATE(82), + [aux_sym__non_special_token_repeat1] = STATE(141), + [sym_identifier] = ACTIONS(713), + [anon_sym_SEMI] = ACTIONS(576), + [anon_sym_LPAREN] = ACTIONS(715), + [anon_sym_RPAREN] = ACTIONS(749), + [anon_sym_LBRACK] = ACTIONS(719), + [anon_sym_LBRACE] = ACTIONS(721), + [anon_sym_EQ_GT] = ACTIONS(576), + [anon_sym_COLON] = ACTIONS(586), + [anon_sym_DOLLAR] = ACTIONS(723), + [anon_sym_PLUS] = ACTIONS(586), + [anon_sym_STAR] = ACTIONS(586), + [anon_sym_QMARK] = ACTIONS(576), + [anon_sym_u8] = ACTIONS(713), + [anon_sym_i8] = ACTIONS(713), + [anon_sym_u16] = ACTIONS(713), + [anon_sym_i16] = ACTIONS(713), + [anon_sym_u32] = ACTIONS(713), + [anon_sym_i32] = ACTIONS(713), + [anon_sym_u64] = ACTIONS(713), + [anon_sym_i64] = ACTIONS(713), + [anon_sym_u128] = ACTIONS(713), + [anon_sym_i128] = ACTIONS(713), + [anon_sym_isize] = ACTIONS(713), + [anon_sym_usize] = ACTIONS(713), + [anon_sym_f32] = ACTIONS(713), + [anon_sym_f64] = ACTIONS(713), + [anon_sym_bool] = ACTIONS(713), + [anon_sym_str] = ACTIONS(713), + [anon_sym_char] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(586), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_PERCENT] = ACTIONS(586), + [anon_sym_CARET] = ACTIONS(586), + [anon_sym_BANG] = ACTIONS(586), + [anon_sym_AMP] = ACTIONS(586), + [anon_sym_PIPE] = ACTIONS(586), + [anon_sym_AMP_AMP] = ACTIONS(576), + [anon_sym_PIPE_PIPE] = ACTIONS(576), + [anon_sym_LT_LT] = ACTIONS(586), + [anon_sym_GT_GT] = ACTIONS(586), + [anon_sym_PLUS_EQ] = ACTIONS(576), + [anon_sym_DASH_EQ] = ACTIONS(576), + [anon_sym_STAR_EQ] = ACTIONS(576), + [anon_sym_SLASH_EQ] = ACTIONS(576), + [anon_sym_PERCENT_EQ] = ACTIONS(576), + [anon_sym_CARET_EQ] = ACTIONS(576), + [anon_sym_AMP_EQ] = ACTIONS(576), + [anon_sym_PIPE_EQ] = ACTIONS(576), + [anon_sym_LT_LT_EQ] = ACTIONS(576), + [anon_sym_GT_GT_EQ] = ACTIONS(576), + [anon_sym_EQ] = ACTIONS(586), + [anon_sym_EQ_EQ] = ACTIONS(576), + [anon_sym_BANG_EQ] = ACTIONS(576), + [anon_sym_GT] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(586), + [anon_sym_GT_EQ] = ACTIONS(576), + [anon_sym_LT_EQ] = ACTIONS(576), + [anon_sym_AT] = ACTIONS(576), + [anon_sym__] = ACTIONS(586), + [anon_sym_DOT] = ACTIONS(586), + [anon_sym_DOT_DOT] = ACTIONS(586), + [anon_sym_DOT_DOT_DOT] = ACTIONS(576), + [anon_sym_DOT_DOT_EQ] = ACTIONS(576), + [anon_sym_COMMA] = ACTIONS(576), + [anon_sym_COLON_COLON] = ACTIONS(576), + [anon_sym_DASH_GT] = ACTIONS(576), + [anon_sym_POUND] = ACTIONS(576), + [anon_sym_SQUOTE] = ACTIONS(713), + [anon_sym_as] = ACTIONS(713), + [anon_sym_async] = ACTIONS(713), + [anon_sym_await] = ACTIONS(713), + [anon_sym_break] = ACTIONS(713), + [anon_sym_const] = ACTIONS(713), + [anon_sym_continue] = ACTIONS(713), + [anon_sym_default] = ACTIONS(713), + [anon_sym_enum] = ACTIONS(713), + [anon_sym_fn] = ACTIONS(713), + [anon_sym_for] = ACTIONS(713), + [anon_sym_gen] = ACTIONS(713), + [anon_sym_if] = ACTIONS(713), + [anon_sym_impl] = ACTIONS(713), + [anon_sym_let] = ACTIONS(713), + [anon_sym_loop] = ACTIONS(713), + [anon_sym_match] = ACTIONS(713), + [anon_sym_mod] = ACTIONS(713), + [anon_sym_pub] = ACTIONS(713), + [anon_sym_return] = ACTIONS(713), + [anon_sym_static] = ACTIONS(713), + [anon_sym_struct] = ACTIONS(713), + [anon_sym_trait] = ACTIONS(713), + [anon_sym_type] = ACTIONS(713), + [anon_sym_union] = ACTIONS(713), + [anon_sym_unsafe] = ACTIONS(713), + [anon_sym_use] = ACTIONS(713), + [anon_sym_where] = ACTIONS(713), + [anon_sym_while] = ACTIONS(713), + [sym_mutable_specifier] = ACTIONS(713), + [sym_integer_literal] = ACTIONS(590), + [aux_sym_string_literal_token1] = ACTIONS(592), + [sym_char_literal] = ACTIONS(590), + [anon_sym_true] = ACTIONS(594), + [anon_sym_false] = ACTIONS(594), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(713), + [sym_super] = ACTIONS(713), + [sym_crate] = ACTIONS(713), + [sym_metavariable] = ACTIONS(725), + [sym__raw_string_literal_start] = ACTIONS(598), + [sym_float_literal] = ACTIONS(590), }, [STATE(129)] = { - [sym_delim_token_tree] = STATE(200), - [sym__delim_tokens] = STATE(208), - [sym__non_delim_token] = STATE(200), - [sym__literal] = STATE(210), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), + [sym_delim_token_tree] = STATE(206), + [sym__delim_tokens] = STATE(213), + [sym__non_delim_token] = STATE(206), + [sym__literal] = STATE(201), + [sym_string_literal] = STATE(219), + [sym_raw_string_literal] = STATE(219), + [sym_boolean_literal] = STATE(219), [sym_line_comment] = STATE(129), [sym_block_comment] = STATE(129), - [aux_sym__non_special_token_repeat1] = STATE(147), - [aux_sym_delim_token_tree_repeat1] = STATE(83), - [sym_identifier] = ACTIONS(678), - [anon_sym_SEMI] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(682), - [anon_sym_RPAREN] = ACTIONS(686), - [anon_sym_LBRACK] = ACTIONS(684), - [anon_sym_LBRACE] = ACTIONS(688), - [anon_sym_EQ_GT] = ACTIONS(680), - [anon_sym_COLON] = ACTIONS(690), - [anon_sym_DOLLAR] = ACTIONS(692), - [anon_sym_PLUS] = ACTIONS(690), - [anon_sym_STAR] = ACTIONS(690), - [anon_sym_QMARK] = ACTIONS(680), - [anon_sym_u8] = ACTIONS(678), - [anon_sym_i8] = ACTIONS(678), - [anon_sym_u16] = ACTIONS(678), - [anon_sym_i16] = ACTIONS(678), - [anon_sym_u32] = ACTIONS(678), - [anon_sym_i32] = ACTIONS(678), - [anon_sym_u64] = ACTIONS(678), - [anon_sym_i64] = ACTIONS(678), - [anon_sym_u128] = ACTIONS(678), - [anon_sym_i128] = ACTIONS(678), - [anon_sym_isize] = ACTIONS(678), - [anon_sym_usize] = ACTIONS(678), - [anon_sym_f32] = ACTIONS(678), - [anon_sym_f64] = ACTIONS(678), - [anon_sym_bool] = ACTIONS(678), - [anon_sym_str] = ACTIONS(678), - [anon_sym_char] = ACTIONS(678), - [anon_sym_DASH] = ACTIONS(690), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_PERCENT] = ACTIONS(690), - [anon_sym_CARET] = ACTIONS(690), - [anon_sym_BANG] = ACTIONS(690), - [anon_sym_AMP] = ACTIONS(690), - [anon_sym_PIPE] = ACTIONS(690), - [anon_sym_AMP_AMP] = ACTIONS(680), - [anon_sym_PIPE_PIPE] = ACTIONS(680), - [anon_sym_LT_LT] = ACTIONS(690), - [anon_sym_GT_GT] = ACTIONS(690), - [anon_sym_PLUS_EQ] = ACTIONS(680), - [anon_sym_DASH_EQ] = ACTIONS(680), - [anon_sym_STAR_EQ] = ACTIONS(680), - [anon_sym_SLASH_EQ] = ACTIONS(680), - [anon_sym_PERCENT_EQ] = ACTIONS(680), - [anon_sym_CARET_EQ] = ACTIONS(680), - [anon_sym_AMP_EQ] = ACTIONS(680), - [anon_sym_PIPE_EQ] = ACTIONS(680), - [anon_sym_LT_LT_EQ] = ACTIONS(680), - [anon_sym_GT_GT_EQ] = ACTIONS(680), - [anon_sym_EQ] = ACTIONS(690), - [anon_sym_EQ_EQ] = ACTIONS(680), - [anon_sym_BANG_EQ] = ACTIONS(680), - [anon_sym_GT] = ACTIONS(690), - [anon_sym_LT] = ACTIONS(690), - [anon_sym_GT_EQ] = ACTIONS(680), - [anon_sym_LT_EQ] = ACTIONS(680), - [anon_sym_AT] = ACTIONS(680), - [anon_sym__] = ACTIONS(690), - [anon_sym_DOT] = ACTIONS(690), - [anon_sym_DOT_DOT] = ACTIONS(690), - [anon_sym_DOT_DOT_DOT] = ACTIONS(680), - [anon_sym_DOT_DOT_EQ] = ACTIONS(680), - [anon_sym_COMMA] = ACTIONS(680), - [anon_sym_COLON_COLON] = ACTIONS(680), - [anon_sym_DASH_GT] = ACTIONS(680), - [anon_sym_POUND] = ACTIONS(680), - [anon_sym_SQUOTE] = ACTIONS(678), - [anon_sym_as] = ACTIONS(678), - [anon_sym_async] = ACTIONS(678), - [anon_sym_await] = ACTIONS(678), - [anon_sym_break] = ACTIONS(678), - [anon_sym_const] = ACTIONS(678), - [anon_sym_continue] = ACTIONS(678), - [anon_sym_default] = ACTIONS(678), - [anon_sym_enum] = ACTIONS(678), - [anon_sym_fn] = ACTIONS(678), - [anon_sym_for] = ACTIONS(678), - [anon_sym_gen] = ACTIONS(678), - [anon_sym_if] = ACTIONS(678), - [anon_sym_impl] = ACTIONS(678), - [anon_sym_let] = ACTIONS(678), - [anon_sym_loop] = ACTIONS(678), - [anon_sym_match] = ACTIONS(678), - [anon_sym_mod] = ACTIONS(678), - [anon_sym_pub] = ACTIONS(678), - [anon_sym_return] = ACTIONS(678), - [anon_sym_static] = ACTIONS(678), - [anon_sym_struct] = ACTIONS(678), - [anon_sym_trait] = ACTIONS(678), - [anon_sym_type] = ACTIONS(678), - [anon_sym_union] = ACTIONS(678), - [anon_sym_unsafe] = ACTIONS(678), - [anon_sym_use] = ACTIONS(678), - [anon_sym_where] = ACTIONS(678), - [anon_sym_while] = ACTIONS(678), - [sym_mutable_specifier] = ACTIONS(678), - [sym_integer_literal] = ACTIONS(694), - [aux_sym_string_literal_token1] = ACTIONS(696), - [sym_char_literal] = ACTIONS(694), - [anon_sym_true] = ACTIONS(698), - [anon_sym_false] = ACTIONS(698), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(678), - [sym_super] = ACTIONS(678), - [sym_crate] = ACTIONS(678), - [sym__raw_string_literal_start] = ACTIONS(700), - [sym_float_literal] = ACTIONS(694), + [aux_sym__non_special_token_repeat1] = STATE(176), + [aux_sym_delim_token_tree_repeat1] = STATE(132), + [sym_identifier] = ACTIONS(683), + [anon_sym_SEMI] = ACTIONS(685), + [anon_sym_LPAREN] = ACTIONS(687), + [anon_sym_RPAREN] = ACTIONS(751), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_LBRACE] = ACTIONS(693), + [anon_sym_EQ_GT] = ACTIONS(685), + [anon_sym_COLON] = ACTIONS(695), + [anon_sym_DOLLAR] = ACTIONS(697), + [anon_sym_PLUS] = ACTIONS(695), + [anon_sym_STAR] = ACTIONS(695), + [anon_sym_QMARK] = ACTIONS(685), + [anon_sym_u8] = ACTIONS(683), + [anon_sym_i8] = ACTIONS(683), + [anon_sym_u16] = ACTIONS(683), + [anon_sym_i16] = ACTIONS(683), + [anon_sym_u32] = ACTIONS(683), + [anon_sym_i32] = ACTIONS(683), + [anon_sym_u64] = ACTIONS(683), + [anon_sym_i64] = ACTIONS(683), + [anon_sym_u128] = ACTIONS(683), + [anon_sym_i128] = ACTIONS(683), + [anon_sym_isize] = ACTIONS(683), + [anon_sym_usize] = ACTIONS(683), + [anon_sym_f32] = ACTIONS(683), + [anon_sym_f64] = ACTIONS(683), + [anon_sym_bool] = ACTIONS(683), + [anon_sym_str] = ACTIONS(683), + [anon_sym_char] = ACTIONS(683), + [anon_sym_DASH] = ACTIONS(695), + [anon_sym_SLASH] = ACTIONS(695), + [anon_sym_PERCENT] = ACTIONS(695), + [anon_sym_CARET] = ACTIONS(695), + [anon_sym_BANG] = ACTIONS(695), + [anon_sym_AMP] = ACTIONS(695), + [anon_sym_PIPE] = ACTIONS(695), + [anon_sym_AMP_AMP] = ACTIONS(685), + [anon_sym_PIPE_PIPE] = ACTIONS(685), + [anon_sym_LT_LT] = ACTIONS(695), + [anon_sym_GT_GT] = ACTIONS(695), + [anon_sym_PLUS_EQ] = ACTIONS(685), + [anon_sym_DASH_EQ] = ACTIONS(685), + [anon_sym_STAR_EQ] = ACTIONS(685), + [anon_sym_SLASH_EQ] = ACTIONS(685), + [anon_sym_PERCENT_EQ] = ACTIONS(685), + [anon_sym_CARET_EQ] = ACTIONS(685), + [anon_sym_AMP_EQ] = ACTIONS(685), + [anon_sym_PIPE_EQ] = ACTIONS(685), + [anon_sym_LT_LT_EQ] = ACTIONS(685), + [anon_sym_GT_GT_EQ] = ACTIONS(685), + [anon_sym_EQ] = ACTIONS(695), + [anon_sym_EQ_EQ] = ACTIONS(685), + [anon_sym_BANG_EQ] = ACTIONS(685), + [anon_sym_GT] = ACTIONS(695), + [anon_sym_LT] = ACTIONS(695), + [anon_sym_GT_EQ] = ACTIONS(685), + [anon_sym_LT_EQ] = ACTIONS(685), + [anon_sym_AT] = ACTIONS(685), + [anon_sym__] = ACTIONS(695), + [anon_sym_DOT] = ACTIONS(695), + [anon_sym_DOT_DOT] = ACTIONS(695), + [anon_sym_DOT_DOT_DOT] = ACTIONS(685), + [anon_sym_DOT_DOT_EQ] = ACTIONS(685), + [anon_sym_COMMA] = ACTIONS(685), + [anon_sym_COLON_COLON] = ACTIONS(685), + [anon_sym_DASH_GT] = ACTIONS(685), + [anon_sym_POUND] = ACTIONS(685), + [anon_sym_SQUOTE] = ACTIONS(683), + [anon_sym_as] = ACTIONS(683), + [anon_sym_async] = ACTIONS(683), + [anon_sym_await] = ACTIONS(683), + [anon_sym_break] = ACTIONS(683), + [anon_sym_const] = ACTIONS(683), + [anon_sym_continue] = ACTIONS(683), + [anon_sym_default] = ACTIONS(683), + [anon_sym_enum] = ACTIONS(683), + [anon_sym_fn] = ACTIONS(683), + [anon_sym_for] = ACTIONS(683), + [anon_sym_gen] = ACTIONS(683), + [anon_sym_if] = ACTIONS(683), + [anon_sym_impl] = ACTIONS(683), + [anon_sym_let] = ACTIONS(683), + [anon_sym_loop] = ACTIONS(683), + [anon_sym_match] = ACTIONS(683), + [anon_sym_mod] = ACTIONS(683), + [anon_sym_pub] = ACTIONS(683), + [anon_sym_return] = ACTIONS(683), + [anon_sym_static] = ACTIONS(683), + [anon_sym_struct] = ACTIONS(683), + [anon_sym_trait] = ACTIONS(683), + [anon_sym_type] = ACTIONS(683), + [anon_sym_union] = ACTIONS(683), + [anon_sym_unsafe] = ACTIONS(683), + [anon_sym_use] = ACTIONS(683), + [anon_sym_where] = ACTIONS(683), + [anon_sym_while] = ACTIONS(683), + [sym_mutable_specifier] = ACTIONS(683), + [sym_integer_literal] = ACTIONS(699), + [aux_sym_string_literal_token1] = ACTIONS(701), + [sym_char_literal] = ACTIONS(699), + [anon_sym_true] = ACTIONS(703), + [anon_sym_false] = ACTIONS(703), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(683), + [sym_super] = ACTIONS(683), + [sym_crate] = ACTIONS(683), + [sym__raw_string_literal_start] = ACTIONS(705), + [sym_float_literal] = ACTIONS(699), }, [STATE(130)] = { - [sym_delim_token_tree] = STATE(200), - [sym__delim_tokens] = STATE(208), - [sym__non_delim_token] = STATE(200), - [sym__literal] = STATE(210), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), + [sym_delim_token_tree] = STATE(206), + [sym__delim_tokens] = STATE(213), + [sym__non_delim_token] = STATE(206), + [sym__literal] = STATE(201), + [sym_string_literal] = STATE(219), + [sym_raw_string_literal] = STATE(219), + [sym_boolean_literal] = STATE(219), [sym_line_comment] = STATE(130), [sym_block_comment] = STATE(130), - [aux_sym__non_special_token_repeat1] = STATE(147), - [aux_sym_delim_token_tree_repeat1] = STATE(83), - [sym_identifier] = ACTIONS(678), - [anon_sym_SEMI] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(682), - [anon_sym_LBRACK] = ACTIONS(684), - [anon_sym_LBRACE] = ACTIONS(688), - [anon_sym_RBRACE] = ACTIONS(686), - [anon_sym_EQ_GT] = ACTIONS(680), - [anon_sym_COLON] = ACTIONS(690), - [anon_sym_DOLLAR] = ACTIONS(692), - [anon_sym_PLUS] = ACTIONS(690), - [anon_sym_STAR] = ACTIONS(690), - [anon_sym_QMARK] = ACTIONS(680), - [anon_sym_u8] = ACTIONS(678), - [anon_sym_i8] = ACTIONS(678), - [anon_sym_u16] = ACTIONS(678), - [anon_sym_i16] = ACTIONS(678), - [anon_sym_u32] = ACTIONS(678), - [anon_sym_i32] = ACTIONS(678), - [anon_sym_u64] = ACTIONS(678), - [anon_sym_i64] = ACTIONS(678), - [anon_sym_u128] = ACTIONS(678), - [anon_sym_i128] = ACTIONS(678), - [anon_sym_isize] = ACTIONS(678), - [anon_sym_usize] = ACTIONS(678), - [anon_sym_f32] = ACTIONS(678), - [anon_sym_f64] = ACTIONS(678), - [anon_sym_bool] = ACTIONS(678), - [anon_sym_str] = ACTIONS(678), - [anon_sym_char] = ACTIONS(678), - [anon_sym_DASH] = ACTIONS(690), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_PERCENT] = ACTIONS(690), - [anon_sym_CARET] = ACTIONS(690), - [anon_sym_BANG] = ACTIONS(690), - [anon_sym_AMP] = ACTIONS(690), - [anon_sym_PIPE] = ACTIONS(690), - [anon_sym_AMP_AMP] = ACTIONS(680), - [anon_sym_PIPE_PIPE] = ACTIONS(680), - [anon_sym_LT_LT] = ACTIONS(690), - [anon_sym_GT_GT] = ACTIONS(690), - [anon_sym_PLUS_EQ] = ACTIONS(680), - [anon_sym_DASH_EQ] = ACTIONS(680), - [anon_sym_STAR_EQ] = ACTIONS(680), - [anon_sym_SLASH_EQ] = ACTIONS(680), - [anon_sym_PERCENT_EQ] = ACTIONS(680), - [anon_sym_CARET_EQ] = ACTIONS(680), - [anon_sym_AMP_EQ] = ACTIONS(680), - [anon_sym_PIPE_EQ] = ACTIONS(680), - [anon_sym_LT_LT_EQ] = ACTIONS(680), - [anon_sym_GT_GT_EQ] = ACTIONS(680), - [anon_sym_EQ] = ACTIONS(690), - [anon_sym_EQ_EQ] = ACTIONS(680), - [anon_sym_BANG_EQ] = ACTIONS(680), - [anon_sym_GT] = ACTIONS(690), - [anon_sym_LT] = ACTIONS(690), - [anon_sym_GT_EQ] = ACTIONS(680), - [anon_sym_LT_EQ] = ACTIONS(680), - [anon_sym_AT] = ACTIONS(680), - [anon_sym__] = ACTIONS(690), - [anon_sym_DOT] = ACTIONS(690), - [anon_sym_DOT_DOT] = ACTIONS(690), - [anon_sym_DOT_DOT_DOT] = ACTIONS(680), - [anon_sym_DOT_DOT_EQ] = ACTIONS(680), - [anon_sym_COMMA] = ACTIONS(680), - [anon_sym_COLON_COLON] = ACTIONS(680), - [anon_sym_DASH_GT] = ACTIONS(680), - [anon_sym_POUND] = ACTIONS(680), - [anon_sym_SQUOTE] = ACTIONS(678), - [anon_sym_as] = ACTIONS(678), - [anon_sym_async] = ACTIONS(678), - [anon_sym_await] = ACTIONS(678), - [anon_sym_break] = ACTIONS(678), - [anon_sym_const] = ACTIONS(678), - [anon_sym_continue] = ACTIONS(678), - [anon_sym_default] = ACTIONS(678), - [anon_sym_enum] = ACTIONS(678), - [anon_sym_fn] = ACTIONS(678), - [anon_sym_for] = ACTIONS(678), - [anon_sym_gen] = ACTIONS(678), - [anon_sym_if] = ACTIONS(678), - [anon_sym_impl] = ACTIONS(678), - [anon_sym_let] = ACTIONS(678), - [anon_sym_loop] = ACTIONS(678), - [anon_sym_match] = ACTIONS(678), - [anon_sym_mod] = ACTIONS(678), - [anon_sym_pub] = ACTIONS(678), - [anon_sym_return] = ACTIONS(678), - [anon_sym_static] = ACTIONS(678), - [anon_sym_struct] = ACTIONS(678), - [anon_sym_trait] = ACTIONS(678), - [anon_sym_type] = ACTIONS(678), - [anon_sym_union] = ACTIONS(678), - [anon_sym_unsafe] = ACTIONS(678), - [anon_sym_use] = ACTIONS(678), - [anon_sym_where] = ACTIONS(678), - [anon_sym_while] = ACTIONS(678), - [sym_mutable_specifier] = ACTIONS(678), - [sym_integer_literal] = ACTIONS(694), - [aux_sym_string_literal_token1] = ACTIONS(696), - [sym_char_literal] = ACTIONS(694), - [anon_sym_true] = ACTIONS(698), - [anon_sym_false] = ACTIONS(698), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(678), - [sym_super] = ACTIONS(678), - [sym_crate] = ACTIONS(678), - [sym__raw_string_literal_start] = ACTIONS(700), - [sym_float_literal] = ACTIONS(694), + [aux_sym__non_special_token_repeat1] = STATE(176), + [aux_sym_delim_token_tree_repeat1] = STATE(84), + [sym_identifier] = ACTIONS(683), + [anon_sym_SEMI] = ACTIONS(685), + [anon_sym_LPAREN] = ACTIONS(687), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_RBRACK] = ACTIONS(751), + [anon_sym_LBRACE] = ACTIONS(693), + [anon_sym_EQ_GT] = ACTIONS(685), + [anon_sym_COLON] = ACTIONS(695), + [anon_sym_DOLLAR] = ACTIONS(697), + [anon_sym_PLUS] = ACTIONS(695), + [anon_sym_STAR] = ACTIONS(695), + [anon_sym_QMARK] = ACTIONS(685), + [anon_sym_u8] = ACTIONS(683), + [anon_sym_i8] = ACTIONS(683), + [anon_sym_u16] = ACTIONS(683), + [anon_sym_i16] = ACTIONS(683), + [anon_sym_u32] = ACTIONS(683), + [anon_sym_i32] = ACTIONS(683), + [anon_sym_u64] = ACTIONS(683), + [anon_sym_i64] = ACTIONS(683), + [anon_sym_u128] = ACTIONS(683), + [anon_sym_i128] = ACTIONS(683), + [anon_sym_isize] = ACTIONS(683), + [anon_sym_usize] = ACTIONS(683), + [anon_sym_f32] = ACTIONS(683), + [anon_sym_f64] = ACTIONS(683), + [anon_sym_bool] = ACTIONS(683), + [anon_sym_str] = ACTIONS(683), + [anon_sym_char] = ACTIONS(683), + [anon_sym_DASH] = ACTIONS(695), + [anon_sym_SLASH] = ACTIONS(695), + [anon_sym_PERCENT] = ACTIONS(695), + [anon_sym_CARET] = ACTIONS(695), + [anon_sym_BANG] = ACTIONS(695), + [anon_sym_AMP] = ACTIONS(695), + [anon_sym_PIPE] = ACTIONS(695), + [anon_sym_AMP_AMP] = ACTIONS(685), + [anon_sym_PIPE_PIPE] = ACTIONS(685), + [anon_sym_LT_LT] = ACTIONS(695), + [anon_sym_GT_GT] = ACTIONS(695), + [anon_sym_PLUS_EQ] = ACTIONS(685), + [anon_sym_DASH_EQ] = ACTIONS(685), + [anon_sym_STAR_EQ] = ACTIONS(685), + [anon_sym_SLASH_EQ] = ACTIONS(685), + [anon_sym_PERCENT_EQ] = ACTIONS(685), + [anon_sym_CARET_EQ] = ACTIONS(685), + [anon_sym_AMP_EQ] = ACTIONS(685), + [anon_sym_PIPE_EQ] = ACTIONS(685), + [anon_sym_LT_LT_EQ] = ACTIONS(685), + [anon_sym_GT_GT_EQ] = ACTIONS(685), + [anon_sym_EQ] = ACTIONS(695), + [anon_sym_EQ_EQ] = ACTIONS(685), + [anon_sym_BANG_EQ] = ACTIONS(685), + [anon_sym_GT] = ACTIONS(695), + [anon_sym_LT] = ACTIONS(695), + [anon_sym_GT_EQ] = ACTIONS(685), + [anon_sym_LT_EQ] = ACTIONS(685), + [anon_sym_AT] = ACTIONS(685), + [anon_sym__] = ACTIONS(695), + [anon_sym_DOT] = ACTIONS(695), + [anon_sym_DOT_DOT] = ACTIONS(695), + [anon_sym_DOT_DOT_DOT] = ACTIONS(685), + [anon_sym_DOT_DOT_EQ] = ACTIONS(685), + [anon_sym_COMMA] = ACTIONS(685), + [anon_sym_COLON_COLON] = ACTIONS(685), + [anon_sym_DASH_GT] = ACTIONS(685), + [anon_sym_POUND] = ACTIONS(685), + [anon_sym_SQUOTE] = ACTIONS(683), + [anon_sym_as] = ACTIONS(683), + [anon_sym_async] = ACTIONS(683), + [anon_sym_await] = ACTIONS(683), + [anon_sym_break] = ACTIONS(683), + [anon_sym_const] = ACTIONS(683), + [anon_sym_continue] = ACTIONS(683), + [anon_sym_default] = ACTIONS(683), + [anon_sym_enum] = ACTIONS(683), + [anon_sym_fn] = ACTIONS(683), + [anon_sym_for] = ACTIONS(683), + [anon_sym_gen] = ACTIONS(683), + [anon_sym_if] = ACTIONS(683), + [anon_sym_impl] = ACTIONS(683), + [anon_sym_let] = ACTIONS(683), + [anon_sym_loop] = ACTIONS(683), + [anon_sym_match] = ACTIONS(683), + [anon_sym_mod] = ACTIONS(683), + [anon_sym_pub] = ACTIONS(683), + [anon_sym_return] = ACTIONS(683), + [anon_sym_static] = ACTIONS(683), + [anon_sym_struct] = ACTIONS(683), + [anon_sym_trait] = ACTIONS(683), + [anon_sym_type] = ACTIONS(683), + [anon_sym_union] = ACTIONS(683), + [anon_sym_unsafe] = ACTIONS(683), + [anon_sym_use] = ACTIONS(683), + [anon_sym_where] = ACTIONS(683), + [anon_sym_while] = ACTIONS(683), + [sym_mutable_specifier] = ACTIONS(683), + [sym_integer_literal] = ACTIONS(699), + [aux_sym_string_literal_token1] = ACTIONS(701), + [sym_char_literal] = ACTIONS(699), + [anon_sym_true] = ACTIONS(703), + [anon_sym_false] = ACTIONS(703), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(683), + [sym_super] = ACTIONS(683), + [sym_crate] = ACTIONS(683), + [sym__raw_string_literal_start] = ACTIONS(705), + [sym_float_literal] = ACTIONS(699), }, [STATE(131)] = { - [sym_token_tree] = STATE(187), - [sym_token_repetition] = STATE(187), - [sym__literal] = STATE(187), - [sym_string_literal] = STATE(183), - [sym_raw_string_literal] = STATE(183), - [sym_boolean_literal] = STATE(183), + [sym_delim_token_tree] = STATE(206), + [sym__delim_tokens] = STATE(213), + [sym__non_delim_token] = STATE(206), + [sym__literal] = STATE(201), + [sym_string_literal] = STATE(219), + [sym_raw_string_literal] = STATE(219), + [sym_boolean_literal] = STATE(219), [sym_line_comment] = STATE(131), [sym_block_comment] = STATE(131), - [aux_sym_token_tree_repeat1] = STATE(68), - [aux_sym__non_special_token_repeat1] = STATE(144), - [sym_identifier] = ACTIONS(702), - [anon_sym_SEMI] = ACTIONS(609), - [anon_sym_LPAREN] = ACTIONS(704), - [anon_sym_RPAREN] = ACTIONS(732), - [anon_sym_LBRACK] = ACTIONS(708), - [anon_sym_LBRACE] = ACTIONS(710), - [anon_sym_EQ_GT] = ACTIONS(609), - [anon_sym_COLON] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(712), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_STAR] = ACTIONS(619), - [anon_sym_QMARK] = ACTIONS(609), - [anon_sym_u8] = ACTIONS(702), - [anon_sym_i8] = ACTIONS(702), - [anon_sym_u16] = ACTIONS(702), - [anon_sym_i16] = ACTIONS(702), - [anon_sym_u32] = ACTIONS(702), - [anon_sym_i32] = ACTIONS(702), - [anon_sym_u64] = ACTIONS(702), - [anon_sym_i64] = ACTIONS(702), - [anon_sym_u128] = ACTIONS(702), - [anon_sym_i128] = ACTIONS(702), - [anon_sym_isize] = ACTIONS(702), - [anon_sym_usize] = ACTIONS(702), - [anon_sym_f32] = ACTIONS(702), - [anon_sym_f64] = ACTIONS(702), - [anon_sym_bool] = ACTIONS(702), - [anon_sym_str] = ACTIONS(702), - [anon_sym_char] = ACTIONS(702), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_SLASH] = ACTIONS(619), - [anon_sym_PERCENT] = ACTIONS(619), - [anon_sym_CARET] = ACTIONS(619), - [anon_sym_BANG] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(619), - [anon_sym_AMP_AMP] = ACTIONS(609), - [anon_sym_PIPE_PIPE] = ACTIONS(609), - [anon_sym_LT_LT] = ACTIONS(619), - [anon_sym_GT_GT] = ACTIONS(619), - [anon_sym_PLUS_EQ] = ACTIONS(609), - [anon_sym_DASH_EQ] = ACTIONS(609), - [anon_sym_STAR_EQ] = ACTIONS(609), - [anon_sym_SLASH_EQ] = ACTIONS(609), - [anon_sym_PERCENT_EQ] = ACTIONS(609), - [anon_sym_CARET_EQ] = ACTIONS(609), - [anon_sym_AMP_EQ] = ACTIONS(609), - [anon_sym_PIPE_EQ] = ACTIONS(609), - [anon_sym_LT_LT_EQ] = ACTIONS(609), - [anon_sym_GT_GT_EQ] = ACTIONS(609), - [anon_sym_EQ] = ACTIONS(619), - [anon_sym_EQ_EQ] = ACTIONS(609), - [anon_sym_BANG_EQ] = ACTIONS(609), - [anon_sym_GT] = ACTIONS(619), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_GT_EQ] = ACTIONS(609), - [anon_sym_LT_EQ] = ACTIONS(609), - [anon_sym_AT] = ACTIONS(609), - [anon_sym__] = ACTIONS(619), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_DOT_DOT] = ACTIONS(619), - [anon_sym_DOT_DOT_DOT] = ACTIONS(609), - [anon_sym_DOT_DOT_EQ] = ACTIONS(609), - [anon_sym_COMMA] = ACTIONS(609), - [anon_sym_COLON_COLON] = ACTIONS(609), - [anon_sym_DASH_GT] = ACTIONS(609), - [anon_sym_POUND] = ACTIONS(609), - [anon_sym_SQUOTE] = ACTIONS(702), - [anon_sym_as] = ACTIONS(702), - [anon_sym_async] = ACTIONS(702), - [anon_sym_await] = ACTIONS(702), - [anon_sym_break] = ACTIONS(702), - [anon_sym_const] = ACTIONS(702), - [anon_sym_continue] = ACTIONS(702), - [anon_sym_default] = ACTIONS(702), - [anon_sym_enum] = ACTIONS(702), - [anon_sym_fn] = ACTIONS(702), - [anon_sym_for] = ACTIONS(702), - [anon_sym_gen] = ACTIONS(702), - [anon_sym_if] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(702), - [anon_sym_let] = ACTIONS(702), - [anon_sym_loop] = ACTIONS(702), - [anon_sym_match] = ACTIONS(702), - [anon_sym_mod] = ACTIONS(702), - [anon_sym_pub] = ACTIONS(702), - [anon_sym_return] = ACTIONS(702), - [anon_sym_static] = ACTIONS(702), - [anon_sym_struct] = ACTIONS(702), - [anon_sym_trait] = ACTIONS(702), - [anon_sym_type] = ACTIONS(702), - [anon_sym_union] = ACTIONS(702), - [anon_sym_unsafe] = ACTIONS(702), - [anon_sym_use] = ACTIONS(702), - [anon_sym_where] = ACTIONS(702), - [anon_sym_while] = ACTIONS(702), - [sym_mutable_specifier] = ACTIONS(702), - [sym_integer_literal] = ACTIONS(623), - [aux_sym_string_literal_token1] = ACTIONS(625), - [sym_char_literal] = ACTIONS(623), - [anon_sym_true] = ACTIONS(627), - [anon_sym_false] = ACTIONS(627), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(702), - [sym_super] = ACTIONS(702), - [sym_crate] = ACTIONS(702), - [sym_metavariable] = ACTIONS(714), - [sym__raw_string_literal_start] = ACTIONS(631), - [sym_float_literal] = ACTIONS(623), + [aux_sym__non_special_token_repeat1] = STATE(176), + [aux_sym_delim_token_tree_repeat1] = STATE(85), + [sym_identifier] = ACTIONS(683), + [anon_sym_SEMI] = ACTIONS(685), + [anon_sym_LPAREN] = ACTIONS(687), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_LBRACE] = ACTIONS(693), + [anon_sym_RBRACE] = ACTIONS(751), + [anon_sym_EQ_GT] = ACTIONS(685), + [anon_sym_COLON] = ACTIONS(695), + [anon_sym_DOLLAR] = ACTIONS(697), + [anon_sym_PLUS] = ACTIONS(695), + [anon_sym_STAR] = ACTIONS(695), + [anon_sym_QMARK] = ACTIONS(685), + [anon_sym_u8] = ACTIONS(683), + [anon_sym_i8] = ACTIONS(683), + [anon_sym_u16] = ACTIONS(683), + [anon_sym_i16] = ACTIONS(683), + [anon_sym_u32] = ACTIONS(683), + [anon_sym_i32] = ACTIONS(683), + [anon_sym_u64] = ACTIONS(683), + [anon_sym_i64] = ACTIONS(683), + [anon_sym_u128] = ACTIONS(683), + [anon_sym_i128] = ACTIONS(683), + [anon_sym_isize] = ACTIONS(683), + [anon_sym_usize] = ACTIONS(683), + [anon_sym_f32] = ACTIONS(683), + [anon_sym_f64] = ACTIONS(683), + [anon_sym_bool] = ACTIONS(683), + [anon_sym_str] = ACTIONS(683), + [anon_sym_char] = ACTIONS(683), + [anon_sym_DASH] = ACTIONS(695), + [anon_sym_SLASH] = ACTIONS(695), + [anon_sym_PERCENT] = ACTIONS(695), + [anon_sym_CARET] = ACTIONS(695), + [anon_sym_BANG] = ACTIONS(695), + [anon_sym_AMP] = ACTIONS(695), + [anon_sym_PIPE] = ACTIONS(695), + [anon_sym_AMP_AMP] = ACTIONS(685), + [anon_sym_PIPE_PIPE] = ACTIONS(685), + [anon_sym_LT_LT] = ACTIONS(695), + [anon_sym_GT_GT] = ACTIONS(695), + [anon_sym_PLUS_EQ] = ACTIONS(685), + [anon_sym_DASH_EQ] = ACTIONS(685), + [anon_sym_STAR_EQ] = ACTIONS(685), + [anon_sym_SLASH_EQ] = ACTIONS(685), + [anon_sym_PERCENT_EQ] = ACTIONS(685), + [anon_sym_CARET_EQ] = ACTIONS(685), + [anon_sym_AMP_EQ] = ACTIONS(685), + [anon_sym_PIPE_EQ] = ACTIONS(685), + [anon_sym_LT_LT_EQ] = ACTIONS(685), + [anon_sym_GT_GT_EQ] = ACTIONS(685), + [anon_sym_EQ] = ACTIONS(695), + [anon_sym_EQ_EQ] = ACTIONS(685), + [anon_sym_BANG_EQ] = ACTIONS(685), + [anon_sym_GT] = ACTIONS(695), + [anon_sym_LT] = ACTIONS(695), + [anon_sym_GT_EQ] = ACTIONS(685), + [anon_sym_LT_EQ] = ACTIONS(685), + [anon_sym_AT] = ACTIONS(685), + [anon_sym__] = ACTIONS(695), + [anon_sym_DOT] = ACTIONS(695), + [anon_sym_DOT_DOT] = ACTIONS(695), + [anon_sym_DOT_DOT_DOT] = ACTIONS(685), + [anon_sym_DOT_DOT_EQ] = ACTIONS(685), + [anon_sym_COMMA] = ACTIONS(685), + [anon_sym_COLON_COLON] = ACTIONS(685), + [anon_sym_DASH_GT] = ACTIONS(685), + [anon_sym_POUND] = ACTIONS(685), + [anon_sym_SQUOTE] = ACTIONS(683), + [anon_sym_as] = ACTIONS(683), + [anon_sym_async] = ACTIONS(683), + [anon_sym_await] = ACTIONS(683), + [anon_sym_break] = ACTIONS(683), + [anon_sym_const] = ACTIONS(683), + [anon_sym_continue] = ACTIONS(683), + [anon_sym_default] = ACTIONS(683), + [anon_sym_enum] = ACTIONS(683), + [anon_sym_fn] = ACTIONS(683), + [anon_sym_for] = ACTIONS(683), + [anon_sym_gen] = ACTIONS(683), + [anon_sym_if] = ACTIONS(683), + [anon_sym_impl] = ACTIONS(683), + [anon_sym_let] = ACTIONS(683), + [anon_sym_loop] = ACTIONS(683), + [anon_sym_match] = ACTIONS(683), + [anon_sym_mod] = ACTIONS(683), + [anon_sym_pub] = ACTIONS(683), + [anon_sym_return] = ACTIONS(683), + [anon_sym_static] = ACTIONS(683), + [anon_sym_struct] = ACTIONS(683), + [anon_sym_trait] = ACTIONS(683), + [anon_sym_type] = ACTIONS(683), + [anon_sym_union] = ACTIONS(683), + [anon_sym_unsafe] = ACTIONS(683), + [anon_sym_use] = ACTIONS(683), + [anon_sym_where] = ACTIONS(683), + [anon_sym_while] = ACTIONS(683), + [sym_mutable_specifier] = ACTIONS(683), + [sym_integer_literal] = ACTIONS(699), + [aux_sym_string_literal_token1] = ACTIONS(701), + [sym_char_literal] = ACTIONS(699), + [anon_sym_true] = ACTIONS(703), + [anon_sym_false] = ACTIONS(703), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(683), + [sym_super] = ACTIONS(683), + [sym_crate] = ACTIONS(683), + [sym__raw_string_literal_start] = ACTIONS(705), + [sym_float_literal] = ACTIONS(699), }, [STATE(132)] = { - [sym_token_tree] = STATE(187), - [sym_token_repetition] = STATE(187), - [sym__literal] = STATE(187), - [sym_string_literal] = STATE(183), - [sym_raw_string_literal] = STATE(183), - [sym_boolean_literal] = STATE(183), + [sym_delim_token_tree] = STATE(206), + [sym__delim_tokens] = STATE(213), + [sym__non_delim_token] = STATE(206), + [sym__literal] = STATE(201), + [sym_string_literal] = STATE(219), + [sym_raw_string_literal] = STATE(219), + [sym_boolean_literal] = STATE(219), [sym_line_comment] = STATE(132), [sym_block_comment] = STATE(132), - [aux_sym_token_tree_repeat1] = STATE(68), - [aux_sym__non_special_token_repeat1] = STATE(144), - [sym_identifier] = ACTIONS(702), - [anon_sym_SEMI] = ACTIONS(609), - [anon_sym_LPAREN] = ACTIONS(704), - [anon_sym_LBRACK] = ACTIONS(708), - [anon_sym_RBRACK] = ACTIONS(732), - [anon_sym_LBRACE] = ACTIONS(710), - [anon_sym_EQ_GT] = ACTIONS(609), - [anon_sym_COLON] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(712), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_STAR] = ACTIONS(619), - [anon_sym_QMARK] = ACTIONS(609), - [anon_sym_u8] = ACTIONS(702), - [anon_sym_i8] = ACTIONS(702), - [anon_sym_u16] = ACTIONS(702), - [anon_sym_i16] = ACTIONS(702), - [anon_sym_u32] = ACTIONS(702), - [anon_sym_i32] = ACTIONS(702), - [anon_sym_u64] = ACTIONS(702), - [anon_sym_i64] = ACTIONS(702), - [anon_sym_u128] = ACTIONS(702), - [anon_sym_i128] = ACTIONS(702), - [anon_sym_isize] = ACTIONS(702), - [anon_sym_usize] = ACTIONS(702), - [anon_sym_f32] = ACTIONS(702), - [anon_sym_f64] = ACTIONS(702), - [anon_sym_bool] = ACTIONS(702), - [anon_sym_str] = ACTIONS(702), - [anon_sym_char] = ACTIONS(702), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_SLASH] = ACTIONS(619), - [anon_sym_PERCENT] = ACTIONS(619), - [anon_sym_CARET] = ACTIONS(619), - [anon_sym_BANG] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(619), - [anon_sym_AMP_AMP] = ACTIONS(609), - [anon_sym_PIPE_PIPE] = ACTIONS(609), - [anon_sym_LT_LT] = ACTIONS(619), - [anon_sym_GT_GT] = ACTIONS(619), - [anon_sym_PLUS_EQ] = ACTIONS(609), - [anon_sym_DASH_EQ] = ACTIONS(609), - [anon_sym_STAR_EQ] = ACTIONS(609), - [anon_sym_SLASH_EQ] = ACTIONS(609), - [anon_sym_PERCENT_EQ] = ACTIONS(609), - [anon_sym_CARET_EQ] = ACTIONS(609), - [anon_sym_AMP_EQ] = ACTIONS(609), - [anon_sym_PIPE_EQ] = ACTIONS(609), - [anon_sym_LT_LT_EQ] = ACTIONS(609), - [anon_sym_GT_GT_EQ] = ACTIONS(609), - [anon_sym_EQ] = ACTIONS(619), - [anon_sym_EQ_EQ] = ACTIONS(609), - [anon_sym_BANG_EQ] = ACTIONS(609), - [anon_sym_GT] = ACTIONS(619), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_GT_EQ] = ACTIONS(609), - [anon_sym_LT_EQ] = ACTIONS(609), - [anon_sym_AT] = ACTIONS(609), - [anon_sym__] = ACTIONS(619), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_DOT_DOT] = ACTIONS(619), - [anon_sym_DOT_DOT_DOT] = ACTIONS(609), - [anon_sym_DOT_DOT_EQ] = ACTIONS(609), - [anon_sym_COMMA] = ACTIONS(609), - [anon_sym_COLON_COLON] = ACTIONS(609), - [anon_sym_DASH_GT] = ACTIONS(609), - [anon_sym_POUND] = ACTIONS(609), - [anon_sym_SQUOTE] = ACTIONS(702), - [anon_sym_as] = ACTIONS(702), - [anon_sym_async] = ACTIONS(702), - [anon_sym_await] = ACTIONS(702), - [anon_sym_break] = ACTIONS(702), - [anon_sym_const] = ACTIONS(702), - [anon_sym_continue] = ACTIONS(702), - [anon_sym_default] = ACTIONS(702), - [anon_sym_enum] = ACTIONS(702), - [anon_sym_fn] = ACTIONS(702), - [anon_sym_for] = ACTIONS(702), - [anon_sym_gen] = ACTIONS(702), - [anon_sym_if] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(702), - [anon_sym_let] = ACTIONS(702), - [anon_sym_loop] = ACTIONS(702), - [anon_sym_match] = ACTIONS(702), - [anon_sym_mod] = ACTIONS(702), - [anon_sym_pub] = ACTIONS(702), - [anon_sym_return] = ACTIONS(702), - [anon_sym_static] = ACTIONS(702), - [anon_sym_struct] = ACTIONS(702), - [anon_sym_trait] = ACTIONS(702), - [anon_sym_type] = ACTIONS(702), - [anon_sym_union] = ACTIONS(702), - [anon_sym_unsafe] = ACTIONS(702), - [anon_sym_use] = ACTIONS(702), - [anon_sym_where] = ACTIONS(702), - [anon_sym_while] = ACTIONS(702), - [sym_mutable_specifier] = ACTIONS(702), - [sym_integer_literal] = ACTIONS(623), - [aux_sym_string_literal_token1] = ACTIONS(625), - [sym_char_literal] = ACTIONS(623), - [anon_sym_true] = ACTIONS(627), - [anon_sym_false] = ACTIONS(627), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(702), - [sym_super] = ACTIONS(702), - [sym_crate] = ACTIONS(702), - [sym_metavariable] = ACTIONS(714), - [sym__raw_string_literal_start] = ACTIONS(631), - [sym_float_literal] = ACTIONS(623), + [aux_sym__non_special_token_repeat1] = STATE(176), + [aux_sym_delim_token_tree_repeat1] = STATE(83), + [sym_identifier] = ACTIONS(683), + [anon_sym_SEMI] = ACTIONS(685), + [anon_sym_LPAREN] = ACTIONS(687), + [anon_sym_RPAREN] = ACTIONS(691), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_LBRACE] = ACTIONS(693), + [anon_sym_EQ_GT] = ACTIONS(685), + [anon_sym_COLON] = ACTIONS(695), + [anon_sym_DOLLAR] = ACTIONS(697), + [anon_sym_PLUS] = ACTIONS(695), + [anon_sym_STAR] = ACTIONS(695), + [anon_sym_QMARK] = ACTIONS(685), + [anon_sym_u8] = ACTIONS(683), + [anon_sym_i8] = ACTIONS(683), + [anon_sym_u16] = ACTIONS(683), + [anon_sym_i16] = ACTIONS(683), + [anon_sym_u32] = ACTIONS(683), + [anon_sym_i32] = ACTIONS(683), + [anon_sym_u64] = ACTIONS(683), + [anon_sym_i64] = ACTIONS(683), + [anon_sym_u128] = ACTIONS(683), + [anon_sym_i128] = ACTIONS(683), + [anon_sym_isize] = ACTIONS(683), + [anon_sym_usize] = ACTIONS(683), + [anon_sym_f32] = ACTIONS(683), + [anon_sym_f64] = ACTIONS(683), + [anon_sym_bool] = ACTIONS(683), + [anon_sym_str] = ACTIONS(683), + [anon_sym_char] = ACTIONS(683), + [anon_sym_DASH] = ACTIONS(695), + [anon_sym_SLASH] = ACTIONS(695), + [anon_sym_PERCENT] = ACTIONS(695), + [anon_sym_CARET] = ACTIONS(695), + [anon_sym_BANG] = ACTIONS(695), + [anon_sym_AMP] = ACTIONS(695), + [anon_sym_PIPE] = ACTIONS(695), + [anon_sym_AMP_AMP] = ACTIONS(685), + [anon_sym_PIPE_PIPE] = ACTIONS(685), + [anon_sym_LT_LT] = ACTIONS(695), + [anon_sym_GT_GT] = ACTIONS(695), + [anon_sym_PLUS_EQ] = ACTIONS(685), + [anon_sym_DASH_EQ] = ACTIONS(685), + [anon_sym_STAR_EQ] = ACTIONS(685), + [anon_sym_SLASH_EQ] = ACTIONS(685), + [anon_sym_PERCENT_EQ] = ACTIONS(685), + [anon_sym_CARET_EQ] = ACTIONS(685), + [anon_sym_AMP_EQ] = ACTIONS(685), + [anon_sym_PIPE_EQ] = ACTIONS(685), + [anon_sym_LT_LT_EQ] = ACTIONS(685), + [anon_sym_GT_GT_EQ] = ACTIONS(685), + [anon_sym_EQ] = ACTIONS(695), + [anon_sym_EQ_EQ] = ACTIONS(685), + [anon_sym_BANG_EQ] = ACTIONS(685), + [anon_sym_GT] = ACTIONS(695), + [anon_sym_LT] = ACTIONS(695), + [anon_sym_GT_EQ] = ACTIONS(685), + [anon_sym_LT_EQ] = ACTIONS(685), + [anon_sym_AT] = ACTIONS(685), + [anon_sym__] = ACTIONS(695), + [anon_sym_DOT] = ACTIONS(695), + [anon_sym_DOT_DOT] = ACTIONS(695), + [anon_sym_DOT_DOT_DOT] = ACTIONS(685), + [anon_sym_DOT_DOT_EQ] = ACTIONS(685), + [anon_sym_COMMA] = ACTIONS(685), + [anon_sym_COLON_COLON] = ACTIONS(685), + [anon_sym_DASH_GT] = ACTIONS(685), + [anon_sym_POUND] = ACTIONS(685), + [anon_sym_SQUOTE] = ACTIONS(683), + [anon_sym_as] = ACTIONS(683), + [anon_sym_async] = ACTIONS(683), + [anon_sym_await] = ACTIONS(683), + [anon_sym_break] = ACTIONS(683), + [anon_sym_const] = ACTIONS(683), + [anon_sym_continue] = ACTIONS(683), + [anon_sym_default] = ACTIONS(683), + [anon_sym_enum] = ACTIONS(683), + [anon_sym_fn] = ACTIONS(683), + [anon_sym_for] = ACTIONS(683), + [anon_sym_gen] = ACTIONS(683), + [anon_sym_if] = ACTIONS(683), + [anon_sym_impl] = ACTIONS(683), + [anon_sym_let] = ACTIONS(683), + [anon_sym_loop] = ACTIONS(683), + [anon_sym_match] = ACTIONS(683), + [anon_sym_mod] = ACTIONS(683), + [anon_sym_pub] = ACTIONS(683), + [anon_sym_return] = ACTIONS(683), + [anon_sym_static] = ACTIONS(683), + [anon_sym_struct] = ACTIONS(683), + [anon_sym_trait] = ACTIONS(683), + [anon_sym_type] = ACTIONS(683), + [anon_sym_union] = ACTIONS(683), + [anon_sym_unsafe] = ACTIONS(683), + [anon_sym_use] = ACTIONS(683), + [anon_sym_where] = ACTIONS(683), + [anon_sym_while] = ACTIONS(683), + [sym_mutable_specifier] = ACTIONS(683), + [sym_integer_literal] = ACTIONS(699), + [aux_sym_string_literal_token1] = ACTIONS(701), + [sym_char_literal] = ACTIONS(699), + [anon_sym_true] = ACTIONS(703), + [anon_sym_false] = ACTIONS(703), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(683), + [sym_super] = ACTIONS(683), + [sym_crate] = ACTIONS(683), + [sym__raw_string_literal_start] = ACTIONS(705), + [sym_float_literal] = ACTIONS(699), }, [STATE(133)] = { - [sym_delim_token_tree] = STATE(200), - [sym__delim_tokens] = STATE(208), - [sym__non_delim_token] = STATE(200), - [sym__literal] = STATE(210), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), + [sym_delim_token_tree] = STATE(206), + [sym__delim_tokens] = STATE(213), + [sym__non_delim_token] = STATE(206), + [sym__literal] = STATE(201), + [sym_string_literal] = STATE(219), + [sym_raw_string_literal] = STATE(219), + [sym_boolean_literal] = STATE(219), [sym_line_comment] = STATE(133), [sym_block_comment] = STATE(133), - [aux_sym__non_special_token_repeat1] = STATE(147), - [aux_sym_delim_token_tree_repeat1] = STATE(83), - [sym_identifier] = ACTIONS(678), - [anon_sym_SEMI] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(682), - [anon_sym_RPAREN] = ACTIONS(734), - [anon_sym_LBRACK] = ACTIONS(684), - [anon_sym_LBRACE] = ACTIONS(688), - [anon_sym_EQ_GT] = ACTIONS(680), - [anon_sym_COLON] = ACTIONS(690), - [anon_sym_DOLLAR] = ACTIONS(692), - [anon_sym_PLUS] = ACTIONS(690), - [anon_sym_STAR] = ACTIONS(690), - [anon_sym_QMARK] = ACTIONS(680), - [anon_sym_u8] = ACTIONS(678), - [anon_sym_i8] = ACTIONS(678), - [anon_sym_u16] = ACTIONS(678), - [anon_sym_i16] = ACTIONS(678), - [anon_sym_u32] = ACTIONS(678), - [anon_sym_i32] = ACTIONS(678), - [anon_sym_u64] = ACTIONS(678), - [anon_sym_i64] = ACTIONS(678), - [anon_sym_u128] = ACTIONS(678), - [anon_sym_i128] = ACTIONS(678), - [anon_sym_isize] = ACTIONS(678), - [anon_sym_usize] = ACTIONS(678), - [anon_sym_f32] = ACTIONS(678), - [anon_sym_f64] = ACTIONS(678), - [anon_sym_bool] = ACTIONS(678), - [anon_sym_str] = ACTIONS(678), - [anon_sym_char] = ACTIONS(678), - [anon_sym_DASH] = ACTIONS(690), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_PERCENT] = ACTIONS(690), - [anon_sym_CARET] = ACTIONS(690), - [anon_sym_BANG] = ACTIONS(690), - [anon_sym_AMP] = ACTIONS(690), - [anon_sym_PIPE] = ACTIONS(690), - [anon_sym_AMP_AMP] = ACTIONS(680), - [anon_sym_PIPE_PIPE] = ACTIONS(680), - [anon_sym_LT_LT] = ACTIONS(690), - [anon_sym_GT_GT] = ACTIONS(690), - [anon_sym_PLUS_EQ] = ACTIONS(680), - [anon_sym_DASH_EQ] = ACTIONS(680), - [anon_sym_STAR_EQ] = ACTIONS(680), - [anon_sym_SLASH_EQ] = ACTIONS(680), - [anon_sym_PERCENT_EQ] = ACTIONS(680), - [anon_sym_CARET_EQ] = ACTIONS(680), - [anon_sym_AMP_EQ] = ACTIONS(680), - [anon_sym_PIPE_EQ] = ACTIONS(680), - [anon_sym_LT_LT_EQ] = ACTIONS(680), - [anon_sym_GT_GT_EQ] = ACTIONS(680), - [anon_sym_EQ] = ACTIONS(690), - [anon_sym_EQ_EQ] = ACTIONS(680), - [anon_sym_BANG_EQ] = ACTIONS(680), - [anon_sym_GT] = ACTIONS(690), - [anon_sym_LT] = ACTIONS(690), - [anon_sym_GT_EQ] = ACTIONS(680), - [anon_sym_LT_EQ] = ACTIONS(680), - [anon_sym_AT] = ACTIONS(680), - [anon_sym__] = ACTIONS(690), - [anon_sym_DOT] = ACTIONS(690), - [anon_sym_DOT_DOT] = ACTIONS(690), - [anon_sym_DOT_DOT_DOT] = ACTIONS(680), - [anon_sym_DOT_DOT_EQ] = ACTIONS(680), - [anon_sym_COMMA] = ACTIONS(680), - [anon_sym_COLON_COLON] = ACTIONS(680), - [anon_sym_DASH_GT] = ACTIONS(680), - [anon_sym_POUND] = ACTIONS(680), - [anon_sym_SQUOTE] = ACTIONS(678), - [anon_sym_as] = ACTIONS(678), - [anon_sym_async] = ACTIONS(678), - [anon_sym_await] = ACTIONS(678), - [anon_sym_break] = ACTIONS(678), - [anon_sym_const] = ACTIONS(678), - [anon_sym_continue] = ACTIONS(678), - [anon_sym_default] = ACTIONS(678), - [anon_sym_enum] = ACTIONS(678), - [anon_sym_fn] = ACTIONS(678), - [anon_sym_for] = ACTIONS(678), - [anon_sym_gen] = ACTIONS(678), - [anon_sym_if] = ACTIONS(678), - [anon_sym_impl] = ACTIONS(678), - [anon_sym_let] = ACTIONS(678), - [anon_sym_loop] = ACTIONS(678), - [anon_sym_match] = ACTIONS(678), - [anon_sym_mod] = ACTIONS(678), - [anon_sym_pub] = ACTIONS(678), - [anon_sym_return] = ACTIONS(678), - [anon_sym_static] = ACTIONS(678), - [anon_sym_struct] = ACTIONS(678), - [anon_sym_trait] = ACTIONS(678), - [anon_sym_type] = ACTIONS(678), - [anon_sym_union] = ACTIONS(678), - [anon_sym_unsafe] = ACTIONS(678), - [anon_sym_use] = ACTIONS(678), - [anon_sym_where] = ACTIONS(678), - [anon_sym_while] = ACTIONS(678), - [sym_mutable_specifier] = ACTIONS(678), - [sym_integer_literal] = ACTIONS(694), - [aux_sym_string_literal_token1] = ACTIONS(696), - [sym_char_literal] = ACTIONS(694), - [anon_sym_true] = ACTIONS(698), - [anon_sym_false] = ACTIONS(698), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(678), - [sym_super] = ACTIONS(678), - [sym_crate] = ACTIONS(678), - [sym__raw_string_literal_start] = ACTIONS(700), - [sym_float_literal] = ACTIONS(694), + [aux_sym__non_special_token_repeat1] = STATE(176), + [aux_sym_delim_token_tree_repeat1] = STATE(109), + [sym_identifier] = ACTIONS(683), + [anon_sym_SEMI] = ACTIONS(685), + [anon_sym_LPAREN] = ACTIONS(687), + [anon_sym_RPAREN] = ACTIONS(733), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_LBRACE] = ACTIONS(693), + [anon_sym_EQ_GT] = ACTIONS(685), + [anon_sym_COLON] = ACTIONS(695), + [anon_sym_DOLLAR] = ACTIONS(697), + [anon_sym_PLUS] = ACTIONS(695), + [anon_sym_STAR] = ACTIONS(695), + [anon_sym_QMARK] = ACTIONS(685), + [anon_sym_u8] = ACTIONS(683), + [anon_sym_i8] = ACTIONS(683), + [anon_sym_u16] = ACTIONS(683), + [anon_sym_i16] = ACTIONS(683), + [anon_sym_u32] = ACTIONS(683), + [anon_sym_i32] = ACTIONS(683), + [anon_sym_u64] = ACTIONS(683), + [anon_sym_i64] = ACTIONS(683), + [anon_sym_u128] = ACTIONS(683), + [anon_sym_i128] = ACTIONS(683), + [anon_sym_isize] = ACTIONS(683), + [anon_sym_usize] = ACTIONS(683), + [anon_sym_f32] = ACTIONS(683), + [anon_sym_f64] = ACTIONS(683), + [anon_sym_bool] = ACTIONS(683), + [anon_sym_str] = ACTIONS(683), + [anon_sym_char] = ACTIONS(683), + [anon_sym_DASH] = ACTIONS(695), + [anon_sym_SLASH] = ACTIONS(695), + [anon_sym_PERCENT] = ACTIONS(695), + [anon_sym_CARET] = ACTIONS(695), + [anon_sym_BANG] = ACTIONS(695), + [anon_sym_AMP] = ACTIONS(695), + [anon_sym_PIPE] = ACTIONS(695), + [anon_sym_AMP_AMP] = ACTIONS(685), + [anon_sym_PIPE_PIPE] = ACTIONS(685), + [anon_sym_LT_LT] = ACTIONS(695), + [anon_sym_GT_GT] = ACTIONS(695), + [anon_sym_PLUS_EQ] = ACTIONS(685), + [anon_sym_DASH_EQ] = ACTIONS(685), + [anon_sym_STAR_EQ] = ACTIONS(685), + [anon_sym_SLASH_EQ] = ACTIONS(685), + [anon_sym_PERCENT_EQ] = ACTIONS(685), + [anon_sym_CARET_EQ] = ACTIONS(685), + [anon_sym_AMP_EQ] = ACTIONS(685), + [anon_sym_PIPE_EQ] = ACTIONS(685), + [anon_sym_LT_LT_EQ] = ACTIONS(685), + [anon_sym_GT_GT_EQ] = ACTIONS(685), + [anon_sym_EQ] = ACTIONS(695), + [anon_sym_EQ_EQ] = ACTIONS(685), + [anon_sym_BANG_EQ] = ACTIONS(685), + [anon_sym_GT] = ACTIONS(695), + [anon_sym_LT] = ACTIONS(695), + [anon_sym_GT_EQ] = ACTIONS(685), + [anon_sym_LT_EQ] = ACTIONS(685), + [anon_sym_AT] = ACTIONS(685), + [anon_sym__] = ACTIONS(695), + [anon_sym_DOT] = ACTIONS(695), + [anon_sym_DOT_DOT] = ACTIONS(695), + [anon_sym_DOT_DOT_DOT] = ACTIONS(685), + [anon_sym_DOT_DOT_EQ] = ACTIONS(685), + [anon_sym_COMMA] = ACTIONS(685), + [anon_sym_COLON_COLON] = ACTIONS(685), + [anon_sym_DASH_GT] = ACTIONS(685), + [anon_sym_POUND] = ACTIONS(685), + [anon_sym_SQUOTE] = ACTIONS(683), + [anon_sym_as] = ACTIONS(683), + [anon_sym_async] = ACTIONS(683), + [anon_sym_await] = ACTIONS(683), + [anon_sym_break] = ACTIONS(683), + [anon_sym_const] = ACTIONS(683), + [anon_sym_continue] = ACTIONS(683), + [anon_sym_default] = ACTIONS(683), + [anon_sym_enum] = ACTIONS(683), + [anon_sym_fn] = ACTIONS(683), + [anon_sym_for] = ACTIONS(683), + [anon_sym_gen] = ACTIONS(683), + [anon_sym_if] = ACTIONS(683), + [anon_sym_impl] = ACTIONS(683), + [anon_sym_let] = ACTIONS(683), + [anon_sym_loop] = ACTIONS(683), + [anon_sym_match] = ACTIONS(683), + [anon_sym_mod] = ACTIONS(683), + [anon_sym_pub] = ACTIONS(683), + [anon_sym_return] = ACTIONS(683), + [anon_sym_static] = ACTIONS(683), + [anon_sym_struct] = ACTIONS(683), + [anon_sym_trait] = ACTIONS(683), + [anon_sym_type] = ACTIONS(683), + [anon_sym_union] = ACTIONS(683), + [anon_sym_unsafe] = ACTIONS(683), + [anon_sym_use] = ACTIONS(683), + [anon_sym_where] = ACTIONS(683), + [anon_sym_while] = ACTIONS(683), + [sym_mutable_specifier] = ACTIONS(683), + [sym_integer_literal] = ACTIONS(699), + [aux_sym_string_literal_token1] = ACTIONS(701), + [sym_char_literal] = ACTIONS(699), + [anon_sym_true] = ACTIONS(703), + [anon_sym_false] = ACTIONS(703), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(683), + [sym_super] = ACTIONS(683), + [sym_crate] = ACTIONS(683), + [sym__raw_string_literal_start] = ACTIONS(705), + [sym_float_literal] = ACTIONS(699), }, [STATE(134)] = { - [sym_attribute_item] = STATE(1059), - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1619), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), [sym_line_comment] = STATE(134), [sym_block_comment] = STATE(134), - [aux_sym_enum_variant_list_repeat1] = STATE(141), - [sym_identifier] = ACTIONS(339), + [aux_sym__non_special_token_repeat1] = STATE(134), + [sym_identifier] = ACTIONS(753), + [anon_sym_SEMI] = ACTIONS(755), + [anon_sym_LPAREN] = ACTIONS(758), + [anon_sym_RPAREN] = ACTIONS(758), + [anon_sym_LBRACK] = ACTIONS(758), + [anon_sym_RBRACK] = ACTIONS(758), + [anon_sym_LBRACE] = ACTIONS(758), + [anon_sym_RBRACE] = ACTIONS(758), + [anon_sym_EQ_GT] = ACTIONS(755), + [anon_sym_COLON] = ACTIONS(760), + [anon_sym_DOLLAR] = ACTIONS(753), + [anon_sym_PLUS] = ACTIONS(760), + [anon_sym_STAR] = ACTIONS(760), + [anon_sym_QMARK] = ACTIONS(755), + [anon_sym_u8] = ACTIONS(753), + [anon_sym_i8] = ACTIONS(753), + [anon_sym_u16] = ACTIONS(753), + [anon_sym_i16] = ACTIONS(753), + [anon_sym_u32] = ACTIONS(753), + [anon_sym_i32] = ACTIONS(753), + [anon_sym_u64] = ACTIONS(753), + [anon_sym_i64] = ACTIONS(753), + [anon_sym_u128] = ACTIONS(753), + [anon_sym_i128] = ACTIONS(753), + [anon_sym_isize] = ACTIONS(753), + [anon_sym_usize] = ACTIONS(753), + [anon_sym_f32] = ACTIONS(753), + [anon_sym_f64] = ACTIONS(753), + [anon_sym_bool] = ACTIONS(753), + [anon_sym_str] = ACTIONS(753), + [anon_sym_char] = ACTIONS(753), + [anon_sym_DASH] = ACTIONS(760), + [anon_sym_SLASH] = ACTIONS(760), + [anon_sym_PERCENT] = ACTIONS(760), + [anon_sym_CARET] = ACTIONS(760), + [anon_sym_BANG] = ACTIONS(760), + [anon_sym_AMP] = ACTIONS(760), + [anon_sym_PIPE] = ACTIONS(760), + [anon_sym_AMP_AMP] = ACTIONS(755), + [anon_sym_PIPE_PIPE] = ACTIONS(755), + [anon_sym_LT_LT] = ACTIONS(760), + [anon_sym_GT_GT] = ACTIONS(760), + [anon_sym_PLUS_EQ] = ACTIONS(755), + [anon_sym_DASH_EQ] = ACTIONS(755), + [anon_sym_STAR_EQ] = ACTIONS(755), + [anon_sym_SLASH_EQ] = ACTIONS(755), + [anon_sym_PERCENT_EQ] = ACTIONS(755), + [anon_sym_CARET_EQ] = ACTIONS(755), + [anon_sym_AMP_EQ] = ACTIONS(755), + [anon_sym_PIPE_EQ] = ACTIONS(755), + [anon_sym_LT_LT_EQ] = ACTIONS(755), + [anon_sym_GT_GT_EQ] = ACTIONS(755), + [anon_sym_EQ] = ACTIONS(760), + [anon_sym_EQ_EQ] = ACTIONS(755), + [anon_sym_BANG_EQ] = ACTIONS(755), + [anon_sym_GT] = ACTIONS(760), + [anon_sym_LT] = ACTIONS(760), + [anon_sym_GT_EQ] = ACTIONS(755), + [anon_sym_LT_EQ] = ACTIONS(755), + [anon_sym_AT] = ACTIONS(755), + [anon_sym__] = ACTIONS(760), + [anon_sym_DOT] = ACTIONS(760), + [anon_sym_DOT_DOT] = ACTIONS(760), + [anon_sym_DOT_DOT_DOT] = ACTIONS(755), + [anon_sym_DOT_DOT_EQ] = ACTIONS(755), + [anon_sym_COMMA] = ACTIONS(755), + [anon_sym_COLON_COLON] = ACTIONS(755), + [anon_sym_DASH_GT] = ACTIONS(755), + [anon_sym_POUND] = ACTIONS(755), + [anon_sym_SQUOTE] = ACTIONS(753), + [anon_sym_as] = ACTIONS(753), + [anon_sym_async] = ACTIONS(753), + [anon_sym_await] = ACTIONS(753), + [anon_sym_break] = ACTIONS(753), + [anon_sym_const] = ACTIONS(753), + [anon_sym_continue] = ACTIONS(753), + [anon_sym_default] = ACTIONS(753), + [anon_sym_enum] = ACTIONS(753), + [anon_sym_fn] = ACTIONS(753), + [anon_sym_for] = ACTIONS(753), + [anon_sym_gen] = ACTIONS(753), + [anon_sym_if] = ACTIONS(753), + [anon_sym_impl] = ACTIONS(753), + [anon_sym_let] = ACTIONS(753), + [anon_sym_loop] = ACTIONS(753), + [anon_sym_match] = ACTIONS(753), + [anon_sym_mod] = ACTIONS(753), + [anon_sym_pub] = ACTIONS(753), + [anon_sym_return] = ACTIONS(753), + [anon_sym_static] = ACTIONS(753), + [anon_sym_struct] = ACTIONS(753), + [anon_sym_trait] = ACTIONS(753), + [anon_sym_type] = ACTIONS(753), + [anon_sym_union] = ACTIONS(753), + [anon_sym_unsafe] = ACTIONS(753), + [anon_sym_use] = ACTIONS(753), + [anon_sym_where] = ACTIONS(753), + [anon_sym_while] = ACTIONS(753), + [sym_mutable_specifier] = ACTIONS(753), + [sym_integer_literal] = ACTIONS(758), + [aux_sym_string_literal_token1] = ACTIONS(758), + [sym_char_literal] = ACTIONS(758), + [anon_sym_true] = ACTIONS(753), + [anon_sym_false] = ACTIONS(753), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(753), + [sym_super] = ACTIONS(753), + [sym_crate] = ACTIONS(753), + [sym_metavariable] = ACTIONS(758), + [sym__raw_string_literal_start] = ACTIONS(758), + [sym_float_literal] = ACTIONS(758), + }, + [STATE(135)] = { + [sym_line_comment] = STATE(135), + [sym_block_comment] = STATE(135), + [aux_sym__non_special_token_repeat1] = STATE(134), + [sym_identifier] = ACTIONS(763), + [anon_sym_SEMI] = ACTIONS(576), + [anon_sym_LPAREN] = ACTIONS(765), + [anon_sym_RPAREN] = ACTIONS(765), + [anon_sym_LBRACK] = ACTIONS(765), + [anon_sym_RBRACK] = ACTIONS(765), + [anon_sym_LBRACE] = ACTIONS(765), + [anon_sym_RBRACE] = ACTIONS(765), + [anon_sym_EQ_GT] = ACTIONS(576), + [anon_sym_COLON] = ACTIONS(586), + [anon_sym_DOLLAR] = ACTIONS(763), + [anon_sym_PLUS] = ACTIONS(586), + [anon_sym_STAR] = ACTIONS(586), + [anon_sym_QMARK] = ACTIONS(576), + [anon_sym_u8] = ACTIONS(763), + [anon_sym_i8] = ACTIONS(763), + [anon_sym_u16] = ACTIONS(763), + [anon_sym_i16] = ACTIONS(763), + [anon_sym_u32] = ACTIONS(763), + [anon_sym_i32] = ACTIONS(763), + [anon_sym_u64] = ACTIONS(763), + [anon_sym_i64] = ACTIONS(763), + [anon_sym_u128] = ACTIONS(763), + [anon_sym_i128] = ACTIONS(763), + [anon_sym_isize] = ACTIONS(763), + [anon_sym_usize] = ACTIONS(763), + [anon_sym_f32] = ACTIONS(763), + [anon_sym_f64] = ACTIONS(763), + [anon_sym_bool] = ACTIONS(763), + [anon_sym_str] = ACTIONS(763), + [anon_sym_char] = ACTIONS(763), + [anon_sym_DASH] = ACTIONS(586), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_PERCENT] = ACTIONS(586), + [anon_sym_CARET] = ACTIONS(586), + [anon_sym_BANG] = ACTIONS(586), + [anon_sym_AMP] = ACTIONS(586), + [anon_sym_PIPE] = ACTIONS(586), + [anon_sym_AMP_AMP] = ACTIONS(576), + [anon_sym_PIPE_PIPE] = ACTIONS(576), + [anon_sym_LT_LT] = ACTIONS(586), + [anon_sym_GT_GT] = ACTIONS(586), + [anon_sym_PLUS_EQ] = ACTIONS(576), + [anon_sym_DASH_EQ] = ACTIONS(576), + [anon_sym_STAR_EQ] = ACTIONS(576), + [anon_sym_SLASH_EQ] = ACTIONS(576), + [anon_sym_PERCENT_EQ] = ACTIONS(576), + [anon_sym_CARET_EQ] = ACTIONS(576), + [anon_sym_AMP_EQ] = ACTIONS(576), + [anon_sym_PIPE_EQ] = ACTIONS(576), + [anon_sym_LT_LT_EQ] = ACTIONS(576), + [anon_sym_GT_GT_EQ] = ACTIONS(576), + [anon_sym_EQ] = ACTIONS(586), + [anon_sym_EQ_EQ] = ACTIONS(576), + [anon_sym_BANG_EQ] = ACTIONS(576), + [anon_sym_GT] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(586), + [anon_sym_GT_EQ] = ACTIONS(576), + [anon_sym_LT_EQ] = ACTIONS(576), + [anon_sym_AT] = ACTIONS(576), + [anon_sym__] = ACTIONS(586), + [anon_sym_DOT] = ACTIONS(586), + [anon_sym_DOT_DOT] = ACTIONS(586), + [anon_sym_DOT_DOT_DOT] = ACTIONS(576), + [anon_sym_DOT_DOT_EQ] = ACTIONS(576), + [anon_sym_COMMA] = ACTIONS(576), + [anon_sym_COLON_COLON] = ACTIONS(576), + [anon_sym_DASH_GT] = ACTIONS(576), + [anon_sym_POUND] = ACTIONS(576), + [anon_sym_SQUOTE] = ACTIONS(763), + [anon_sym_as] = ACTIONS(763), + [anon_sym_async] = ACTIONS(763), + [anon_sym_await] = ACTIONS(763), + [anon_sym_break] = ACTIONS(763), + [anon_sym_const] = ACTIONS(763), + [anon_sym_continue] = ACTIONS(763), + [anon_sym_default] = ACTIONS(763), + [anon_sym_enum] = ACTIONS(763), + [anon_sym_fn] = ACTIONS(763), + [anon_sym_for] = ACTIONS(763), + [anon_sym_gen] = ACTIONS(763), + [anon_sym_if] = ACTIONS(763), + [anon_sym_impl] = ACTIONS(763), + [anon_sym_let] = ACTIONS(763), + [anon_sym_loop] = ACTIONS(763), + [anon_sym_match] = ACTIONS(763), + [anon_sym_mod] = ACTIONS(763), + [anon_sym_pub] = ACTIONS(763), + [anon_sym_return] = ACTIONS(763), + [anon_sym_static] = ACTIONS(763), + [anon_sym_struct] = ACTIONS(763), + [anon_sym_trait] = ACTIONS(763), + [anon_sym_type] = ACTIONS(763), + [anon_sym_union] = ACTIONS(763), + [anon_sym_unsafe] = ACTIONS(763), + [anon_sym_use] = ACTIONS(763), + [anon_sym_where] = ACTIONS(763), + [anon_sym_while] = ACTIONS(763), + [sym_mutable_specifier] = ACTIONS(763), + [sym_integer_literal] = ACTIONS(765), + [aux_sym_string_literal_token1] = ACTIONS(765), + [sym_char_literal] = ACTIONS(765), + [anon_sym_true] = ACTIONS(763), + [anon_sym_false] = ACTIONS(763), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(763), + [sym_super] = ACTIONS(763), + [sym_crate] = ACTIONS(763), + [sym_metavariable] = ACTIONS(765), + [sym__raw_string_literal_start] = ACTIONS(765), + [sym_float_literal] = ACTIONS(765), + }, + [STATE(136)] = { + [sym_attribute_item] = STATE(1068), + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3031), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1637), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1491), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), + [sym_line_comment] = STATE(136), + [sym_block_comment] = STATE(136), + [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(748), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_RBRACK] = ACTIONS(767), + [anon_sym_LBRACE] = ACTIONS(348), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -32694,216 +33065,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(750), + [anon_sym_COMMA] = ACTIONS(769), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(752), + [anon_sym_POUND] = ACTIONS(771), [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(1059), - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1687), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(135), - [sym_block_comment] = STATE(135), - [aux_sym_enum_variant_list_repeat1] = STATE(1058), - [sym_identifier] = ACTIONS(754), - [anon_sym_LPAREN] = ACTIONS(757), - [anon_sym_LBRACK] = ACTIONS(760), - [anon_sym_RBRACK] = ACTIONS(763), - [anon_sym_LBRACE] = ACTIONS(765), - [anon_sym_STAR] = ACTIONS(768), - [anon_sym_u8] = ACTIONS(771), - [anon_sym_i8] = ACTIONS(771), - [anon_sym_u16] = ACTIONS(771), - [anon_sym_i16] = ACTIONS(771), - [anon_sym_u32] = ACTIONS(771), - [anon_sym_i32] = ACTIONS(771), - [anon_sym_u64] = ACTIONS(771), - [anon_sym_i64] = ACTIONS(771), - [anon_sym_u128] = ACTIONS(771), - [anon_sym_i128] = ACTIONS(771), - [anon_sym_isize] = ACTIONS(771), - [anon_sym_usize] = ACTIONS(771), - [anon_sym_f32] = ACTIONS(771), - [anon_sym_f64] = ACTIONS(771), - [anon_sym_bool] = ACTIONS(771), - [anon_sym_str] = ACTIONS(771), - [anon_sym_char] = ACTIONS(771), - [anon_sym_DASH] = ACTIONS(768), - [anon_sym_BANG] = ACTIONS(768), - [anon_sym_AMP] = ACTIONS(774), - [anon_sym_PIPE] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(780), - [anon_sym_DOT_DOT] = ACTIONS(783), - [anon_sym_COMMA] = ACTIONS(763), - [anon_sym_COLON_COLON] = ACTIONS(786), - [anon_sym_POUND] = ACTIONS(789), - [anon_sym_SQUOTE] = ACTIONS(792), - [anon_sym_async] = ACTIONS(795), - [anon_sym_break] = ACTIONS(798), - [anon_sym_const] = ACTIONS(801), - [anon_sym_continue] = ACTIONS(804), - [anon_sym_default] = ACTIONS(807), - [anon_sym_for] = ACTIONS(810), - [anon_sym_gen] = ACTIONS(813), - [anon_sym_if] = ACTIONS(816), - [anon_sym_loop] = ACTIONS(819), - [anon_sym_match] = ACTIONS(822), - [anon_sym_return] = ACTIONS(825), - [anon_sym_static] = ACTIONS(828), - [anon_sym_union] = ACTIONS(807), - [anon_sym_unsafe] = ACTIONS(831), - [anon_sym_while] = ACTIONS(834), - [anon_sym_yield] = ACTIONS(837), - [anon_sym_move] = ACTIONS(840), - [anon_sym_try] = ACTIONS(843), - [sym_integer_literal] = ACTIONS(846), - [aux_sym_string_literal_token1] = ACTIONS(849), - [sym_char_literal] = ACTIONS(846), - [anon_sym_true] = ACTIONS(852), - [anon_sym_false] = ACTIONS(852), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(855), - [sym_super] = ACTIONS(858), - [sym_crate] = ACTIONS(858), - [sym_metavariable] = ACTIONS(861), - [sym__raw_string_literal_start] = ACTIONS(864), - [sym_float_literal] = ACTIONS(846), + [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(1059), - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1636), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(136), - [sym_block_comment] = STATE(136), - [aux_sym_enum_variant_list_repeat1] = STATE(137), - [sym_identifier] = ACTIONS(339), + [STATE(137)] = { + [sym_attribute_item] = STATE(1068), + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3031), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1684), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1491), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), + [sym_line_comment] = STATE(137), + [sym_block_comment] = STATE(137), + [aux_sym_enum_variant_list_repeat1] = STATE(212), + [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(773), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(867), - [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), @@ -32928,99 +33182,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(869), + [anon_sym_COMMA] = ACTIONS(775), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(752), + [anon_sym_POUND] = ACTIONS(771), [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(1059), - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1637), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(137), - [sym_block_comment] = STATE(137), - [aux_sym_enum_variant_list_repeat1] = STATE(135), - [sym_identifier] = ACTIONS(339), + [STATE(138)] = { + [sym_attribute_item] = STATE(1068), + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3031), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1672), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1491), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), + [sym_line_comment] = STATE(138), + [sym_block_comment] = STATE(138), + [aux_sym_enum_variant_list_repeat1] = STATE(1066), + [sym_identifier] = ACTIONS(777), + [anon_sym_LPAREN] = ACTIONS(780), + [anon_sym_LBRACK] = ACTIONS(783), + [anon_sym_RBRACK] = ACTIONS(786), + [anon_sym_LBRACE] = ACTIONS(788), + [anon_sym_STAR] = ACTIONS(791), + [anon_sym_u8] = ACTIONS(794), + [anon_sym_i8] = ACTIONS(794), + [anon_sym_u16] = ACTIONS(794), + [anon_sym_i16] = ACTIONS(794), + [anon_sym_u32] = ACTIONS(794), + [anon_sym_i32] = ACTIONS(794), + [anon_sym_u64] = ACTIONS(794), + [anon_sym_i64] = ACTIONS(794), + [anon_sym_u128] = ACTIONS(794), + [anon_sym_i128] = ACTIONS(794), + [anon_sym_isize] = ACTIONS(794), + [anon_sym_usize] = ACTIONS(794), + [anon_sym_f32] = ACTIONS(794), + [anon_sym_f64] = ACTIONS(794), + [anon_sym_bool] = ACTIONS(794), + [anon_sym_str] = ACTIONS(794), + [anon_sym_char] = ACTIONS(794), + [anon_sym_DASH] = ACTIONS(791), + [anon_sym_BANG] = ACTIONS(791), + [anon_sym_AMP] = ACTIONS(797), + [anon_sym_PIPE] = ACTIONS(800), + [anon_sym_LT] = ACTIONS(803), + [anon_sym_DOT_DOT] = ACTIONS(806), + [anon_sym_COMMA] = ACTIONS(786), + [anon_sym_COLON_COLON] = ACTIONS(809), + [anon_sym_POUND] = ACTIONS(812), + [anon_sym_SQUOTE] = ACTIONS(815), + [anon_sym_async] = ACTIONS(818), + [anon_sym_break] = ACTIONS(821), + [anon_sym_const] = ACTIONS(824), + [anon_sym_continue] = ACTIONS(827), + [anon_sym_default] = ACTIONS(830), + [anon_sym_for] = ACTIONS(833), + [anon_sym_gen] = ACTIONS(836), + [anon_sym_if] = ACTIONS(839), + [anon_sym_loop] = ACTIONS(842), + [anon_sym_match] = ACTIONS(845), + [anon_sym_return] = ACTIONS(848), + [anon_sym_static] = ACTIONS(851), + [anon_sym_union] = ACTIONS(830), + [anon_sym_unsafe] = ACTIONS(854), + [anon_sym_while] = ACTIONS(857), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_move] = ACTIONS(863), + [anon_sym_try] = ACTIONS(866), + [sym_integer_literal] = ACTIONS(869), + [aux_sym_string_literal_token1] = ACTIONS(872), + [sym_char_literal] = ACTIONS(869), + [anon_sym_true] = ACTIONS(875), + [anon_sym_false] = ACTIONS(875), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(878), + [sym_super] = ACTIONS(881), + [sym_crate] = ACTIONS(881), + [sym_metavariable] = ACTIONS(884), + [sym__raw_string_literal_start] = ACTIONS(887), + [sym_float_literal] = ACTIONS(869), + }, + [STATE(139)] = { + [sym_attribute_item] = STATE(1068), + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3031), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1661), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1491), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), + [sym_line_comment] = STATE(139), + [sym_block_comment] = STATE(139), + [aux_sym_enum_variant_list_repeat1] = STATE(136), + [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(890), + [anon_sym_LBRACE] = ACTIONS(348), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -33045,99 +33416,333 @@ 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(892), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(752), + [anon_sym_POUND] = ACTIONS(771), [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(138)] = { - [sym_attribute_item] = STATE(1059), - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1684), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(138), - [sym_block_comment] = STATE(138), - [aux_sym_enum_variant_list_repeat1] = STATE(214), - [sym_identifier] = ACTIONS(339), + [STATE(140)] = { + [sym_attribute_item] = STATE(1068), + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3031), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1685), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1491), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), + [sym_line_comment] = STATE(140), + [sym_block_comment] = STATE(140), + [aux_sym_enum_variant_list_repeat1] = STATE(1066), + [sym_identifier] = ACTIONS(777), + [anon_sym_LPAREN] = ACTIONS(780), + [anon_sym_LBRACK] = ACTIONS(783), + [anon_sym_RBRACK] = ACTIONS(786), + [anon_sym_LBRACE] = ACTIONS(788), + [anon_sym_STAR] = ACTIONS(791), + [anon_sym_u8] = ACTIONS(794), + [anon_sym_i8] = ACTIONS(794), + [anon_sym_u16] = ACTIONS(794), + [anon_sym_i16] = ACTIONS(794), + [anon_sym_u32] = ACTIONS(794), + [anon_sym_i32] = ACTIONS(794), + [anon_sym_u64] = ACTIONS(794), + [anon_sym_i64] = ACTIONS(794), + [anon_sym_u128] = ACTIONS(794), + [anon_sym_i128] = ACTIONS(794), + [anon_sym_isize] = ACTIONS(794), + [anon_sym_usize] = ACTIONS(794), + [anon_sym_f32] = ACTIONS(794), + [anon_sym_f64] = ACTIONS(794), + [anon_sym_bool] = ACTIONS(794), + [anon_sym_str] = ACTIONS(794), + [anon_sym_char] = ACTIONS(794), + [anon_sym_DASH] = ACTIONS(791), + [anon_sym_BANG] = ACTIONS(791), + [anon_sym_AMP] = ACTIONS(797), + [anon_sym_PIPE] = ACTIONS(800), + [anon_sym_LT] = ACTIONS(803), + [anon_sym_DOT_DOT] = ACTIONS(806), + [anon_sym_COMMA] = ACTIONS(786), + [anon_sym_COLON_COLON] = ACTIONS(809), + [anon_sym_POUND] = ACTIONS(812), + [anon_sym_SQUOTE] = ACTIONS(815), + [anon_sym_async] = ACTIONS(818), + [anon_sym_break] = ACTIONS(821), + [anon_sym_const] = ACTIONS(824), + [anon_sym_continue] = ACTIONS(827), + [anon_sym_default] = ACTIONS(830), + [anon_sym_for] = ACTIONS(833), + [anon_sym_gen] = ACTIONS(836), + [anon_sym_if] = ACTIONS(839), + [anon_sym_loop] = ACTIONS(842), + [anon_sym_match] = ACTIONS(845), + [anon_sym_return] = ACTIONS(848), + [anon_sym_static] = ACTIONS(851), + [anon_sym_union] = ACTIONS(830), + [anon_sym_unsafe] = ACTIONS(854), + [anon_sym_while] = ACTIONS(857), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_move] = ACTIONS(863), + [anon_sym_try] = ACTIONS(866), + [sym_integer_literal] = ACTIONS(869), + [aux_sym_string_literal_token1] = ACTIONS(872), + [sym_char_literal] = ACTIONS(869), + [anon_sym_true] = ACTIONS(875), + [anon_sym_false] = ACTIONS(875), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(878), + [sym_super] = ACTIONS(881), + [sym_crate] = ACTIONS(881), + [sym_metavariable] = ACTIONS(884), + [sym__raw_string_literal_start] = ACTIONS(887), + [sym_float_literal] = ACTIONS(869), + }, + [STATE(141)] = { + [sym_line_comment] = STATE(141), + [sym_block_comment] = STATE(141), + [aux_sym__non_special_token_repeat1] = STATE(134), + [sym_identifier] = ACTIONS(894), + [anon_sym_SEMI] = ACTIONS(576), + [anon_sym_LPAREN] = ACTIONS(896), + [anon_sym_RPAREN] = ACTIONS(896), + [anon_sym_LBRACK] = ACTIONS(896), + [anon_sym_RBRACK] = ACTIONS(896), + [anon_sym_LBRACE] = ACTIONS(896), + [anon_sym_RBRACE] = ACTIONS(896), + [anon_sym_EQ_GT] = ACTIONS(576), + [anon_sym_COLON] = ACTIONS(586), + [anon_sym_DOLLAR] = ACTIONS(894), + [anon_sym_PLUS] = ACTIONS(586), + [anon_sym_STAR] = ACTIONS(586), + [anon_sym_QMARK] = ACTIONS(576), + [anon_sym_u8] = ACTIONS(894), + [anon_sym_i8] = ACTIONS(894), + [anon_sym_u16] = ACTIONS(894), + [anon_sym_i16] = ACTIONS(894), + [anon_sym_u32] = ACTIONS(894), + [anon_sym_i32] = ACTIONS(894), + [anon_sym_u64] = ACTIONS(894), + [anon_sym_i64] = ACTIONS(894), + [anon_sym_u128] = ACTIONS(894), + [anon_sym_i128] = ACTIONS(894), + [anon_sym_isize] = ACTIONS(894), + [anon_sym_usize] = ACTIONS(894), + [anon_sym_f32] = ACTIONS(894), + [anon_sym_f64] = ACTIONS(894), + [anon_sym_bool] = ACTIONS(894), + [anon_sym_str] = ACTIONS(894), + [anon_sym_char] = ACTIONS(894), + [anon_sym_DASH] = ACTIONS(586), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_PERCENT] = ACTIONS(586), + [anon_sym_CARET] = ACTIONS(586), + [anon_sym_BANG] = ACTIONS(586), + [anon_sym_AMP] = ACTIONS(586), + [anon_sym_PIPE] = ACTIONS(586), + [anon_sym_AMP_AMP] = ACTIONS(576), + [anon_sym_PIPE_PIPE] = ACTIONS(576), + [anon_sym_LT_LT] = ACTIONS(586), + [anon_sym_GT_GT] = ACTIONS(586), + [anon_sym_PLUS_EQ] = ACTIONS(576), + [anon_sym_DASH_EQ] = ACTIONS(576), + [anon_sym_STAR_EQ] = ACTIONS(576), + [anon_sym_SLASH_EQ] = ACTIONS(576), + [anon_sym_PERCENT_EQ] = ACTIONS(576), + [anon_sym_CARET_EQ] = ACTIONS(576), + [anon_sym_AMP_EQ] = ACTIONS(576), + [anon_sym_PIPE_EQ] = ACTIONS(576), + [anon_sym_LT_LT_EQ] = ACTIONS(576), + [anon_sym_GT_GT_EQ] = ACTIONS(576), + [anon_sym_EQ] = ACTIONS(586), + [anon_sym_EQ_EQ] = ACTIONS(576), + [anon_sym_BANG_EQ] = ACTIONS(576), + [anon_sym_GT] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(586), + [anon_sym_GT_EQ] = ACTIONS(576), + [anon_sym_LT_EQ] = ACTIONS(576), + [anon_sym_AT] = ACTIONS(576), + [anon_sym__] = ACTIONS(586), + [anon_sym_DOT] = ACTIONS(586), + [anon_sym_DOT_DOT] = ACTIONS(586), + [anon_sym_DOT_DOT_DOT] = ACTIONS(576), + [anon_sym_DOT_DOT_EQ] = ACTIONS(576), + [anon_sym_COMMA] = ACTIONS(576), + [anon_sym_COLON_COLON] = ACTIONS(576), + [anon_sym_DASH_GT] = ACTIONS(576), + [anon_sym_POUND] = ACTIONS(576), + [anon_sym_SQUOTE] = ACTIONS(894), + [anon_sym_as] = ACTIONS(894), + [anon_sym_async] = ACTIONS(894), + [anon_sym_await] = ACTIONS(894), + [anon_sym_break] = ACTIONS(894), + [anon_sym_const] = ACTIONS(894), + [anon_sym_continue] = ACTIONS(894), + [anon_sym_default] = ACTIONS(894), + [anon_sym_enum] = ACTIONS(894), + [anon_sym_fn] = ACTIONS(894), + [anon_sym_for] = ACTIONS(894), + [anon_sym_gen] = ACTIONS(894), + [anon_sym_if] = ACTIONS(894), + [anon_sym_impl] = ACTIONS(894), + [anon_sym_let] = ACTIONS(894), + [anon_sym_loop] = ACTIONS(894), + [anon_sym_match] = ACTIONS(894), + [anon_sym_mod] = ACTIONS(894), + [anon_sym_pub] = ACTIONS(894), + [anon_sym_return] = ACTIONS(894), + [anon_sym_static] = ACTIONS(894), + [anon_sym_struct] = ACTIONS(894), + [anon_sym_trait] = ACTIONS(894), + [anon_sym_type] = ACTIONS(894), + [anon_sym_union] = ACTIONS(894), + [anon_sym_unsafe] = ACTIONS(894), + [anon_sym_use] = ACTIONS(894), + [anon_sym_where] = ACTIONS(894), + [anon_sym_while] = ACTIONS(894), + [sym_mutable_specifier] = ACTIONS(894), + [sym_integer_literal] = ACTIONS(896), + [aux_sym_string_literal_token1] = ACTIONS(896), + [sym_char_literal] = ACTIONS(896), + [anon_sym_true] = ACTIONS(894), + [anon_sym_false] = ACTIONS(894), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(894), + [sym_super] = ACTIONS(894), + [sym_crate] = ACTIONS(894), + [sym_metavariable] = ACTIONS(896), + [sym__raw_string_literal_start] = ACTIONS(896), + [sym_float_literal] = ACTIONS(896), + }, + [STATE(142)] = { + [sym_attribute_item] = STATE(1068), + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3031), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1659), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1491), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), + [sym_line_comment] = STATE(142), + [sym_block_comment] = STATE(142), + [aux_sym_enum_variant_list_repeat1] = STATE(144), + [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(875), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_RBRACK] = ACTIONS(898), + [anon_sym_LBRACE] = ACTIONS(348), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -33162,99 +33767,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(877), + [anon_sym_COMMA] = ACTIONS(900), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(752), + [anon_sym_POUND] = ACTIONS(771), [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(139)] = { - [sym_attribute_item] = STATE(1059), - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1700), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(139), - [sym_block_comment] = STATE(139), - [aux_sym_enum_variant_list_repeat1] = STATE(199), - [sym_identifier] = ACTIONS(339), + [STATE(143)] = { + [sym_attribute_item] = STATE(1068), + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3031), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1698), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1491), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), + [sym_line_comment] = STATE(143), + [sym_block_comment] = STATE(143), + [aux_sym_enum_variant_list_repeat1] = STATE(202), + [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(879), + [anon_sym_RPAREN] = ACTIONS(902), [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), @@ -33279,216 +33884,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(881), + [anon_sym_COMMA] = ACTIONS(904), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(752), + [anon_sym_POUND] = ACTIONS(771), [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(142), - [sym_identifier] = ACTIONS(883), - [anon_sym_SEMI] = ACTIONS(609), - [anon_sym_LPAREN] = ACTIONS(885), - [anon_sym_RPAREN] = ACTIONS(885), - [anon_sym_LBRACK] = ACTIONS(885), - [anon_sym_RBRACK] = ACTIONS(885), - [anon_sym_LBRACE] = ACTIONS(885), - [anon_sym_RBRACE] = ACTIONS(885), - [anon_sym_EQ_GT] = ACTIONS(609), - [anon_sym_COLON] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(883), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_STAR] = ACTIONS(619), - [anon_sym_QMARK] = ACTIONS(609), - [anon_sym_u8] = ACTIONS(883), - [anon_sym_i8] = ACTIONS(883), - [anon_sym_u16] = ACTIONS(883), - [anon_sym_i16] = ACTIONS(883), - [anon_sym_u32] = ACTIONS(883), - [anon_sym_i32] = ACTIONS(883), - [anon_sym_u64] = ACTIONS(883), - [anon_sym_i64] = ACTIONS(883), - [anon_sym_u128] = ACTIONS(883), - [anon_sym_i128] = ACTIONS(883), - [anon_sym_isize] = ACTIONS(883), - [anon_sym_usize] = ACTIONS(883), - [anon_sym_f32] = ACTIONS(883), - [anon_sym_f64] = ACTIONS(883), - [anon_sym_bool] = ACTIONS(883), - [anon_sym_str] = ACTIONS(883), - [anon_sym_char] = ACTIONS(883), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_SLASH] = ACTIONS(619), - [anon_sym_PERCENT] = ACTIONS(619), - [anon_sym_CARET] = ACTIONS(619), - [anon_sym_BANG] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(619), - [anon_sym_AMP_AMP] = ACTIONS(609), - [anon_sym_PIPE_PIPE] = ACTIONS(609), - [anon_sym_LT_LT] = ACTIONS(619), - [anon_sym_GT_GT] = ACTIONS(619), - [anon_sym_PLUS_EQ] = ACTIONS(609), - [anon_sym_DASH_EQ] = ACTIONS(609), - [anon_sym_STAR_EQ] = ACTIONS(609), - [anon_sym_SLASH_EQ] = ACTIONS(609), - [anon_sym_PERCENT_EQ] = ACTIONS(609), - [anon_sym_CARET_EQ] = ACTIONS(609), - [anon_sym_AMP_EQ] = ACTIONS(609), - [anon_sym_PIPE_EQ] = ACTIONS(609), - [anon_sym_LT_LT_EQ] = ACTIONS(609), - [anon_sym_GT_GT_EQ] = ACTIONS(609), - [anon_sym_EQ] = ACTIONS(619), - [anon_sym_EQ_EQ] = ACTIONS(609), - [anon_sym_BANG_EQ] = ACTIONS(609), - [anon_sym_GT] = ACTIONS(619), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_GT_EQ] = ACTIONS(609), - [anon_sym_LT_EQ] = ACTIONS(609), - [anon_sym_AT] = ACTIONS(609), - [anon_sym__] = ACTIONS(619), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_DOT_DOT] = ACTIONS(619), - [anon_sym_DOT_DOT_DOT] = ACTIONS(609), - [anon_sym_DOT_DOT_EQ] = ACTIONS(609), - [anon_sym_COMMA] = ACTIONS(609), - [anon_sym_COLON_COLON] = ACTIONS(609), - [anon_sym_DASH_GT] = ACTIONS(609), - [anon_sym_POUND] = ACTIONS(609), - [anon_sym_SQUOTE] = ACTIONS(883), - [anon_sym_as] = ACTIONS(883), - [anon_sym_async] = ACTIONS(883), - [anon_sym_await] = ACTIONS(883), - [anon_sym_break] = ACTIONS(883), - [anon_sym_const] = ACTIONS(883), - [anon_sym_continue] = ACTIONS(883), - [anon_sym_default] = ACTIONS(883), - [anon_sym_enum] = ACTIONS(883), - [anon_sym_fn] = ACTIONS(883), - [anon_sym_for] = ACTIONS(883), - [anon_sym_gen] = ACTIONS(883), - [anon_sym_if] = ACTIONS(883), - [anon_sym_impl] = ACTIONS(883), - [anon_sym_let] = ACTIONS(883), - [anon_sym_loop] = ACTIONS(883), - [anon_sym_match] = ACTIONS(883), - [anon_sym_mod] = ACTIONS(883), - [anon_sym_pub] = ACTIONS(883), - [anon_sym_return] = ACTIONS(883), - [anon_sym_static] = ACTIONS(883), - [anon_sym_struct] = ACTIONS(883), - [anon_sym_trait] = ACTIONS(883), - [anon_sym_type] = ACTIONS(883), - [anon_sym_union] = ACTIONS(883), - [anon_sym_unsafe] = ACTIONS(883), - [anon_sym_use] = ACTIONS(883), - [anon_sym_where] = ACTIONS(883), - [anon_sym_while] = ACTIONS(883), - [sym_mutable_specifier] = ACTIONS(883), - [sym_integer_literal] = ACTIONS(885), - [aux_sym_string_literal_token1] = ACTIONS(885), - [sym_char_literal] = ACTIONS(885), - [anon_sym_true] = ACTIONS(883), - [anon_sym_false] = ACTIONS(883), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(883), - [sym_super] = ACTIONS(883), - [sym_crate] = ACTIONS(883), - [sym_metavariable] = ACTIONS(885), - [sym__raw_string_literal_start] = ACTIONS(885), - [sym_float_literal] = ACTIONS(885), + [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(141)] = { - [sym_attribute_item] = STATE(1059), - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1649), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(141), - [sym_block_comment] = STATE(141), - [aux_sym_enum_variant_list_repeat1] = STATE(143), - [sym_identifier] = ACTIONS(339), + [STATE(144)] = { + [sym_attribute_item] = STATE(1068), + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3031), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1634), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1491), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), + [sym_line_comment] = STATE(144), + [sym_block_comment] = STATE(144), + [aux_sym_enum_variant_list_repeat1] = STATE(138), + [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(887), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_RBRACK] = ACTIONS(906), + [anon_sym_LBRACE] = ACTIONS(348), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -33513,450 +34001,215 @@ 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(889), + [anon_sym_COMMA] = ACTIONS(908), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(752), + [anon_sym_POUND] = ACTIONS(771), [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(142)] = { - [sym_line_comment] = STATE(142), - [sym_block_comment] = STATE(142), - [aux_sym__non_special_token_repeat1] = STATE(142), - [sym_identifier] = ACTIONS(891), - [anon_sym_SEMI] = ACTIONS(893), - [anon_sym_LPAREN] = ACTIONS(896), - [anon_sym_RPAREN] = ACTIONS(896), - [anon_sym_LBRACK] = ACTIONS(896), - [anon_sym_RBRACK] = ACTIONS(896), - [anon_sym_LBRACE] = ACTIONS(896), - [anon_sym_RBRACE] = ACTIONS(896), - [anon_sym_EQ_GT] = ACTIONS(893), - [anon_sym_COLON] = ACTIONS(898), - [anon_sym_DOLLAR] = ACTIONS(891), - [anon_sym_PLUS] = ACTIONS(898), - [anon_sym_STAR] = ACTIONS(898), - [anon_sym_QMARK] = ACTIONS(893), - [anon_sym_u8] = ACTIONS(891), - [anon_sym_i8] = ACTIONS(891), - [anon_sym_u16] = ACTIONS(891), - [anon_sym_i16] = ACTIONS(891), - [anon_sym_u32] = ACTIONS(891), - [anon_sym_i32] = ACTIONS(891), - [anon_sym_u64] = ACTIONS(891), - [anon_sym_i64] = ACTIONS(891), - [anon_sym_u128] = ACTIONS(891), - [anon_sym_i128] = ACTIONS(891), - [anon_sym_isize] = ACTIONS(891), - [anon_sym_usize] = ACTIONS(891), - [anon_sym_f32] = ACTIONS(891), - [anon_sym_f64] = ACTIONS(891), - [anon_sym_bool] = ACTIONS(891), - [anon_sym_str] = ACTIONS(891), - [anon_sym_char] = ACTIONS(891), - [anon_sym_DASH] = ACTIONS(898), - [anon_sym_SLASH] = ACTIONS(898), - [anon_sym_PERCENT] = ACTIONS(898), - [anon_sym_CARET] = ACTIONS(898), - [anon_sym_BANG] = ACTIONS(898), - [anon_sym_AMP] = ACTIONS(898), - [anon_sym_PIPE] = ACTIONS(898), - [anon_sym_AMP_AMP] = ACTIONS(893), - [anon_sym_PIPE_PIPE] = ACTIONS(893), - [anon_sym_LT_LT] = ACTIONS(898), - [anon_sym_GT_GT] = ACTIONS(898), - [anon_sym_PLUS_EQ] = ACTIONS(893), - [anon_sym_DASH_EQ] = ACTIONS(893), - [anon_sym_STAR_EQ] = ACTIONS(893), - [anon_sym_SLASH_EQ] = ACTIONS(893), - [anon_sym_PERCENT_EQ] = ACTIONS(893), - [anon_sym_CARET_EQ] = ACTIONS(893), - [anon_sym_AMP_EQ] = ACTIONS(893), - [anon_sym_PIPE_EQ] = ACTIONS(893), - [anon_sym_LT_LT_EQ] = ACTIONS(893), - [anon_sym_GT_GT_EQ] = ACTIONS(893), - [anon_sym_EQ] = ACTIONS(898), - [anon_sym_EQ_EQ] = ACTIONS(893), - [anon_sym_BANG_EQ] = ACTIONS(893), - [anon_sym_GT] = ACTIONS(898), - [anon_sym_LT] = ACTIONS(898), - [anon_sym_GT_EQ] = ACTIONS(893), - [anon_sym_LT_EQ] = ACTIONS(893), - [anon_sym_AT] = ACTIONS(893), - [anon_sym__] = ACTIONS(898), - [anon_sym_DOT] = ACTIONS(898), - [anon_sym_DOT_DOT] = ACTIONS(898), - [anon_sym_DOT_DOT_DOT] = ACTIONS(893), - [anon_sym_DOT_DOT_EQ] = ACTIONS(893), - [anon_sym_COMMA] = ACTIONS(893), - [anon_sym_COLON_COLON] = ACTIONS(893), - [anon_sym_DASH_GT] = ACTIONS(893), - [anon_sym_POUND] = ACTIONS(893), - [anon_sym_SQUOTE] = ACTIONS(891), - [anon_sym_as] = ACTIONS(891), - [anon_sym_async] = ACTIONS(891), - [anon_sym_await] = ACTIONS(891), - [anon_sym_break] = ACTIONS(891), - [anon_sym_const] = ACTIONS(891), - [anon_sym_continue] = ACTIONS(891), - [anon_sym_default] = ACTIONS(891), - [anon_sym_enum] = ACTIONS(891), - [anon_sym_fn] = ACTIONS(891), - [anon_sym_for] = ACTIONS(891), - [anon_sym_gen] = ACTIONS(891), - [anon_sym_if] = ACTIONS(891), - [anon_sym_impl] = ACTIONS(891), - [anon_sym_let] = ACTIONS(891), - [anon_sym_loop] = ACTIONS(891), - [anon_sym_match] = ACTIONS(891), - [anon_sym_mod] = ACTIONS(891), - [anon_sym_pub] = ACTIONS(891), - [anon_sym_return] = ACTIONS(891), - [anon_sym_static] = ACTIONS(891), - [anon_sym_struct] = ACTIONS(891), - [anon_sym_trait] = ACTIONS(891), - [anon_sym_type] = ACTIONS(891), - [anon_sym_union] = ACTIONS(891), - [anon_sym_unsafe] = ACTIONS(891), - [anon_sym_use] = ACTIONS(891), - [anon_sym_where] = ACTIONS(891), - [anon_sym_while] = ACTIONS(891), - [sym_mutable_specifier] = ACTIONS(891), - [sym_integer_literal] = ACTIONS(896), - [aux_sym_string_literal_token1] = ACTIONS(896), - [sym_char_literal] = ACTIONS(896), - [anon_sym_true] = ACTIONS(891), - [anon_sym_false] = ACTIONS(891), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(891), - [sym_super] = ACTIONS(891), - [sym_crate] = ACTIONS(891), - [sym_metavariable] = ACTIONS(896), - [sym__raw_string_literal_start] = ACTIONS(896), - [sym_float_literal] = ACTIONS(896), - }, - [STATE(143)] = { - [sym_attribute_item] = STATE(1059), - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1703), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(143), - [sym_block_comment] = STATE(143), - [aux_sym_enum_variant_list_repeat1] = STATE(1058), - [sym_identifier] = ACTIONS(754), - [anon_sym_LPAREN] = ACTIONS(757), - [anon_sym_LBRACK] = ACTIONS(760), - [anon_sym_RBRACK] = ACTIONS(763), - [anon_sym_LBRACE] = ACTIONS(765), - [anon_sym_STAR] = ACTIONS(768), - [anon_sym_u8] = ACTIONS(771), - [anon_sym_i8] = ACTIONS(771), - [anon_sym_u16] = ACTIONS(771), - [anon_sym_i16] = ACTIONS(771), - [anon_sym_u32] = ACTIONS(771), - [anon_sym_i32] = ACTIONS(771), - [anon_sym_u64] = ACTIONS(771), - [anon_sym_i64] = ACTIONS(771), - [anon_sym_u128] = ACTIONS(771), - [anon_sym_i128] = ACTIONS(771), - [anon_sym_isize] = ACTIONS(771), - [anon_sym_usize] = ACTIONS(771), - [anon_sym_f32] = ACTIONS(771), - [anon_sym_f64] = ACTIONS(771), - [anon_sym_bool] = ACTIONS(771), - [anon_sym_str] = ACTIONS(771), - [anon_sym_char] = ACTIONS(771), - [anon_sym_DASH] = ACTIONS(768), - [anon_sym_BANG] = ACTIONS(768), - [anon_sym_AMP] = ACTIONS(774), - [anon_sym_PIPE] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(780), - [anon_sym_DOT_DOT] = ACTIONS(783), - [anon_sym_COMMA] = ACTIONS(763), - [anon_sym_COLON_COLON] = ACTIONS(786), - [anon_sym_POUND] = ACTIONS(789), - [anon_sym_SQUOTE] = ACTIONS(792), - [anon_sym_async] = ACTIONS(795), - [anon_sym_break] = ACTIONS(798), - [anon_sym_const] = ACTIONS(801), - [anon_sym_continue] = ACTIONS(804), - [anon_sym_default] = ACTIONS(807), - [anon_sym_for] = ACTIONS(810), - [anon_sym_gen] = ACTIONS(813), - [anon_sym_if] = ACTIONS(816), - [anon_sym_loop] = ACTIONS(819), - [anon_sym_match] = ACTIONS(822), - [anon_sym_return] = ACTIONS(825), - [anon_sym_static] = ACTIONS(828), - [anon_sym_union] = ACTIONS(807), - [anon_sym_unsafe] = ACTIONS(831), - [anon_sym_while] = ACTIONS(834), - [anon_sym_yield] = ACTIONS(837), - [anon_sym_move] = ACTIONS(840), - [anon_sym_try] = ACTIONS(843), - [sym_integer_literal] = ACTIONS(846), - [aux_sym_string_literal_token1] = ACTIONS(849), - [sym_char_literal] = ACTIONS(846), - [anon_sym_true] = ACTIONS(852), - [anon_sym_false] = ACTIONS(852), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(855), - [sym_super] = ACTIONS(858), - [sym_crate] = ACTIONS(858), - [sym_metavariable] = ACTIONS(861), - [sym__raw_string_literal_start] = ACTIONS(864), - [sym_float_literal] = ACTIONS(846), - }, - [STATE(144)] = { - [sym_line_comment] = STATE(144), - [sym_block_comment] = STATE(144), - [aux_sym__non_special_token_repeat1] = STATE(142), - [sym_identifier] = ACTIONS(901), - [anon_sym_SEMI] = ACTIONS(609), - [anon_sym_LPAREN] = ACTIONS(903), - [anon_sym_RPAREN] = ACTIONS(903), - [anon_sym_LBRACK] = ACTIONS(903), - [anon_sym_RBRACK] = ACTIONS(903), - [anon_sym_LBRACE] = ACTIONS(903), - [anon_sym_RBRACE] = ACTIONS(903), - [anon_sym_EQ_GT] = ACTIONS(609), - [anon_sym_COLON] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(901), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_STAR] = ACTIONS(619), - [anon_sym_QMARK] = ACTIONS(609), - [anon_sym_u8] = ACTIONS(901), - [anon_sym_i8] = ACTIONS(901), - [anon_sym_u16] = ACTIONS(901), - [anon_sym_i16] = ACTIONS(901), - [anon_sym_u32] = ACTIONS(901), - [anon_sym_i32] = ACTIONS(901), - [anon_sym_u64] = ACTIONS(901), - [anon_sym_i64] = ACTIONS(901), - [anon_sym_u128] = ACTIONS(901), - [anon_sym_i128] = ACTIONS(901), - [anon_sym_isize] = ACTIONS(901), - [anon_sym_usize] = ACTIONS(901), - [anon_sym_f32] = ACTIONS(901), - [anon_sym_f64] = ACTIONS(901), - [anon_sym_bool] = ACTIONS(901), - [anon_sym_str] = ACTIONS(901), - [anon_sym_char] = ACTIONS(901), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_SLASH] = ACTIONS(619), - [anon_sym_PERCENT] = ACTIONS(619), - [anon_sym_CARET] = ACTIONS(619), - [anon_sym_BANG] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(619), - [anon_sym_AMP_AMP] = ACTIONS(609), - [anon_sym_PIPE_PIPE] = ACTIONS(609), - [anon_sym_LT_LT] = ACTIONS(619), - [anon_sym_GT_GT] = ACTIONS(619), - [anon_sym_PLUS_EQ] = ACTIONS(609), - [anon_sym_DASH_EQ] = ACTIONS(609), - [anon_sym_STAR_EQ] = ACTIONS(609), - [anon_sym_SLASH_EQ] = ACTIONS(609), - [anon_sym_PERCENT_EQ] = ACTIONS(609), - [anon_sym_CARET_EQ] = ACTIONS(609), - [anon_sym_AMP_EQ] = ACTIONS(609), - [anon_sym_PIPE_EQ] = ACTIONS(609), - [anon_sym_LT_LT_EQ] = ACTIONS(609), - [anon_sym_GT_GT_EQ] = ACTIONS(609), - [anon_sym_EQ] = ACTIONS(619), - [anon_sym_EQ_EQ] = ACTIONS(609), - [anon_sym_BANG_EQ] = ACTIONS(609), - [anon_sym_GT] = ACTIONS(619), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_GT_EQ] = ACTIONS(609), - [anon_sym_LT_EQ] = ACTIONS(609), - [anon_sym_AT] = ACTIONS(609), - [anon_sym__] = ACTIONS(619), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_DOT_DOT] = ACTIONS(619), - [anon_sym_DOT_DOT_DOT] = ACTIONS(609), - [anon_sym_DOT_DOT_EQ] = ACTIONS(609), - [anon_sym_COMMA] = ACTIONS(609), - [anon_sym_COLON_COLON] = ACTIONS(609), - [anon_sym_DASH_GT] = ACTIONS(609), - [anon_sym_POUND] = ACTIONS(609), - [anon_sym_SQUOTE] = ACTIONS(901), - [anon_sym_as] = ACTIONS(901), - [anon_sym_async] = ACTIONS(901), - [anon_sym_await] = ACTIONS(901), - [anon_sym_break] = ACTIONS(901), - [anon_sym_const] = ACTIONS(901), - [anon_sym_continue] = ACTIONS(901), - [anon_sym_default] = ACTIONS(901), - [anon_sym_enum] = ACTIONS(901), - [anon_sym_fn] = ACTIONS(901), - [anon_sym_for] = ACTIONS(901), - [anon_sym_gen] = ACTIONS(901), - [anon_sym_if] = ACTIONS(901), - [anon_sym_impl] = ACTIONS(901), - [anon_sym_let] = ACTIONS(901), - [anon_sym_loop] = ACTIONS(901), - [anon_sym_match] = ACTIONS(901), - [anon_sym_mod] = ACTIONS(901), - [anon_sym_pub] = ACTIONS(901), - [anon_sym_return] = ACTIONS(901), - [anon_sym_static] = ACTIONS(901), - [anon_sym_struct] = ACTIONS(901), - [anon_sym_trait] = ACTIONS(901), - [anon_sym_type] = ACTIONS(901), - [anon_sym_union] = ACTIONS(901), - [anon_sym_unsafe] = ACTIONS(901), - [anon_sym_use] = ACTIONS(901), - [anon_sym_where] = ACTIONS(901), - [anon_sym_while] = ACTIONS(901), - [sym_mutable_specifier] = ACTIONS(901), - [sym_integer_literal] = ACTIONS(903), - [aux_sym_string_literal_token1] = ACTIONS(903), - [sym_char_literal] = ACTIONS(903), - [anon_sym_true] = ACTIONS(901), - [anon_sym_false] = ACTIONS(901), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(901), - [sym_super] = ACTIONS(901), - [sym_crate] = ACTIONS(901), - [sym_metavariable] = ACTIONS(903), - [sym__raw_string_literal_start] = ACTIONS(903), - [sym_float_literal] = ACTIONS(903), + [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_attribute_item] = STATE(1059), - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1673), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3114), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1749), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1631), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_let_condition] = STATE(3150), + [sym__let_chain] = STATE(3165), + [sym__condition] = STATE(2851), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(244), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), [sym_line_comment] = STATE(145), [sym_block_comment] = STATE(145), + [sym_identifier] = ACTIONS(470), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_STAR] = ACTIONS(910), + [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(910), + [anon_sym_BANG] = ACTIONS(910), + [anon_sym_AMP] = ACTIONS(912), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(914), + [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(512), + [anon_sym_break] = ACTIONS(514), + [anon_sym_const] = ACTIONS(358), + [anon_sym_continue] = ACTIONS(516), + [anon_sym_default] = ACTIONS(482), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(518), + [anon_sym_if] = ACTIONS(366), + [anon_sym_let] = ACTIONS(916), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(520), + [anon_sym_static] = ACTIONS(522), + [anon_sym_union] = ACTIONS(482), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_yield] = ACTIONS(524), + [anon_sym_move] = ACTIONS(526), + [anon_sym_try] = ACTIONS(378), + [sym_integer_literal] = ACTIONS(99), + [aux_sym_string_literal_token1] = ACTIONS(101), + [sym_char_literal] = ACTIONS(99), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(494), + [sym_super] = ACTIONS(496), + [sym_crate] = ACTIONS(496), + [sym_metavariable] = ACTIONS(498), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), + }, + [STATE(146)] = { + [sym_attribute_item] = STATE(1068), + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3031), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1670), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1491), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), + [sym_line_comment] = STATE(146), + [sym_block_comment] = STATE(146), [aux_sym_enum_variant_list_repeat1] = STATE(211), - [sym_identifier] = ACTIONS(339), + [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(905), + [anon_sym_RPAREN] = ACTIONS(918), [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), @@ -33982,677 +34235,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(752), + [anon_sym_POUND] = ACTIONS(771), [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(146)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3105), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1907), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1607), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_let_condition] = STATE(3091), - [sym__let_chain] = STATE(3103), - [sym__condition] = STATE(2645), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(254), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(146), - [sym_block_comment] = STATE(146), - [sym_identifier] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(907), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(907), - [anon_sym_BANG] = ACTIONS(907), - [anon_sym_AMP] = ACTIONS(909), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(911), - [anon_sym_COLON_COLON] = ACTIONS(481), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_default] = ACTIONS(489), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(491), - [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(913), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(493), - [anon_sym_static] = ACTIONS(495), - [anon_sym_union] = ACTIONS(489), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(497), - [anon_sym_move] = ACTIONS(499), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(501), - [sym_super] = ACTIONS(503), - [sym_crate] = ACTIONS(503), - [sym_metavariable] = ACTIONS(505), - [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(147)] = { + [sym_attribute_item] = STATE(1068), + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3031), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1670), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1491), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), [sym_line_comment] = STATE(147), [sym_block_comment] = STATE(147), - [aux_sym__non_special_token_repeat1] = STATE(170), - [sym_identifier] = ACTIONS(915), - [anon_sym_SEMI] = ACTIONS(680), - [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(680), - [anon_sym_COLON] = ACTIONS(690), - [anon_sym_DOLLAR] = ACTIONS(917), - [anon_sym_PLUS] = ACTIONS(690), - [anon_sym_STAR] = ACTIONS(690), - [anon_sym_QMARK] = ACTIONS(680), - [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(690), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_PERCENT] = ACTIONS(690), - [anon_sym_CARET] = ACTIONS(690), - [anon_sym_BANG] = ACTIONS(690), - [anon_sym_AMP] = ACTIONS(690), - [anon_sym_PIPE] = ACTIONS(690), - [anon_sym_AMP_AMP] = ACTIONS(680), - [anon_sym_PIPE_PIPE] = ACTIONS(680), - [anon_sym_LT_LT] = ACTIONS(690), - [anon_sym_GT_GT] = ACTIONS(690), - [anon_sym_PLUS_EQ] = ACTIONS(680), - [anon_sym_DASH_EQ] = ACTIONS(680), - [anon_sym_STAR_EQ] = ACTIONS(680), - [anon_sym_SLASH_EQ] = ACTIONS(680), - [anon_sym_PERCENT_EQ] = ACTIONS(680), - [anon_sym_CARET_EQ] = ACTIONS(680), - [anon_sym_AMP_EQ] = ACTIONS(680), - [anon_sym_PIPE_EQ] = ACTIONS(680), - [anon_sym_LT_LT_EQ] = ACTIONS(680), - [anon_sym_GT_GT_EQ] = ACTIONS(680), - [anon_sym_EQ] = ACTIONS(690), - [anon_sym_EQ_EQ] = ACTIONS(680), - [anon_sym_BANG_EQ] = ACTIONS(680), - [anon_sym_GT] = ACTIONS(690), - [anon_sym_LT] = ACTIONS(690), - [anon_sym_GT_EQ] = ACTIONS(680), - [anon_sym_LT_EQ] = ACTIONS(680), - [anon_sym_AT] = ACTIONS(680), - [anon_sym__] = ACTIONS(690), - [anon_sym_DOT] = ACTIONS(690), - [anon_sym_DOT_DOT] = ACTIONS(690), - [anon_sym_DOT_DOT_DOT] = ACTIONS(680), - [anon_sym_DOT_DOT_EQ] = ACTIONS(680), - [anon_sym_COMMA] = ACTIONS(680), - [anon_sym_COLON_COLON] = ACTIONS(680), - [anon_sym_DASH_GT] = ACTIONS(680), - [anon_sym_POUND] = ACTIONS(680), - [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__raw_string_literal_start] = ACTIONS(917), - [sym_float_literal] = ACTIONS(917), - }, - [STATE(148)] = { - [sym_line_comment] = STATE(148), - [sym_block_comment] = STATE(148), - [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(149)] = { - [sym_line_comment] = STATE(149), - [sym_block_comment] = STATE(149), - [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(150)] = { - [sym_line_comment] = STATE(150), - [sym_block_comment] = STATE(150), - [sym_identifier] = ACTIONS(927), - [anon_sym_SEMI] = ACTIONS(929), - [anon_sym_LPAREN] = ACTIONS(929), - [anon_sym_RPAREN] = ACTIONS(929), - [anon_sym_LBRACK] = ACTIONS(929), - [anon_sym_RBRACK] = ACTIONS(929), - [anon_sym_LBRACE] = ACTIONS(929), - [anon_sym_RBRACE] = ACTIONS(929), - [anon_sym_EQ_GT] = ACTIONS(929), - [anon_sym_COLON] = ACTIONS(927), - [anon_sym_DOLLAR] = ACTIONS(927), - [anon_sym_PLUS] = ACTIONS(927), - [anon_sym_STAR] = ACTIONS(927), - [anon_sym_QMARK] = ACTIONS(929), - [anon_sym_u8] = ACTIONS(927), - [anon_sym_i8] = ACTIONS(927), - [anon_sym_u16] = ACTIONS(927), - [anon_sym_i16] = ACTIONS(927), - [anon_sym_u32] = ACTIONS(927), - [anon_sym_i32] = ACTIONS(927), - [anon_sym_u64] = ACTIONS(927), - [anon_sym_i64] = ACTIONS(927), - [anon_sym_u128] = ACTIONS(927), - [anon_sym_i128] = ACTIONS(927), - [anon_sym_isize] = ACTIONS(927), - [anon_sym_usize] = ACTIONS(927), - [anon_sym_f32] = ACTIONS(927), - [anon_sym_f64] = ACTIONS(927), - [anon_sym_bool] = ACTIONS(927), - [anon_sym_str] = ACTIONS(927), - [anon_sym_char] = ACTIONS(927), - [anon_sym_DASH] = ACTIONS(927), - [anon_sym_SLASH] = ACTIONS(927), - [anon_sym_PERCENT] = ACTIONS(927), - [anon_sym_CARET] = ACTIONS(927), - [anon_sym_BANG] = ACTIONS(927), - [anon_sym_AMP] = ACTIONS(927), - [anon_sym_PIPE] = ACTIONS(927), - [anon_sym_AMP_AMP] = ACTIONS(929), - [anon_sym_PIPE_PIPE] = ACTIONS(929), - [anon_sym_LT_LT] = ACTIONS(927), - [anon_sym_GT_GT] = ACTIONS(927), - [anon_sym_PLUS_EQ] = ACTIONS(929), - [anon_sym_DASH_EQ] = ACTIONS(929), - [anon_sym_STAR_EQ] = ACTIONS(929), - [anon_sym_SLASH_EQ] = ACTIONS(929), - [anon_sym_PERCENT_EQ] = ACTIONS(929), - [anon_sym_CARET_EQ] = ACTIONS(929), - [anon_sym_AMP_EQ] = ACTIONS(929), - [anon_sym_PIPE_EQ] = ACTIONS(929), - [anon_sym_LT_LT_EQ] = ACTIONS(929), - [anon_sym_GT_GT_EQ] = ACTIONS(929), - [anon_sym_EQ] = ACTIONS(927), - [anon_sym_EQ_EQ] = ACTIONS(929), - [anon_sym_BANG_EQ] = ACTIONS(929), - [anon_sym_GT] = ACTIONS(927), - [anon_sym_LT] = ACTIONS(927), - [anon_sym_GT_EQ] = ACTIONS(929), - [anon_sym_LT_EQ] = ACTIONS(929), - [anon_sym_AT] = ACTIONS(929), - [anon_sym__] = ACTIONS(927), - [anon_sym_DOT] = ACTIONS(927), - [anon_sym_DOT_DOT] = ACTIONS(927), - [anon_sym_DOT_DOT_DOT] = ACTIONS(929), - [anon_sym_DOT_DOT_EQ] = ACTIONS(929), - [anon_sym_COMMA] = ACTIONS(929), - [anon_sym_COLON_COLON] = ACTIONS(929), - [anon_sym_DASH_GT] = ACTIONS(929), - [anon_sym_POUND] = ACTIONS(929), - [anon_sym_SQUOTE] = ACTIONS(927), - [anon_sym_as] = ACTIONS(927), - [anon_sym_async] = ACTIONS(927), - [anon_sym_await] = ACTIONS(927), - [anon_sym_break] = ACTIONS(927), - [anon_sym_const] = ACTIONS(927), - [anon_sym_continue] = ACTIONS(927), - [anon_sym_default] = ACTIONS(927), - [anon_sym_enum] = ACTIONS(927), - [anon_sym_fn] = ACTIONS(927), - [anon_sym_for] = ACTIONS(927), - [anon_sym_gen] = ACTIONS(927), - [anon_sym_if] = ACTIONS(927), - [anon_sym_impl] = ACTIONS(927), - [anon_sym_let] = ACTIONS(927), - [anon_sym_loop] = ACTIONS(927), - [anon_sym_match] = ACTIONS(927), - [anon_sym_mod] = ACTIONS(927), - [anon_sym_pub] = ACTIONS(927), - [anon_sym_return] = ACTIONS(927), - [anon_sym_static] = ACTIONS(927), - [anon_sym_struct] = ACTIONS(927), - [anon_sym_trait] = ACTIONS(927), - [anon_sym_type] = ACTIONS(927), - [anon_sym_union] = ACTIONS(927), - [anon_sym_unsafe] = ACTIONS(927), - [anon_sym_use] = ACTIONS(927), - [anon_sym_where] = ACTIONS(927), - [anon_sym_while] = ACTIONS(927), - [sym_mutable_specifier] = ACTIONS(927), - [sym_integer_literal] = ACTIONS(929), - [aux_sym_string_literal_token1] = ACTIONS(929), - [sym_char_literal] = ACTIONS(929), - [anon_sym_true] = ACTIONS(927), - [anon_sym_false] = ACTIONS(927), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(927), - [sym_super] = ACTIONS(927), - [sym_crate] = ACTIONS(927), - [sym_metavariable] = ACTIONS(929), - [sym__raw_string_literal_start] = ACTIONS(929), - [sym_float_literal] = ACTIONS(929), - }, - [STATE(151)] = { - [sym_attribute_item] = STATE(1059), - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1673), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(151), - [sym_block_comment] = STATE(151), [aux_sym_enum_variant_list_repeat1] = STATE(211), - [sym_identifier] = ACTIONS(339), + [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(920), + [anon_sym_LBRACE] = ACTIONS(348), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -34678,213 +34351,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(752), + [anon_sym_POUND] = ACTIONS(771), [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(152)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3105), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1907), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1607), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_let_condition] = STATE(3091), - [sym__let_chain] = STATE(3103), - [sym__condition] = STATE(2771), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(254), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(152), - [sym_block_comment] = STATE(152), - [sym_identifier] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(907), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(907), - [anon_sym_BANG] = ACTIONS(907), - [anon_sym_AMP] = ACTIONS(909), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(911), - [anon_sym_COLON_COLON] = ACTIONS(481), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_default] = ACTIONS(489), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(491), - [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(913), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(493), - [anon_sym_static] = ACTIONS(495), - [anon_sym_union] = ACTIONS(489), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(497), - [anon_sym_move] = ACTIONS(499), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(501), - [sym_super] = ACTIONS(503), - [sym_crate] = ACTIONS(503), - [sym_metavariable] = ACTIONS(505), - [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(1059), - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1868), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(153), - [sym_block_comment] = STATE(153), - [aux_sym_enum_variant_list_repeat1] = STATE(213), - [sym_identifier] = ACTIONS(339), + [STATE(148)] = { + [sym_attribute_item] = STATE(1068), + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3031), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1670), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1491), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), + [sym_line_comment] = STATE(148), + [sym_block_comment] = STATE(148), + [aux_sym_enum_variant_list_repeat1] = STATE(211), + [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(933), + [anon_sym_RPAREN] = ACTIONS(922), [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), @@ -34910,445 +34467,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(752), + [anon_sym_POUND] = ACTIONS(771), [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(154)] = { - [sym_line_comment] = STATE(154), - [sym_block_comment] = STATE(154), - [sym_identifier] = ACTIONS(883), - [anon_sym_SEMI] = ACTIONS(885), - [anon_sym_LPAREN] = ACTIONS(885), - [anon_sym_RPAREN] = ACTIONS(885), - [anon_sym_LBRACK] = ACTIONS(885), - [anon_sym_RBRACK] = ACTIONS(885), - [anon_sym_LBRACE] = ACTIONS(885), - [anon_sym_RBRACE] = ACTIONS(885), - [anon_sym_EQ_GT] = ACTIONS(885), - [anon_sym_COLON] = ACTIONS(883), - [anon_sym_DOLLAR] = ACTIONS(883), - [anon_sym_PLUS] = ACTIONS(883), - [anon_sym_STAR] = ACTIONS(883), - [anon_sym_QMARK] = ACTIONS(885), - [anon_sym_u8] = ACTIONS(883), - [anon_sym_i8] = ACTIONS(883), - [anon_sym_u16] = ACTIONS(883), - [anon_sym_i16] = ACTIONS(883), - [anon_sym_u32] = ACTIONS(883), - [anon_sym_i32] = ACTIONS(883), - [anon_sym_u64] = ACTIONS(883), - [anon_sym_i64] = ACTIONS(883), - [anon_sym_u128] = ACTIONS(883), - [anon_sym_i128] = ACTIONS(883), - [anon_sym_isize] = ACTIONS(883), - [anon_sym_usize] = ACTIONS(883), - [anon_sym_f32] = ACTIONS(883), - [anon_sym_f64] = ACTIONS(883), - [anon_sym_bool] = ACTIONS(883), - [anon_sym_str] = ACTIONS(883), - [anon_sym_char] = ACTIONS(883), - [anon_sym_DASH] = ACTIONS(883), - [anon_sym_SLASH] = ACTIONS(883), - [anon_sym_PERCENT] = ACTIONS(883), - [anon_sym_CARET] = ACTIONS(883), - [anon_sym_BANG] = ACTIONS(883), - [anon_sym_AMP] = ACTIONS(883), - [anon_sym_PIPE] = ACTIONS(883), - [anon_sym_AMP_AMP] = ACTIONS(885), - [anon_sym_PIPE_PIPE] = ACTIONS(885), - [anon_sym_LT_LT] = ACTIONS(883), - [anon_sym_GT_GT] = ACTIONS(883), - [anon_sym_PLUS_EQ] = ACTIONS(885), - [anon_sym_DASH_EQ] = ACTIONS(885), - [anon_sym_STAR_EQ] = ACTIONS(885), - [anon_sym_SLASH_EQ] = ACTIONS(885), - [anon_sym_PERCENT_EQ] = ACTIONS(885), - [anon_sym_CARET_EQ] = ACTIONS(885), - [anon_sym_AMP_EQ] = ACTIONS(885), - [anon_sym_PIPE_EQ] = ACTIONS(885), - [anon_sym_LT_LT_EQ] = ACTIONS(885), - [anon_sym_GT_GT_EQ] = ACTIONS(885), - [anon_sym_EQ] = ACTIONS(883), - [anon_sym_EQ_EQ] = ACTIONS(885), - [anon_sym_BANG_EQ] = ACTIONS(885), - [anon_sym_GT] = ACTIONS(883), - [anon_sym_LT] = ACTIONS(883), - [anon_sym_GT_EQ] = ACTIONS(885), - [anon_sym_LT_EQ] = ACTIONS(885), - [anon_sym_AT] = ACTIONS(885), - [anon_sym__] = ACTIONS(883), - [anon_sym_DOT] = ACTIONS(883), - [anon_sym_DOT_DOT] = ACTIONS(883), - [anon_sym_DOT_DOT_DOT] = ACTIONS(885), - [anon_sym_DOT_DOT_EQ] = ACTIONS(885), - [anon_sym_COMMA] = ACTIONS(885), - [anon_sym_COLON_COLON] = ACTIONS(885), - [anon_sym_DASH_GT] = ACTIONS(885), - [anon_sym_POUND] = ACTIONS(885), - [anon_sym_SQUOTE] = ACTIONS(883), - [anon_sym_as] = ACTIONS(883), - [anon_sym_async] = ACTIONS(883), - [anon_sym_await] = ACTIONS(883), - [anon_sym_break] = ACTIONS(883), - [anon_sym_const] = ACTIONS(883), - [anon_sym_continue] = ACTIONS(883), - [anon_sym_default] = ACTIONS(883), - [anon_sym_enum] = ACTIONS(883), - [anon_sym_fn] = ACTIONS(883), - [anon_sym_for] = ACTIONS(883), - [anon_sym_gen] = ACTIONS(883), - [anon_sym_if] = ACTIONS(883), - [anon_sym_impl] = ACTIONS(883), - [anon_sym_let] = ACTIONS(883), - [anon_sym_loop] = ACTIONS(883), - [anon_sym_match] = ACTIONS(883), - [anon_sym_mod] = ACTIONS(883), - [anon_sym_pub] = ACTIONS(883), - [anon_sym_return] = ACTIONS(883), - [anon_sym_static] = ACTIONS(883), - [anon_sym_struct] = ACTIONS(883), - [anon_sym_trait] = ACTIONS(883), - [anon_sym_type] = ACTIONS(883), - [anon_sym_union] = ACTIONS(883), - [anon_sym_unsafe] = ACTIONS(883), - [anon_sym_use] = ACTIONS(883), - [anon_sym_where] = ACTIONS(883), - [anon_sym_while] = ACTIONS(883), - [sym_mutable_specifier] = ACTIONS(883), - [sym_integer_literal] = ACTIONS(885), - [aux_sym_string_literal_token1] = ACTIONS(885), - [sym_char_literal] = ACTIONS(885), - [anon_sym_true] = ACTIONS(883), - [anon_sym_false] = ACTIONS(883), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(883), - [sym_super] = ACTIONS(883), - [sym_crate] = ACTIONS(883), - [sym_metavariable] = ACTIONS(885), - [sym__raw_string_literal_start] = ACTIONS(885), - [sym_float_literal] = ACTIONS(885), - }, - [STATE(155)] = { - [sym_line_comment] = STATE(155), - [sym_block_comment] = STATE(155), - [sym_identifier] = ACTIONS(883), - [anon_sym_SEMI] = ACTIONS(885), - [anon_sym_LPAREN] = ACTIONS(885), - [anon_sym_RPAREN] = ACTIONS(885), - [anon_sym_LBRACK] = ACTIONS(885), - [anon_sym_RBRACK] = ACTIONS(885), - [anon_sym_LBRACE] = ACTIONS(885), - [anon_sym_RBRACE] = ACTIONS(885), - [anon_sym_EQ_GT] = ACTIONS(885), - [anon_sym_COLON] = ACTIONS(935), - [anon_sym_DOLLAR] = ACTIONS(883), - [anon_sym_PLUS] = ACTIONS(883), - [anon_sym_STAR] = ACTIONS(883), - [anon_sym_QMARK] = ACTIONS(885), - [anon_sym_u8] = ACTIONS(883), - [anon_sym_i8] = ACTIONS(883), - [anon_sym_u16] = ACTIONS(883), - [anon_sym_i16] = ACTIONS(883), - [anon_sym_u32] = ACTIONS(883), - [anon_sym_i32] = ACTIONS(883), - [anon_sym_u64] = ACTIONS(883), - [anon_sym_i64] = ACTIONS(883), - [anon_sym_u128] = ACTIONS(883), - [anon_sym_i128] = ACTIONS(883), - [anon_sym_isize] = ACTIONS(883), - [anon_sym_usize] = ACTIONS(883), - [anon_sym_f32] = ACTIONS(883), - [anon_sym_f64] = ACTIONS(883), - [anon_sym_bool] = ACTIONS(883), - [anon_sym_str] = ACTIONS(883), - [anon_sym_char] = ACTIONS(883), - [anon_sym_DASH] = ACTIONS(883), - [anon_sym_SLASH] = ACTIONS(883), - [anon_sym_PERCENT] = ACTIONS(883), - [anon_sym_CARET] = ACTIONS(883), - [anon_sym_BANG] = ACTIONS(883), - [anon_sym_AMP] = ACTIONS(883), - [anon_sym_PIPE] = ACTIONS(883), - [anon_sym_AMP_AMP] = ACTIONS(885), - [anon_sym_PIPE_PIPE] = ACTIONS(885), - [anon_sym_LT_LT] = ACTIONS(883), - [anon_sym_GT_GT] = ACTIONS(883), - [anon_sym_PLUS_EQ] = ACTIONS(885), - [anon_sym_DASH_EQ] = ACTIONS(885), - [anon_sym_STAR_EQ] = ACTIONS(885), - [anon_sym_SLASH_EQ] = ACTIONS(885), - [anon_sym_PERCENT_EQ] = ACTIONS(885), - [anon_sym_CARET_EQ] = ACTIONS(885), - [anon_sym_AMP_EQ] = ACTIONS(885), - [anon_sym_PIPE_EQ] = ACTIONS(885), - [anon_sym_LT_LT_EQ] = ACTIONS(885), - [anon_sym_GT_GT_EQ] = ACTIONS(885), - [anon_sym_EQ] = ACTIONS(883), - [anon_sym_EQ_EQ] = ACTIONS(885), - [anon_sym_BANG_EQ] = ACTIONS(885), - [anon_sym_GT] = ACTIONS(883), - [anon_sym_LT] = ACTIONS(883), - [anon_sym_GT_EQ] = ACTIONS(885), - [anon_sym_LT_EQ] = ACTIONS(885), - [anon_sym_AT] = ACTIONS(885), - [anon_sym__] = ACTIONS(883), - [anon_sym_DOT] = ACTIONS(883), - [anon_sym_DOT_DOT] = ACTIONS(883), - [anon_sym_DOT_DOT_DOT] = ACTIONS(885), - [anon_sym_DOT_DOT_EQ] = ACTIONS(885), - [anon_sym_COMMA] = ACTIONS(885), - [anon_sym_COLON_COLON] = ACTIONS(885), - [anon_sym_DASH_GT] = ACTIONS(885), - [anon_sym_POUND] = ACTIONS(885), - [anon_sym_SQUOTE] = ACTIONS(883), - [anon_sym_as] = ACTIONS(883), - [anon_sym_async] = ACTIONS(883), - [anon_sym_await] = ACTIONS(883), - [anon_sym_break] = ACTIONS(883), - [anon_sym_const] = ACTIONS(883), - [anon_sym_continue] = ACTIONS(883), - [anon_sym_default] = ACTIONS(883), - [anon_sym_enum] = ACTIONS(883), - [anon_sym_fn] = ACTIONS(883), - [anon_sym_for] = ACTIONS(883), - [anon_sym_gen] = ACTIONS(883), - [anon_sym_if] = ACTIONS(883), - [anon_sym_impl] = ACTIONS(883), - [anon_sym_let] = ACTIONS(883), - [anon_sym_loop] = ACTIONS(883), - [anon_sym_match] = ACTIONS(883), - [anon_sym_mod] = ACTIONS(883), - [anon_sym_pub] = ACTIONS(883), - [anon_sym_return] = ACTIONS(883), - [anon_sym_static] = ACTIONS(883), - [anon_sym_struct] = ACTIONS(883), - [anon_sym_trait] = ACTIONS(883), - [anon_sym_type] = ACTIONS(883), - [anon_sym_union] = ACTIONS(883), - [anon_sym_unsafe] = ACTIONS(883), - [anon_sym_use] = ACTIONS(883), - [anon_sym_where] = ACTIONS(883), - [anon_sym_while] = ACTIONS(883), - [sym_mutable_specifier] = ACTIONS(883), - [sym_integer_literal] = ACTIONS(885), - [aux_sym_string_literal_token1] = ACTIONS(885), - [sym_char_literal] = ACTIONS(885), - [anon_sym_true] = ACTIONS(883), - [anon_sym_false] = ACTIONS(883), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(883), - [sym_super] = ACTIONS(883), - [sym_crate] = ACTIONS(883), - [sym_metavariable] = ACTIONS(885), - [sym__raw_string_literal_start] = ACTIONS(885), - [sym_float_literal] = ACTIONS(885), - }, - [STATE(156)] = { - [sym_line_comment] = STATE(156), - [sym_block_comment] = STATE(156), - [sym_identifier] = ACTIONS(937), - [anon_sym_SEMI] = ACTIONS(939), - [anon_sym_LPAREN] = ACTIONS(939), - [anon_sym_RPAREN] = ACTIONS(939), - [anon_sym_LBRACK] = ACTIONS(939), - [anon_sym_RBRACK] = ACTIONS(939), - [anon_sym_LBRACE] = ACTIONS(939), - [anon_sym_RBRACE] = ACTIONS(939), - [anon_sym_EQ_GT] = ACTIONS(939), - [anon_sym_COLON] = ACTIONS(937), - [anon_sym_DOLLAR] = ACTIONS(937), - [anon_sym_PLUS] = ACTIONS(937), - [anon_sym_STAR] = ACTIONS(937), - [anon_sym_QMARK] = ACTIONS(939), - [anon_sym_u8] = ACTIONS(937), - [anon_sym_i8] = ACTIONS(937), - [anon_sym_u16] = ACTIONS(937), - [anon_sym_i16] = ACTIONS(937), - [anon_sym_u32] = ACTIONS(937), - [anon_sym_i32] = ACTIONS(937), - [anon_sym_u64] = ACTIONS(937), - [anon_sym_i64] = ACTIONS(937), - [anon_sym_u128] = ACTIONS(937), - [anon_sym_i128] = ACTIONS(937), - [anon_sym_isize] = ACTIONS(937), - [anon_sym_usize] = ACTIONS(937), - [anon_sym_f32] = ACTIONS(937), - [anon_sym_f64] = ACTIONS(937), - [anon_sym_bool] = ACTIONS(937), - [anon_sym_str] = ACTIONS(937), - [anon_sym_char] = ACTIONS(937), - [anon_sym_DASH] = ACTIONS(937), - [anon_sym_SLASH] = ACTIONS(937), - [anon_sym_PERCENT] = ACTIONS(937), - [anon_sym_CARET] = ACTIONS(937), - [anon_sym_BANG] = ACTIONS(937), - [anon_sym_AMP] = ACTIONS(937), - [anon_sym_PIPE] = ACTIONS(937), - [anon_sym_AMP_AMP] = ACTIONS(939), - [anon_sym_PIPE_PIPE] = ACTIONS(939), - [anon_sym_LT_LT] = ACTIONS(937), - [anon_sym_GT_GT] = ACTIONS(937), - [anon_sym_PLUS_EQ] = ACTIONS(939), - [anon_sym_DASH_EQ] = ACTIONS(939), - [anon_sym_STAR_EQ] = ACTIONS(939), - [anon_sym_SLASH_EQ] = ACTIONS(939), - [anon_sym_PERCENT_EQ] = ACTIONS(939), - [anon_sym_CARET_EQ] = ACTIONS(939), - [anon_sym_AMP_EQ] = ACTIONS(939), - [anon_sym_PIPE_EQ] = ACTIONS(939), - [anon_sym_LT_LT_EQ] = ACTIONS(939), - [anon_sym_GT_GT_EQ] = ACTIONS(939), - [anon_sym_EQ] = ACTIONS(937), - [anon_sym_EQ_EQ] = ACTIONS(939), - [anon_sym_BANG_EQ] = ACTIONS(939), - [anon_sym_GT] = ACTIONS(937), - [anon_sym_LT] = ACTIONS(937), - [anon_sym_GT_EQ] = ACTIONS(939), - [anon_sym_LT_EQ] = ACTIONS(939), - [anon_sym_AT] = ACTIONS(939), - [anon_sym__] = ACTIONS(937), - [anon_sym_DOT] = ACTIONS(937), - [anon_sym_DOT_DOT] = ACTIONS(937), - [anon_sym_DOT_DOT_DOT] = ACTIONS(939), - [anon_sym_DOT_DOT_EQ] = ACTIONS(939), - [anon_sym_COMMA] = ACTIONS(939), - [anon_sym_COLON_COLON] = ACTIONS(939), - [anon_sym_DASH_GT] = ACTIONS(939), - [anon_sym_POUND] = ACTIONS(939), - [anon_sym_SQUOTE] = ACTIONS(937), - [anon_sym_as] = ACTIONS(937), - [anon_sym_async] = ACTIONS(937), - [anon_sym_await] = ACTIONS(937), - [anon_sym_break] = ACTIONS(937), - [anon_sym_const] = ACTIONS(937), - [anon_sym_continue] = ACTIONS(937), - [anon_sym_default] = ACTIONS(937), - [anon_sym_enum] = ACTIONS(937), - [anon_sym_fn] = ACTIONS(937), - [anon_sym_for] = ACTIONS(937), - [anon_sym_gen] = ACTIONS(937), - [anon_sym_if] = ACTIONS(937), - [anon_sym_impl] = ACTIONS(937), - [anon_sym_let] = ACTIONS(937), - [anon_sym_loop] = ACTIONS(937), - [anon_sym_match] = ACTIONS(937), - [anon_sym_mod] = ACTIONS(937), - [anon_sym_pub] = ACTIONS(937), - [anon_sym_return] = ACTIONS(937), - [anon_sym_static] = ACTIONS(937), - [anon_sym_struct] = ACTIONS(937), - [anon_sym_trait] = ACTIONS(937), - [anon_sym_type] = ACTIONS(937), - [anon_sym_union] = ACTIONS(937), - [anon_sym_unsafe] = ACTIONS(937), - [anon_sym_use] = ACTIONS(937), - [anon_sym_where] = ACTIONS(937), - [anon_sym_while] = ACTIONS(937), - [sym_mutable_specifier] = ACTIONS(937), - [sym_integer_literal] = ACTIONS(939), - [aux_sym_string_literal_token1] = ACTIONS(939), - [sym_char_literal] = ACTIONS(939), - [anon_sym_true] = ACTIONS(937), - [anon_sym_false] = ACTIONS(937), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(937), - [sym_super] = ACTIONS(937), - [sym_crate] = ACTIONS(937), - [sym_metavariable] = ACTIONS(939), - [sym__raw_string_literal_start] = ACTIONS(939), - [sym_float_literal] = ACTIONS(939), + [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_attribute_item] = STATE(1059), - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1673), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(157), - [sym_block_comment] = STATE(157), + [STATE(149)] = { + [sym_attribute_item] = STATE(1068), + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3031), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1670), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1491), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), + [sym_line_comment] = STATE(149), + [sym_block_comment] = STATE(149), [aux_sym_enum_variant_list_repeat1] = STATE(211), - [sym_identifier] = ACTIONS(339), + [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(941), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_RBRACK] = ACTIONS(924), + [anon_sym_LBRACE] = ACTIONS(348), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -35374,561 +34583,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(752), + [anon_sym_POUND] = ACTIONS(771), [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(158)] = { - [sym_line_comment] = STATE(158), - [sym_block_comment] = STATE(158), - [sym_identifier] = ACTIONS(943), - [anon_sym_SEMI] = ACTIONS(945), - [anon_sym_LPAREN] = ACTIONS(945), - [anon_sym_RPAREN] = ACTIONS(945), - [anon_sym_LBRACK] = ACTIONS(945), - [anon_sym_RBRACK] = ACTIONS(945), - [anon_sym_LBRACE] = ACTIONS(945), - [anon_sym_RBRACE] = ACTIONS(945), - [anon_sym_EQ_GT] = ACTIONS(945), - [anon_sym_COLON] = ACTIONS(943), - [anon_sym_DOLLAR] = ACTIONS(943), - [anon_sym_PLUS] = ACTIONS(943), - [anon_sym_STAR] = ACTIONS(943), - [anon_sym_QMARK] = ACTIONS(945), - [anon_sym_u8] = ACTIONS(943), - [anon_sym_i8] = ACTIONS(943), - [anon_sym_u16] = ACTIONS(943), - [anon_sym_i16] = ACTIONS(943), - [anon_sym_u32] = ACTIONS(943), - [anon_sym_i32] = ACTIONS(943), - [anon_sym_u64] = ACTIONS(943), - [anon_sym_i64] = ACTIONS(943), - [anon_sym_u128] = ACTIONS(943), - [anon_sym_i128] = ACTIONS(943), - [anon_sym_isize] = ACTIONS(943), - [anon_sym_usize] = ACTIONS(943), - [anon_sym_f32] = ACTIONS(943), - [anon_sym_f64] = ACTIONS(943), - [anon_sym_bool] = ACTIONS(943), - [anon_sym_str] = ACTIONS(943), - [anon_sym_char] = ACTIONS(943), - [anon_sym_DASH] = ACTIONS(943), - [anon_sym_SLASH] = ACTIONS(943), - [anon_sym_PERCENT] = ACTIONS(943), - [anon_sym_CARET] = ACTIONS(943), - [anon_sym_BANG] = ACTIONS(943), - [anon_sym_AMP] = ACTIONS(943), - [anon_sym_PIPE] = ACTIONS(943), - [anon_sym_AMP_AMP] = ACTIONS(945), - [anon_sym_PIPE_PIPE] = ACTIONS(945), - [anon_sym_LT_LT] = ACTIONS(943), - [anon_sym_GT_GT] = ACTIONS(943), - [anon_sym_PLUS_EQ] = ACTIONS(945), - [anon_sym_DASH_EQ] = ACTIONS(945), - [anon_sym_STAR_EQ] = ACTIONS(945), - [anon_sym_SLASH_EQ] = ACTIONS(945), - [anon_sym_PERCENT_EQ] = ACTIONS(945), - [anon_sym_CARET_EQ] = ACTIONS(945), - [anon_sym_AMP_EQ] = ACTIONS(945), - [anon_sym_PIPE_EQ] = ACTIONS(945), - [anon_sym_LT_LT_EQ] = ACTIONS(945), - [anon_sym_GT_GT_EQ] = ACTIONS(945), - [anon_sym_EQ] = ACTIONS(943), - [anon_sym_EQ_EQ] = ACTIONS(945), - [anon_sym_BANG_EQ] = ACTIONS(945), - [anon_sym_GT] = ACTIONS(943), - [anon_sym_LT] = ACTIONS(943), - [anon_sym_GT_EQ] = ACTIONS(945), - [anon_sym_LT_EQ] = ACTIONS(945), - [anon_sym_AT] = ACTIONS(945), - [anon_sym__] = ACTIONS(943), - [anon_sym_DOT] = ACTIONS(943), - [anon_sym_DOT_DOT] = ACTIONS(943), - [anon_sym_DOT_DOT_DOT] = ACTIONS(945), - [anon_sym_DOT_DOT_EQ] = ACTIONS(945), - [anon_sym_COMMA] = ACTIONS(945), - [anon_sym_COLON_COLON] = ACTIONS(945), - [anon_sym_DASH_GT] = ACTIONS(945), - [anon_sym_POUND] = ACTIONS(945), - [anon_sym_SQUOTE] = ACTIONS(943), - [anon_sym_as] = ACTIONS(943), - [anon_sym_async] = ACTIONS(943), - [anon_sym_await] = ACTIONS(943), - [anon_sym_break] = ACTIONS(943), - [anon_sym_const] = ACTIONS(943), - [anon_sym_continue] = ACTIONS(943), - [anon_sym_default] = ACTIONS(943), - [anon_sym_enum] = ACTIONS(943), - [anon_sym_fn] = ACTIONS(943), - [anon_sym_for] = ACTIONS(943), - [anon_sym_gen] = ACTIONS(943), - [anon_sym_if] = ACTIONS(943), - [anon_sym_impl] = ACTIONS(943), - [anon_sym_let] = ACTIONS(943), - [anon_sym_loop] = ACTIONS(943), - [anon_sym_match] = ACTIONS(943), - [anon_sym_mod] = ACTIONS(943), - [anon_sym_pub] = ACTIONS(943), - [anon_sym_return] = ACTIONS(943), - [anon_sym_static] = ACTIONS(943), - [anon_sym_struct] = ACTIONS(943), - [anon_sym_trait] = ACTIONS(943), - [anon_sym_type] = ACTIONS(943), - [anon_sym_union] = ACTIONS(943), - [anon_sym_unsafe] = ACTIONS(943), - [anon_sym_use] = ACTIONS(943), - [anon_sym_where] = ACTIONS(943), - [anon_sym_while] = ACTIONS(943), - [sym_mutable_specifier] = ACTIONS(943), - [sym_integer_literal] = ACTIONS(945), - [aux_sym_string_literal_token1] = ACTIONS(945), - [sym_char_literal] = ACTIONS(945), - [anon_sym_true] = ACTIONS(943), - [anon_sym_false] = ACTIONS(943), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(943), - [sym_super] = ACTIONS(943), - [sym_crate] = ACTIONS(943), - [sym_metavariable] = ACTIONS(945), - [sym__raw_string_literal_start] = ACTIONS(945), - [sym_float_literal] = ACTIONS(945), - }, - [STATE(159)] = { - [sym_line_comment] = STATE(159), - [sym_block_comment] = STATE(159), - [sym_identifier] = ACTIONS(947), - [anon_sym_SEMI] = ACTIONS(949), - [anon_sym_LPAREN] = ACTIONS(949), - [anon_sym_RPAREN] = ACTIONS(949), - [anon_sym_LBRACK] = ACTIONS(949), - [anon_sym_RBRACK] = ACTIONS(949), - [anon_sym_LBRACE] = ACTIONS(949), - [anon_sym_RBRACE] = ACTIONS(949), - [anon_sym_EQ_GT] = ACTIONS(949), - [anon_sym_COLON] = ACTIONS(947), - [anon_sym_DOLLAR] = ACTIONS(947), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_STAR] = ACTIONS(947), - [anon_sym_QMARK] = ACTIONS(949), - [anon_sym_u8] = ACTIONS(947), - [anon_sym_i8] = ACTIONS(947), - [anon_sym_u16] = ACTIONS(947), - [anon_sym_i16] = ACTIONS(947), - [anon_sym_u32] = ACTIONS(947), - [anon_sym_i32] = ACTIONS(947), - [anon_sym_u64] = ACTIONS(947), - [anon_sym_i64] = ACTIONS(947), - [anon_sym_u128] = ACTIONS(947), - [anon_sym_i128] = ACTIONS(947), - [anon_sym_isize] = ACTIONS(947), - [anon_sym_usize] = ACTIONS(947), - [anon_sym_f32] = ACTIONS(947), - [anon_sym_f64] = ACTIONS(947), - [anon_sym_bool] = ACTIONS(947), - [anon_sym_str] = ACTIONS(947), - [anon_sym_char] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_SLASH] = ACTIONS(947), - [anon_sym_PERCENT] = ACTIONS(947), - [anon_sym_CARET] = ACTIONS(947), - [anon_sym_BANG] = ACTIONS(947), - [anon_sym_AMP] = ACTIONS(947), - [anon_sym_PIPE] = ACTIONS(947), - [anon_sym_AMP_AMP] = ACTIONS(949), - [anon_sym_PIPE_PIPE] = ACTIONS(949), - [anon_sym_LT_LT] = ACTIONS(947), - [anon_sym_GT_GT] = ACTIONS(947), - [anon_sym_PLUS_EQ] = ACTIONS(949), - [anon_sym_DASH_EQ] = ACTIONS(949), - [anon_sym_STAR_EQ] = ACTIONS(949), - [anon_sym_SLASH_EQ] = ACTIONS(949), - [anon_sym_PERCENT_EQ] = ACTIONS(949), - [anon_sym_CARET_EQ] = ACTIONS(949), - [anon_sym_AMP_EQ] = ACTIONS(949), - [anon_sym_PIPE_EQ] = ACTIONS(949), - [anon_sym_LT_LT_EQ] = ACTIONS(949), - [anon_sym_GT_GT_EQ] = ACTIONS(949), - [anon_sym_EQ] = ACTIONS(947), - [anon_sym_EQ_EQ] = ACTIONS(949), - [anon_sym_BANG_EQ] = ACTIONS(949), - [anon_sym_GT] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(947), - [anon_sym_GT_EQ] = ACTIONS(949), - [anon_sym_LT_EQ] = ACTIONS(949), - [anon_sym_AT] = ACTIONS(949), - [anon_sym__] = ACTIONS(947), - [anon_sym_DOT] = ACTIONS(947), - [anon_sym_DOT_DOT] = ACTIONS(947), - [anon_sym_DOT_DOT_DOT] = ACTIONS(949), - [anon_sym_DOT_DOT_EQ] = ACTIONS(949), - [anon_sym_COMMA] = ACTIONS(949), - [anon_sym_COLON_COLON] = ACTIONS(949), - [anon_sym_DASH_GT] = ACTIONS(949), - [anon_sym_POUND] = ACTIONS(949), - [anon_sym_SQUOTE] = ACTIONS(947), - [anon_sym_as] = ACTIONS(947), - [anon_sym_async] = ACTIONS(947), - [anon_sym_await] = ACTIONS(947), - [anon_sym_break] = ACTIONS(947), - [anon_sym_const] = ACTIONS(947), - [anon_sym_continue] = ACTIONS(947), - [anon_sym_default] = ACTIONS(947), - [anon_sym_enum] = ACTIONS(947), - [anon_sym_fn] = ACTIONS(947), - [anon_sym_for] = ACTIONS(947), - [anon_sym_gen] = ACTIONS(947), - [anon_sym_if] = ACTIONS(947), - [anon_sym_impl] = ACTIONS(947), - [anon_sym_let] = ACTIONS(947), - [anon_sym_loop] = ACTIONS(947), - [anon_sym_match] = ACTIONS(947), - [anon_sym_mod] = ACTIONS(947), - [anon_sym_pub] = ACTIONS(947), - [anon_sym_return] = ACTIONS(947), - [anon_sym_static] = ACTIONS(947), - [anon_sym_struct] = ACTIONS(947), - [anon_sym_trait] = ACTIONS(947), - [anon_sym_type] = ACTIONS(947), - [anon_sym_union] = ACTIONS(947), - [anon_sym_unsafe] = ACTIONS(947), - [anon_sym_use] = ACTIONS(947), - [anon_sym_where] = ACTIONS(947), - [anon_sym_while] = ACTIONS(947), - [sym_mutable_specifier] = ACTIONS(947), - [sym_integer_literal] = ACTIONS(949), - [aux_sym_string_literal_token1] = ACTIONS(949), - [sym_char_literal] = ACTIONS(949), - [anon_sym_true] = ACTIONS(947), - [anon_sym_false] = ACTIONS(947), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(947), - [sym_super] = ACTIONS(947), - [sym_crate] = ACTIONS(947), - [sym_metavariable] = ACTIONS(949), - [sym__raw_string_literal_start] = ACTIONS(949), - [sym_float_literal] = ACTIONS(949), - }, - [STATE(160)] = { - [sym_line_comment] = STATE(160), - [sym_block_comment] = STATE(160), - [sym_identifier] = ACTIONS(951), - [anon_sym_SEMI] = ACTIONS(953), - [anon_sym_LPAREN] = ACTIONS(953), - [anon_sym_RPAREN] = ACTIONS(953), - [anon_sym_LBRACK] = ACTIONS(953), - [anon_sym_RBRACK] = ACTIONS(953), - [anon_sym_LBRACE] = ACTIONS(953), - [anon_sym_RBRACE] = ACTIONS(953), - [anon_sym_EQ_GT] = ACTIONS(953), - [anon_sym_COLON] = ACTIONS(951), - [anon_sym_DOLLAR] = ACTIONS(951), - [anon_sym_PLUS] = ACTIONS(951), - [anon_sym_STAR] = ACTIONS(951), - [anon_sym_QMARK] = ACTIONS(953), - [anon_sym_u8] = ACTIONS(951), - [anon_sym_i8] = ACTIONS(951), - [anon_sym_u16] = ACTIONS(951), - [anon_sym_i16] = ACTIONS(951), - [anon_sym_u32] = ACTIONS(951), - [anon_sym_i32] = ACTIONS(951), - [anon_sym_u64] = ACTIONS(951), - [anon_sym_i64] = ACTIONS(951), - [anon_sym_u128] = ACTIONS(951), - [anon_sym_i128] = ACTIONS(951), - [anon_sym_isize] = ACTIONS(951), - [anon_sym_usize] = ACTIONS(951), - [anon_sym_f32] = ACTIONS(951), - [anon_sym_f64] = ACTIONS(951), - [anon_sym_bool] = ACTIONS(951), - [anon_sym_str] = ACTIONS(951), - [anon_sym_char] = ACTIONS(951), - [anon_sym_DASH] = ACTIONS(951), - [anon_sym_SLASH] = ACTIONS(951), - [anon_sym_PERCENT] = ACTIONS(951), - [anon_sym_CARET] = ACTIONS(951), - [anon_sym_BANG] = ACTIONS(951), - [anon_sym_AMP] = ACTIONS(951), - [anon_sym_PIPE] = ACTIONS(951), - [anon_sym_AMP_AMP] = ACTIONS(953), - [anon_sym_PIPE_PIPE] = ACTIONS(953), - [anon_sym_LT_LT] = ACTIONS(951), - [anon_sym_GT_GT] = ACTIONS(951), - [anon_sym_PLUS_EQ] = ACTIONS(953), - [anon_sym_DASH_EQ] = ACTIONS(953), - [anon_sym_STAR_EQ] = ACTIONS(953), - [anon_sym_SLASH_EQ] = ACTIONS(953), - [anon_sym_PERCENT_EQ] = ACTIONS(953), - [anon_sym_CARET_EQ] = ACTIONS(953), - [anon_sym_AMP_EQ] = ACTIONS(953), - [anon_sym_PIPE_EQ] = ACTIONS(953), - [anon_sym_LT_LT_EQ] = ACTIONS(953), - [anon_sym_GT_GT_EQ] = ACTIONS(953), - [anon_sym_EQ] = ACTIONS(951), - [anon_sym_EQ_EQ] = ACTIONS(953), - [anon_sym_BANG_EQ] = ACTIONS(953), - [anon_sym_GT] = ACTIONS(951), - [anon_sym_LT] = ACTIONS(951), - [anon_sym_GT_EQ] = ACTIONS(953), - [anon_sym_LT_EQ] = ACTIONS(953), - [anon_sym_AT] = ACTIONS(953), - [anon_sym__] = ACTIONS(951), - [anon_sym_DOT] = ACTIONS(951), - [anon_sym_DOT_DOT] = ACTIONS(951), - [anon_sym_DOT_DOT_DOT] = ACTIONS(953), - [anon_sym_DOT_DOT_EQ] = ACTIONS(953), - [anon_sym_COMMA] = ACTIONS(953), - [anon_sym_COLON_COLON] = ACTIONS(953), - [anon_sym_DASH_GT] = ACTIONS(953), - [anon_sym_POUND] = ACTIONS(953), - [anon_sym_SQUOTE] = ACTIONS(951), - [anon_sym_as] = ACTIONS(951), - [anon_sym_async] = ACTIONS(951), - [anon_sym_await] = ACTIONS(951), - [anon_sym_break] = ACTIONS(951), - [anon_sym_const] = ACTIONS(951), - [anon_sym_continue] = ACTIONS(951), - [anon_sym_default] = ACTIONS(951), - [anon_sym_enum] = ACTIONS(951), - [anon_sym_fn] = ACTIONS(951), - [anon_sym_for] = ACTIONS(951), - [anon_sym_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), - }, - [STATE(161)] = { - [sym_line_comment] = STATE(161), - [sym_block_comment] = STATE(161), - [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), + [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(162)] = { - [sym_attribute_item] = STATE(1059), - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1673), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(162), - [sym_block_comment] = STATE(162), + [STATE(150)] = { + [sym_attribute_item] = STATE(1068), + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3031), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1670), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1491), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), + [sym_line_comment] = STATE(150), + [sym_block_comment] = STATE(150), [aux_sym_enum_variant_list_repeat1] = STATE(211), - [sym_identifier] = ACTIONS(339), + [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(926), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(959), - [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), @@ -35954,213 +34699,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(752), + [anon_sym_POUND] = ACTIONS(771), [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(163)] = { - [sym_line_comment] = STATE(163), - [sym_block_comment] = STATE(163), - [sym_identifier] = ACTIONS(961), - [anon_sym_SEMI] = ACTIONS(963), - [anon_sym_LPAREN] = ACTIONS(963), - [anon_sym_RPAREN] = ACTIONS(963), - [anon_sym_LBRACK] = ACTIONS(963), - [anon_sym_RBRACK] = ACTIONS(963), - [anon_sym_LBRACE] = ACTIONS(963), - [anon_sym_RBRACE] = ACTIONS(963), - [anon_sym_EQ_GT] = ACTIONS(963), - [anon_sym_COLON] = ACTIONS(961), - [anon_sym_DOLLAR] = ACTIONS(961), - [anon_sym_PLUS] = ACTIONS(961), - [anon_sym_STAR] = ACTIONS(961), - [anon_sym_QMARK] = ACTIONS(963), - [anon_sym_u8] = ACTIONS(961), - [anon_sym_i8] = ACTIONS(961), - [anon_sym_u16] = ACTIONS(961), - [anon_sym_i16] = ACTIONS(961), - [anon_sym_u32] = ACTIONS(961), - [anon_sym_i32] = ACTIONS(961), - [anon_sym_u64] = ACTIONS(961), - [anon_sym_i64] = ACTIONS(961), - [anon_sym_u128] = ACTIONS(961), - [anon_sym_i128] = ACTIONS(961), - [anon_sym_isize] = ACTIONS(961), - [anon_sym_usize] = ACTIONS(961), - [anon_sym_f32] = ACTIONS(961), - [anon_sym_f64] = ACTIONS(961), - [anon_sym_bool] = ACTIONS(961), - [anon_sym_str] = ACTIONS(961), - [anon_sym_char] = ACTIONS(961), - [anon_sym_DASH] = ACTIONS(961), - [anon_sym_SLASH] = ACTIONS(961), - [anon_sym_PERCENT] = ACTIONS(961), - [anon_sym_CARET] = ACTIONS(961), - [anon_sym_BANG] = ACTIONS(961), - [anon_sym_AMP] = ACTIONS(961), - [anon_sym_PIPE] = ACTIONS(961), - [anon_sym_AMP_AMP] = ACTIONS(963), - [anon_sym_PIPE_PIPE] = ACTIONS(963), - [anon_sym_LT_LT] = ACTIONS(961), - [anon_sym_GT_GT] = ACTIONS(961), - [anon_sym_PLUS_EQ] = ACTIONS(963), - [anon_sym_DASH_EQ] = ACTIONS(963), - [anon_sym_STAR_EQ] = ACTIONS(963), - [anon_sym_SLASH_EQ] = ACTIONS(963), - [anon_sym_PERCENT_EQ] = ACTIONS(963), - [anon_sym_CARET_EQ] = ACTIONS(963), - [anon_sym_AMP_EQ] = ACTIONS(963), - [anon_sym_PIPE_EQ] = ACTIONS(963), - [anon_sym_LT_LT_EQ] = ACTIONS(963), - [anon_sym_GT_GT_EQ] = ACTIONS(963), - [anon_sym_EQ] = ACTIONS(961), - [anon_sym_EQ_EQ] = ACTIONS(963), - [anon_sym_BANG_EQ] = ACTIONS(963), - [anon_sym_GT] = ACTIONS(961), - [anon_sym_LT] = ACTIONS(961), - [anon_sym_GT_EQ] = ACTIONS(963), - [anon_sym_LT_EQ] = ACTIONS(963), - [anon_sym_AT] = ACTIONS(963), - [anon_sym__] = ACTIONS(961), - [anon_sym_DOT] = ACTIONS(961), - [anon_sym_DOT_DOT] = ACTIONS(961), - [anon_sym_DOT_DOT_DOT] = ACTIONS(963), - [anon_sym_DOT_DOT_EQ] = ACTIONS(963), - [anon_sym_COMMA] = ACTIONS(963), - [anon_sym_COLON_COLON] = ACTIONS(963), - [anon_sym_DASH_GT] = ACTIONS(963), - [anon_sym_POUND] = ACTIONS(963), - [anon_sym_SQUOTE] = ACTIONS(961), - [anon_sym_as] = ACTIONS(961), - [anon_sym_async] = ACTIONS(961), - [anon_sym_await] = ACTIONS(961), - [anon_sym_break] = ACTIONS(961), - [anon_sym_const] = ACTIONS(961), - [anon_sym_continue] = ACTIONS(961), - [anon_sym_default] = ACTIONS(961), - [anon_sym_enum] = ACTIONS(961), - [anon_sym_fn] = ACTIONS(961), - [anon_sym_for] = ACTIONS(961), - [anon_sym_gen] = ACTIONS(961), - [anon_sym_if] = ACTIONS(961), - [anon_sym_impl] = ACTIONS(961), - [anon_sym_let] = ACTIONS(961), - [anon_sym_loop] = ACTIONS(961), - [anon_sym_match] = ACTIONS(961), - [anon_sym_mod] = ACTIONS(961), - [anon_sym_pub] = ACTIONS(961), - [anon_sym_return] = ACTIONS(961), - [anon_sym_static] = ACTIONS(961), - [anon_sym_struct] = ACTIONS(961), - [anon_sym_trait] = ACTIONS(961), - [anon_sym_type] = ACTIONS(961), - [anon_sym_union] = ACTIONS(961), - [anon_sym_unsafe] = ACTIONS(961), - [anon_sym_use] = ACTIONS(961), - [anon_sym_where] = ACTIONS(961), - [anon_sym_while] = ACTIONS(961), - [sym_mutable_specifier] = ACTIONS(961), - [sym_integer_literal] = ACTIONS(963), - [aux_sym_string_literal_token1] = ACTIONS(963), - [sym_char_literal] = ACTIONS(963), - [anon_sym_true] = ACTIONS(961), - [anon_sym_false] = ACTIONS(961), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(961), - [sym_super] = ACTIONS(961), - [sym_crate] = ACTIONS(961), - [sym_metavariable] = ACTIONS(963), - [sym__raw_string_literal_start] = ACTIONS(963), - [sym_float_literal] = ACTIONS(963), + [STATE(151)] = { + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3114), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1749), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1631), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_let_condition] = STATE(3150), + [sym__let_chain] = STATE(3165), + [sym__condition] = STATE(2685), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(244), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), + [sym_line_comment] = STATE(151), + [sym_block_comment] = STATE(151), + [sym_identifier] = ACTIONS(470), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_STAR] = ACTIONS(910), + [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(910), + [anon_sym_BANG] = ACTIONS(910), + [anon_sym_AMP] = ACTIONS(912), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(914), + [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(512), + [anon_sym_break] = ACTIONS(514), + [anon_sym_const] = ACTIONS(358), + [anon_sym_continue] = ACTIONS(516), + [anon_sym_default] = ACTIONS(482), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(518), + [anon_sym_if] = ACTIONS(366), + [anon_sym_let] = ACTIONS(916), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(520), + [anon_sym_static] = ACTIONS(522), + [anon_sym_union] = ACTIONS(482), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_yield] = ACTIONS(524), + [anon_sym_move] = ACTIONS(526), + [anon_sym_try] = ACTIONS(378), + [sym_integer_literal] = ACTIONS(99), + [aux_sym_string_literal_token1] = ACTIONS(101), + [sym_char_literal] = ACTIONS(99), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(494), + [sym_super] = ACTIONS(496), + [sym_crate] = ACTIONS(496), + [sym_metavariable] = ACTIONS(498), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), }, - [STATE(164)] = { - [sym_attribute_item] = STATE(1059), - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1673), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(164), - [sym_block_comment] = STATE(164), + [STATE(152)] = { + [sym_line_comment] = STATE(152), + [sym_block_comment] = STATE(152), + [sym_identifier] = ACTIONS(928), + [anon_sym_SEMI] = ACTIONS(930), + [anon_sym_LPAREN] = ACTIONS(930), + [anon_sym_RPAREN] = ACTIONS(930), + [anon_sym_LBRACK] = ACTIONS(930), + [anon_sym_RBRACK] = ACTIONS(930), + [anon_sym_LBRACE] = ACTIONS(930), + [anon_sym_RBRACE] = ACTIONS(930), + [anon_sym_EQ_GT] = ACTIONS(930), + [anon_sym_COLON] = ACTIONS(928), + [anon_sym_DOLLAR] = ACTIONS(928), + [anon_sym_PLUS] = ACTIONS(928), + [anon_sym_STAR] = ACTIONS(928), + [anon_sym_QMARK] = ACTIONS(930), + [anon_sym_u8] = ACTIONS(928), + [anon_sym_i8] = ACTIONS(928), + [anon_sym_u16] = ACTIONS(928), + [anon_sym_i16] = ACTIONS(928), + [anon_sym_u32] = ACTIONS(928), + [anon_sym_i32] = ACTIONS(928), + [anon_sym_u64] = ACTIONS(928), + [anon_sym_i64] = ACTIONS(928), + [anon_sym_u128] = ACTIONS(928), + [anon_sym_i128] = ACTIONS(928), + [anon_sym_isize] = ACTIONS(928), + [anon_sym_usize] = ACTIONS(928), + [anon_sym_f32] = ACTIONS(928), + [anon_sym_f64] = ACTIONS(928), + [anon_sym_bool] = ACTIONS(928), + [anon_sym_str] = ACTIONS(928), + [anon_sym_char] = ACTIONS(928), + [anon_sym_DASH] = ACTIONS(928), + [anon_sym_SLASH] = ACTIONS(928), + [anon_sym_PERCENT] = ACTIONS(928), + [anon_sym_CARET] = ACTIONS(928), + [anon_sym_BANG] = ACTIONS(928), + [anon_sym_AMP] = ACTIONS(928), + [anon_sym_PIPE] = ACTIONS(928), + [anon_sym_AMP_AMP] = ACTIONS(930), + [anon_sym_PIPE_PIPE] = ACTIONS(930), + [anon_sym_LT_LT] = ACTIONS(928), + [anon_sym_GT_GT] = ACTIONS(928), + [anon_sym_PLUS_EQ] = ACTIONS(930), + [anon_sym_DASH_EQ] = ACTIONS(930), + [anon_sym_STAR_EQ] = ACTIONS(930), + [anon_sym_SLASH_EQ] = ACTIONS(930), + [anon_sym_PERCENT_EQ] = ACTIONS(930), + [anon_sym_CARET_EQ] = ACTIONS(930), + [anon_sym_AMP_EQ] = ACTIONS(930), + [anon_sym_PIPE_EQ] = ACTIONS(930), + [anon_sym_LT_LT_EQ] = ACTIONS(930), + [anon_sym_GT_GT_EQ] = ACTIONS(930), + [anon_sym_EQ] = ACTIONS(928), + [anon_sym_EQ_EQ] = ACTIONS(930), + [anon_sym_BANG_EQ] = ACTIONS(930), + [anon_sym_GT] = ACTIONS(928), + [anon_sym_LT] = ACTIONS(928), + [anon_sym_GT_EQ] = ACTIONS(930), + [anon_sym_LT_EQ] = ACTIONS(930), + [anon_sym_AT] = ACTIONS(930), + [anon_sym__] = ACTIONS(928), + [anon_sym_DOT] = ACTIONS(928), + [anon_sym_DOT_DOT] = ACTIONS(928), + [anon_sym_DOT_DOT_DOT] = ACTIONS(930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(930), + [anon_sym_COMMA] = ACTIONS(930), + [anon_sym_COLON_COLON] = ACTIONS(930), + [anon_sym_DASH_GT] = ACTIONS(930), + [anon_sym_POUND] = ACTIONS(930), + [anon_sym_SQUOTE] = ACTIONS(928), + [anon_sym_as] = ACTIONS(928), + [anon_sym_async] = ACTIONS(928), + [anon_sym_await] = ACTIONS(928), + [anon_sym_break] = ACTIONS(928), + [anon_sym_const] = ACTIONS(928), + [anon_sym_continue] = ACTIONS(928), + [anon_sym_default] = ACTIONS(928), + [anon_sym_enum] = ACTIONS(928), + [anon_sym_fn] = ACTIONS(928), + [anon_sym_for] = ACTIONS(928), + [anon_sym_gen] = ACTIONS(928), + [anon_sym_if] = ACTIONS(928), + [anon_sym_impl] = ACTIONS(928), + [anon_sym_let] = ACTIONS(928), + [anon_sym_loop] = ACTIONS(928), + [anon_sym_match] = ACTIONS(928), + [anon_sym_mod] = ACTIONS(928), + [anon_sym_pub] = ACTIONS(928), + [anon_sym_return] = ACTIONS(928), + [anon_sym_static] = ACTIONS(928), + [anon_sym_struct] = ACTIONS(928), + [anon_sym_trait] = ACTIONS(928), + [anon_sym_type] = ACTIONS(928), + [anon_sym_union] = ACTIONS(928), + [anon_sym_unsafe] = ACTIONS(928), + [anon_sym_use] = ACTIONS(928), + [anon_sym_where] = ACTIONS(928), + [anon_sym_while] = ACTIONS(928), + [sym_mutable_specifier] = ACTIONS(928), + [sym_integer_literal] = ACTIONS(930), + [aux_sym_string_literal_token1] = ACTIONS(930), + [sym_char_literal] = ACTIONS(930), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(928), + [sym_super] = ACTIONS(928), + [sym_crate] = ACTIONS(928), + [sym_metavariable] = ACTIONS(930), + [sym__raw_string_literal_start] = ACTIONS(930), + [sym_float_literal] = ACTIONS(930), + }, + [STATE(153)] = { + [sym_line_comment] = STATE(153), + [sym_block_comment] = STATE(153), + [sym_identifier] = ACTIONS(763), + [anon_sym_SEMI] = ACTIONS(765), + [anon_sym_LPAREN] = ACTIONS(765), + [anon_sym_RPAREN] = ACTIONS(765), + [anon_sym_LBRACK] = ACTIONS(765), + [anon_sym_RBRACK] = ACTIONS(765), + [anon_sym_LBRACE] = ACTIONS(765), + [anon_sym_RBRACE] = ACTIONS(765), + [anon_sym_EQ_GT] = ACTIONS(765), + [anon_sym_COLON] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(763), + [anon_sym_PLUS] = ACTIONS(763), + [anon_sym_STAR] = ACTIONS(763), + [anon_sym_QMARK] = ACTIONS(765), + [anon_sym_u8] = ACTIONS(763), + [anon_sym_i8] = ACTIONS(763), + [anon_sym_u16] = ACTIONS(763), + [anon_sym_i16] = ACTIONS(763), + [anon_sym_u32] = ACTIONS(763), + [anon_sym_i32] = ACTIONS(763), + [anon_sym_u64] = ACTIONS(763), + [anon_sym_i64] = ACTIONS(763), + [anon_sym_u128] = ACTIONS(763), + [anon_sym_i128] = ACTIONS(763), + [anon_sym_isize] = ACTIONS(763), + [anon_sym_usize] = ACTIONS(763), + [anon_sym_f32] = ACTIONS(763), + [anon_sym_f64] = ACTIONS(763), + [anon_sym_bool] = ACTIONS(763), + [anon_sym_str] = ACTIONS(763), + [anon_sym_char] = ACTIONS(763), + [anon_sym_DASH] = ACTIONS(763), + [anon_sym_SLASH] = ACTIONS(763), + [anon_sym_PERCENT] = ACTIONS(763), + [anon_sym_CARET] = ACTIONS(763), + [anon_sym_BANG] = ACTIONS(763), + [anon_sym_AMP] = ACTIONS(763), + [anon_sym_PIPE] = ACTIONS(763), + [anon_sym_AMP_AMP] = ACTIONS(765), + [anon_sym_PIPE_PIPE] = ACTIONS(765), + [anon_sym_LT_LT] = ACTIONS(763), + [anon_sym_GT_GT] = ACTIONS(763), + [anon_sym_PLUS_EQ] = ACTIONS(765), + [anon_sym_DASH_EQ] = ACTIONS(765), + [anon_sym_STAR_EQ] = ACTIONS(765), + [anon_sym_SLASH_EQ] = ACTIONS(765), + [anon_sym_PERCENT_EQ] = ACTIONS(765), + [anon_sym_CARET_EQ] = ACTIONS(765), + [anon_sym_AMP_EQ] = ACTIONS(765), + [anon_sym_PIPE_EQ] = ACTIONS(765), + [anon_sym_LT_LT_EQ] = ACTIONS(765), + [anon_sym_GT_GT_EQ] = ACTIONS(765), + [anon_sym_EQ] = ACTIONS(763), + [anon_sym_EQ_EQ] = ACTIONS(765), + [anon_sym_BANG_EQ] = ACTIONS(765), + [anon_sym_GT] = ACTIONS(763), + [anon_sym_LT] = ACTIONS(763), + [anon_sym_GT_EQ] = ACTIONS(765), + [anon_sym_LT_EQ] = ACTIONS(765), + [anon_sym_AT] = ACTIONS(765), + [anon_sym__] = ACTIONS(763), + [anon_sym_DOT] = ACTIONS(763), + [anon_sym_DOT_DOT] = ACTIONS(763), + [anon_sym_DOT_DOT_DOT] = ACTIONS(765), + [anon_sym_DOT_DOT_EQ] = ACTIONS(765), + [anon_sym_COMMA] = ACTIONS(765), + [anon_sym_COLON_COLON] = ACTIONS(765), + [anon_sym_DASH_GT] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(765), + [anon_sym_SQUOTE] = ACTIONS(763), + [anon_sym_as] = ACTIONS(763), + [anon_sym_async] = ACTIONS(763), + [anon_sym_await] = ACTIONS(763), + [anon_sym_break] = ACTIONS(763), + [anon_sym_const] = ACTIONS(763), + [anon_sym_continue] = ACTIONS(763), + [anon_sym_default] = ACTIONS(763), + [anon_sym_enum] = ACTIONS(763), + [anon_sym_fn] = ACTIONS(763), + [anon_sym_for] = ACTIONS(763), + [anon_sym_gen] = ACTIONS(763), + [anon_sym_if] = ACTIONS(763), + [anon_sym_impl] = ACTIONS(763), + [anon_sym_let] = ACTIONS(763), + [anon_sym_loop] = ACTIONS(763), + [anon_sym_match] = ACTIONS(763), + [anon_sym_mod] = ACTIONS(763), + [anon_sym_pub] = ACTIONS(763), + [anon_sym_return] = ACTIONS(763), + [anon_sym_static] = ACTIONS(763), + [anon_sym_struct] = ACTIONS(763), + [anon_sym_trait] = ACTIONS(763), + [anon_sym_type] = ACTIONS(763), + [anon_sym_union] = ACTIONS(763), + [anon_sym_unsafe] = ACTIONS(763), + [anon_sym_use] = ACTIONS(763), + [anon_sym_where] = ACTIONS(763), + [anon_sym_while] = ACTIONS(763), + [sym_mutable_specifier] = ACTIONS(763), + [sym_integer_literal] = ACTIONS(765), + [aux_sym_string_literal_token1] = ACTIONS(765), + [sym_char_literal] = ACTIONS(765), + [anon_sym_true] = ACTIONS(763), + [anon_sym_false] = ACTIONS(763), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(763), + [sym_super] = ACTIONS(763), + [sym_crate] = ACTIONS(763), + [sym_metavariable] = ACTIONS(765), + [sym__raw_string_literal_start] = ACTIONS(765), + [sym_float_literal] = ACTIONS(765), + }, + [STATE(154)] = { + [sym_attribute_item] = STATE(1068), + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3031), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1670), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1491), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), + [sym_line_comment] = STATE(154), + [sym_block_comment] = STATE(154), [aux_sym_enum_variant_list_repeat1] = STATE(211), - [sym_identifier] = ACTIONS(339), + [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(965), [anon_sym_LBRACK] = ACTIONS(17), - [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), @@ -36186,97 +35163,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(752), + [anon_sym_POUND] = ACTIONS(771), [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(1059), - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1673), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(165), - [sym_block_comment] = STATE(165), + [STATE(155)] = { + [sym_attribute_item] = STATE(1068), + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3031), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1670), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1491), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), + [sym_line_comment] = STATE(155), + [sym_block_comment] = STATE(155), [aux_sym_enum_variant_list_repeat1] = STATE(211), - [sym_identifier] = ACTIONS(339), + [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(934), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(967), - [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), @@ -36302,97 +35279,1025 @@ 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(752), + [anon_sym_POUND] = ACTIONS(771), [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_attribute_item] = STATE(1059), - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1673), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(166), - [sym_block_comment] = STATE(166), + [STATE(156)] = { + [sym_line_comment] = STATE(156), + [sym_block_comment] = STATE(156), + [sym_identifier] = ACTIONS(763), + [anon_sym_SEMI] = ACTIONS(765), + [anon_sym_LPAREN] = ACTIONS(765), + [anon_sym_RPAREN] = ACTIONS(765), + [anon_sym_LBRACK] = ACTIONS(765), + [anon_sym_RBRACK] = ACTIONS(765), + [anon_sym_LBRACE] = ACTIONS(765), + [anon_sym_RBRACE] = ACTIONS(765), + [anon_sym_EQ_GT] = ACTIONS(765), + [anon_sym_COLON] = ACTIONS(936), + [anon_sym_DOLLAR] = ACTIONS(763), + [anon_sym_PLUS] = ACTIONS(763), + [anon_sym_STAR] = ACTIONS(763), + [anon_sym_QMARK] = ACTIONS(765), + [anon_sym_u8] = ACTIONS(763), + [anon_sym_i8] = ACTIONS(763), + [anon_sym_u16] = ACTIONS(763), + [anon_sym_i16] = ACTIONS(763), + [anon_sym_u32] = ACTIONS(763), + [anon_sym_i32] = ACTIONS(763), + [anon_sym_u64] = ACTIONS(763), + [anon_sym_i64] = ACTIONS(763), + [anon_sym_u128] = ACTIONS(763), + [anon_sym_i128] = ACTIONS(763), + [anon_sym_isize] = ACTIONS(763), + [anon_sym_usize] = ACTIONS(763), + [anon_sym_f32] = ACTIONS(763), + [anon_sym_f64] = ACTIONS(763), + [anon_sym_bool] = ACTIONS(763), + [anon_sym_str] = ACTIONS(763), + [anon_sym_char] = ACTIONS(763), + [anon_sym_DASH] = ACTIONS(763), + [anon_sym_SLASH] = ACTIONS(763), + [anon_sym_PERCENT] = ACTIONS(763), + [anon_sym_CARET] = ACTIONS(763), + [anon_sym_BANG] = ACTIONS(763), + [anon_sym_AMP] = ACTIONS(763), + [anon_sym_PIPE] = ACTIONS(763), + [anon_sym_AMP_AMP] = ACTIONS(765), + [anon_sym_PIPE_PIPE] = ACTIONS(765), + [anon_sym_LT_LT] = ACTIONS(763), + [anon_sym_GT_GT] = ACTIONS(763), + [anon_sym_PLUS_EQ] = ACTIONS(765), + [anon_sym_DASH_EQ] = ACTIONS(765), + [anon_sym_STAR_EQ] = ACTIONS(765), + [anon_sym_SLASH_EQ] = ACTIONS(765), + [anon_sym_PERCENT_EQ] = ACTIONS(765), + [anon_sym_CARET_EQ] = ACTIONS(765), + [anon_sym_AMP_EQ] = ACTIONS(765), + [anon_sym_PIPE_EQ] = ACTIONS(765), + [anon_sym_LT_LT_EQ] = ACTIONS(765), + [anon_sym_GT_GT_EQ] = ACTIONS(765), + [anon_sym_EQ] = ACTIONS(763), + [anon_sym_EQ_EQ] = ACTIONS(765), + [anon_sym_BANG_EQ] = ACTIONS(765), + [anon_sym_GT] = ACTIONS(763), + [anon_sym_LT] = ACTIONS(763), + [anon_sym_GT_EQ] = ACTIONS(765), + [anon_sym_LT_EQ] = ACTIONS(765), + [anon_sym_AT] = ACTIONS(765), + [anon_sym__] = ACTIONS(763), + [anon_sym_DOT] = ACTIONS(763), + [anon_sym_DOT_DOT] = ACTIONS(763), + [anon_sym_DOT_DOT_DOT] = ACTIONS(765), + [anon_sym_DOT_DOT_EQ] = ACTIONS(765), + [anon_sym_COMMA] = ACTIONS(765), + [anon_sym_COLON_COLON] = ACTIONS(765), + [anon_sym_DASH_GT] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(765), + [anon_sym_SQUOTE] = ACTIONS(763), + [anon_sym_as] = ACTIONS(763), + [anon_sym_async] = ACTIONS(763), + [anon_sym_await] = ACTIONS(763), + [anon_sym_break] = ACTIONS(763), + [anon_sym_const] = ACTIONS(763), + [anon_sym_continue] = ACTIONS(763), + [anon_sym_default] = ACTIONS(763), + [anon_sym_enum] = ACTIONS(763), + [anon_sym_fn] = ACTIONS(763), + [anon_sym_for] = ACTIONS(763), + [anon_sym_gen] = ACTIONS(763), + [anon_sym_if] = ACTIONS(763), + [anon_sym_impl] = ACTIONS(763), + [anon_sym_let] = ACTIONS(763), + [anon_sym_loop] = ACTIONS(763), + [anon_sym_match] = ACTIONS(763), + [anon_sym_mod] = ACTIONS(763), + [anon_sym_pub] = ACTIONS(763), + [anon_sym_return] = ACTIONS(763), + [anon_sym_static] = ACTIONS(763), + [anon_sym_struct] = ACTIONS(763), + [anon_sym_trait] = ACTIONS(763), + [anon_sym_type] = ACTIONS(763), + [anon_sym_union] = ACTIONS(763), + [anon_sym_unsafe] = ACTIONS(763), + [anon_sym_use] = ACTIONS(763), + [anon_sym_where] = ACTIONS(763), + [anon_sym_while] = ACTIONS(763), + [sym_mutable_specifier] = ACTIONS(763), + [sym_integer_literal] = ACTIONS(765), + [aux_sym_string_literal_token1] = ACTIONS(765), + [sym_char_literal] = ACTIONS(765), + [anon_sym_true] = ACTIONS(763), + [anon_sym_false] = ACTIONS(763), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(763), + [sym_super] = ACTIONS(763), + [sym_crate] = ACTIONS(763), + [sym_metavariable] = ACTIONS(765), + [sym__raw_string_literal_start] = ACTIONS(765), + [sym_float_literal] = ACTIONS(765), + }, + [STATE(157)] = { + [sym_line_comment] = STATE(157), + [sym_block_comment] = STATE(157), + [sym_identifier] = ACTIONS(938), + [anon_sym_SEMI] = ACTIONS(940), + [anon_sym_LPAREN] = ACTIONS(940), + [anon_sym_RPAREN] = ACTIONS(940), + [anon_sym_LBRACK] = ACTIONS(940), + [anon_sym_RBRACK] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(940), + [anon_sym_RBRACE] = ACTIONS(940), + [anon_sym_EQ_GT] = ACTIONS(940), + [anon_sym_COLON] = ACTIONS(938), + [anon_sym_DOLLAR] = ACTIONS(938), + [anon_sym_PLUS] = ACTIONS(938), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_QMARK] = ACTIONS(940), + [anon_sym_u8] = ACTIONS(938), + [anon_sym_i8] = ACTIONS(938), + [anon_sym_u16] = ACTIONS(938), + [anon_sym_i16] = ACTIONS(938), + [anon_sym_u32] = ACTIONS(938), + [anon_sym_i32] = ACTIONS(938), + [anon_sym_u64] = ACTIONS(938), + [anon_sym_i64] = ACTIONS(938), + [anon_sym_u128] = ACTIONS(938), + [anon_sym_i128] = ACTIONS(938), + [anon_sym_isize] = ACTIONS(938), + [anon_sym_usize] = ACTIONS(938), + [anon_sym_f32] = ACTIONS(938), + [anon_sym_f64] = ACTIONS(938), + [anon_sym_bool] = ACTIONS(938), + [anon_sym_str] = ACTIONS(938), + [anon_sym_char] = ACTIONS(938), + [anon_sym_DASH] = ACTIONS(938), + [anon_sym_SLASH] = ACTIONS(938), + [anon_sym_PERCENT] = ACTIONS(938), + [anon_sym_CARET] = ACTIONS(938), + [anon_sym_BANG] = ACTIONS(938), + [anon_sym_AMP] = ACTIONS(938), + [anon_sym_PIPE] = ACTIONS(938), + [anon_sym_AMP_AMP] = ACTIONS(940), + [anon_sym_PIPE_PIPE] = ACTIONS(940), + [anon_sym_LT_LT] = ACTIONS(938), + [anon_sym_GT_GT] = ACTIONS(938), + [anon_sym_PLUS_EQ] = ACTIONS(940), + [anon_sym_DASH_EQ] = ACTIONS(940), + [anon_sym_STAR_EQ] = ACTIONS(940), + [anon_sym_SLASH_EQ] = ACTIONS(940), + [anon_sym_PERCENT_EQ] = ACTIONS(940), + [anon_sym_CARET_EQ] = ACTIONS(940), + [anon_sym_AMP_EQ] = ACTIONS(940), + [anon_sym_PIPE_EQ] = ACTIONS(940), + [anon_sym_LT_LT_EQ] = ACTIONS(940), + [anon_sym_GT_GT_EQ] = ACTIONS(940), + [anon_sym_EQ] = ACTIONS(938), + [anon_sym_EQ_EQ] = ACTIONS(940), + [anon_sym_BANG_EQ] = ACTIONS(940), + [anon_sym_GT] = ACTIONS(938), + [anon_sym_LT] = ACTIONS(938), + [anon_sym_GT_EQ] = ACTIONS(940), + [anon_sym_LT_EQ] = ACTIONS(940), + [anon_sym_AT] = ACTIONS(940), + [anon_sym__] = ACTIONS(938), + [anon_sym_DOT] = ACTIONS(938), + [anon_sym_DOT_DOT] = ACTIONS(938), + [anon_sym_DOT_DOT_DOT] = ACTIONS(940), + [anon_sym_DOT_DOT_EQ] = ACTIONS(940), + [anon_sym_COMMA] = ACTIONS(940), + [anon_sym_COLON_COLON] = ACTIONS(940), + [anon_sym_DASH_GT] = ACTIONS(940), + [anon_sym_POUND] = ACTIONS(940), + [anon_sym_SQUOTE] = ACTIONS(938), + [anon_sym_as] = ACTIONS(938), + [anon_sym_async] = ACTIONS(938), + [anon_sym_await] = ACTIONS(938), + [anon_sym_break] = ACTIONS(938), + [anon_sym_const] = ACTIONS(938), + [anon_sym_continue] = ACTIONS(938), + [anon_sym_default] = ACTIONS(938), + [anon_sym_enum] = ACTIONS(938), + [anon_sym_fn] = ACTIONS(938), + [anon_sym_for] = ACTIONS(938), + [anon_sym_gen] = ACTIONS(938), + [anon_sym_if] = ACTIONS(938), + [anon_sym_impl] = ACTIONS(938), + [anon_sym_let] = ACTIONS(938), + [anon_sym_loop] = ACTIONS(938), + [anon_sym_match] = ACTIONS(938), + [anon_sym_mod] = ACTIONS(938), + [anon_sym_pub] = ACTIONS(938), + [anon_sym_return] = ACTIONS(938), + [anon_sym_static] = ACTIONS(938), + [anon_sym_struct] = ACTIONS(938), + [anon_sym_trait] = ACTIONS(938), + [anon_sym_type] = ACTIONS(938), + [anon_sym_union] = ACTIONS(938), + [anon_sym_unsafe] = ACTIONS(938), + [anon_sym_use] = ACTIONS(938), + [anon_sym_where] = ACTIONS(938), + [anon_sym_while] = ACTIONS(938), + [sym_mutable_specifier] = ACTIONS(938), + [sym_integer_literal] = ACTIONS(940), + [aux_sym_string_literal_token1] = ACTIONS(940), + [sym_char_literal] = ACTIONS(940), + [anon_sym_true] = ACTIONS(938), + [anon_sym_false] = ACTIONS(938), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(938), + [sym_super] = ACTIONS(938), + [sym_crate] = ACTIONS(938), + [sym_metavariable] = ACTIONS(940), + [sym__raw_string_literal_start] = ACTIONS(940), + [sym_float_literal] = ACTIONS(940), + }, + [STATE(158)] = { + [sym_line_comment] = STATE(158), + [sym_block_comment] = STATE(158), + [sym_identifier] = ACTIONS(942), + [anon_sym_SEMI] = ACTIONS(944), + [anon_sym_LPAREN] = ACTIONS(944), + [anon_sym_RPAREN] = ACTIONS(944), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_RBRACK] = ACTIONS(944), + [anon_sym_LBRACE] = ACTIONS(944), + [anon_sym_RBRACE] = ACTIONS(944), + [anon_sym_EQ_GT] = ACTIONS(944), + [anon_sym_COLON] = ACTIONS(942), + [anon_sym_DOLLAR] = ACTIONS(942), + [anon_sym_PLUS] = ACTIONS(942), + [anon_sym_STAR] = ACTIONS(942), + [anon_sym_QMARK] = ACTIONS(944), + [anon_sym_u8] = ACTIONS(942), + [anon_sym_i8] = ACTIONS(942), + [anon_sym_u16] = ACTIONS(942), + [anon_sym_i16] = ACTIONS(942), + [anon_sym_u32] = ACTIONS(942), + [anon_sym_i32] = ACTIONS(942), + [anon_sym_u64] = ACTIONS(942), + [anon_sym_i64] = ACTIONS(942), + [anon_sym_u128] = ACTIONS(942), + [anon_sym_i128] = ACTIONS(942), + [anon_sym_isize] = ACTIONS(942), + [anon_sym_usize] = ACTIONS(942), + [anon_sym_f32] = ACTIONS(942), + [anon_sym_f64] = ACTIONS(942), + [anon_sym_bool] = ACTIONS(942), + [anon_sym_str] = ACTIONS(942), + [anon_sym_char] = ACTIONS(942), + [anon_sym_DASH] = ACTIONS(942), + [anon_sym_SLASH] = ACTIONS(942), + [anon_sym_PERCENT] = ACTIONS(942), + [anon_sym_CARET] = ACTIONS(942), + [anon_sym_BANG] = ACTIONS(942), + [anon_sym_AMP] = ACTIONS(942), + [anon_sym_PIPE] = ACTIONS(942), + [anon_sym_AMP_AMP] = ACTIONS(944), + [anon_sym_PIPE_PIPE] = ACTIONS(944), + [anon_sym_LT_LT] = ACTIONS(942), + [anon_sym_GT_GT] = ACTIONS(942), + [anon_sym_PLUS_EQ] = ACTIONS(944), + [anon_sym_DASH_EQ] = ACTIONS(944), + [anon_sym_STAR_EQ] = ACTIONS(944), + [anon_sym_SLASH_EQ] = ACTIONS(944), + [anon_sym_PERCENT_EQ] = ACTIONS(944), + [anon_sym_CARET_EQ] = ACTIONS(944), + [anon_sym_AMP_EQ] = ACTIONS(944), + [anon_sym_PIPE_EQ] = ACTIONS(944), + [anon_sym_LT_LT_EQ] = ACTIONS(944), + [anon_sym_GT_GT_EQ] = ACTIONS(944), + [anon_sym_EQ] = ACTIONS(942), + [anon_sym_EQ_EQ] = ACTIONS(944), + [anon_sym_BANG_EQ] = ACTIONS(944), + [anon_sym_GT] = ACTIONS(942), + [anon_sym_LT] = ACTIONS(942), + [anon_sym_GT_EQ] = ACTIONS(944), + [anon_sym_LT_EQ] = ACTIONS(944), + [anon_sym_AT] = ACTIONS(944), + [anon_sym__] = ACTIONS(942), + [anon_sym_DOT] = ACTIONS(942), + [anon_sym_DOT_DOT] = ACTIONS(942), + [anon_sym_DOT_DOT_DOT] = ACTIONS(944), + [anon_sym_DOT_DOT_EQ] = ACTIONS(944), + [anon_sym_COMMA] = ACTIONS(944), + [anon_sym_COLON_COLON] = ACTIONS(944), + [anon_sym_DASH_GT] = ACTIONS(944), + [anon_sym_POUND] = ACTIONS(944), + [anon_sym_SQUOTE] = ACTIONS(942), + [anon_sym_as] = ACTIONS(942), + [anon_sym_async] = ACTIONS(942), + [anon_sym_await] = ACTIONS(942), + [anon_sym_break] = ACTIONS(942), + [anon_sym_const] = ACTIONS(942), + [anon_sym_continue] = ACTIONS(942), + [anon_sym_default] = ACTIONS(942), + [anon_sym_enum] = ACTIONS(942), + [anon_sym_fn] = ACTIONS(942), + [anon_sym_for] = ACTIONS(942), + [anon_sym_gen] = ACTIONS(942), + [anon_sym_if] = ACTIONS(942), + [anon_sym_impl] = ACTIONS(942), + [anon_sym_let] = ACTIONS(942), + [anon_sym_loop] = ACTIONS(942), + [anon_sym_match] = ACTIONS(942), + [anon_sym_mod] = ACTIONS(942), + [anon_sym_pub] = ACTIONS(942), + [anon_sym_return] = ACTIONS(942), + [anon_sym_static] = ACTIONS(942), + [anon_sym_struct] = ACTIONS(942), + [anon_sym_trait] = ACTIONS(942), + [anon_sym_type] = ACTIONS(942), + [anon_sym_union] = ACTIONS(942), + [anon_sym_unsafe] = ACTIONS(942), + [anon_sym_use] = ACTIONS(942), + [anon_sym_where] = ACTIONS(942), + [anon_sym_while] = ACTIONS(942), + [sym_mutable_specifier] = ACTIONS(942), + [sym_integer_literal] = ACTIONS(944), + [aux_sym_string_literal_token1] = ACTIONS(944), + [sym_char_literal] = ACTIONS(944), + [anon_sym_true] = ACTIONS(942), + [anon_sym_false] = ACTIONS(942), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(942), + [sym_super] = ACTIONS(942), + [sym_crate] = ACTIONS(942), + [sym_metavariable] = ACTIONS(944), + [sym__raw_string_literal_start] = ACTIONS(944), + [sym_float_literal] = ACTIONS(944), + }, + [STATE(159)] = { + [sym_line_comment] = STATE(159), + [sym_block_comment] = STATE(159), + [sym_identifier] = ACTIONS(946), + [anon_sym_SEMI] = ACTIONS(948), + [anon_sym_LPAREN] = ACTIONS(948), + [anon_sym_RPAREN] = ACTIONS(948), + [anon_sym_LBRACK] = ACTIONS(948), + [anon_sym_RBRACK] = ACTIONS(948), + [anon_sym_LBRACE] = ACTIONS(948), + [anon_sym_RBRACE] = ACTIONS(948), + [anon_sym_EQ_GT] = ACTIONS(948), + [anon_sym_COLON] = ACTIONS(946), + [anon_sym_DOLLAR] = ACTIONS(946), + [anon_sym_PLUS] = ACTIONS(946), + [anon_sym_STAR] = ACTIONS(946), + [anon_sym_QMARK] = ACTIONS(948), + [anon_sym_u8] = ACTIONS(946), + [anon_sym_i8] = ACTIONS(946), + [anon_sym_u16] = ACTIONS(946), + [anon_sym_i16] = ACTIONS(946), + [anon_sym_u32] = ACTIONS(946), + [anon_sym_i32] = ACTIONS(946), + [anon_sym_u64] = ACTIONS(946), + [anon_sym_i64] = ACTIONS(946), + [anon_sym_u128] = ACTIONS(946), + [anon_sym_i128] = ACTIONS(946), + [anon_sym_isize] = ACTIONS(946), + [anon_sym_usize] = ACTIONS(946), + [anon_sym_f32] = ACTIONS(946), + [anon_sym_f64] = ACTIONS(946), + [anon_sym_bool] = ACTIONS(946), + [anon_sym_str] = ACTIONS(946), + [anon_sym_char] = ACTIONS(946), + [anon_sym_DASH] = ACTIONS(946), + [anon_sym_SLASH] = ACTIONS(946), + [anon_sym_PERCENT] = ACTIONS(946), + [anon_sym_CARET] = ACTIONS(946), + [anon_sym_BANG] = ACTIONS(946), + [anon_sym_AMP] = ACTIONS(946), + [anon_sym_PIPE] = ACTIONS(946), + [anon_sym_AMP_AMP] = ACTIONS(948), + [anon_sym_PIPE_PIPE] = ACTIONS(948), + [anon_sym_LT_LT] = ACTIONS(946), + [anon_sym_GT_GT] = ACTIONS(946), + [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(946), + [anon_sym_EQ_EQ] = ACTIONS(948), + [anon_sym_BANG_EQ] = ACTIONS(948), + [anon_sym_GT] = ACTIONS(946), + [anon_sym_LT] = ACTIONS(946), + [anon_sym_GT_EQ] = ACTIONS(948), + [anon_sym_LT_EQ] = ACTIONS(948), + [anon_sym_AT] = ACTIONS(948), + [anon_sym__] = ACTIONS(946), + [anon_sym_DOT] = ACTIONS(946), + [anon_sym_DOT_DOT] = ACTIONS(946), + [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(946), + [anon_sym_as] = ACTIONS(946), + [anon_sym_async] = ACTIONS(946), + [anon_sym_await] = ACTIONS(946), + [anon_sym_break] = ACTIONS(946), + [anon_sym_const] = ACTIONS(946), + [anon_sym_continue] = ACTIONS(946), + [anon_sym_default] = ACTIONS(946), + [anon_sym_enum] = ACTIONS(946), + [anon_sym_fn] = ACTIONS(946), + [anon_sym_for] = ACTIONS(946), + [anon_sym_gen] = ACTIONS(946), + [anon_sym_if] = ACTIONS(946), + [anon_sym_impl] = ACTIONS(946), + [anon_sym_let] = ACTIONS(946), + [anon_sym_loop] = ACTIONS(946), + [anon_sym_match] = ACTIONS(946), + [anon_sym_mod] = ACTIONS(946), + [anon_sym_pub] = ACTIONS(946), + [anon_sym_return] = ACTIONS(946), + [anon_sym_static] = ACTIONS(946), + [anon_sym_struct] = ACTIONS(946), + [anon_sym_trait] = ACTIONS(946), + [anon_sym_type] = ACTIONS(946), + [anon_sym_union] = ACTIONS(946), + [anon_sym_unsafe] = ACTIONS(946), + [anon_sym_use] = ACTIONS(946), + [anon_sym_where] = ACTIONS(946), + [anon_sym_while] = ACTIONS(946), + [sym_mutable_specifier] = ACTIONS(946), + [sym_integer_literal] = ACTIONS(948), + [aux_sym_string_literal_token1] = ACTIONS(948), + [sym_char_literal] = ACTIONS(948), + [anon_sym_true] = ACTIONS(946), + [anon_sym_false] = ACTIONS(946), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(946), + [sym_super] = ACTIONS(946), + [sym_crate] = ACTIONS(946), + [sym_metavariable] = ACTIONS(948), + [sym__raw_string_literal_start] = ACTIONS(948), + [sym_float_literal] = ACTIONS(948), + }, + [STATE(160)] = { + [sym_line_comment] = STATE(160), + [sym_block_comment] = STATE(160), + [sym_identifier] = ACTIONS(950), + [anon_sym_SEMI] = ACTIONS(952), + [anon_sym_LPAREN] = ACTIONS(952), + [anon_sym_RPAREN] = ACTIONS(952), + [anon_sym_LBRACK] = ACTIONS(952), + [anon_sym_RBRACK] = ACTIONS(952), + [anon_sym_LBRACE] = ACTIONS(952), + [anon_sym_RBRACE] = ACTIONS(952), + [anon_sym_EQ_GT] = ACTIONS(952), + [anon_sym_COLON] = ACTIONS(950), + [anon_sym_DOLLAR] = ACTIONS(950), + [anon_sym_PLUS] = ACTIONS(950), + [anon_sym_STAR] = ACTIONS(950), + [anon_sym_QMARK] = ACTIONS(952), + [anon_sym_u8] = ACTIONS(950), + [anon_sym_i8] = ACTIONS(950), + [anon_sym_u16] = ACTIONS(950), + [anon_sym_i16] = ACTIONS(950), + [anon_sym_u32] = ACTIONS(950), + [anon_sym_i32] = ACTIONS(950), + [anon_sym_u64] = ACTIONS(950), + [anon_sym_i64] = ACTIONS(950), + [anon_sym_u128] = ACTIONS(950), + [anon_sym_i128] = ACTIONS(950), + [anon_sym_isize] = ACTIONS(950), + [anon_sym_usize] = ACTIONS(950), + [anon_sym_f32] = ACTIONS(950), + [anon_sym_f64] = ACTIONS(950), + [anon_sym_bool] = ACTIONS(950), + [anon_sym_str] = ACTIONS(950), + [anon_sym_char] = ACTIONS(950), + [anon_sym_DASH] = ACTIONS(950), + [anon_sym_SLASH] = ACTIONS(950), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_CARET] = ACTIONS(950), + [anon_sym_BANG] = ACTIONS(950), + [anon_sym_AMP] = ACTIONS(950), + [anon_sym_PIPE] = ACTIONS(950), + [anon_sym_AMP_AMP] = ACTIONS(952), + [anon_sym_PIPE_PIPE] = ACTIONS(952), + [anon_sym_LT_LT] = ACTIONS(950), + [anon_sym_GT_GT] = ACTIONS(950), + [anon_sym_PLUS_EQ] = ACTIONS(952), + [anon_sym_DASH_EQ] = ACTIONS(952), + [anon_sym_STAR_EQ] = ACTIONS(952), + [anon_sym_SLASH_EQ] = ACTIONS(952), + [anon_sym_PERCENT_EQ] = ACTIONS(952), + [anon_sym_CARET_EQ] = ACTIONS(952), + [anon_sym_AMP_EQ] = ACTIONS(952), + [anon_sym_PIPE_EQ] = ACTIONS(952), + [anon_sym_LT_LT_EQ] = ACTIONS(952), + [anon_sym_GT_GT_EQ] = ACTIONS(952), + [anon_sym_EQ] = ACTIONS(950), + [anon_sym_EQ_EQ] = ACTIONS(952), + [anon_sym_BANG_EQ] = ACTIONS(952), + [anon_sym_GT] = ACTIONS(950), + [anon_sym_LT] = ACTIONS(950), + [anon_sym_GT_EQ] = ACTIONS(952), + [anon_sym_LT_EQ] = ACTIONS(952), + [anon_sym_AT] = ACTIONS(952), + [anon_sym__] = ACTIONS(950), + [anon_sym_DOT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(950), + [anon_sym_DOT_DOT_DOT] = ACTIONS(952), + [anon_sym_DOT_DOT_EQ] = ACTIONS(952), + [anon_sym_COMMA] = ACTIONS(952), + [anon_sym_COLON_COLON] = ACTIONS(952), + [anon_sym_DASH_GT] = ACTIONS(952), + [anon_sym_POUND] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(950), + [anon_sym_as] = ACTIONS(950), + [anon_sym_async] = ACTIONS(950), + [anon_sym_await] = ACTIONS(950), + [anon_sym_break] = ACTIONS(950), + [anon_sym_const] = ACTIONS(950), + [anon_sym_continue] = ACTIONS(950), + [anon_sym_default] = ACTIONS(950), + [anon_sym_enum] = ACTIONS(950), + [anon_sym_fn] = ACTIONS(950), + [anon_sym_for] = ACTIONS(950), + [anon_sym_gen] = ACTIONS(950), + [anon_sym_if] = ACTIONS(950), + [anon_sym_impl] = ACTIONS(950), + [anon_sym_let] = ACTIONS(950), + [anon_sym_loop] = ACTIONS(950), + [anon_sym_match] = ACTIONS(950), + [anon_sym_mod] = ACTIONS(950), + [anon_sym_pub] = ACTIONS(950), + [anon_sym_return] = ACTIONS(950), + [anon_sym_static] = ACTIONS(950), + [anon_sym_struct] = ACTIONS(950), + [anon_sym_trait] = ACTIONS(950), + [anon_sym_type] = ACTIONS(950), + [anon_sym_union] = ACTIONS(950), + [anon_sym_unsafe] = ACTIONS(950), + [anon_sym_use] = ACTIONS(950), + [anon_sym_where] = ACTIONS(950), + [anon_sym_while] = ACTIONS(950), + [sym_mutable_specifier] = ACTIONS(950), + [sym_integer_literal] = ACTIONS(952), + [aux_sym_string_literal_token1] = ACTIONS(952), + [sym_char_literal] = ACTIONS(952), + [anon_sym_true] = ACTIONS(950), + [anon_sym_false] = ACTIONS(950), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(950), + [sym_super] = ACTIONS(950), + [sym_crate] = ACTIONS(950), + [sym_metavariable] = ACTIONS(952), + [sym__raw_string_literal_start] = ACTIONS(952), + [sym_float_literal] = ACTIONS(952), + }, + [STATE(161)] = { + [sym_line_comment] = STATE(161), + [sym_block_comment] = STATE(161), + [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(162)] = { + [sym_line_comment] = STATE(162), + [sym_block_comment] = STATE(162), + [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(163)] = { + [sym_line_comment] = STATE(163), + [sym_block_comment] = STATE(163), + [sym_identifier] = ACTIONS(894), + [anon_sym_SEMI] = ACTIONS(896), + [anon_sym_LPAREN] = ACTIONS(896), + [anon_sym_RPAREN] = ACTIONS(896), + [anon_sym_LBRACK] = ACTIONS(896), + [anon_sym_RBRACK] = ACTIONS(896), + [anon_sym_LBRACE] = ACTIONS(896), + [anon_sym_RBRACE] = ACTIONS(896), + [anon_sym_EQ_GT] = ACTIONS(896), + [anon_sym_COLON] = ACTIONS(894), + [anon_sym_DOLLAR] = ACTIONS(894), + [anon_sym_PLUS] = ACTIONS(894), + [anon_sym_STAR] = ACTIONS(894), + [anon_sym_QMARK] = ACTIONS(896), + [anon_sym_u8] = ACTIONS(894), + [anon_sym_i8] = ACTIONS(894), + [anon_sym_u16] = ACTIONS(894), + [anon_sym_i16] = ACTIONS(894), + [anon_sym_u32] = ACTIONS(894), + [anon_sym_i32] = ACTIONS(894), + [anon_sym_u64] = ACTIONS(894), + [anon_sym_i64] = ACTIONS(894), + [anon_sym_u128] = ACTIONS(894), + [anon_sym_i128] = ACTIONS(894), + [anon_sym_isize] = ACTIONS(894), + [anon_sym_usize] = ACTIONS(894), + [anon_sym_f32] = ACTIONS(894), + [anon_sym_f64] = ACTIONS(894), + [anon_sym_bool] = ACTIONS(894), + [anon_sym_str] = ACTIONS(894), + [anon_sym_char] = ACTIONS(894), + [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(896), + [anon_sym_PIPE_PIPE] = ACTIONS(896), + [anon_sym_LT_LT] = ACTIONS(894), + [anon_sym_GT_GT] = ACTIONS(894), + [anon_sym_PLUS_EQ] = ACTIONS(896), + [anon_sym_DASH_EQ] = ACTIONS(896), + [anon_sym_STAR_EQ] = ACTIONS(896), + [anon_sym_SLASH_EQ] = ACTIONS(896), + [anon_sym_PERCENT_EQ] = ACTIONS(896), + [anon_sym_CARET_EQ] = ACTIONS(896), + [anon_sym_AMP_EQ] = ACTIONS(896), + [anon_sym_PIPE_EQ] = ACTIONS(896), + [anon_sym_LT_LT_EQ] = ACTIONS(896), + [anon_sym_GT_GT_EQ] = ACTIONS(896), + [anon_sym_EQ] = ACTIONS(894), + [anon_sym_EQ_EQ] = ACTIONS(896), + [anon_sym_BANG_EQ] = ACTIONS(896), + [anon_sym_GT] = ACTIONS(894), + [anon_sym_LT] = ACTIONS(894), + [anon_sym_GT_EQ] = ACTIONS(896), + [anon_sym_LT_EQ] = ACTIONS(896), + [anon_sym_AT] = ACTIONS(896), + [anon_sym__] = ACTIONS(894), + [anon_sym_DOT] = ACTIONS(894), + [anon_sym_DOT_DOT] = ACTIONS(894), + [anon_sym_DOT_DOT_DOT] = ACTIONS(896), + [anon_sym_DOT_DOT_EQ] = ACTIONS(896), + [anon_sym_COMMA] = ACTIONS(896), + [anon_sym_COLON_COLON] = ACTIONS(896), + [anon_sym_DASH_GT] = ACTIONS(896), + [anon_sym_POUND] = ACTIONS(896), + [anon_sym_SQUOTE] = ACTIONS(894), + [anon_sym_as] = ACTIONS(894), + [anon_sym_async] = ACTIONS(894), + [anon_sym_await] = ACTIONS(894), + [anon_sym_break] = ACTIONS(894), + [anon_sym_const] = ACTIONS(894), + [anon_sym_continue] = ACTIONS(894), + [anon_sym_default] = ACTIONS(894), + [anon_sym_enum] = ACTIONS(894), + [anon_sym_fn] = ACTIONS(894), + [anon_sym_for] = ACTIONS(894), + [anon_sym_gen] = ACTIONS(894), + [anon_sym_if] = ACTIONS(894), + [anon_sym_impl] = ACTIONS(894), + [anon_sym_let] = ACTIONS(894), + [anon_sym_loop] = ACTIONS(894), + [anon_sym_match] = ACTIONS(894), + [anon_sym_mod] = ACTIONS(894), + [anon_sym_pub] = ACTIONS(894), + [anon_sym_return] = ACTIONS(894), + [anon_sym_static] = ACTIONS(894), + [anon_sym_struct] = ACTIONS(894), + [anon_sym_trait] = ACTIONS(894), + [anon_sym_type] = ACTIONS(894), + [anon_sym_union] = ACTIONS(894), + [anon_sym_unsafe] = ACTIONS(894), + [anon_sym_use] = ACTIONS(894), + [anon_sym_where] = ACTIONS(894), + [anon_sym_while] = ACTIONS(894), + [sym_mutable_specifier] = ACTIONS(894), + [sym_integer_literal] = ACTIONS(896), + [aux_sym_string_literal_token1] = ACTIONS(896), + [sym_char_literal] = ACTIONS(896), + [anon_sym_true] = ACTIONS(894), + [anon_sym_false] = ACTIONS(894), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(894), + [sym_super] = ACTIONS(894), + [sym_crate] = ACTIONS(894), + [sym_metavariable] = ACTIONS(896), + [sym__raw_string_literal_start] = ACTIONS(896), + [sym_float_literal] = ACTIONS(896), + }, + [STATE(164)] = { + [sym_attribute_item] = STATE(1068), + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3031), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1670), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1491), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), + [sym_line_comment] = STATE(164), + [sym_block_comment] = STATE(164), [aux_sym_enum_variant_list_repeat1] = STATE(211), - [sym_identifier] = ACTIONS(339), + [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(969), - [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), @@ -36418,97 +36323,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(752), + [anon_sym_POUND] = ACTIONS(771), [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_line_comment] = STATE(165), + [sym_block_comment] = STATE(165), + [sym_identifier] = ACTIONS(964), + [anon_sym_SEMI] = ACTIONS(966), + [anon_sym_LPAREN] = ACTIONS(966), + [anon_sym_RPAREN] = ACTIONS(966), + [anon_sym_LBRACK] = ACTIONS(966), + [anon_sym_RBRACK] = ACTIONS(966), + [anon_sym_LBRACE] = ACTIONS(966), + [anon_sym_RBRACE] = ACTIONS(966), + [anon_sym_EQ_GT] = ACTIONS(966), + [anon_sym_COLON] = ACTIONS(964), + [anon_sym_DOLLAR] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(964), + [anon_sym_STAR] = ACTIONS(964), + [anon_sym_QMARK] = ACTIONS(966), + [anon_sym_u8] = ACTIONS(964), + [anon_sym_i8] = ACTIONS(964), + [anon_sym_u16] = ACTIONS(964), + [anon_sym_i16] = ACTIONS(964), + [anon_sym_u32] = ACTIONS(964), + [anon_sym_i32] = ACTIONS(964), + [anon_sym_u64] = ACTIONS(964), + [anon_sym_i64] = ACTIONS(964), + [anon_sym_u128] = ACTIONS(964), + [anon_sym_i128] = ACTIONS(964), + [anon_sym_isize] = ACTIONS(964), + [anon_sym_usize] = ACTIONS(964), + [anon_sym_f32] = ACTIONS(964), + [anon_sym_f64] = ACTIONS(964), + [anon_sym_bool] = ACTIONS(964), + [anon_sym_str] = ACTIONS(964), + [anon_sym_char] = ACTIONS(964), + [anon_sym_DASH] = ACTIONS(964), + [anon_sym_SLASH] = ACTIONS(964), + [anon_sym_PERCENT] = ACTIONS(964), + [anon_sym_CARET] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(964), + [anon_sym_AMP] = ACTIONS(964), + [anon_sym_PIPE] = ACTIONS(964), + [anon_sym_AMP_AMP] = ACTIONS(966), + [anon_sym_PIPE_PIPE] = ACTIONS(966), + [anon_sym_LT_LT] = ACTIONS(964), + [anon_sym_GT_GT] = ACTIONS(964), + [anon_sym_PLUS_EQ] = ACTIONS(966), + [anon_sym_DASH_EQ] = ACTIONS(966), + [anon_sym_STAR_EQ] = ACTIONS(966), + [anon_sym_SLASH_EQ] = ACTIONS(966), + [anon_sym_PERCENT_EQ] = ACTIONS(966), + [anon_sym_CARET_EQ] = ACTIONS(966), + [anon_sym_AMP_EQ] = ACTIONS(966), + [anon_sym_PIPE_EQ] = ACTIONS(966), + [anon_sym_LT_LT_EQ] = ACTIONS(966), + [anon_sym_GT_GT_EQ] = ACTIONS(966), + [anon_sym_EQ] = ACTIONS(964), + [anon_sym_EQ_EQ] = ACTIONS(966), + [anon_sym_BANG_EQ] = ACTIONS(966), + [anon_sym_GT] = ACTIONS(964), + [anon_sym_LT] = ACTIONS(964), + [anon_sym_GT_EQ] = ACTIONS(966), + [anon_sym_LT_EQ] = ACTIONS(966), + [anon_sym_AT] = ACTIONS(966), + [anon_sym__] = ACTIONS(964), + [anon_sym_DOT] = ACTIONS(964), + [anon_sym_DOT_DOT] = ACTIONS(964), + [anon_sym_DOT_DOT_DOT] = ACTIONS(966), + [anon_sym_DOT_DOT_EQ] = ACTIONS(966), + [anon_sym_COMMA] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(966), + [anon_sym_DASH_GT] = ACTIONS(966), + [anon_sym_POUND] = ACTIONS(966), + [anon_sym_SQUOTE] = ACTIONS(964), + [anon_sym_as] = ACTIONS(964), + [anon_sym_async] = ACTIONS(964), + [anon_sym_await] = ACTIONS(964), + [anon_sym_break] = ACTIONS(964), + [anon_sym_const] = ACTIONS(964), + [anon_sym_continue] = ACTIONS(964), + [anon_sym_default] = ACTIONS(964), + [anon_sym_enum] = ACTIONS(964), + [anon_sym_fn] = ACTIONS(964), + [anon_sym_for] = ACTIONS(964), + [anon_sym_gen] = ACTIONS(964), + [anon_sym_if] = ACTIONS(964), + [anon_sym_impl] = ACTIONS(964), + [anon_sym_let] = ACTIONS(964), + [anon_sym_loop] = ACTIONS(964), + [anon_sym_match] = ACTIONS(964), + [anon_sym_mod] = ACTIONS(964), + [anon_sym_pub] = ACTIONS(964), + [anon_sym_return] = ACTIONS(964), + [anon_sym_static] = ACTIONS(964), + [anon_sym_struct] = ACTIONS(964), + [anon_sym_trait] = ACTIONS(964), + [anon_sym_type] = ACTIONS(964), + [anon_sym_union] = ACTIONS(964), + [anon_sym_unsafe] = ACTIONS(964), + [anon_sym_use] = ACTIONS(964), + [anon_sym_where] = ACTIONS(964), + [anon_sym_while] = ACTIONS(964), + [sym_mutable_specifier] = ACTIONS(964), + [sym_integer_literal] = ACTIONS(966), + [aux_sym_string_literal_token1] = ACTIONS(966), + [sym_char_literal] = ACTIONS(966), + [anon_sym_true] = ACTIONS(964), + [anon_sym_false] = ACTIONS(964), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(964), + [sym_super] = ACTIONS(964), + [sym_crate] = ACTIONS(964), + [sym_metavariable] = ACTIONS(966), + [sym__raw_string_literal_start] = ACTIONS(966), + [sym_float_literal] = ACTIONS(966), + }, + [STATE(166)] = { + [sym_line_comment] = STATE(166), + [sym_block_comment] = STATE(166), + [sym_identifier] = ACTIONS(968), + [anon_sym_SEMI] = ACTIONS(970), + [anon_sym_LPAREN] = ACTIONS(970), + [anon_sym_RPAREN] = ACTIONS(970), + [anon_sym_LBRACK] = ACTIONS(970), + [anon_sym_RBRACK] = ACTIONS(970), + [anon_sym_LBRACE] = ACTIONS(970), + [anon_sym_RBRACE] = ACTIONS(970), + [anon_sym_EQ_GT] = ACTIONS(970), + [anon_sym_COLON] = ACTIONS(968), + [anon_sym_DOLLAR] = ACTIONS(968), + [anon_sym_PLUS] = ACTIONS(968), + [anon_sym_STAR] = ACTIONS(968), + [anon_sym_QMARK] = ACTIONS(970), + [anon_sym_u8] = ACTIONS(968), + [anon_sym_i8] = ACTIONS(968), + [anon_sym_u16] = ACTIONS(968), + [anon_sym_i16] = ACTIONS(968), + [anon_sym_u32] = ACTIONS(968), + [anon_sym_i32] = ACTIONS(968), + [anon_sym_u64] = ACTIONS(968), + [anon_sym_i64] = ACTIONS(968), + [anon_sym_u128] = ACTIONS(968), + [anon_sym_i128] = ACTIONS(968), + [anon_sym_isize] = ACTIONS(968), + [anon_sym_usize] = ACTIONS(968), + [anon_sym_f32] = ACTIONS(968), + [anon_sym_f64] = ACTIONS(968), + [anon_sym_bool] = ACTIONS(968), + [anon_sym_str] = ACTIONS(968), + [anon_sym_char] = ACTIONS(968), + [anon_sym_DASH] = ACTIONS(968), + [anon_sym_SLASH] = ACTIONS(968), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_CARET] = ACTIONS(968), + [anon_sym_BANG] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(968), + [anon_sym_PIPE] = ACTIONS(968), + [anon_sym_AMP_AMP] = ACTIONS(970), + [anon_sym_PIPE_PIPE] = ACTIONS(970), + [anon_sym_LT_LT] = ACTIONS(968), + [anon_sym_GT_GT] = ACTIONS(968), + [anon_sym_PLUS_EQ] = ACTIONS(970), + [anon_sym_DASH_EQ] = ACTIONS(970), + [anon_sym_STAR_EQ] = ACTIONS(970), + [anon_sym_SLASH_EQ] = ACTIONS(970), + [anon_sym_PERCENT_EQ] = ACTIONS(970), + [anon_sym_CARET_EQ] = ACTIONS(970), + [anon_sym_AMP_EQ] = ACTIONS(970), + [anon_sym_PIPE_EQ] = ACTIONS(970), + [anon_sym_LT_LT_EQ] = ACTIONS(970), + [anon_sym_GT_GT_EQ] = ACTIONS(970), + [anon_sym_EQ] = ACTIONS(968), + [anon_sym_EQ_EQ] = ACTIONS(970), + [anon_sym_BANG_EQ] = ACTIONS(970), + [anon_sym_GT] = ACTIONS(968), + [anon_sym_LT] = ACTIONS(968), + [anon_sym_GT_EQ] = ACTIONS(970), + [anon_sym_LT_EQ] = ACTIONS(970), + [anon_sym_AT] = ACTIONS(970), + [anon_sym__] = ACTIONS(968), + [anon_sym_DOT] = ACTIONS(968), + [anon_sym_DOT_DOT] = ACTIONS(968), + [anon_sym_DOT_DOT_DOT] = ACTIONS(970), + [anon_sym_DOT_DOT_EQ] = ACTIONS(970), + [anon_sym_COMMA] = ACTIONS(970), + [anon_sym_COLON_COLON] = ACTIONS(970), + [anon_sym_DASH_GT] = ACTIONS(970), + [anon_sym_POUND] = ACTIONS(970), + [anon_sym_SQUOTE] = ACTIONS(968), + [anon_sym_as] = ACTIONS(968), + [anon_sym_async] = ACTIONS(968), + [anon_sym_await] = ACTIONS(968), + [anon_sym_break] = ACTIONS(968), + [anon_sym_const] = ACTIONS(968), + [anon_sym_continue] = ACTIONS(968), + [anon_sym_default] = ACTIONS(968), + [anon_sym_enum] = ACTIONS(968), + [anon_sym_fn] = ACTIONS(968), + [anon_sym_for] = ACTIONS(968), + [anon_sym_gen] = ACTIONS(968), + [anon_sym_if] = ACTIONS(968), + [anon_sym_impl] = ACTIONS(968), + [anon_sym_let] = ACTIONS(968), + [anon_sym_loop] = ACTIONS(968), + [anon_sym_match] = ACTIONS(968), + [anon_sym_mod] = ACTIONS(968), + [anon_sym_pub] = ACTIONS(968), + [anon_sym_return] = ACTIONS(968), + [anon_sym_static] = ACTIONS(968), + [anon_sym_struct] = ACTIONS(968), + [anon_sym_trait] = ACTIONS(968), + [anon_sym_type] = ACTIONS(968), + [anon_sym_union] = ACTIONS(968), + [anon_sym_unsafe] = ACTIONS(968), + [anon_sym_use] = ACTIONS(968), + [anon_sym_where] = ACTIONS(968), + [anon_sym_while] = ACTIONS(968), + [sym_mutable_specifier] = ACTIONS(968), + [sym_integer_literal] = ACTIONS(970), + [aux_sym_string_literal_token1] = ACTIONS(970), + [sym_char_literal] = ACTIONS(970), + [anon_sym_true] = ACTIONS(968), + [anon_sym_false] = ACTIONS(968), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(968), + [sym_super] = ACTIONS(968), + [sym_crate] = ACTIONS(968), + [sym_metavariable] = ACTIONS(970), + [sym__raw_string_literal_start] = ACTIONS(970), + [sym_float_literal] = ACTIONS(970), }, [STATE(167)] = { - [sym_attribute_item] = STATE(1059), - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1673), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym_attribute_item] = STATE(1068), + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3031), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1670), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1491), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), [sym_line_comment] = STATE(167), [sym_block_comment] = STATE(167), [aux_sym_enum_variant_list_repeat1] = STATE(211), - [sym_identifier] = ACTIONS(339), + [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(971), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_RBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(348), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -36534,97 +36671,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(752), + [anon_sym_POUND] = ACTIONS(771), [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(168)] = { - [sym_attribute_item] = STATE(1059), - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1673), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), [sym_line_comment] = STATE(168), [sym_block_comment] = STATE(168), - [aux_sym_enum_variant_list_repeat1] = STATE(211), - [sym_identifier] = ACTIONS(339), + [aux_sym__non_special_token_repeat1] = STATE(168), + [sym_identifier] = ACTIONS(753), + [anon_sym_SEMI] = ACTIONS(974), + [anon_sym_LPAREN] = ACTIONS(758), + [anon_sym_RPAREN] = ACTIONS(758), + [anon_sym_LBRACK] = ACTIONS(758), + [anon_sym_RBRACK] = ACTIONS(758), + [anon_sym_LBRACE] = ACTIONS(758), + [anon_sym_RBRACE] = ACTIONS(758), + [anon_sym_EQ_GT] = ACTIONS(974), + [anon_sym_COLON] = ACTIONS(977), + [anon_sym_DOLLAR] = ACTIONS(758), + [anon_sym_PLUS] = ACTIONS(977), + [anon_sym_STAR] = ACTIONS(977), + [anon_sym_QMARK] = ACTIONS(974), + [anon_sym_u8] = ACTIONS(753), + [anon_sym_i8] = ACTIONS(753), + [anon_sym_u16] = ACTIONS(753), + [anon_sym_i16] = ACTIONS(753), + [anon_sym_u32] = ACTIONS(753), + [anon_sym_i32] = ACTIONS(753), + [anon_sym_u64] = ACTIONS(753), + [anon_sym_i64] = ACTIONS(753), + [anon_sym_u128] = ACTIONS(753), + [anon_sym_i128] = ACTIONS(753), + [anon_sym_isize] = ACTIONS(753), + [anon_sym_usize] = ACTIONS(753), + [anon_sym_f32] = ACTIONS(753), + [anon_sym_f64] = ACTIONS(753), + [anon_sym_bool] = ACTIONS(753), + [anon_sym_str] = ACTIONS(753), + [anon_sym_char] = ACTIONS(753), + [anon_sym_DASH] = ACTIONS(977), + [anon_sym_SLASH] = ACTIONS(977), + [anon_sym_PERCENT] = ACTIONS(977), + [anon_sym_CARET] = ACTIONS(977), + [anon_sym_BANG] = ACTIONS(977), + [anon_sym_AMP] = ACTIONS(977), + [anon_sym_PIPE] = ACTIONS(977), + [anon_sym_AMP_AMP] = ACTIONS(974), + [anon_sym_PIPE_PIPE] = ACTIONS(974), + [anon_sym_LT_LT] = ACTIONS(977), + [anon_sym_GT_GT] = ACTIONS(977), + [anon_sym_PLUS_EQ] = ACTIONS(974), + [anon_sym_DASH_EQ] = ACTIONS(974), + [anon_sym_STAR_EQ] = ACTIONS(974), + [anon_sym_SLASH_EQ] = ACTIONS(974), + [anon_sym_PERCENT_EQ] = ACTIONS(974), + [anon_sym_CARET_EQ] = ACTIONS(974), + [anon_sym_AMP_EQ] = ACTIONS(974), + [anon_sym_PIPE_EQ] = ACTIONS(974), + [anon_sym_LT_LT_EQ] = ACTIONS(974), + [anon_sym_GT_GT_EQ] = ACTIONS(974), + [anon_sym_EQ] = ACTIONS(977), + [anon_sym_EQ_EQ] = ACTIONS(974), + [anon_sym_BANG_EQ] = ACTIONS(974), + [anon_sym_GT] = ACTIONS(977), + [anon_sym_LT] = ACTIONS(977), + [anon_sym_GT_EQ] = ACTIONS(974), + [anon_sym_LT_EQ] = ACTIONS(974), + [anon_sym_AT] = ACTIONS(974), + [anon_sym__] = ACTIONS(977), + [anon_sym_DOT] = ACTIONS(977), + [anon_sym_DOT_DOT] = ACTIONS(977), + [anon_sym_DOT_DOT_DOT] = ACTIONS(974), + [anon_sym_DOT_DOT_EQ] = ACTIONS(974), + [anon_sym_COMMA] = ACTIONS(974), + [anon_sym_COLON_COLON] = ACTIONS(974), + [anon_sym_DASH_GT] = ACTIONS(974), + [anon_sym_POUND] = ACTIONS(974), + [anon_sym_SQUOTE] = ACTIONS(753), + [anon_sym_as] = ACTIONS(753), + [anon_sym_async] = ACTIONS(753), + [anon_sym_await] = ACTIONS(753), + [anon_sym_break] = ACTIONS(753), + [anon_sym_const] = ACTIONS(753), + [anon_sym_continue] = ACTIONS(753), + [anon_sym_default] = ACTIONS(753), + [anon_sym_enum] = ACTIONS(753), + [anon_sym_fn] = ACTIONS(753), + [anon_sym_for] = ACTIONS(753), + [anon_sym_gen] = ACTIONS(753), + [anon_sym_if] = ACTIONS(753), + [anon_sym_impl] = ACTIONS(753), + [anon_sym_let] = ACTIONS(753), + [anon_sym_loop] = ACTIONS(753), + [anon_sym_match] = ACTIONS(753), + [anon_sym_mod] = ACTIONS(753), + [anon_sym_pub] = ACTIONS(753), + [anon_sym_return] = ACTIONS(753), + [anon_sym_static] = ACTIONS(753), + [anon_sym_struct] = ACTIONS(753), + [anon_sym_trait] = ACTIONS(753), + [anon_sym_type] = ACTIONS(753), + [anon_sym_union] = ACTIONS(753), + [anon_sym_unsafe] = ACTIONS(753), + [anon_sym_use] = ACTIONS(753), + [anon_sym_where] = ACTIONS(753), + [anon_sym_while] = ACTIONS(753), + [sym_mutable_specifier] = ACTIONS(753), + [sym_integer_literal] = ACTIONS(758), + [aux_sym_string_literal_token1] = ACTIONS(758), + [sym_char_literal] = ACTIONS(758), + [anon_sym_true] = ACTIONS(753), + [anon_sym_false] = ACTIONS(753), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(753), + [sym_super] = ACTIONS(753), + [sym_crate] = ACTIONS(753), + [sym__raw_string_literal_start] = ACTIONS(758), + [sym_float_literal] = ACTIONS(758), + }, + [STATE(169)] = { + [sym_attribute_item] = STATE(1068), + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3031), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1771), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1491), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), + [sym_line_comment] = STATE(169), + [sym_block_comment] = STATE(169), + [aux_sym_enum_variant_list_repeat1] = STATE(220), + [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(980), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(973), - [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), @@ -36650,191 +36903,74 @@ 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(752), + [anon_sym_POUND] = ACTIONS(771), [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(169)] = { - [sym_line_comment] = STATE(169), - [sym_block_comment] = STATE(169), - [sym_identifier] = ACTIONS(975), - [anon_sym_SEMI] = ACTIONS(977), - [anon_sym_LPAREN] = ACTIONS(977), - [anon_sym_RPAREN] = ACTIONS(977), - [anon_sym_LBRACK] = ACTIONS(977), - [anon_sym_RBRACK] = ACTIONS(977), - [anon_sym_LBRACE] = ACTIONS(977), - [anon_sym_RBRACE] = ACTIONS(977), - [anon_sym_EQ_GT] = ACTIONS(977), - [anon_sym_COLON] = ACTIONS(975), - [anon_sym_DOLLAR] = ACTIONS(975), - [anon_sym_PLUS] = ACTIONS(975), - [anon_sym_STAR] = ACTIONS(975), - [anon_sym_QMARK] = ACTIONS(977), - [anon_sym_u8] = ACTIONS(975), - [anon_sym_i8] = ACTIONS(975), - [anon_sym_u16] = ACTIONS(975), - [anon_sym_i16] = ACTIONS(975), - [anon_sym_u32] = ACTIONS(975), - [anon_sym_i32] = ACTIONS(975), - [anon_sym_u64] = ACTIONS(975), - [anon_sym_i64] = ACTIONS(975), - [anon_sym_u128] = ACTIONS(975), - [anon_sym_i128] = ACTIONS(975), - [anon_sym_isize] = ACTIONS(975), - [anon_sym_usize] = ACTIONS(975), - [anon_sym_f32] = ACTIONS(975), - [anon_sym_f64] = ACTIONS(975), - [anon_sym_bool] = ACTIONS(975), - [anon_sym_str] = ACTIONS(975), - [anon_sym_char] = ACTIONS(975), - [anon_sym_DASH] = ACTIONS(975), - [anon_sym_SLASH] = ACTIONS(975), - [anon_sym_PERCENT] = ACTIONS(975), - [anon_sym_CARET] = ACTIONS(975), - [anon_sym_BANG] = ACTIONS(975), - [anon_sym_AMP] = ACTIONS(975), - [anon_sym_PIPE] = ACTIONS(975), - [anon_sym_AMP_AMP] = ACTIONS(977), - [anon_sym_PIPE_PIPE] = ACTIONS(977), - [anon_sym_LT_LT] = ACTIONS(975), - [anon_sym_GT_GT] = ACTIONS(975), - [anon_sym_PLUS_EQ] = ACTIONS(977), - [anon_sym_DASH_EQ] = ACTIONS(977), - [anon_sym_STAR_EQ] = ACTIONS(977), - [anon_sym_SLASH_EQ] = ACTIONS(977), - [anon_sym_PERCENT_EQ] = ACTIONS(977), - [anon_sym_CARET_EQ] = ACTIONS(977), - [anon_sym_AMP_EQ] = ACTIONS(977), - [anon_sym_PIPE_EQ] = ACTIONS(977), - [anon_sym_LT_LT_EQ] = ACTIONS(977), - [anon_sym_GT_GT_EQ] = ACTIONS(977), - [anon_sym_EQ] = ACTIONS(975), - [anon_sym_EQ_EQ] = ACTIONS(977), - [anon_sym_BANG_EQ] = ACTIONS(977), - [anon_sym_GT] = ACTIONS(975), - [anon_sym_LT] = ACTIONS(975), - [anon_sym_GT_EQ] = ACTIONS(977), - [anon_sym_LT_EQ] = ACTIONS(977), - [anon_sym_AT] = ACTIONS(977), - [anon_sym__] = ACTIONS(975), - [anon_sym_DOT] = ACTIONS(975), - [anon_sym_DOT_DOT] = ACTIONS(975), - [anon_sym_DOT_DOT_DOT] = ACTIONS(977), - [anon_sym_DOT_DOT_EQ] = ACTIONS(977), - [anon_sym_COMMA] = ACTIONS(977), - [anon_sym_COLON_COLON] = ACTIONS(977), - [anon_sym_DASH_GT] = ACTIONS(977), - [anon_sym_POUND] = ACTIONS(977), - [anon_sym_SQUOTE] = ACTIONS(975), - [anon_sym_as] = ACTIONS(975), - [anon_sym_async] = ACTIONS(975), - [anon_sym_await] = ACTIONS(975), - [anon_sym_break] = ACTIONS(975), - [anon_sym_const] = ACTIONS(975), - [anon_sym_continue] = ACTIONS(975), - [anon_sym_default] = ACTIONS(975), - [anon_sym_enum] = ACTIONS(975), - [anon_sym_fn] = ACTIONS(975), - [anon_sym_for] = ACTIONS(975), - [anon_sym_gen] = ACTIONS(975), - [anon_sym_if] = ACTIONS(975), - [anon_sym_impl] = ACTIONS(975), - [anon_sym_let] = ACTIONS(975), - [anon_sym_loop] = ACTIONS(975), - [anon_sym_match] = ACTIONS(975), - [anon_sym_mod] = ACTIONS(975), - [anon_sym_pub] = ACTIONS(975), - [anon_sym_return] = ACTIONS(975), - [anon_sym_static] = ACTIONS(975), - [anon_sym_struct] = ACTIONS(975), - [anon_sym_trait] = ACTIONS(975), - [anon_sym_type] = ACTIONS(975), - [anon_sym_union] = ACTIONS(975), - [anon_sym_unsafe] = ACTIONS(975), - [anon_sym_use] = ACTIONS(975), - [anon_sym_where] = ACTIONS(975), - [anon_sym_while] = ACTIONS(975), - [sym_mutable_specifier] = ACTIONS(975), - [sym_integer_literal] = ACTIONS(977), - [aux_sym_string_literal_token1] = ACTIONS(977), - [sym_char_literal] = ACTIONS(977), - [anon_sym_true] = ACTIONS(975), - [anon_sym_false] = ACTIONS(975), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(975), - [sym_super] = ACTIONS(975), - [sym_crate] = ACTIONS(975), - [sym_metavariable] = ACTIONS(977), - [sym__raw_string_literal_start] = ACTIONS(977), - [sym_float_literal] = ACTIONS(977), + [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(170)] = { [sym_line_comment] = STATE(170), [sym_block_comment] = STATE(170), - [aux_sym__non_special_token_repeat1] = STATE(170), - [sym_identifier] = ACTIONS(891), - [anon_sym_SEMI] = ACTIONS(979), - [anon_sym_LPAREN] = ACTIONS(896), - [anon_sym_RPAREN] = ACTIONS(896), - [anon_sym_LBRACK] = ACTIONS(896), - [anon_sym_RBRACK] = ACTIONS(896), - [anon_sym_LBRACE] = ACTIONS(896), - [anon_sym_RBRACE] = ACTIONS(896), - [anon_sym_EQ_GT] = ACTIONS(979), + [sym_identifier] = ACTIONS(982), + [anon_sym_SEMI] = ACTIONS(984), + [anon_sym_LPAREN] = ACTIONS(984), + [anon_sym_RPAREN] = ACTIONS(984), + [anon_sym_LBRACK] = ACTIONS(984), + [anon_sym_RBRACK] = ACTIONS(984), + [anon_sym_LBRACE] = ACTIONS(984), + [anon_sym_RBRACE] = ACTIONS(984), + [anon_sym_EQ_GT] = ACTIONS(984), [anon_sym_COLON] = ACTIONS(982), - [anon_sym_DOLLAR] = ACTIONS(896), + [anon_sym_DOLLAR] = ACTIONS(982), [anon_sym_PLUS] = ACTIONS(982), [anon_sym_STAR] = ACTIONS(982), - [anon_sym_QMARK] = ACTIONS(979), - [anon_sym_u8] = ACTIONS(891), - [anon_sym_i8] = ACTIONS(891), - [anon_sym_u16] = ACTIONS(891), - [anon_sym_i16] = ACTIONS(891), - [anon_sym_u32] = ACTIONS(891), - [anon_sym_i32] = ACTIONS(891), - [anon_sym_u64] = ACTIONS(891), - [anon_sym_i64] = ACTIONS(891), - [anon_sym_u128] = ACTIONS(891), - [anon_sym_i128] = ACTIONS(891), - [anon_sym_isize] = ACTIONS(891), - [anon_sym_usize] = ACTIONS(891), - [anon_sym_f32] = ACTIONS(891), - [anon_sym_f64] = ACTIONS(891), - [anon_sym_bool] = ACTIONS(891), - [anon_sym_str] = ACTIONS(891), - [anon_sym_char] = ACTIONS(891), + [anon_sym_QMARK] = ACTIONS(984), + [anon_sym_u8] = ACTIONS(982), + [anon_sym_i8] = ACTIONS(982), + [anon_sym_u16] = ACTIONS(982), + [anon_sym_i16] = ACTIONS(982), + [anon_sym_u32] = ACTIONS(982), + [anon_sym_i32] = ACTIONS(982), + [anon_sym_u64] = ACTIONS(982), + [anon_sym_i64] = ACTIONS(982), + [anon_sym_u128] = ACTIONS(982), + [anon_sym_i128] = ACTIONS(982), + [anon_sym_isize] = ACTIONS(982), + [anon_sym_usize] = ACTIONS(982), + [anon_sym_f32] = ACTIONS(982), + [anon_sym_f64] = ACTIONS(982), + [anon_sym_bool] = ACTIONS(982), + [anon_sym_str] = ACTIONS(982), + [anon_sym_char] = ACTIONS(982), [anon_sym_DASH] = ACTIONS(982), [anon_sym_SLASH] = ACTIONS(982), [anon_sym_PERCENT] = ACTIONS(982), @@ -36842,369 +36978,370 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(982), [anon_sym_AMP] = ACTIONS(982), [anon_sym_PIPE] = ACTIONS(982), - [anon_sym_AMP_AMP] = ACTIONS(979), - [anon_sym_PIPE_PIPE] = ACTIONS(979), + [anon_sym_AMP_AMP] = ACTIONS(984), + [anon_sym_PIPE_PIPE] = ACTIONS(984), [anon_sym_LT_LT] = ACTIONS(982), [anon_sym_GT_GT] = ACTIONS(982), - [anon_sym_PLUS_EQ] = ACTIONS(979), - [anon_sym_DASH_EQ] = ACTIONS(979), - [anon_sym_STAR_EQ] = ACTIONS(979), - [anon_sym_SLASH_EQ] = ACTIONS(979), - [anon_sym_PERCENT_EQ] = ACTIONS(979), - [anon_sym_CARET_EQ] = ACTIONS(979), - [anon_sym_AMP_EQ] = ACTIONS(979), - [anon_sym_PIPE_EQ] = ACTIONS(979), - [anon_sym_LT_LT_EQ] = ACTIONS(979), - [anon_sym_GT_GT_EQ] = ACTIONS(979), + [anon_sym_PLUS_EQ] = ACTIONS(984), + [anon_sym_DASH_EQ] = ACTIONS(984), + [anon_sym_STAR_EQ] = ACTIONS(984), + [anon_sym_SLASH_EQ] = ACTIONS(984), + [anon_sym_PERCENT_EQ] = ACTIONS(984), + [anon_sym_CARET_EQ] = ACTIONS(984), + [anon_sym_AMP_EQ] = ACTIONS(984), + [anon_sym_PIPE_EQ] = ACTIONS(984), + [anon_sym_LT_LT_EQ] = ACTIONS(984), + [anon_sym_GT_GT_EQ] = ACTIONS(984), [anon_sym_EQ] = ACTIONS(982), - [anon_sym_EQ_EQ] = ACTIONS(979), - [anon_sym_BANG_EQ] = ACTIONS(979), + [anon_sym_EQ_EQ] = ACTIONS(984), + [anon_sym_BANG_EQ] = ACTIONS(984), [anon_sym_GT] = ACTIONS(982), [anon_sym_LT] = ACTIONS(982), - [anon_sym_GT_EQ] = ACTIONS(979), - [anon_sym_LT_EQ] = ACTIONS(979), - [anon_sym_AT] = ACTIONS(979), + [anon_sym_GT_EQ] = ACTIONS(984), + [anon_sym_LT_EQ] = ACTIONS(984), + [anon_sym_AT] = ACTIONS(984), [anon_sym__] = ACTIONS(982), [anon_sym_DOT] = ACTIONS(982), [anon_sym_DOT_DOT] = ACTIONS(982), - [anon_sym_DOT_DOT_DOT] = ACTIONS(979), - [anon_sym_DOT_DOT_EQ] = ACTIONS(979), - [anon_sym_COMMA] = ACTIONS(979), - [anon_sym_COLON_COLON] = ACTIONS(979), - [anon_sym_DASH_GT] = ACTIONS(979), - [anon_sym_POUND] = ACTIONS(979), - [anon_sym_SQUOTE] = ACTIONS(891), - [anon_sym_as] = ACTIONS(891), - [anon_sym_async] = ACTIONS(891), - [anon_sym_await] = ACTIONS(891), - [anon_sym_break] = ACTIONS(891), - [anon_sym_const] = ACTIONS(891), - [anon_sym_continue] = ACTIONS(891), - [anon_sym_default] = ACTIONS(891), - [anon_sym_enum] = ACTIONS(891), - [anon_sym_fn] = ACTIONS(891), - [anon_sym_for] = ACTIONS(891), - [anon_sym_gen] = ACTIONS(891), - [anon_sym_if] = ACTIONS(891), - [anon_sym_impl] = ACTIONS(891), - [anon_sym_let] = ACTIONS(891), - [anon_sym_loop] = ACTIONS(891), - [anon_sym_match] = ACTIONS(891), - [anon_sym_mod] = ACTIONS(891), - [anon_sym_pub] = ACTIONS(891), - [anon_sym_return] = ACTIONS(891), - [anon_sym_static] = ACTIONS(891), - [anon_sym_struct] = ACTIONS(891), - [anon_sym_trait] = ACTIONS(891), - [anon_sym_type] = ACTIONS(891), - [anon_sym_union] = ACTIONS(891), - [anon_sym_unsafe] = ACTIONS(891), - [anon_sym_use] = ACTIONS(891), - [anon_sym_where] = ACTIONS(891), - [anon_sym_while] = ACTIONS(891), - [sym_mutable_specifier] = ACTIONS(891), - [sym_integer_literal] = ACTIONS(896), - [aux_sym_string_literal_token1] = ACTIONS(896), - [sym_char_literal] = ACTIONS(896), - [anon_sym_true] = ACTIONS(891), - [anon_sym_false] = ACTIONS(891), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(891), - [sym_super] = ACTIONS(891), - [sym_crate] = ACTIONS(891), - [sym__raw_string_literal_start] = ACTIONS(896), - [sym_float_literal] = ACTIONS(896), + [anon_sym_DOT_DOT_DOT] = ACTIONS(984), + [anon_sym_DOT_DOT_EQ] = ACTIONS(984), + [anon_sym_COMMA] = ACTIONS(984), + [anon_sym_COLON_COLON] = ACTIONS(984), + [anon_sym_DASH_GT] = ACTIONS(984), + [anon_sym_POUND] = ACTIONS(984), + [anon_sym_SQUOTE] = ACTIONS(982), + [anon_sym_as] = ACTIONS(982), + [anon_sym_async] = ACTIONS(982), + [anon_sym_await] = ACTIONS(982), + [anon_sym_break] = ACTIONS(982), + [anon_sym_const] = ACTIONS(982), + [anon_sym_continue] = ACTIONS(982), + [anon_sym_default] = ACTIONS(982), + [anon_sym_enum] = ACTIONS(982), + [anon_sym_fn] = ACTIONS(982), + [anon_sym_for] = ACTIONS(982), + [anon_sym_gen] = ACTIONS(982), + [anon_sym_if] = ACTIONS(982), + [anon_sym_impl] = ACTIONS(982), + [anon_sym_let] = ACTIONS(982), + [anon_sym_loop] = ACTIONS(982), + [anon_sym_match] = ACTIONS(982), + [anon_sym_mod] = ACTIONS(982), + [anon_sym_pub] = ACTIONS(982), + [anon_sym_return] = ACTIONS(982), + [anon_sym_static] = ACTIONS(982), + [anon_sym_struct] = ACTIONS(982), + [anon_sym_trait] = ACTIONS(982), + [anon_sym_type] = ACTIONS(982), + [anon_sym_union] = ACTIONS(982), + [anon_sym_unsafe] = ACTIONS(982), + [anon_sym_use] = ACTIONS(982), + [anon_sym_where] = ACTIONS(982), + [anon_sym_while] = ACTIONS(982), + [sym_mutable_specifier] = ACTIONS(982), + [sym_integer_literal] = ACTIONS(984), + [aux_sym_string_literal_token1] = ACTIONS(984), + [sym_char_literal] = ACTIONS(984), + [anon_sym_true] = ACTIONS(982), + [anon_sym_false] = ACTIONS(982), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(982), + [sym_super] = ACTIONS(982), + [sym_crate] = ACTIONS(982), + [sym_metavariable] = ACTIONS(984), + [sym__raw_string_literal_start] = ACTIONS(984), + [sym_float_literal] = ACTIONS(984), }, [STATE(171)] = { + [sym_bracketed_type] = STATE(3702), + [sym_generic_function] = STATE(1815), + [sym_generic_type_with_turbofish] = STATE(2969), + [sym__expression_except_range] = STATE(1694), + [sym__expression] = STATE(1983), + [sym_macro_invocation] = STATE(1832), + [sym_scoped_identifier] = STATE(1654), + [sym_scoped_type_identifier_in_expression_position] = STATE(3227), + [sym_range_expression] = STATE(1820), + [sym_unary_expression] = STATE(1815), + [sym_try_expression] = STATE(1815), + [sym_reference_expression] = STATE(1815), + [sym_binary_expression] = STATE(1815), + [sym_assignment_expression] = STATE(1815), + [sym_compound_assignment_expr] = STATE(1815), + [sym_type_cast_expression] = STATE(1815), + [sym_return_expression] = STATE(1815), + [sym_yield_expression] = STATE(1815), + [sym_call_expression] = STATE(1815), + [sym_array_expression] = STATE(1815), + [sym_parenthesized_expression] = STATE(1815), + [sym_tuple_expression] = STATE(1815), + [sym_unit_expression] = STATE(1815), + [sym_struct_expression] = STATE(1815), + [sym_if_expression] = STATE(1815), + [sym_let_condition] = STATE(3311), + [sym__let_chain] = STATE(3312), + [sym__condition] = STATE(3770), + [sym_match_expression] = STATE(1815), + [sym_while_expression] = STATE(1815), + [sym_loop_expression] = STATE(1815), + [sym_for_expression] = STATE(1815), + [sym_const_block] = STATE(1815), + [sym_closure_expression] = STATE(1815), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3807), + [sym_break_expression] = STATE(1815), + [sym_continue_expression] = STATE(1815), + [sym_index_expression] = STATE(1815), + [sym_await_expression] = STATE(1815), + [sym_field_expression] = STATE(1695), + [sym_unsafe_block] = STATE(1815), + [sym_async_block] = STATE(1815), + [sym_gen_block] = STATE(1815), + [sym_try_block] = STATE(1815), + [sym_block] = STATE(1815), + [sym__literal] = STATE(1815), + [sym_string_literal] = STATE(1733), + [sym_raw_string_literal] = STATE(1733), + [sym_boolean_literal] = STATE(1733), [sym_line_comment] = STATE(171), [sym_block_comment] = STATE(171), - [sym_identifier] = ACTIONS(985), - [anon_sym_SEMI] = ACTIONS(987), - [anon_sym_LPAREN] = ACTIONS(987), - [anon_sym_RPAREN] = ACTIONS(987), - [anon_sym_LBRACK] = ACTIONS(987), - [anon_sym_RBRACK] = ACTIONS(987), - [anon_sym_LBRACE] = ACTIONS(987), - [anon_sym_RBRACE] = ACTIONS(987), - [anon_sym_EQ_GT] = ACTIONS(987), - [anon_sym_COLON] = ACTIONS(985), - [anon_sym_DOLLAR] = ACTIONS(985), - [anon_sym_PLUS] = ACTIONS(985), - [anon_sym_STAR] = ACTIONS(985), - [anon_sym_QMARK] = ACTIONS(987), - [anon_sym_u8] = ACTIONS(985), - [anon_sym_i8] = ACTIONS(985), - [anon_sym_u16] = ACTIONS(985), - [anon_sym_i16] = ACTIONS(985), - [anon_sym_u32] = ACTIONS(985), - [anon_sym_i32] = ACTIONS(985), - [anon_sym_u64] = ACTIONS(985), - [anon_sym_i64] = ACTIONS(985), - [anon_sym_u128] = ACTIONS(985), - [anon_sym_i128] = ACTIONS(985), - [anon_sym_isize] = ACTIONS(985), - [anon_sym_usize] = ACTIONS(985), - [anon_sym_f32] = ACTIONS(985), - [anon_sym_f64] = ACTIONS(985), - [anon_sym_bool] = ACTIONS(985), - [anon_sym_str] = ACTIONS(985), - [anon_sym_char] = ACTIONS(985), - [anon_sym_DASH] = ACTIONS(985), - [anon_sym_SLASH] = ACTIONS(985), - [anon_sym_PERCENT] = ACTIONS(985), - [anon_sym_CARET] = ACTIONS(985), - [anon_sym_BANG] = ACTIONS(985), - [anon_sym_AMP] = ACTIONS(985), - [anon_sym_PIPE] = ACTIONS(985), - [anon_sym_AMP_AMP] = ACTIONS(987), - [anon_sym_PIPE_PIPE] = ACTIONS(987), - [anon_sym_LT_LT] = ACTIONS(985), - [anon_sym_GT_GT] = ACTIONS(985), - [anon_sym_PLUS_EQ] = ACTIONS(987), - [anon_sym_DASH_EQ] = ACTIONS(987), - [anon_sym_STAR_EQ] = ACTIONS(987), - [anon_sym_SLASH_EQ] = ACTIONS(987), - [anon_sym_PERCENT_EQ] = ACTIONS(987), - [anon_sym_CARET_EQ] = ACTIONS(987), - [anon_sym_AMP_EQ] = ACTIONS(987), - [anon_sym_PIPE_EQ] = ACTIONS(987), - [anon_sym_LT_LT_EQ] = ACTIONS(987), - [anon_sym_GT_GT_EQ] = ACTIONS(987), - [anon_sym_EQ] = ACTIONS(985), - [anon_sym_EQ_EQ] = ACTIONS(987), - [anon_sym_BANG_EQ] = ACTIONS(987), - [anon_sym_GT] = ACTIONS(985), - [anon_sym_LT] = ACTIONS(985), - [anon_sym_GT_EQ] = ACTIONS(987), - [anon_sym_LT_EQ] = ACTIONS(987), - [anon_sym_AT] = ACTIONS(987), - [anon_sym__] = ACTIONS(985), - [anon_sym_DOT] = ACTIONS(985), - [anon_sym_DOT_DOT] = ACTIONS(985), - [anon_sym_DOT_DOT_DOT] = ACTIONS(987), - [anon_sym_DOT_DOT_EQ] = ACTIONS(987), - [anon_sym_COMMA] = ACTIONS(987), - [anon_sym_COLON_COLON] = ACTIONS(987), - [anon_sym_DASH_GT] = ACTIONS(987), - [anon_sym_POUND] = ACTIONS(987), - [anon_sym_SQUOTE] = ACTIONS(985), - [anon_sym_as] = ACTIONS(985), - [anon_sym_async] = ACTIONS(985), - [anon_sym_await] = ACTIONS(985), - [anon_sym_break] = ACTIONS(985), - [anon_sym_const] = ACTIONS(985), - [anon_sym_continue] = ACTIONS(985), - [anon_sym_default] = ACTIONS(985), - [anon_sym_enum] = ACTIONS(985), - [anon_sym_fn] = ACTIONS(985), - [anon_sym_for] = ACTIONS(985), - [anon_sym_gen] = ACTIONS(985), - [anon_sym_if] = ACTIONS(985), - [anon_sym_impl] = ACTIONS(985), - [anon_sym_let] = ACTIONS(985), - [anon_sym_loop] = ACTIONS(985), - [anon_sym_match] = ACTIONS(985), - [anon_sym_mod] = ACTIONS(985), - [anon_sym_pub] = ACTIONS(985), - [anon_sym_return] = ACTIONS(985), - [anon_sym_static] = ACTIONS(985), - [anon_sym_struct] = ACTIONS(985), - [anon_sym_trait] = ACTIONS(985), - [anon_sym_type] = ACTIONS(985), - [anon_sym_union] = ACTIONS(985), - [anon_sym_unsafe] = ACTIONS(985), - [anon_sym_use] = ACTIONS(985), - [anon_sym_where] = ACTIONS(985), - [anon_sym_while] = ACTIONS(985), - [sym_mutable_specifier] = ACTIONS(985), - [sym_integer_literal] = ACTIONS(987), - [aux_sym_string_literal_token1] = ACTIONS(987), - [sym_char_literal] = ACTIONS(987), - [anon_sym_true] = ACTIONS(985), - [anon_sym_false] = ACTIONS(985), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(985), - [sym_super] = ACTIONS(985), - [sym_crate] = ACTIONS(985), - [sym_metavariable] = ACTIONS(987), - [sym__raw_string_literal_start] = ACTIONS(987), - [sym_float_literal] = ACTIONS(987), + [sym_identifier] = ACTIONS(410), + [anon_sym_LPAREN] = ACTIONS(500), + [anon_sym_LBRACK] = ACTIONS(502), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_STAR] = ACTIONS(986), + [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(986), + [anon_sym_BANG] = ACTIONS(986), + [anon_sym_AMP] = ACTIONS(988), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(990), + [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(992), + [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(172)] = { - [sym_bracketed_type] = STATE(3667), - [sym_generic_function] = STATE(1921), - [sym_generic_type_with_turbofish] = STATE(3104), - [sym__expression_except_range] = STATE(1706), - [sym__expression] = STATE(1957), - [sym_macro_invocation] = STATE(1722), - [sym_scoped_identifier] = STATE(1634), - [sym_scoped_type_identifier_in_expression_position] = STATE(3327), - [sym_range_expression] = STATE(1718), - [sym_unary_expression] = STATE(1921), - [sym_try_expression] = STATE(1921), - [sym_reference_expression] = STATE(1921), - [sym_binary_expression] = STATE(1921), - [sym_assignment_expression] = STATE(1921), - [sym_compound_assignment_expr] = STATE(1921), - [sym_type_cast_expression] = STATE(1921), - [sym_return_expression] = STATE(1921), - [sym_yield_expression] = STATE(1921), - [sym_call_expression] = STATE(1921), - [sym_array_expression] = STATE(1921), - [sym_parenthesized_expression] = STATE(1921), - [sym_tuple_expression] = STATE(1921), - [sym_unit_expression] = STATE(1921), - [sym_struct_expression] = STATE(1921), - [sym_if_expression] = STATE(1921), - [sym_let_condition] = STATE(3361), - [sym__let_chain] = STATE(3362), - [sym__condition] = STATE(3526), - [sym_match_expression] = STATE(1921), - [sym_while_expression] = STATE(1921), - [sym_loop_expression] = STATE(1921), - [sym_for_expression] = STATE(1921), - [sym_const_block] = STATE(1921), - [sym_closure_expression] = STATE(1921), - [sym_closure_parameters] = STATE(245), - [sym_label] = STATE(3773), - [sym_break_expression] = STATE(1921), - [sym_continue_expression] = STATE(1921), - [sym_index_expression] = STATE(1921), - [sym_await_expression] = STATE(1921), - [sym_field_expression] = STATE(1693), - [sym_unsafe_block] = STATE(1921), - [sym_async_block] = STATE(1921), - [sym_gen_block] = STATE(1921), - [sym_try_block] = STATE(1921), - [sym_block] = STATE(1921), - [sym__literal] = STATE(1921), - [sym_string_literal] = STATE(1852), - [sym_raw_string_literal] = STATE(1852), - [sym_boolean_literal] = STATE(1852), + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3114), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1749), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1631), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_let_condition] = STATE(3150), + [sym__let_chain] = STATE(3165), + [sym__condition] = STATE(2875), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(244), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), [sym_line_comment] = STATE(172), [sym_block_comment] = STATE(172), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(989), - [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(989), - [anon_sym_BANG] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(991), + [sym_identifier] = ACTIONS(470), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_STAR] = ACTIONS(910), + [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(910), + [anon_sym_BANG] = ACTIONS(910), + [anon_sym_AMP] = ACTIONS(912), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(993), - [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym_DOT_DOT] = ACTIONS(914), + [anon_sym_COLON_COLON] = ACTIONS(476), [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(995), - [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(512), + [anon_sym_break] = ACTIONS(514), + [anon_sym_const] = ACTIONS(358), + [anon_sym_continue] = ACTIONS(516), + [anon_sym_default] = ACTIONS(482), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(518), + [anon_sym_if] = ACTIONS(366), + [anon_sym_let] = ACTIONS(916), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(520), + [anon_sym_static] = ACTIONS(522), + [anon_sym_union] = ACTIONS(482), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_yield] = ACTIONS(524), + [anon_sym_move] = ACTIONS(526), + [anon_sym_try] = ACTIONS(378), + [sym_integer_literal] = ACTIONS(99), + [aux_sym_string_literal_token1] = ACTIONS(101), + [sym_char_literal] = ACTIONS(99), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(494), + [sym_super] = ACTIONS(496), + [sym_crate] = ACTIONS(496), + [sym_metavariable] = ACTIONS(498), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), }, [STATE(173)] = { - [sym_attribute_item] = STATE(1059), - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1673), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym_attribute_item] = STATE(1068), + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3031), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1670), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1491), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), [sym_line_comment] = STATE(173), [sym_block_comment] = STATE(173), [aux_sym_enum_variant_list_repeat1] = STATE(211), - [sym_identifier] = ACTIONS(339), + [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(997), + [anon_sym_RPAREN] = ACTIONS(994), [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), @@ -37230,445 +37367,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(752), + [anon_sym_POUND] = ACTIONS(771), [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(174)] = { + [sym_attribute_item] = STATE(1068), + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3031), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1670), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1491), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), [sym_line_comment] = STATE(174), [sym_block_comment] = STATE(174), - [sym_identifier] = ACTIONS(999), - [anon_sym_SEMI] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(1001), - [anon_sym_RPAREN] = ACTIONS(1001), - [anon_sym_LBRACK] = ACTIONS(1001), - [anon_sym_RBRACK] = ACTIONS(1001), - [anon_sym_LBRACE] = ACTIONS(1001), - [anon_sym_RBRACE] = ACTIONS(1001), - [anon_sym_EQ_GT] = ACTIONS(1001), - [anon_sym_COLON] = ACTIONS(999), - [anon_sym_DOLLAR] = ACTIONS(999), - [anon_sym_PLUS] = ACTIONS(999), - [anon_sym_STAR] = ACTIONS(999), - [anon_sym_QMARK] = ACTIONS(1001), - [anon_sym_u8] = ACTIONS(999), - [anon_sym_i8] = ACTIONS(999), - [anon_sym_u16] = ACTIONS(999), - [anon_sym_i16] = ACTIONS(999), - [anon_sym_u32] = ACTIONS(999), - [anon_sym_i32] = ACTIONS(999), - [anon_sym_u64] = ACTIONS(999), - [anon_sym_i64] = ACTIONS(999), - [anon_sym_u128] = ACTIONS(999), - [anon_sym_i128] = ACTIONS(999), - [anon_sym_isize] = ACTIONS(999), - [anon_sym_usize] = ACTIONS(999), - [anon_sym_f32] = ACTIONS(999), - [anon_sym_f64] = ACTIONS(999), - [anon_sym_bool] = ACTIONS(999), - [anon_sym_str] = ACTIONS(999), - [anon_sym_char] = ACTIONS(999), - [anon_sym_DASH] = ACTIONS(999), - [anon_sym_SLASH] = ACTIONS(999), - [anon_sym_PERCENT] = ACTIONS(999), - [anon_sym_CARET] = ACTIONS(999), - [anon_sym_BANG] = ACTIONS(999), - [anon_sym_AMP] = ACTIONS(999), - [anon_sym_PIPE] = ACTIONS(999), - [anon_sym_AMP_AMP] = ACTIONS(1001), - [anon_sym_PIPE_PIPE] = ACTIONS(1001), - [anon_sym_LT_LT] = ACTIONS(999), - [anon_sym_GT_GT] = ACTIONS(999), - [anon_sym_PLUS_EQ] = ACTIONS(1001), - [anon_sym_DASH_EQ] = ACTIONS(1001), - [anon_sym_STAR_EQ] = ACTIONS(1001), - [anon_sym_SLASH_EQ] = ACTIONS(1001), - [anon_sym_PERCENT_EQ] = ACTIONS(1001), - [anon_sym_CARET_EQ] = ACTIONS(1001), - [anon_sym_AMP_EQ] = ACTIONS(1001), - [anon_sym_PIPE_EQ] = ACTIONS(1001), - [anon_sym_LT_LT_EQ] = ACTIONS(1001), - [anon_sym_GT_GT_EQ] = ACTIONS(1001), - [anon_sym_EQ] = ACTIONS(999), - [anon_sym_EQ_EQ] = ACTIONS(1001), - [anon_sym_BANG_EQ] = ACTIONS(1001), - [anon_sym_GT] = ACTIONS(999), - [anon_sym_LT] = ACTIONS(999), - [anon_sym_GT_EQ] = ACTIONS(1001), - [anon_sym_LT_EQ] = ACTIONS(1001), - [anon_sym_AT] = ACTIONS(1001), - [anon_sym__] = ACTIONS(999), - [anon_sym_DOT] = ACTIONS(999), - [anon_sym_DOT_DOT] = ACTIONS(999), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1001), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1001), - [anon_sym_COMMA] = ACTIONS(1001), - [anon_sym_COLON_COLON] = ACTIONS(1001), - [anon_sym_DASH_GT] = ACTIONS(1001), - [anon_sym_POUND] = ACTIONS(1001), - [anon_sym_SQUOTE] = ACTIONS(999), - [anon_sym_as] = ACTIONS(999), - [anon_sym_async] = ACTIONS(999), - [anon_sym_await] = ACTIONS(999), - [anon_sym_break] = ACTIONS(999), - [anon_sym_const] = ACTIONS(999), - [anon_sym_continue] = ACTIONS(999), - [anon_sym_default] = ACTIONS(999), - [anon_sym_enum] = ACTIONS(999), - [anon_sym_fn] = ACTIONS(999), - [anon_sym_for] = ACTIONS(999), - [anon_sym_gen] = ACTIONS(999), - [anon_sym_if] = ACTIONS(999), - [anon_sym_impl] = ACTIONS(999), - [anon_sym_let] = ACTIONS(999), - [anon_sym_loop] = ACTIONS(999), - [anon_sym_match] = ACTIONS(999), - [anon_sym_mod] = ACTIONS(999), - [anon_sym_pub] = ACTIONS(999), - [anon_sym_return] = ACTIONS(999), - [anon_sym_static] = ACTIONS(999), - [anon_sym_struct] = ACTIONS(999), - [anon_sym_trait] = ACTIONS(999), - [anon_sym_type] = ACTIONS(999), - [anon_sym_union] = ACTIONS(999), - [anon_sym_unsafe] = ACTIONS(999), - [anon_sym_use] = ACTIONS(999), - [anon_sym_where] = ACTIONS(999), - [anon_sym_while] = ACTIONS(999), - [sym_mutable_specifier] = ACTIONS(999), - [sym_integer_literal] = ACTIONS(1001), - [aux_sym_string_literal_token1] = ACTIONS(1001), - [sym_char_literal] = ACTIONS(1001), - [anon_sym_true] = ACTIONS(999), - [anon_sym_false] = ACTIONS(999), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(999), - [sym_super] = ACTIONS(999), - [sym_crate] = ACTIONS(999), - [sym_metavariable] = ACTIONS(1001), - [sym__raw_string_literal_start] = ACTIONS(1001), - [sym_float_literal] = ACTIONS(1001), - }, - [STATE(175)] = { - [sym_line_comment] = STATE(175), - [sym_block_comment] = STATE(175), - [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(176)] = { - [sym_line_comment] = STATE(176), - [sym_block_comment] = STATE(176), - [sym_identifier] = ACTIONS(1007), - [anon_sym_SEMI] = ACTIONS(1009), - [anon_sym_LPAREN] = ACTIONS(1009), - [anon_sym_RPAREN] = ACTIONS(1009), - [anon_sym_LBRACK] = ACTIONS(1009), - [anon_sym_RBRACK] = ACTIONS(1009), - [anon_sym_LBRACE] = ACTIONS(1009), - [anon_sym_RBRACE] = ACTIONS(1009), - [anon_sym_EQ_GT] = ACTIONS(1009), - [anon_sym_COLON] = ACTIONS(1007), - [anon_sym_DOLLAR] = ACTIONS(1007), - [anon_sym_PLUS] = ACTIONS(1007), - [anon_sym_STAR] = ACTIONS(1007), - [anon_sym_QMARK] = ACTIONS(1009), - [anon_sym_u8] = ACTIONS(1007), - [anon_sym_i8] = ACTIONS(1007), - [anon_sym_u16] = ACTIONS(1007), - [anon_sym_i16] = ACTIONS(1007), - [anon_sym_u32] = ACTIONS(1007), - [anon_sym_i32] = ACTIONS(1007), - [anon_sym_u64] = ACTIONS(1007), - [anon_sym_i64] = ACTIONS(1007), - [anon_sym_u128] = ACTIONS(1007), - [anon_sym_i128] = ACTIONS(1007), - [anon_sym_isize] = ACTIONS(1007), - [anon_sym_usize] = ACTIONS(1007), - [anon_sym_f32] = ACTIONS(1007), - [anon_sym_f64] = ACTIONS(1007), - [anon_sym_bool] = ACTIONS(1007), - [anon_sym_str] = ACTIONS(1007), - [anon_sym_char] = ACTIONS(1007), - [anon_sym_DASH] = ACTIONS(1007), - [anon_sym_SLASH] = ACTIONS(1007), - [anon_sym_PERCENT] = ACTIONS(1007), - [anon_sym_CARET] = ACTIONS(1007), - [anon_sym_BANG] = ACTIONS(1007), - [anon_sym_AMP] = ACTIONS(1007), - [anon_sym_PIPE] = ACTIONS(1007), - [anon_sym_AMP_AMP] = ACTIONS(1009), - [anon_sym_PIPE_PIPE] = ACTIONS(1009), - [anon_sym_LT_LT] = ACTIONS(1007), - [anon_sym_GT_GT] = ACTIONS(1007), - [anon_sym_PLUS_EQ] = ACTIONS(1009), - [anon_sym_DASH_EQ] = ACTIONS(1009), - [anon_sym_STAR_EQ] = ACTIONS(1009), - [anon_sym_SLASH_EQ] = ACTIONS(1009), - [anon_sym_PERCENT_EQ] = ACTIONS(1009), - [anon_sym_CARET_EQ] = ACTIONS(1009), - [anon_sym_AMP_EQ] = ACTIONS(1009), - [anon_sym_PIPE_EQ] = ACTIONS(1009), - [anon_sym_LT_LT_EQ] = ACTIONS(1009), - [anon_sym_GT_GT_EQ] = ACTIONS(1009), - [anon_sym_EQ] = ACTIONS(1007), - [anon_sym_EQ_EQ] = ACTIONS(1009), - [anon_sym_BANG_EQ] = ACTIONS(1009), - [anon_sym_GT] = ACTIONS(1007), - [anon_sym_LT] = ACTIONS(1007), - [anon_sym_GT_EQ] = ACTIONS(1009), - [anon_sym_LT_EQ] = ACTIONS(1009), - [anon_sym_AT] = ACTIONS(1009), - [anon_sym__] = ACTIONS(1007), - [anon_sym_DOT] = ACTIONS(1007), - [anon_sym_DOT_DOT] = ACTIONS(1007), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1009), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1009), - [anon_sym_COMMA] = ACTIONS(1009), - [anon_sym_COLON_COLON] = ACTIONS(1009), - [anon_sym_DASH_GT] = ACTIONS(1009), - [anon_sym_POUND] = ACTIONS(1009), - [anon_sym_SQUOTE] = ACTIONS(1007), - [anon_sym_as] = ACTIONS(1007), - [anon_sym_async] = ACTIONS(1007), - [anon_sym_await] = ACTIONS(1007), - [anon_sym_break] = ACTIONS(1007), - [anon_sym_const] = ACTIONS(1007), - [anon_sym_continue] = ACTIONS(1007), - [anon_sym_default] = ACTIONS(1007), - [anon_sym_enum] = ACTIONS(1007), - [anon_sym_fn] = ACTIONS(1007), - [anon_sym_for] = ACTIONS(1007), - [anon_sym_gen] = ACTIONS(1007), - [anon_sym_if] = ACTIONS(1007), - [anon_sym_impl] = ACTIONS(1007), - [anon_sym_let] = ACTIONS(1007), - [anon_sym_loop] = ACTIONS(1007), - [anon_sym_match] = ACTIONS(1007), - [anon_sym_mod] = ACTIONS(1007), - [anon_sym_pub] = ACTIONS(1007), - [anon_sym_return] = ACTIONS(1007), - [anon_sym_static] = ACTIONS(1007), - [anon_sym_struct] = ACTIONS(1007), - [anon_sym_trait] = ACTIONS(1007), - [anon_sym_type] = ACTIONS(1007), - [anon_sym_union] = ACTIONS(1007), - [anon_sym_unsafe] = ACTIONS(1007), - [anon_sym_use] = ACTIONS(1007), - [anon_sym_where] = ACTIONS(1007), - [anon_sym_while] = ACTIONS(1007), - [sym_mutable_specifier] = ACTIONS(1007), - [sym_integer_literal] = ACTIONS(1009), - [aux_sym_string_literal_token1] = ACTIONS(1009), - [sym_char_literal] = ACTIONS(1009), - [anon_sym_true] = ACTIONS(1007), - [anon_sym_false] = ACTIONS(1007), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1007), - [sym_super] = ACTIONS(1007), - [sym_crate] = ACTIONS(1007), - [sym_metavariable] = ACTIONS(1009), - [sym__raw_string_literal_start] = ACTIONS(1009), - [sym_float_literal] = ACTIONS(1009), - }, - [STATE(177)] = { - [sym_attribute_item] = STATE(1059), - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1673), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(177), - [sym_block_comment] = STATE(177), [aux_sym_enum_variant_list_repeat1] = STATE(211), - [sym_identifier] = ACTIONS(339), + [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(1011), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_RBRACK] = ACTIONS(996), + [anon_sym_LBRACE] = ACTIONS(348), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -37694,445 +37483,793 @@ 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(752), + [anon_sym_POUND] = ACTIONS(771), [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(175)] = { + [sym_line_comment] = STATE(175), + [sym_block_comment] = STATE(175), + [sym_identifier] = ACTIONS(998), + [anon_sym_SEMI] = ACTIONS(1000), + [anon_sym_LPAREN] = ACTIONS(1000), + [anon_sym_RPAREN] = ACTIONS(1000), + [anon_sym_LBRACK] = ACTIONS(1000), + [anon_sym_RBRACK] = ACTIONS(1000), + [anon_sym_LBRACE] = ACTIONS(1000), + [anon_sym_RBRACE] = ACTIONS(1000), + [anon_sym_EQ_GT] = ACTIONS(1000), + [anon_sym_COLON] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_PLUS] = ACTIONS(998), + [anon_sym_STAR] = ACTIONS(998), + [anon_sym_QMARK] = ACTIONS(1000), + [anon_sym_u8] = ACTIONS(998), + [anon_sym_i8] = ACTIONS(998), + [anon_sym_u16] = ACTIONS(998), + [anon_sym_i16] = ACTIONS(998), + [anon_sym_u32] = ACTIONS(998), + [anon_sym_i32] = ACTIONS(998), + [anon_sym_u64] = ACTIONS(998), + [anon_sym_i64] = ACTIONS(998), + [anon_sym_u128] = ACTIONS(998), + [anon_sym_i128] = ACTIONS(998), + [anon_sym_isize] = ACTIONS(998), + [anon_sym_usize] = ACTIONS(998), + [anon_sym_f32] = ACTIONS(998), + [anon_sym_f64] = ACTIONS(998), + [anon_sym_bool] = ACTIONS(998), + [anon_sym_str] = ACTIONS(998), + [anon_sym_char] = ACTIONS(998), + [anon_sym_DASH] = ACTIONS(998), + [anon_sym_SLASH] = ACTIONS(998), + [anon_sym_PERCENT] = ACTIONS(998), + [anon_sym_CARET] = ACTIONS(998), + [anon_sym_BANG] = ACTIONS(998), + [anon_sym_AMP] = ACTIONS(998), + [anon_sym_PIPE] = ACTIONS(998), + [anon_sym_AMP_AMP] = ACTIONS(1000), + [anon_sym_PIPE_PIPE] = ACTIONS(1000), + [anon_sym_LT_LT] = ACTIONS(998), + [anon_sym_GT_GT] = ACTIONS(998), + [anon_sym_PLUS_EQ] = ACTIONS(1000), + [anon_sym_DASH_EQ] = ACTIONS(1000), + [anon_sym_STAR_EQ] = ACTIONS(1000), + [anon_sym_SLASH_EQ] = ACTIONS(1000), + [anon_sym_PERCENT_EQ] = ACTIONS(1000), + [anon_sym_CARET_EQ] = ACTIONS(1000), + [anon_sym_AMP_EQ] = ACTIONS(1000), + [anon_sym_PIPE_EQ] = ACTIONS(1000), + [anon_sym_LT_LT_EQ] = ACTIONS(1000), + [anon_sym_GT_GT_EQ] = ACTIONS(1000), + [anon_sym_EQ] = ACTIONS(998), + [anon_sym_EQ_EQ] = ACTIONS(1000), + [anon_sym_BANG_EQ] = ACTIONS(1000), + [anon_sym_GT] = ACTIONS(998), + [anon_sym_LT] = ACTIONS(998), + [anon_sym_GT_EQ] = ACTIONS(1000), + [anon_sym_LT_EQ] = ACTIONS(1000), + [anon_sym_AT] = ACTIONS(1000), + [anon_sym__] = ACTIONS(998), + [anon_sym_DOT] = ACTIONS(998), + [anon_sym_DOT_DOT] = ACTIONS(998), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1000), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1000), + [anon_sym_COMMA] = ACTIONS(1000), + [anon_sym_COLON_COLON] = ACTIONS(1000), + [anon_sym_DASH_GT] = ACTIONS(1000), + [anon_sym_POUND] = ACTIONS(1000), + [anon_sym_SQUOTE] = ACTIONS(998), + [anon_sym_as] = ACTIONS(998), + [anon_sym_async] = ACTIONS(998), + [anon_sym_await] = ACTIONS(998), + [anon_sym_break] = ACTIONS(998), + [anon_sym_const] = ACTIONS(998), + [anon_sym_continue] = ACTIONS(998), + [anon_sym_default] = ACTIONS(998), + [anon_sym_enum] = ACTIONS(998), + [anon_sym_fn] = ACTIONS(998), + [anon_sym_for] = ACTIONS(998), + [anon_sym_gen] = ACTIONS(998), + [anon_sym_if] = ACTIONS(998), + [anon_sym_impl] = ACTIONS(998), + [anon_sym_let] = ACTIONS(998), + [anon_sym_loop] = ACTIONS(998), + [anon_sym_match] = ACTIONS(998), + [anon_sym_mod] = ACTIONS(998), + [anon_sym_pub] = ACTIONS(998), + [anon_sym_return] = ACTIONS(998), + [anon_sym_static] = ACTIONS(998), + [anon_sym_struct] = ACTIONS(998), + [anon_sym_trait] = ACTIONS(998), + [anon_sym_type] = ACTIONS(998), + [anon_sym_union] = ACTIONS(998), + [anon_sym_unsafe] = ACTIONS(998), + [anon_sym_use] = ACTIONS(998), + [anon_sym_where] = ACTIONS(998), + [anon_sym_while] = ACTIONS(998), + [sym_mutable_specifier] = ACTIONS(998), + [sym_integer_literal] = ACTIONS(1000), + [aux_sym_string_literal_token1] = ACTIONS(1000), + [sym_char_literal] = ACTIONS(1000), + [anon_sym_true] = ACTIONS(998), + [anon_sym_false] = ACTIONS(998), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(998), + [sym_super] = ACTIONS(998), + [sym_crate] = ACTIONS(998), + [sym_metavariable] = ACTIONS(1000), + [sym__raw_string_literal_start] = ACTIONS(1000), + [sym_float_literal] = ACTIONS(1000), + }, + [STATE(176)] = { + [sym_line_comment] = STATE(176), + [sym_block_comment] = STATE(176), + [aux_sym__non_special_token_repeat1] = STATE(168), + [sym_identifier] = ACTIONS(1002), + [anon_sym_SEMI] = ACTIONS(685), + [anon_sym_LPAREN] = ACTIONS(1004), + [anon_sym_RPAREN] = ACTIONS(1004), + [anon_sym_LBRACK] = ACTIONS(1004), + [anon_sym_RBRACK] = ACTIONS(1004), + [anon_sym_LBRACE] = ACTIONS(1004), + [anon_sym_RBRACE] = ACTIONS(1004), + [anon_sym_EQ_GT] = ACTIONS(685), + [anon_sym_COLON] = ACTIONS(695), + [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_PLUS] = ACTIONS(695), + [anon_sym_STAR] = ACTIONS(695), + [anon_sym_QMARK] = ACTIONS(685), + [anon_sym_u8] = ACTIONS(1002), + [anon_sym_i8] = ACTIONS(1002), + [anon_sym_u16] = ACTIONS(1002), + [anon_sym_i16] = ACTIONS(1002), + [anon_sym_u32] = ACTIONS(1002), + [anon_sym_i32] = ACTIONS(1002), + [anon_sym_u64] = ACTIONS(1002), + [anon_sym_i64] = ACTIONS(1002), + [anon_sym_u128] = ACTIONS(1002), + [anon_sym_i128] = ACTIONS(1002), + [anon_sym_isize] = ACTIONS(1002), + [anon_sym_usize] = ACTIONS(1002), + [anon_sym_f32] = ACTIONS(1002), + [anon_sym_f64] = ACTIONS(1002), + [anon_sym_bool] = ACTIONS(1002), + [anon_sym_str] = ACTIONS(1002), + [anon_sym_char] = ACTIONS(1002), + [anon_sym_DASH] = ACTIONS(695), + [anon_sym_SLASH] = ACTIONS(695), + [anon_sym_PERCENT] = ACTIONS(695), + [anon_sym_CARET] = ACTIONS(695), + [anon_sym_BANG] = ACTIONS(695), + [anon_sym_AMP] = ACTIONS(695), + [anon_sym_PIPE] = ACTIONS(695), + [anon_sym_AMP_AMP] = ACTIONS(685), + [anon_sym_PIPE_PIPE] = ACTIONS(685), + [anon_sym_LT_LT] = ACTIONS(695), + [anon_sym_GT_GT] = ACTIONS(695), + [anon_sym_PLUS_EQ] = ACTIONS(685), + [anon_sym_DASH_EQ] = ACTIONS(685), + [anon_sym_STAR_EQ] = ACTIONS(685), + [anon_sym_SLASH_EQ] = ACTIONS(685), + [anon_sym_PERCENT_EQ] = ACTIONS(685), + [anon_sym_CARET_EQ] = ACTIONS(685), + [anon_sym_AMP_EQ] = ACTIONS(685), + [anon_sym_PIPE_EQ] = ACTIONS(685), + [anon_sym_LT_LT_EQ] = ACTIONS(685), + [anon_sym_GT_GT_EQ] = ACTIONS(685), + [anon_sym_EQ] = ACTIONS(695), + [anon_sym_EQ_EQ] = ACTIONS(685), + [anon_sym_BANG_EQ] = ACTIONS(685), + [anon_sym_GT] = ACTIONS(695), + [anon_sym_LT] = ACTIONS(695), + [anon_sym_GT_EQ] = ACTIONS(685), + [anon_sym_LT_EQ] = ACTIONS(685), + [anon_sym_AT] = ACTIONS(685), + [anon_sym__] = ACTIONS(695), + [anon_sym_DOT] = ACTIONS(695), + [anon_sym_DOT_DOT] = ACTIONS(695), + [anon_sym_DOT_DOT_DOT] = ACTIONS(685), + [anon_sym_DOT_DOT_EQ] = ACTIONS(685), + [anon_sym_COMMA] = ACTIONS(685), + [anon_sym_COLON_COLON] = ACTIONS(685), + [anon_sym_DASH_GT] = ACTIONS(685), + [anon_sym_POUND] = ACTIONS(685), + [anon_sym_SQUOTE] = ACTIONS(1002), + [anon_sym_as] = ACTIONS(1002), + [anon_sym_async] = ACTIONS(1002), + [anon_sym_await] = ACTIONS(1002), + [anon_sym_break] = ACTIONS(1002), + [anon_sym_const] = ACTIONS(1002), + [anon_sym_continue] = ACTIONS(1002), + [anon_sym_default] = ACTIONS(1002), + [anon_sym_enum] = ACTIONS(1002), + [anon_sym_fn] = ACTIONS(1002), + [anon_sym_for] = ACTIONS(1002), + [anon_sym_gen] = ACTIONS(1002), + [anon_sym_if] = ACTIONS(1002), + [anon_sym_impl] = ACTIONS(1002), + [anon_sym_let] = ACTIONS(1002), + [anon_sym_loop] = ACTIONS(1002), + [anon_sym_match] = ACTIONS(1002), + [anon_sym_mod] = ACTIONS(1002), + [anon_sym_pub] = ACTIONS(1002), + [anon_sym_return] = ACTIONS(1002), + [anon_sym_static] = ACTIONS(1002), + [anon_sym_struct] = ACTIONS(1002), + [anon_sym_trait] = ACTIONS(1002), + [anon_sym_type] = ACTIONS(1002), + [anon_sym_union] = ACTIONS(1002), + [anon_sym_unsafe] = ACTIONS(1002), + [anon_sym_use] = ACTIONS(1002), + [anon_sym_where] = ACTIONS(1002), + [anon_sym_while] = ACTIONS(1002), + [sym_mutable_specifier] = ACTIONS(1002), + [sym_integer_literal] = ACTIONS(1004), + [aux_sym_string_literal_token1] = ACTIONS(1004), + [sym_char_literal] = ACTIONS(1004), + [anon_sym_true] = ACTIONS(1002), + [anon_sym_false] = ACTIONS(1002), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1002), + [sym_super] = ACTIONS(1002), + [sym_crate] = ACTIONS(1002), + [sym__raw_string_literal_start] = ACTIONS(1004), + [sym_float_literal] = ACTIONS(1004), + }, + [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_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3105), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1907), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1607), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_let_condition] = STATE(3091), - [sym__let_chain] = STATE(3103), - [sym__condition] = STATE(2699), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(254), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), [sym_line_comment] = STATE(178), [sym_block_comment] = STATE(178), - [sym_identifier] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(907), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(907), - [anon_sym_BANG] = ACTIONS(907), - [anon_sym_AMP] = ACTIONS(909), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(911), - [anon_sym_COLON_COLON] = ACTIONS(481), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_default] = ACTIONS(489), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(491), - [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(913), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(493), - [anon_sym_static] = ACTIONS(495), - [anon_sym_union] = ACTIONS(489), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(497), - [anon_sym_move] = ACTIONS(499), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(501), - [sym_super] = ACTIONS(503), - [sym_crate] = ACTIONS(503), - [sym_metavariable] = ACTIONS(505), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [sym_identifier] = ACTIONS(1010), + [anon_sym_SEMI] = ACTIONS(1012), + [anon_sym_LPAREN] = ACTIONS(1012), + [anon_sym_RPAREN] = ACTIONS(1012), + [anon_sym_LBRACK] = ACTIONS(1012), + [anon_sym_RBRACK] = ACTIONS(1012), + [anon_sym_LBRACE] = ACTIONS(1012), + [anon_sym_RBRACE] = ACTIONS(1012), + [anon_sym_EQ_GT] = ACTIONS(1012), + [anon_sym_COLON] = ACTIONS(1010), + [anon_sym_DOLLAR] = ACTIONS(1010), + [anon_sym_PLUS] = ACTIONS(1010), + [anon_sym_STAR] = ACTIONS(1010), + [anon_sym_QMARK] = ACTIONS(1012), + [anon_sym_u8] = ACTIONS(1010), + [anon_sym_i8] = ACTIONS(1010), + [anon_sym_u16] = ACTIONS(1010), + [anon_sym_i16] = ACTIONS(1010), + [anon_sym_u32] = ACTIONS(1010), + [anon_sym_i32] = ACTIONS(1010), + [anon_sym_u64] = ACTIONS(1010), + [anon_sym_i64] = ACTIONS(1010), + [anon_sym_u128] = ACTIONS(1010), + [anon_sym_i128] = ACTIONS(1010), + [anon_sym_isize] = ACTIONS(1010), + [anon_sym_usize] = ACTIONS(1010), + [anon_sym_f32] = ACTIONS(1010), + [anon_sym_f64] = ACTIONS(1010), + [anon_sym_bool] = ACTIONS(1010), + [anon_sym_str] = ACTIONS(1010), + [anon_sym_char] = ACTIONS(1010), + [anon_sym_DASH] = ACTIONS(1010), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_PERCENT] = ACTIONS(1010), + [anon_sym_CARET] = ACTIONS(1010), + [anon_sym_BANG] = ACTIONS(1010), + [anon_sym_AMP] = ACTIONS(1010), + [anon_sym_PIPE] = ACTIONS(1010), + [anon_sym_AMP_AMP] = ACTIONS(1012), + [anon_sym_PIPE_PIPE] = ACTIONS(1012), + [anon_sym_LT_LT] = ACTIONS(1010), + [anon_sym_GT_GT] = ACTIONS(1010), + [anon_sym_PLUS_EQ] = ACTIONS(1012), + [anon_sym_DASH_EQ] = ACTIONS(1012), + [anon_sym_STAR_EQ] = ACTIONS(1012), + [anon_sym_SLASH_EQ] = ACTIONS(1012), + [anon_sym_PERCENT_EQ] = ACTIONS(1012), + [anon_sym_CARET_EQ] = ACTIONS(1012), + [anon_sym_AMP_EQ] = ACTIONS(1012), + [anon_sym_PIPE_EQ] = ACTIONS(1012), + [anon_sym_LT_LT_EQ] = ACTIONS(1012), + [anon_sym_GT_GT_EQ] = ACTIONS(1012), + [anon_sym_EQ] = ACTIONS(1010), + [anon_sym_EQ_EQ] = ACTIONS(1012), + [anon_sym_BANG_EQ] = ACTIONS(1012), + [anon_sym_GT] = ACTIONS(1010), + [anon_sym_LT] = ACTIONS(1010), + [anon_sym_GT_EQ] = ACTIONS(1012), + [anon_sym_LT_EQ] = ACTIONS(1012), + [anon_sym_AT] = ACTIONS(1012), + [anon_sym__] = ACTIONS(1010), + [anon_sym_DOT] = ACTIONS(1010), + [anon_sym_DOT_DOT] = ACTIONS(1010), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1012), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1012), + [anon_sym_COMMA] = ACTIONS(1012), + [anon_sym_COLON_COLON] = ACTIONS(1012), + [anon_sym_DASH_GT] = ACTIONS(1012), + [anon_sym_POUND] = ACTIONS(1012), + [anon_sym_SQUOTE] = ACTIONS(1010), + [anon_sym_as] = ACTIONS(1010), + [anon_sym_async] = ACTIONS(1010), + [anon_sym_await] = ACTIONS(1010), + [anon_sym_break] = ACTIONS(1010), + [anon_sym_const] = ACTIONS(1010), + [anon_sym_continue] = ACTIONS(1010), + [anon_sym_default] = ACTIONS(1010), + [anon_sym_enum] = ACTIONS(1010), + [anon_sym_fn] = ACTIONS(1010), + [anon_sym_for] = ACTIONS(1010), + [anon_sym_gen] = ACTIONS(1010), + [anon_sym_if] = ACTIONS(1010), + [anon_sym_impl] = ACTIONS(1010), + [anon_sym_let] = ACTIONS(1010), + [anon_sym_loop] = ACTIONS(1010), + [anon_sym_match] = ACTIONS(1010), + [anon_sym_mod] = ACTIONS(1010), + [anon_sym_pub] = ACTIONS(1010), + [anon_sym_return] = ACTIONS(1010), + [anon_sym_static] = ACTIONS(1010), + [anon_sym_struct] = ACTIONS(1010), + [anon_sym_trait] = ACTIONS(1010), + [anon_sym_type] = ACTIONS(1010), + [anon_sym_union] = ACTIONS(1010), + [anon_sym_unsafe] = ACTIONS(1010), + [anon_sym_use] = ACTIONS(1010), + [anon_sym_where] = ACTIONS(1010), + [anon_sym_while] = ACTIONS(1010), + [sym_mutable_specifier] = ACTIONS(1010), + [sym_integer_literal] = ACTIONS(1012), + [aux_sym_string_literal_token1] = ACTIONS(1012), + [sym_char_literal] = ACTIONS(1012), + [anon_sym_true] = ACTIONS(1010), + [anon_sym_false] = ACTIONS(1010), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1010), + [sym_super] = ACTIONS(1010), + [sym_crate] = ACTIONS(1010), + [sym_metavariable] = ACTIONS(1012), + [sym__raw_string_literal_start] = ACTIONS(1012), + [sym_float_literal] = ACTIONS(1012), }, [STATE(179)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3105), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1907), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1607), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_let_condition] = STATE(3091), - [sym__let_chain] = STATE(3103), - [sym__condition] = STATE(2819), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(254), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), [sym_line_comment] = STATE(179), [sym_block_comment] = STATE(179), - [sym_identifier] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(907), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(907), - [anon_sym_BANG] = ACTIONS(907), - [anon_sym_AMP] = ACTIONS(909), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(911), - [anon_sym_COLON_COLON] = ACTIONS(481), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_default] = ACTIONS(489), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(491), - [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(913), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(493), - [anon_sym_static] = ACTIONS(495), - [anon_sym_union] = ACTIONS(489), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(497), - [anon_sym_move] = ACTIONS(499), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(501), - [sym_super] = ACTIONS(503), - [sym_crate] = ACTIONS(503), - [sym_metavariable] = ACTIONS(505), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [sym_identifier] = ACTIONS(1014), + [anon_sym_SEMI] = ACTIONS(1016), + [anon_sym_LPAREN] = ACTIONS(1016), + [anon_sym_RPAREN] = ACTIONS(1016), + [anon_sym_LBRACK] = ACTIONS(1016), + [anon_sym_RBRACK] = ACTIONS(1016), + [anon_sym_LBRACE] = ACTIONS(1016), + [anon_sym_RBRACE] = ACTIONS(1016), + [anon_sym_EQ_GT] = ACTIONS(1016), + [anon_sym_COLON] = ACTIONS(1014), + [anon_sym_DOLLAR] = ACTIONS(1014), + [anon_sym_PLUS] = ACTIONS(1014), + [anon_sym_STAR] = ACTIONS(1014), + [anon_sym_QMARK] = ACTIONS(1016), + [anon_sym_u8] = ACTIONS(1014), + [anon_sym_i8] = ACTIONS(1014), + [anon_sym_u16] = ACTIONS(1014), + [anon_sym_i16] = ACTIONS(1014), + [anon_sym_u32] = ACTIONS(1014), + [anon_sym_i32] = ACTIONS(1014), + [anon_sym_u64] = ACTIONS(1014), + [anon_sym_i64] = ACTIONS(1014), + [anon_sym_u128] = ACTIONS(1014), + [anon_sym_i128] = ACTIONS(1014), + [anon_sym_isize] = ACTIONS(1014), + [anon_sym_usize] = ACTIONS(1014), + [anon_sym_f32] = ACTIONS(1014), + [anon_sym_f64] = ACTIONS(1014), + [anon_sym_bool] = ACTIONS(1014), + [anon_sym_str] = ACTIONS(1014), + [anon_sym_char] = ACTIONS(1014), + [anon_sym_DASH] = ACTIONS(1014), + [anon_sym_SLASH] = ACTIONS(1014), + [anon_sym_PERCENT] = ACTIONS(1014), + [anon_sym_CARET] = ACTIONS(1014), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1014), + [anon_sym_PIPE] = ACTIONS(1014), + [anon_sym_AMP_AMP] = ACTIONS(1016), + [anon_sym_PIPE_PIPE] = ACTIONS(1016), + [anon_sym_LT_LT] = ACTIONS(1014), + [anon_sym_GT_GT] = ACTIONS(1014), + [anon_sym_PLUS_EQ] = ACTIONS(1016), + [anon_sym_DASH_EQ] = ACTIONS(1016), + [anon_sym_STAR_EQ] = ACTIONS(1016), + [anon_sym_SLASH_EQ] = ACTIONS(1016), + [anon_sym_PERCENT_EQ] = ACTIONS(1016), + [anon_sym_CARET_EQ] = ACTIONS(1016), + [anon_sym_AMP_EQ] = ACTIONS(1016), + [anon_sym_PIPE_EQ] = ACTIONS(1016), + [anon_sym_LT_LT_EQ] = ACTIONS(1016), + [anon_sym_GT_GT_EQ] = ACTIONS(1016), + [anon_sym_EQ] = ACTIONS(1014), + [anon_sym_EQ_EQ] = ACTIONS(1016), + [anon_sym_BANG_EQ] = ACTIONS(1016), + [anon_sym_GT] = ACTIONS(1014), + [anon_sym_LT] = ACTIONS(1014), + [anon_sym_GT_EQ] = ACTIONS(1016), + [anon_sym_LT_EQ] = ACTIONS(1016), + [anon_sym_AT] = ACTIONS(1016), + [anon_sym__] = ACTIONS(1014), + [anon_sym_DOT] = ACTIONS(1014), + [anon_sym_DOT_DOT] = ACTIONS(1014), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1016), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1016), + [anon_sym_COMMA] = ACTIONS(1016), + [anon_sym_COLON_COLON] = ACTIONS(1016), + [anon_sym_DASH_GT] = ACTIONS(1016), + [anon_sym_POUND] = ACTIONS(1016), + [anon_sym_SQUOTE] = ACTIONS(1014), + [anon_sym_as] = ACTIONS(1014), + [anon_sym_async] = ACTIONS(1014), + [anon_sym_await] = ACTIONS(1014), + [anon_sym_break] = ACTIONS(1014), + [anon_sym_const] = ACTIONS(1014), + [anon_sym_continue] = ACTIONS(1014), + [anon_sym_default] = ACTIONS(1014), + [anon_sym_enum] = ACTIONS(1014), + [anon_sym_fn] = ACTIONS(1014), + [anon_sym_for] = ACTIONS(1014), + [anon_sym_gen] = ACTIONS(1014), + [anon_sym_if] = ACTIONS(1014), + [anon_sym_impl] = ACTIONS(1014), + [anon_sym_let] = ACTIONS(1014), + [anon_sym_loop] = ACTIONS(1014), + [anon_sym_match] = ACTIONS(1014), + [anon_sym_mod] = ACTIONS(1014), + [anon_sym_pub] = ACTIONS(1014), + [anon_sym_return] = ACTIONS(1014), + [anon_sym_static] = ACTIONS(1014), + [anon_sym_struct] = ACTIONS(1014), + [anon_sym_trait] = ACTIONS(1014), + [anon_sym_type] = ACTIONS(1014), + [anon_sym_union] = ACTIONS(1014), + [anon_sym_unsafe] = ACTIONS(1014), + [anon_sym_use] = ACTIONS(1014), + [anon_sym_where] = ACTIONS(1014), + [anon_sym_while] = ACTIONS(1014), + [sym_mutable_specifier] = ACTIONS(1014), + [sym_integer_literal] = ACTIONS(1016), + [aux_sym_string_literal_token1] = ACTIONS(1016), + [sym_char_literal] = ACTIONS(1016), + [anon_sym_true] = ACTIONS(1014), + [anon_sym_false] = ACTIONS(1014), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1014), + [sym_super] = ACTIONS(1014), + [sym_crate] = ACTIONS(1014), + [sym_metavariable] = ACTIONS(1016), + [sym__raw_string_literal_start] = ACTIONS(1016), + [sym_float_literal] = ACTIONS(1016), }, [STATE(180)] = { [sym_line_comment] = STATE(180), [sym_block_comment] = STATE(180), - [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(1013), - [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_metavariable] = ACTIONS(1015), - [sym__raw_string_literal_start] = ACTIONS(1015), - [sym_float_literal] = ACTIONS(1015), + [sym_identifier] = ACTIONS(1018), + [anon_sym_SEMI] = ACTIONS(1020), + [anon_sym_LPAREN] = ACTIONS(1020), + [anon_sym_RPAREN] = ACTIONS(1020), + [anon_sym_LBRACK] = ACTIONS(1020), + [anon_sym_RBRACK] = ACTIONS(1020), + [anon_sym_LBRACE] = ACTIONS(1020), + [anon_sym_RBRACE] = ACTIONS(1020), + [anon_sym_EQ_GT] = ACTIONS(1020), + [anon_sym_COLON] = ACTIONS(1018), + [anon_sym_DOLLAR] = ACTIONS(1018), + [anon_sym_PLUS] = ACTIONS(1018), + [anon_sym_STAR] = ACTIONS(1018), + [anon_sym_QMARK] = ACTIONS(1020), + [anon_sym_u8] = ACTIONS(1018), + [anon_sym_i8] = ACTIONS(1018), + [anon_sym_u16] = ACTIONS(1018), + [anon_sym_i16] = ACTIONS(1018), + [anon_sym_u32] = ACTIONS(1018), + [anon_sym_i32] = ACTIONS(1018), + [anon_sym_u64] = ACTIONS(1018), + [anon_sym_i64] = ACTIONS(1018), + [anon_sym_u128] = ACTIONS(1018), + [anon_sym_i128] = ACTIONS(1018), + [anon_sym_isize] = ACTIONS(1018), + [anon_sym_usize] = ACTIONS(1018), + [anon_sym_f32] = ACTIONS(1018), + [anon_sym_f64] = ACTIONS(1018), + [anon_sym_bool] = ACTIONS(1018), + [anon_sym_str] = ACTIONS(1018), + [anon_sym_char] = ACTIONS(1018), + [anon_sym_DASH] = ACTIONS(1018), + [anon_sym_SLASH] = ACTIONS(1018), + [anon_sym_PERCENT] = ACTIONS(1018), + [anon_sym_CARET] = ACTIONS(1018), + [anon_sym_BANG] = ACTIONS(1018), + [anon_sym_AMP] = ACTIONS(1018), + [anon_sym_PIPE] = ACTIONS(1018), + [anon_sym_AMP_AMP] = ACTIONS(1020), + [anon_sym_PIPE_PIPE] = ACTIONS(1020), + [anon_sym_LT_LT] = ACTIONS(1018), + [anon_sym_GT_GT] = ACTIONS(1018), + [anon_sym_PLUS_EQ] = ACTIONS(1020), + [anon_sym_DASH_EQ] = ACTIONS(1020), + [anon_sym_STAR_EQ] = ACTIONS(1020), + [anon_sym_SLASH_EQ] = ACTIONS(1020), + [anon_sym_PERCENT_EQ] = ACTIONS(1020), + [anon_sym_CARET_EQ] = ACTIONS(1020), + [anon_sym_AMP_EQ] = ACTIONS(1020), + [anon_sym_PIPE_EQ] = ACTIONS(1020), + [anon_sym_LT_LT_EQ] = ACTIONS(1020), + [anon_sym_GT_GT_EQ] = ACTIONS(1020), + [anon_sym_EQ] = ACTIONS(1018), + [anon_sym_EQ_EQ] = ACTIONS(1020), + [anon_sym_BANG_EQ] = ACTIONS(1020), + [anon_sym_GT] = ACTIONS(1018), + [anon_sym_LT] = ACTIONS(1018), + [anon_sym_GT_EQ] = ACTIONS(1020), + [anon_sym_LT_EQ] = ACTIONS(1020), + [anon_sym_AT] = ACTIONS(1020), + [anon_sym__] = ACTIONS(1018), + [anon_sym_DOT] = ACTIONS(1018), + [anon_sym_DOT_DOT] = ACTIONS(1018), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1020), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1020), + [anon_sym_COMMA] = ACTIONS(1020), + [anon_sym_COLON_COLON] = ACTIONS(1020), + [anon_sym_DASH_GT] = ACTIONS(1020), + [anon_sym_POUND] = ACTIONS(1020), + [anon_sym_SQUOTE] = ACTIONS(1018), + [anon_sym_as] = ACTIONS(1018), + [anon_sym_async] = ACTIONS(1018), + [anon_sym_await] = ACTIONS(1018), + [anon_sym_break] = ACTIONS(1018), + [anon_sym_const] = ACTIONS(1018), + [anon_sym_continue] = ACTIONS(1018), + [anon_sym_default] = ACTIONS(1018), + [anon_sym_enum] = ACTIONS(1018), + [anon_sym_fn] = ACTIONS(1018), + [anon_sym_for] = ACTIONS(1018), + [anon_sym_gen] = ACTIONS(1018), + [anon_sym_if] = ACTIONS(1018), + [anon_sym_impl] = ACTIONS(1018), + [anon_sym_let] = ACTIONS(1018), + [anon_sym_loop] = ACTIONS(1018), + [anon_sym_match] = ACTIONS(1018), + [anon_sym_mod] = ACTIONS(1018), + [anon_sym_pub] = ACTIONS(1018), + [anon_sym_return] = ACTIONS(1018), + [anon_sym_static] = ACTIONS(1018), + [anon_sym_struct] = ACTIONS(1018), + [anon_sym_trait] = ACTIONS(1018), + [anon_sym_type] = ACTIONS(1018), + [anon_sym_union] = ACTIONS(1018), + [anon_sym_unsafe] = ACTIONS(1018), + [anon_sym_use] = ACTIONS(1018), + [anon_sym_where] = ACTIONS(1018), + [anon_sym_while] = ACTIONS(1018), + [sym_mutable_specifier] = ACTIONS(1018), + [sym_integer_literal] = ACTIONS(1020), + [aux_sym_string_literal_token1] = ACTIONS(1020), + [sym_char_literal] = ACTIONS(1020), + [anon_sym_true] = ACTIONS(1018), + [anon_sym_false] = ACTIONS(1018), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1018), + [sym_super] = ACTIONS(1018), + [sym_crate] = ACTIONS(1018), + [sym_metavariable] = ACTIONS(1020), + [sym__raw_string_literal_start] = ACTIONS(1020), + [sym_float_literal] = ACTIONS(1020), }, [STATE(181)] = { - [sym_attribute_item] = STATE(1059), - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1673), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym_attribute_item] = STATE(1068), + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3031), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1775), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1491), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), [sym_line_comment] = STATE(181), [sym_block_comment] = STATE(181), - [aux_sym_enum_variant_list_repeat1] = STATE(211), - [sym_identifier] = ACTIONS(339), + [aux_sym_enum_variant_list_repeat1] = STATE(205), + [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(1022), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(1017), - [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), @@ -38158,97 +38295,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(752), + [anon_sym_POUND] = ACTIONS(771), [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_attribute_item] = STATE(1059), - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1673), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym_attribute_item] = STATE(1068), + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3031), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1670), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1491), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), [sym_line_comment] = STATE(182), [sym_block_comment] = STATE(182), [aux_sym_enum_variant_list_repeat1] = STATE(211), - [sym_identifier] = ACTIONS(339), + [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1019), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_RBRACK] = ACTIONS(1024), + [anon_sym_LBRACE] = ACTIONS(348), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -38274,213 +38411,793 @@ 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(752), + [anon_sym_POUND] = ACTIONS(771), [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(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), + [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_attribute_item] = STATE(1059), - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1789), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), [sym_line_comment] = STATE(184), [sym_block_comment] = STATE(184), - [aux_sym_enum_variant_list_repeat1] = STATE(201), - [sym_identifier] = ACTIONS(339), + [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_line_comment] = STATE(185), + [sym_block_comment] = STATE(185), + [sym_identifier] = ACTIONS(1034), + [anon_sym_SEMI] = ACTIONS(1036), + [anon_sym_LPAREN] = ACTIONS(1036), + [anon_sym_RPAREN] = ACTIONS(1036), + [anon_sym_LBRACK] = ACTIONS(1036), + [anon_sym_RBRACK] = ACTIONS(1036), + [anon_sym_LBRACE] = ACTIONS(1036), + [anon_sym_RBRACE] = ACTIONS(1036), + [anon_sym_EQ_GT] = ACTIONS(1036), + [anon_sym_COLON] = ACTIONS(1034), + [anon_sym_DOLLAR] = ACTIONS(1034), + [anon_sym_PLUS] = ACTIONS(1034), + [anon_sym_STAR] = ACTIONS(1034), + [anon_sym_QMARK] = ACTIONS(1036), + [anon_sym_u8] = ACTIONS(1034), + [anon_sym_i8] = ACTIONS(1034), + [anon_sym_u16] = ACTIONS(1034), + [anon_sym_i16] = ACTIONS(1034), + [anon_sym_u32] = ACTIONS(1034), + [anon_sym_i32] = ACTIONS(1034), + [anon_sym_u64] = ACTIONS(1034), + [anon_sym_i64] = ACTIONS(1034), + [anon_sym_u128] = ACTIONS(1034), + [anon_sym_i128] = ACTIONS(1034), + [anon_sym_isize] = ACTIONS(1034), + [anon_sym_usize] = ACTIONS(1034), + [anon_sym_f32] = ACTIONS(1034), + [anon_sym_f64] = ACTIONS(1034), + [anon_sym_bool] = ACTIONS(1034), + [anon_sym_str] = ACTIONS(1034), + [anon_sym_char] = ACTIONS(1034), + [anon_sym_DASH] = ACTIONS(1034), + [anon_sym_SLASH] = ACTIONS(1034), + [anon_sym_PERCENT] = ACTIONS(1034), + [anon_sym_CARET] = ACTIONS(1034), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1034), + [anon_sym_PIPE] = ACTIONS(1034), + [anon_sym_AMP_AMP] = ACTIONS(1036), + [anon_sym_PIPE_PIPE] = ACTIONS(1036), + [anon_sym_LT_LT] = ACTIONS(1034), + [anon_sym_GT_GT] = ACTIONS(1034), + [anon_sym_PLUS_EQ] = ACTIONS(1036), + [anon_sym_DASH_EQ] = ACTIONS(1036), + [anon_sym_STAR_EQ] = ACTIONS(1036), + [anon_sym_SLASH_EQ] = ACTIONS(1036), + [anon_sym_PERCENT_EQ] = ACTIONS(1036), + [anon_sym_CARET_EQ] = ACTIONS(1036), + [anon_sym_AMP_EQ] = ACTIONS(1036), + [anon_sym_PIPE_EQ] = ACTIONS(1036), + [anon_sym_LT_LT_EQ] = ACTIONS(1036), + [anon_sym_GT_GT_EQ] = ACTIONS(1036), + [anon_sym_EQ] = ACTIONS(1034), + [anon_sym_EQ_EQ] = ACTIONS(1036), + [anon_sym_BANG_EQ] = ACTIONS(1036), + [anon_sym_GT] = ACTIONS(1034), + [anon_sym_LT] = ACTIONS(1034), + [anon_sym_GT_EQ] = ACTIONS(1036), + [anon_sym_LT_EQ] = ACTIONS(1036), + [anon_sym_AT] = ACTIONS(1036), + [anon_sym__] = ACTIONS(1034), + [anon_sym_DOT] = ACTIONS(1034), + [anon_sym_DOT_DOT] = ACTIONS(1034), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1036), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1036), + [anon_sym_COMMA] = ACTIONS(1036), + [anon_sym_COLON_COLON] = ACTIONS(1036), + [anon_sym_DASH_GT] = ACTIONS(1036), + [anon_sym_POUND] = ACTIONS(1036), + [anon_sym_SQUOTE] = ACTIONS(1034), + [anon_sym_as] = ACTIONS(1034), + [anon_sym_async] = ACTIONS(1034), + [anon_sym_await] = ACTIONS(1034), + [anon_sym_break] = ACTIONS(1034), + [anon_sym_const] = ACTIONS(1034), + [anon_sym_continue] = ACTIONS(1034), + [anon_sym_default] = ACTIONS(1034), + [anon_sym_enum] = ACTIONS(1034), + [anon_sym_fn] = ACTIONS(1034), + [anon_sym_for] = ACTIONS(1034), + [anon_sym_gen] = ACTIONS(1034), + [anon_sym_if] = ACTIONS(1034), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_let] = ACTIONS(1034), + [anon_sym_loop] = ACTIONS(1034), + [anon_sym_match] = ACTIONS(1034), + [anon_sym_mod] = ACTIONS(1034), + [anon_sym_pub] = ACTIONS(1034), + [anon_sym_return] = ACTIONS(1034), + [anon_sym_static] = ACTIONS(1034), + [anon_sym_struct] = ACTIONS(1034), + [anon_sym_trait] = ACTIONS(1034), + [anon_sym_type] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1034), + [anon_sym_unsafe] = ACTIONS(1034), + [anon_sym_use] = ACTIONS(1034), + [anon_sym_where] = ACTIONS(1034), + [anon_sym_while] = ACTIONS(1034), + [sym_mutable_specifier] = ACTIONS(1034), + [sym_integer_literal] = ACTIONS(1036), + [aux_sym_string_literal_token1] = ACTIONS(1036), + [sym_char_literal] = ACTIONS(1036), + [anon_sym_true] = ACTIONS(1034), + [anon_sym_false] = ACTIONS(1034), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1034), + [sym_super] = ACTIONS(1034), + [sym_crate] = ACTIONS(1034), + [sym_metavariable] = ACTIONS(1036), + [sym__raw_string_literal_start] = ACTIONS(1036), + [sym_float_literal] = ACTIONS(1036), + }, + [STATE(186)] = { + [sym_line_comment] = STATE(186), + [sym_block_comment] = STATE(186), + [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(187)] = { + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3114), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1749), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1631), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_let_condition] = STATE(3150), + [sym__let_chain] = STATE(3165), + [sym__condition] = STATE(2660), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(244), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), + [sym_line_comment] = STATE(187), + [sym_block_comment] = STATE(187), + [sym_identifier] = ACTIONS(470), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1025), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_STAR] = ACTIONS(910), + [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(910), + [anon_sym_BANG] = ACTIONS(910), + [anon_sym_AMP] = ACTIONS(912), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(914), + [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(512), + [anon_sym_break] = ACTIONS(514), + [anon_sym_const] = ACTIONS(358), + [anon_sym_continue] = ACTIONS(516), + [anon_sym_default] = ACTIONS(482), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(518), + [anon_sym_if] = ACTIONS(366), + [anon_sym_let] = ACTIONS(916), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(520), + [anon_sym_static] = ACTIONS(522), + [anon_sym_union] = ACTIONS(482), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_yield] = ACTIONS(524), + [anon_sym_move] = ACTIONS(526), + [anon_sym_try] = ACTIONS(378), + [sym_integer_literal] = ACTIONS(99), + [aux_sym_string_literal_token1] = ACTIONS(101), + [sym_char_literal] = ACTIONS(99), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(494), + [sym_super] = ACTIONS(496), + [sym_crate] = ACTIONS(496), + [sym_metavariable] = ACTIONS(498), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), + }, + [STATE(188)] = { + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3114), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1749), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1631), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_let_condition] = STATE(3150), + [sym__let_chain] = STATE(3165), + [sym__condition] = STATE(2661), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(244), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), + [sym_line_comment] = STATE(188), + [sym_block_comment] = STATE(188), + [sym_identifier] = ACTIONS(470), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_STAR] = ACTIONS(910), + [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(910), + [anon_sym_BANG] = ACTIONS(910), + [anon_sym_AMP] = ACTIONS(912), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(914), + [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(512), + [anon_sym_break] = ACTIONS(514), + [anon_sym_const] = ACTIONS(358), + [anon_sym_continue] = ACTIONS(516), + [anon_sym_default] = ACTIONS(482), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(518), + [anon_sym_if] = ACTIONS(366), + [anon_sym_let] = ACTIONS(916), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(520), + [anon_sym_static] = ACTIONS(522), + [anon_sym_union] = ACTIONS(482), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_yield] = ACTIONS(524), + [anon_sym_move] = ACTIONS(526), + [anon_sym_try] = ACTIONS(378), + [sym_integer_literal] = ACTIONS(99), + [aux_sym_string_literal_token1] = ACTIONS(101), + [sym_char_literal] = ACTIONS(99), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(494), + [sym_super] = ACTIONS(496), + [sym_crate] = ACTIONS(496), + [sym_metavariable] = ACTIONS(498), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), + }, + [STATE(189)] = { + [sym_attribute_item] = STATE(1068), + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3031), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1670), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1491), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), + [sym_line_comment] = STATE(189), + [sym_block_comment] = STATE(189), + [aux_sym_enum_variant_list_repeat1] = STATE(211), + [sym_identifier] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(1042), + [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), @@ -38506,1719 +39223,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(752), + [anon_sym_POUND] = ACTIONS(771), [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(185)] = { - [sym_line_comment] = STATE(185), - [sym_block_comment] = STATE(185), - [sym_identifier] = ACTIONS(1027), - [anon_sym_SEMI] = ACTIONS(1029), - [anon_sym_LPAREN] = ACTIONS(1029), - [anon_sym_RPAREN] = ACTIONS(1029), - [anon_sym_LBRACK] = ACTIONS(1029), - [anon_sym_RBRACK] = ACTIONS(1029), - [anon_sym_LBRACE] = ACTIONS(1029), - [anon_sym_RBRACE] = ACTIONS(1029), - [anon_sym_EQ_GT] = ACTIONS(1029), - [anon_sym_COLON] = ACTIONS(1027), - [anon_sym_DOLLAR] = ACTIONS(1027), - [anon_sym_PLUS] = ACTIONS(1027), - [anon_sym_STAR] = ACTIONS(1027), - [anon_sym_QMARK] = ACTIONS(1029), - [anon_sym_u8] = ACTIONS(1027), - [anon_sym_i8] = ACTIONS(1027), - [anon_sym_u16] = ACTIONS(1027), - [anon_sym_i16] = ACTIONS(1027), - [anon_sym_u32] = ACTIONS(1027), - [anon_sym_i32] = ACTIONS(1027), - [anon_sym_u64] = ACTIONS(1027), - [anon_sym_i64] = ACTIONS(1027), - [anon_sym_u128] = ACTIONS(1027), - [anon_sym_i128] = ACTIONS(1027), - [anon_sym_isize] = ACTIONS(1027), - [anon_sym_usize] = ACTIONS(1027), - [anon_sym_f32] = ACTIONS(1027), - [anon_sym_f64] = ACTIONS(1027), - [anon_sym_bool] = ACTIONS(1027), - [anon_sym_str] = ACTIONS(1027), - [anon_sym_char] = ACTIONS(1027), - [anon_sym_DASH] = ACTIONS(1027), - [anon_sym_SLASH] = ACTIONS(1027), - [anon_sym_PERCENT] = ACTIONS(1027), - [anon_sym_CARET] = ACTIONS(1027), - [anon_sym_BANG] = ACTIONS(1027), - [anon_sym_AMP] = ACTIONS(1027), - [anon_sym_PIPE] = ACTIONS(1027), - [anon_sym_AMP_AMP] = ACTIONS(1029), - [anon_sym_PIPE_PIPE] = ACTIONS(1029), - [anon_sym_LT_LT] = ACTIONS(1027), - [anon_sym_GT_GT] = ACTIONS(1027), - [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(1027), - [anon_sym_EQ_EQ] = ACTIONS(1029), - [anon_sym_BANG_EQ] = ACTIONS(1029), - [anon_sym_GT] = ACTIONS(1027), - [anon_sym_LT] = ACTIONS(1027), - [anon_sym_GT_EQ] = ACTIONS(1029), - [anon_sym_LT_EQ] = ACTIONS(1029), - [anon_sym_AT] = ACTIONS(1029), - [anon_sym__] = ACTIONS(1027), - [anon_sym_DOT] = ACTIONS(1027), - [anon_sym_DOT_DOT] = ACTIONS(1027), - [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(1027), - [anon_sym_as] = ACTIONS(1027), - [anon_sym_async] = ACTIONS(1027), - [anon_sym_await] = ACTIONS(1027), - [anon_sym_break] = ACTIONS(1027), - [anon_sym_const] = ACTIONS(1027), - [anon_sym_continue] = ACTIONS(1027), - [anon_sym_default] = ACTIONS(1027), - [anon_sym_enum] = ACTIONS(1027), - [anon_sym_fn] = ACTIONS(1027), - [anon_sym_for] = ACTIONS(1027), - [anon_sym_gen] = ACTIONS(1027), - [anon_sym_if] = ACTIONS(1027), - [anon_sym_impl] = ACTIONS(1027), - [anon_sym_let] = ACTIONS(1027), - [anon_sym_loop] = ACTIONS(1027), - [anon_sym_match] = ACTIONS(1027), - [anon_sym_mod] = ACTIONS(1027), - [anon_sym_pub] = ACTIONS(1027), - [anon_sym_return] = ACTIONS(1027), - [anon_sym_static] = ACTIONS(1027), - [anon_sym_struct] = ACTIONS(1027), - [anon_sym_trait] = ACTIONS(1027), - [anon_sym_type] = ACTIONS(1027), - [anon_sym_union] = ACTIONS(1027), - [anon_sym_unsafe] = ACTIONS(1027), - [anon_sym_use] = ACTIONS(1027), - [anon_sym_where] = ACTIONS(1027), - [anon_sym_while] = ACTIONS(1027), - [sym_mutable_specifier] = ACTIONS(1027), - [sym_integer_literal] = ACTIONS(1029), - [aux_sym_string_literal_token1] = ACTIONS(1029), - [sym_char_literal] = ACTIONS(1029), - [anon_sym_true] = ACTIONS(1027), - [anon_sym_false] = ACTIONS(1027), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1027), - [sym_super] = ACTIONS(1027), - [sym_crate] = ACTIONS(1027), - [sym_metavariable] = ACTIONS(1029), - [sym__raw_string_literal_start] = ACTIONS(1029), - [sym_float_literal] = ACTIONS(1029), - }, - [STATE(186)] = { - [sym_line_comment] = STATE(186), - [sym_block_comment] = STATE(186), - [sym_identifier] = ACTIONS(1031), - [anon_sym_SEMI] = ACTIONS(1033), - [anon_sym_LPAREN] = ACTIONS(1033), - [anon_sym_RPAREN] = ACTIONS(1033), - [anon_sym_LBRACK] = ACTIONS(1033), - [anon_sym_RBRACK] = ACTIONS(1033), - [anon_sym_LBRACE] = ACTIONS(1033), - [anon_sym_RBRACE] = ACTIONS(1033), - [anon_sym_EQ_GT] = ACTIONS(1033), - [anon_sym_COLON] = ACTIONS(1031), - [anon_sym_DOLLAR] = ACTIONS(1031), - [anon_sym_PLUS] = ACTIONS(1031), - [anon_sym_STAR] = ACTIONS(1031), - [anon_sym_QMARK] = ACTIONS(1033), - [anon_sym_u8] = ACTIONS(1031), - [anon_sym_i8] = ACTIONS(1031), - [anon_sym_u16] = ACTIONS(1031), - [anon_sym_i16] = ACTIONS(1031), - [anon_sym_u32] = ACTIONS(1031), - [anon_sym_i32] = ACTIONS(1031), - [anon_sym_u64] = ACTIONS(1031), - [anon_sym_i64] = ACTIONS(1031), - [anon_sym_u128] = ACTIONS(1031), - [anon_sym_i128] = ACTIONS(1031), - [anon_sym_isize] = ACTIONS(1031), - [anon_sym_usize] = ACTIONS(1031), - [anon_sym_f32] = ACTIONS(1031), - [anon_sym_f64] = ACTIONS(1031), - [anon_sym_bool] = ACTIONS(1031), - [anon_sym_str] = ACTIONS(1031), - [anon_sym_char] = ACTIONS(1031), - [anon_sym_DASH] = ACTIONS(1031), - [anon_sym_SLASH] = ACTIONS(1031), - [anon_sym_PERCENT] = ACTIONS(1031), - [anon_sym_CARET] = ACTIONS(1031), - [anon_sym_BANG] = ACTIONS(1031), - [anon_sym_AMP] = ACTIONS(1031), - [anon_sym_PIPE] = ACTIONS(1031), - [anon_sym_AMP_AMP] = ACTIONS(1033), - [anon_sym_PIPE_PIPE] = ACTIONS(1033), - [anon_sym_LT_LT] = ACTIONS(1031), - [anon_sym_GT_GT] = ACTIONS(1031), - [anon_sym_PLUS_EQ] = ACTIONS(1033), - [anon_sym_DASH_EQ] = ACTIONS(1033), - [anon_sym_STAR_EQ] = ACTIONS(1033), - [anon_sym_SLASH_EQ] = ACTIONS(1033), - [anon_sym_PERCENT_EQ] = ACTIONS(1033), - [anon_sym_CARET_EQ] = ACTIONS(1033), - [anon_sym_AMP_EQ] = ACTIONS(1033), - [anon_sym_PIPE_EQ] = ACTIONS(1033), - [anon_sym_LT_LT_EQ] = ACTIONS(1033), - [anon_sym_GT_GT_EQ] = ACTIONS(1033), - [anon_sym_EQ] = ACTIONS(1031), - [anon_sym_EQ_EQ] = ACTIONS(1033), - [anon_sym_BANG_EQ] = ACTIONS(1033), - [anon_sym_GT] = ACTIONS(1031), - [anon_sym_LT] = ACTIONS(1031), - [anon_sym_GT_EQ] = ACTIONS(1033), - [anon_sym_LT_EQ] = ACTIONS(1033), - [anon_sym_AT] = ACTIONS(1033), - [anon_sym__] = ACTIONS(1031), - [anon_sym_DOT] = ACTIONS(1031), - [anon_sym_DOT_DOT] = ACTIONS(1031), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1033), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1033), - [anon_sym_COMMA] = ACTIONS(1033), - [anon_sym_COLON_COLON] = ACTIONS(1033), - [anon_sym_DASH_GT] = ACTIONS(1033), - [anon_sym_POUND] = ACTIONS(1033), - [anon_sym_SQUOTE] = ACTIONS(1031), - [anon_sym_as] = ACTIONS(1031), - [anon_sym_async] = ACTIONS(1031), - [anon_sym_await] = ACTIONS(1031), - [anon_sym_break] = ACTIONS(1031), - [anon_sym_const] = ACTIONS(1031), - [anon_sym_continue] = ACTIONS(1031), - [anon_sym_default] = ACTIONS(1031), - [anon_sym_enum] = ACTIONS(1031), - [anon_sym_fn] = ACTIONS(1031), - [anon_sym_for] = ACTIONS(1031), - [anon_sym_gen] = ACTIONS(1031), - [anon_sym_if] = ACTIONS(1031), - [anon_sym_impl] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(1031), - [anon_sym_loop] = ACTIONS(1031), - [anon_sym_match] = ACTIONS(1031), - [anon_sym_mod] = ACTIONS(1031), - [anon_sym_pub] = ACTIONS(1031), - [anon_sym_return] = ACTIONS(1031), - [anon_sym_static] = ACTIONS(1031), - [anon_sym_struct] = ACTIONS(1031), - [anon_sym_trait] = ACTIONS(1031), - [anon_sym_type] = ACTIONS(1031), - [anon_sym_union] = ACTIONS(1031), - [anon_sym_unsafe] = ACTIONS(1031), - [anon_sym_use] = ACTIONS(1031), - [anon_sym_where] = ACTIONS(1031), - [anon_sym_while] = ACTIONS(1031), - [sym_mutable_specifier] = ACTIONS(1031), - [sym_integer_literal] = ACTIONS(1033), - [aux_sym_string_literal_token1] = ACTIONS(1033), - [sym_char_literal] = ACTIONS(1033), - [anon_sym_true] = ACTIONS(1031), - [anon_sym_false] = ACTIONS(1031), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1031), - [sym_super] = ACTIONS(1031), - [sym_crate] = ACTIONS(1031), - [sym_metavariable] = ACTIONS(1033), - [sym__raw_string_literal_start] = ACTIONS(1033), - [sym_float_literal] = ACTIONS(1033), - }, - [STATE(187)] = { - [sym_line_comment] = STATE(187), - [sym_block_comment] = STATE(187), - [sym_identifier] = ACTIONS(901), - [anon_sym_SEMI] = ACTIONS(903), - [anon_sym_LPAREN] = ACTIONS(903), - [anon_sym_RPAREN] = ACTIONS(903), - [anon_sym_LBRACK] = ACTIONS(903), - [anon_sym_RBRACK] = ACTIONS(903), - [anon_sym_LBRACE] = ACTIONS(903), - [anon_sym_RBRACE] = ACTIONS(903), - [anon_sym_EQ_GT] = ACTIONS(903), - [anon_sym_COLON] = ACTIONS(901), - [anon_sym_DOLLAR] = ACTIONS(901), - [anon_sym_PLUS] = ACTIONS(901), - [anon_sym_STAR] = ACTIONS(901), - [anon_sym_QMARK] = ACTIONS(903), - [anon_sym_u8] = ACTIONS(901), - [anon_sym_i8] = ACTIONS(901), - [anon_sym_u16] = ACTIONS(901), - [anon_sym_i16] = ACTIONS(901), - [anon_sym_u32] = ACTIONS(901), - [anon_sym_i32] = ACTIONS(901), - [anon_sym_u64] = ACTIONS(901), - [anon_sym_i64] = ACTIONS(901), - [anon_sym_u128] = ACTIONS(901), - [anon_sym_i128] = ACTIONS(901), - [anon_sym_isize] = ACTIONS(901), - [anon_sym_usize] = ACTIONS(901), - [anon_sym_f32] = ACTIONS(901), - [anon_sym_f64] = ACTIONS(901), - [anon_sym_bool] = ACTIONS(901), - [anon_sym_str] = ACTIONS(901), - [anon_sym_char] = ACTIONS(901), - [anon_sym_DASH] = ACTIONS(901), - [anon_sym_SLASH] = ACTIONS(901), - [anon_sym_PERCENT] = ACTIONS(901), - [anon_sym_CARET] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(901), - [anon_sym_AMP] = ACTIONS(901), - [anon_sym_PIPE] = ACTIONS(901), - [anon_sym_AMP_AMP] = ACTIONS(903), - [anon_sym_PIPE_PIPE] = ACTIONS(903), - [anon_sym_LT_LT] = ACTIONS(901), - [anon_sym_GT_GT] = ACTIONS(901), - [anon_sym_PLUS_EQ] = ACTIONS(903), - [anon_sym_DASH_EQ] = ACTIONS(903), - [anon_sym_STAR_EQ] = ACTIONS(903), - [anon_sym_SLASH_EQ] = ACTIONS(903), - [anon_sym_PERCENT_EQ] = ACTIONS(903), - [anon_sym_CARET_EQ] = ACTIONS(903), - [anon_sym_AMP_EQ] = ACTIONS(903), - [anon_sym_PIPE_EQ] = ACTIONS(903), - [anon_sym_LT_LT_EQ] = ACTIONS(903), - [anon_sym_GT_GT_EQ] = ACTIONS(903), - [anon_sym_EQ] = ACTIONS(901), - [anon_sym_EQ_EQ] = ACTIONS(903), - [anon_sym_BANG_EQ] = ACTIONS(903), - [anon_sym_GT] = ACTIONS(901), - [anon_sym_LT] = ACTIONS(901), - [anon_sym_GT_EQ] = ACTIONS(903), - [anon_sym_LT_EQ] = ACTIONS(903), - [anon_sym_AT] = ACTIONS(903), - [anon_sym__] = ACTIONS(901), - [anon_sym_DOT] = ACTIONS(901), - [anon_sym_DOT_DOT] = ACTIONS(901), - [anon_sym_DOT_DOT_DOT] = ACTIONS(903), - [anon_sym_DOT_DOT_EQ] = ACTIONS(903), - [anon_sym_COMMA] = ACTIONS(903), - [anon_sym_COLON_COLON] = ACTIONS(903), - [anon_sym_DASH_GT] = ACTIONS(903), - [anon_sym_POUND] = ACTIONS(903), - [anon_sym_SQUOTE] = ACTIONS(901), - [anon_sym_as] = ACTIONS(901), - [anon_sym_async] = ACTIONS(901), - [anon_sym_await] = ACTIONS(901), - [anon_sym_break] = ACTIONS(901), - [anon_sym_const] = ACTIONS(901), - [anon_sym_continue] = ACTIONS(901), - [anon_sym_default] = ACTIONS(901), - [anon_sym_enum] = ACTIONS(901), - [anon_sym_fn] = ACTIONS(901), - [anon_sym_for] = ACTIONS(901), - [anon_sym_gen] = ACTIONS(901), - [anon_sym_if] = ACTIONS(901), - [anon_sym_impl] = ACTIONS(901), - [anon_sym_let] = ACTIONS(901), - [anon_sym_loop] = ACTIONS(901), - [anon_sym_match] = ACTIONS(901), - [anon_sym_mod] = ACTIONS(901), - [anon_sym_pub] = ACTIONS(901), - [anon_sym_return] = ACTIONS(901), - [anon_sym_static] = ACTIONS(901), - [anon_sym_struct] = ACTIONS(901), - [anon_sym_trait] = ACTIONS(901), - [anon_sym_type] = ACTIONS(901), - [anon_sym_union] = ACTIONS(901), - [anon_sym_unsafe] = ACTIONS(901), - [anon_sym_use] = ACTIONS(901), - [anon_sym_where] = ACTIONS(901), - [anon_sym_while] = ACTIONS(901), - [sym_mutable_specifier] = ACTIONS(901), - [sym_integer_literal] = ACTIONS(903), - [aux_sym_string_literal_token1] = ACTIONS(903), - [sym_char_literal] = ACTIONS(903), - [anon_sym_true] = ACTIONS(901), - [anon_sym_false] = ACTIONS(901), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(901), - [sym_super] = ACTIONS(901), - [sym_crate] = ACTIONS(901), - [sym_metavariable] = ACTIONS(903), - [sym__raw_string_literal_start] = ACTIONS(903), - [sym_float_literal] = ACTIONS(903), - }, - [STATE(188)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3105), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1907), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1607), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_let_condition] = STATE(3091), - [sym__let_chain] = STATE(3103), - [sym__condition] = STATE(2855), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(254), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(188), - [sym_block_comment] = STATE(188), - [sym_identifier] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(907), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(907), - [anon_sym_BANG] = ACTIONS(907), - [anon_sym_AMP] = ACTIONS(909), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(911), - [anon_sym_COLON_COLON] = ACTIONS(481), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_default] = ACTIONS(489), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(491), - [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(913), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(493), - [anon_sym_static] = ACTIONS(495), - [anon_sym_union] = ACTIONS(489), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(497), - [anon_sym_move] = ACTIONS(499), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(501), - [sym_super] = ACTIONS(503), - [sym_crate] = ACTIONS(503), - [sym_metavariable] = ACTIONS(505), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [STATE(189)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3105), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1907), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1607), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_let_condition] = STATE(3091), - [sym__let_chain] = STATE(3103), - [sym__condition] = STATE(2869), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(254), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(189), - [sym_block_comment] = STATE(189), - [sym_identifier] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(907), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(907), - [anon_sym_BANG] = ACTIONS(907), - [anon_sym_AMP] = ACTIONS(909), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(911), - [anon_sym_COLON_COLON] = ACTIONS(481), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_default] = ACTIONS(489), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(491), - [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(913), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(493), - [anon_sym_static] = ACTIONS(495), - [anon_sym_union] = ACTIONS(489), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(497), - [anon_sym_move] = ACTIONS(499), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(501), - [sym_super] = ACTIONS(503), - [sym_crate] = ACTIONS(503), - [sym_metavariable] = ACTIONS(505), - [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(190)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3105), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1907), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1607), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_let_condition] = STATE(3091), - [sym__let_chain] = STATE(3103), - [sym__condition] = STATE(2754), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(254), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3114), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1749), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1631), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_let_condition] = STATE(3150), + [sym__let_chain] = STATE(3165), + [sym__condition] = STATE(2708), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(244), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), [sym_line_comment] = STATE(190), [sym_block_comment] = STATE(190), - [sym_identifier] = ACTIONS(475), + [sym_identifier] = ACTIONS(470), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(907), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(907), - [anon_sym_BANG] = ACTIONS(907), - [anon_sym_AMP] = ACTIONS(909), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_STAR] = ACTIONS(910), + [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(910), + [anon_sym_BANG] = ACTIONS(910), + [anon_sym_AMP] = ACTIONS(912), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(911), - [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(914), + [anon_sym_COLON_COLON] = ACTIONS(476), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_default] = ACTIONS(489), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(491), - [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(913), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(493), - [anon_sym_static] = ACTIONS(495), - [anon_sym_union] = ACTIONS(489), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(497), - [anon_sym_move] = ACTIONS(499), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(501), - [sym_super] = ACTIONS(503), - [sym_crate] = ACTIONS(503), - [sym_metavariable] = ACTIONS(505), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_async] = ACTIONS(512), + [anon_sym_break] = ACTIONS(514), + [anon_sym_const] = ACTIONS(358), + [anon_sym_continue] = ACTIONS(516), + [anon_sym_default] = ACTIONS(482), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(518), + [anon_sym_if] = ACTIONS(366), + [anon_sym_let] = ACTIONS(916), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(520), + [anon_sym_static] = ACTIONS(522), + [anon_sym_union] = ACTIONS(482), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_yield] = ACTIONS(524), + [anon_sym_move] = ACTIONS(526), + [anon_sym_try] = ACTIONS(378), + [sym_integer_literal] = ACTIONS(99), + [aux_sym_string_literal_token1] = ACTIONS(101), + [sym_char_literal] = ACTIONS(99), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(494), + [sym_super] = ACTIONS(496), + [sym_crate] = ACTIONS(496), + [sym_metavariable] = ACTIONS(498), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), }, [STATE(191)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3105), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1907), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1607), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_let_condition] = STATE(3091), - [sym__let_chain] = STATE(3103), - [sym__condition] = STATE(2703), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(254), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3114), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1749), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1631), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_let_condition] = STATE(3150), + [sym__let_chain] = STATE(3165), + [sym__condition] = STATE(2761), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(244), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), [sym_line_comment] = STATE(191), [sym_block_comment] = STATE(191), - [sym_identifier] = ACTIONS(475), + [sym_identifier] = ACTIONS(470), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(907), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(907), - [anon_sym_BANG] = ACTIONS(907), - [anon_sym_AMP] = ACTIONS(909), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_STAR] = ACTIONS(910), + [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(910), + [anon_sym_BANG] = ACTIONS(910), + [anon_sym_AMP] = ACTIONS(912), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(911), - [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(914), + [anon_sym_COLON_COLON] = ACTIONS(476), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_default] = ACTIONS(489), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(491), - [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(913), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(493), - [anon_sym_static] = ACTIONS(495), - [anon_sym_union] = ACTIONS(489), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(497), - [anon_sym_move] = ACTIONS(499), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(501), - [sym_super] = ACTIONS(503), - [sym_crate] = ACTIONS(503), - [sym_metavariable] = ACTIONS(505), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_async] = ACTIONS(512), + [anon_sym_break] = ACTIONS(514), + [anon_sym_const] = ACTIONS(358), + [anon_sym_continue] = ACTIONS(516), + [anon_sym_default] = ACTIONS(482), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(518), + [anon_sym_if] = ACTIONS(366), + [anon_sym_let] = ACTIONS(916), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(520), + [anon_sym_static] = ACTIONS(522), + [anon_sym_union] = ACTIONS(482), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_yield] = ACTIONS(524), + [anon_sym_move] = ACTIONS(526), + [anon_sym_try] = ACTIONS(378), + [sym_integer_literal] = ACTIONS(99), + [aux_sym_string_literal_token1] = ACTIONS(101), + [sym_char_literal] = ACTIONS(99), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(494), + [sym_super] = ACTIONS(496), + [sym_crate] = ACTIONS(496), + [sym_metavariable] = ACTIONS(498), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), }, [STATE(192)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3105), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1907), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1607), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_let_condition] = STATE(3091), - [sym__let_chain] = STATE(3103), - [sym__condition] = STATE(2716), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(254), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3114), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1749), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1631), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_let_condition] = STATE(3150), + [sym__let_chain] = STATE(3165), + [sym__condition] = STATE(2763), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(244), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), [sym_line_comment] = STATE(192), [sym_block_comment] = STATE(192), - [sym_identifier] = ACTIONS(475), + [sym_identifier] = ACTIONS(470), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(907), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(907), - [anon_sym_BANG] = ACTIONS(907), - [anon_sym_AMP] = ACTIONS(909), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_STAR] = ACTIONS(910), + [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(910), + [anon_sym_BANG] = ACTIONS(910), + [anon_sym_AMP] = ACTIONS(912), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(911), - [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(914), + [anon_sym_COLON_COLON] = ACTIONS(476), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_default] = ACTIONS(489), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(491), - [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(913), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(493), - [anon_sym_static] = ACTIONS(495), - [anon_sym_union] = ACTIONS(489), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(497), - [anon_sym_move] = ACTIONS(499), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(501), - [sym_super] = ACTIONS(503), - [sym_crate] = ACTIONS(503), - [sym_metavariable] = ACTIONS(505), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_async] = ACTIONS(512), + [anon_sym_break] = ACTIONS(514), + [anon_sym_const] = ACTIONS(358), + [anon_sym_continue] = ACTIONS(516), + [anon_sym_default] = ACTIONS(482), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(518), + [anon_sym_if] = ACTIONS(366), + [anon_sym_let] = ACTIONS(916), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(520), + [anon_sym_static] = ACTIONS(522), + [anon_sym_union] = ACTIONS(482), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_yield] = ACTIONS(524), + [anon_sym_move] = ACTIONS(526), + [anon_sym_try] = ACTIONS(378), + [sym_integer_literal] = ACTIONS(99), + [aux_sym_string_literal_token1] = ACTIONS(101), + [sym_char_literal] = ACTIONS(99), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(494), + [sym_super] = ACTIONS(496), + [sym_crate] = ACTIONS(496), + [sym_metavariable] = ACTIONS(498), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), }, [STATE(193)] = { - [sym_attribute_item] = STATE(1059), - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1673), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3114), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1749), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1631), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_let_condition] = STATE(3150), + [sym__let_chain] = STATE(3165), + [sym__condition] = STATE(2779), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(244), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), [sym_line_comment] = STATE(193), [sym_block_comment] = STATE(193), - [aux_sym_enum_variant_list_repeat1] = STATE(211), - [sym_identifier] = ACTIONS(339), + [sym_identifier] = ACTIONS(470), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(1035), - [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(910), + [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(910), + [anon_sym_BANG] = ACTIONS(910), + [anon_sym_AMP] = ACTIONS(912), [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(752), + [anon_sym_DOT_DOT] = ACTIONS(914), + [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(512), + [anon_sym_break] = ACTIONS(514), + [anon_sym_const] = ACTIONS(358), + [anon_sym_continue] = ACTIONS(516), + [anon_sym_default] = ACTIONS(482), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(518), + [anon_sym_if] = ACTIONS(366), + [anon_sym_let] = ACTIONS(916), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(520), + [anon_sym_static] = ACTIONS(522), + [anon_sym_union] = ACTIONS(482), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_yield] = ACTIONS(524), + [anon_sym_move] = ACTIONS(526), + [anon_sym_try] = ACTIONS(378), + [sym_integer_literal] = ACTIONS(99), + [aux_sym_string_literal_token1] = ACTIONS(101), + [sym_char_literal] = ACTIONS(99), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(494), + [sym_super] = ACTIONS(496), + [sym_crate] = ACTIONS(496), + [sym_metavariable] = ACTIONS(498), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), }, [STATE(194)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3105), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1907), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1607), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_let_condition] = STATE(3091), - [sym__let_chain] = STATE(3103), - [sym__condition] = STATE(2835), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(254), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3114), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1749), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1631), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_let_condition] = STATE(3150), + [sym__let_chain] = STATE(3165), + [sym__condition] = STATE(2795), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(244), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), [sym_line_comment] = STATE(194), [sym_block_comment] = STATE(194), - [sym_identifier] = ACTIONS(475), + [sym_identifier] = ACTIONS(470), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(907), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(907), - [anon_sym_BANG] = ACTIONS(907), - [anon_sym_AMP] = ACTIONS(909), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_STAR] = ACTIONS(910), + [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(910), + [anon_sym_BANG] = ACTIONS(910), + [anon_sym_AMP] = ACTIONS(912), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(911), - [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(914), + [anon_sym_COLON_COLON] = ACTIONS(476), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_default] = ACTIONS(489), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(491), - [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(913), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(493), - [anon_sym_static] = ACTIONS(495), - [anon_sym_union] = ACTIONS(489), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(497), - [anon_sym_move] = ACTIONS(499), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(501), - [sym_super] = ACTIONS(503), - [sym_crate] = ACTIONS(503), - [sym_metavariable] = ACTIONS(505), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_async] = ACTIONS(512), + [anon_sym_break] = ACTIONS(514), + [anon_sym_const] = ACTIONS(358), + [anon_sym_continue] = ACTIONS(516), + [anon_sym_default] = ACTIONS(482), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(518), + [anon_sym_if] = ACTIONS(366), + [anon_sym_let] = ACTIONS(916), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(520), + [anon_sym_static] = ACTIONS(522), + [anon_sym_union] = ACTIONS(482), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_yield] = ACTIONS(524), + [anon_sym_move] = ACTIONS(526), + [anon_sym_try] = ACTIONS(378), + [sym_integer_literal] = ACTIONS(99), + [aux_sym_string_literal_token1] = ACTIONS(101), + [sym_char_literal] = ACTIONS(99), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(494), + [sym_super] = ACTIONS(496), + [sym_crate] = ACTIONS(496), + [sym_metavariable] = ACTIONS(498), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), }, [STATE(195)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3105), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1907), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1607), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_let_condition] = STATE(3091), - [sym__let_chain] = STATE(3103), - [sym__condition] = STATE(2625), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(254), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3114), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1749), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1631), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_let_condition] = STATE(3150), + [sym__let_chain] = STATE(3165), + [sym__condition] = STATE(2796), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(244), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), [sym_line_comment] = STATE(195), [sym_block_comment] = STATE(195), - [sym_identifier] = ACTIONS(475), + [sym_identifier] = ACTIONS(470), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(907), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(907), - [anon_sym_BANG] = ACTIONS(907), - [anon_sym_AMP] = ACTIONS(909), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_STAR] = ACTIONS(910), + [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(910), + [anon_sym_BANG] = ACTIONS(910), + [anon_sym_AMP] = ACTIONS(912), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(911), - [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(914), + [anon_sym_COLON_COLON] = ACTIONS(476), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_default] = ACTIONS(489), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(491), - [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(913), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(493), - [anon_sym_static] = ACTIONS(495), - [anon_sym_union] = ACTIONS(489), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(497), - [anon_sym_move] = ACTIONS(499), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(501), - [sym_super] = ACTIONS(503), - [sym_crate] = ACTIONS(503), - [sym_metavariable] = ACTIONS(505), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_async] = ACTIONS(512), + [anon_sym_break] = ACTIONS(514), + [anon_sym_const] = ACTIONS(358), + [anon_sym_continue] = ACTIONS(516), + [anon_sym_default] = ACTIONS(482), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(518), + [anon_sym_if] = ACTIONS(366), + [anon_sym_let] = ACTIONS(916), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(520), + [anon_sym_static] = ACTIONS(522), + [anon_sym_union] = ACTIONS(482), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_yield] = ACTIONS(524), + [anon_sym_move] = ACTIONS(526), + [anon_sym_try] = ACTIONS(378), + [sym_integer_literal] = ACTIONS(99), + [aux_sym_string_literal_token1] = ACTIONS(101), + [sym_char_literal] = ACTIONS(99), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(494), + [sym_super] = ACTIONS(496), + [sym_crate] = ACTIONS(496), + [sym_metavariable] = ACTIONS(498), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), }, [STATE(196)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3105), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1907), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1607), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_let_condition] = STATE(3091), - [sym__let_chain] = STATE(3103), - [sym__condition] = STATE(2627), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(254), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3114), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1749), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1631), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_let_condition] = STATE(3150), + [sym__let_chain] = STATE(3165), + [sym__condition] = STATE(2808), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(244), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), [sym_line_comment] = STATE(196), [sym_block_comment] = STATE(196), - [sym_identifier] = ACTIONS(475), + [sym_identifier] = ACTIONS(470), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(907), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(907), - [anon_sym_BANG] = ACTIONS(907), - [anon_sym_AMP] = ACTIONS(909), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_STAR] = ACTIONS(910), + [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(910), + [anon_sym_BANG] = ACTIONS(910), + [anon_sym_AMP] = ACTIONS(912), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(911), - [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(914), + [anon_sym_COLON_COLON] = ACTIONS(476), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_default] = ACTIONS(489), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(491), - [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(913), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(493), - [anon_sym_static] = ACTIONS(495), - [anon_sym_union] = ACTIONS(489), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(497), - [anon_sym_move] = ACTIONS(499), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(501), - [sym_super] = ACTIONS(503), - [sym_crate] = ACTIONS(503), - [sym_metavariable] = ACTIONS(505), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_async] = ACTIONS(512), + [anon_sym_break] = ACTIONS(514), + [anon_sym_const] = ACTIONS(358), + [anon_sym_continue] = ACTIONS(516), + [anon_sym_default] = ACTIONS(482), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(518), + [anon_sym_if] = ACTIONS(366), + [anon_sym_let] = ACTIONS(916), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(520), + [anon_sym_static] = ACTIONS(522), + [anon_sym_union] = ACTIONS(482), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_yield] = ACTIONS(524), + [anon_sym_move] = ACTIONS(526), + [anon_sym_try] = ACTIONS(378), + [sym_integer_literal] = ACTIONS(99), + [aux_sym_string_literal_token1] = ACTIONS(101), + [sym_char_literal] = ACTIONS(99), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(494), + [sym_super] = ACTIONS(496), + [sym_crate] = ACTIONS(496), + [sym_metavariable] = ACTIONS(498), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), }, [STATE(197)] = { + [sym_attribute_item] = STATE(1068), + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3031), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1670), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1491), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), [sym_line_comment] = STATE(197), [sym_block_comment] = STATE(197), - [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(1037), - [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_metavariable] = ACTIONS(1039), - [sym__raw_string_literal_start] = ACTIONS(1039), - [sym_float_literal] = ACTIONS(1039), - }, - [STATE(198)] = { - [sym_line_comment] = STATE(198), - [sym_block_comment] = STATE(198), - [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), - }, - [STATE(199)] = { - [sym_attribute_item] = STATE(1059), - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1707), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(199), - [sym_block_comment] = STATE(199), - [aux_sym_enum_variant_list_repeat1] = STATE(1058), - [sym_identifier] = ACTIONS(339), + [aux_sym_enum_variant_list_repeat1] = STATE(211), + [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_RBRACK] = ACTIONS(1044), + [anon_sym_LBRACE] = ACTIONS(348), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -40244,211 +40151,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(752), + [anon_sym_POUND] = ACTIONS(771), [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(198)] = { + [sym_line_comment] = STATE(198), + [sym_block_comment] = STATE(198), + [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(956), + [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__raw_string_literal_start] = ACTIONS(956), + [sym_float_literal] = ACTIONS(956), + }, + [STATE(199)] = { + [sym_line_comment] = STATE(199), + [sym_block_comment] = STATE(199), + [sym_identifier] = ACTIONS(1034), + [anon_sym_SEMI] = ACTIONS(1036), + [anon_sym_LPAREN] = ACTIONS(1036), + [anon_sym_RPAREN] = ACTIONS(1036), + [anon_sym_LBRACK] = ACTIONS(1036), + [anon_sym_RBRACK] = ACTIONS(1036), + [anon_sym_LBRACE] = ACTIONS(1036), + [anon_sym_RBRACE] = ACTIONS(1036), + [anon_sym_EQ_GT] = ACTIONS(1036), + [anon_sym_COLON] = ACTIONS(1034), + [anon_sym_DOLLAR] = ACTIONS(1036), + [anon_sym_PLUS] = ACTIONS(1034), + [anon_sym_STAR] = ACTIONS(1034), + [anon_sym_QMARK] = ACTIONS(1036), + [anon_sym_u8] = ACTIONS(1034), + [anon_sym_i8] = ACTIONS(1034), + [anon_sym_u16] = ACTIONS(1034), + [anon_sym_i16] = ACTIONS(1034), + [anon_sym_u32] = ACTIONS(1034), + [anon_sym_i32] = ACTIONS(1034), + [anon_sym_u64] = ACTIONS(1034), + [anon_sym_i64] = ACTIONS(1034), + [anon_sym_u128] = ACTIONS(1034), + [anon_sym_i128] = ACTIONS(1034), + [anon_sym_isize] = ACTIONS(1034), + [anon_sym_usize] = ACTIONS(1034), + [anon_sym_f32] = ACTIONS(1034), + [anon_sym_f64] = ACTIONS(1034), + [anon_sym_bool] = ACTIONS(1034), + [anon_sym_str] = ACTIONS(1034), + [anon_sym_char] = ACTIONS(1034), + [anon_sym_DASH] = ACTIONS(1034), + [anon_sym_SLASH] = ACTIONS(1034), + [anon_sym_PERCENT] = ACTIONS(1034), + [anon_sym_CARET] = ACTIONS(1034), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1034), + [anon_sym_PIPE] = ACTIONS(1034), + [anon_sym_AMP_AMP] = ACTIONS(1036), + [anon_sym_PIPE_PIPE] = ACTIONS(1036), + [anon_sym_LT_LT] = ACTIONS(1034), + [anon_sym_GT_GT] = ACTIONS(1034), + [anon_sym_PLUS_EQ] = ACTIONS(1036), + [anon_sym_DASH_EQ] = ACTIONS(1036), + [anon_sym_STAR_EQ] = ACTIONS(1036), + [anon_sym_SLASH_EQ] = ACTIONS(1036), + [anon_sym_PERCENT_EQ] = ACTIONS(1036), + [anon_sym_CARET_EQ] = ACTIONS(1036), + [anon_sym_AMP_EQ] = ACTIONS(1036), + [anon_sym_PIPE_EQ] = ACTIONS(1036), + [anon_sym_LT_LT_EQ] = ACTIONS(1036), + [anon_sym_GT_GT_EQ] = ACTIONS(1036), + [anon_sym_EQ] = ACTIONS(1034), + [anon_sym_EQ_EQ] = ACTIONS(1036), + [anon_sym_BANG_EQ] = ACTIONS(1036), + [anon_sym_GT] = ACTIONS(1034), + [anon_sym_LT] = ACTIONS(1034), + [anon_sym_GT_EQ] = ACTIONS(1036), + [anon_sym_LT_EQ] = ACTIONS(1036), + [anon_sym_AT] = ACTIONS(1036), + [anon_sym__] = ACTIONS(1034), + [anon_sym_DOT] = ACTIONS(1034), + [anon_sym_DOT_DOT] = ACTIONS(1034), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1036), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1036), + [anon_sym_COMMA] = ACTIONS(1036), + [anon_sym_COLON_COLON] = ACTIONS(1036), + [anon_sym_DASH_GT] = ACTIONS(1036), + [anon_sym_POUND] = ACTIONS(1036), + [anon_sym_SQUOTE] = ACTIONS(1034), + [anon_sym_as] = ACTIONS(1034), + [anon_sym_async] = ACTIONS(1034), + [anon_sym_await] = ACTIONS(1034), + [anon_sym_break] = ACTIONS(1034), + [anon_sym_const] = ACTIONS(1034), + [anon_sym_continue] = ACTIONS(1034), + [anon_sym_default] = ACTIONS(1034), + [anon_sym_enum] = ACTIONS(1034), + [anon_sym_fn] = ACTIONS(1034), + [anon_sym_for] = ACTIONS(1034), + [anon_sym_gen] = ACTIONS(1034), + [anon_sym_if] = ACTIONS(1034), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_let] = ACTIONS(1034), + [anon_sym_loop] = ACTIONS(1034), + [anon_sym_match] = ACTIONS(1034), + [anon_sym_mod] = ACTIONS(1034), + [anon_sym_pub] = ACTIONS(1034), + [anon_sym_return] = ACTIONS(1034), + [anon_sym_static] = ACTIONS(1034), + [anon_sym_struct] = ACTIONS(1034), + [anon_sym_trait] = ACTIONS(1034), + [anon_sym_type] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1034), + [anon_sym_unsafe] = ACTIONS(1034), + [anon_sym_use] = ACTIONS(1034), + [anon_sym_where] = ACTIONS(1034), + [anon_sym_while] = ACTIONS(1034), + [sym_mutable_specifier] = ACTIONS(1034), + [sym_integer_literal] = ACTIONS(1036), + [aux_sym_string_literal_token1] = ACTIONS(1036), + [sym_char_literal] = ACTIONS(1036), + [anon_sym_true] = ACTIONS(1034), + [anon_sym_false] = ACTIONS(1034), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1034), + [sym_super] = ACTIONS(1034), + [sym_crate] = ACTIONS(1034), + [sym__raw_string_literal_start] = ACTIONS(1036), + [sym_float_literal] = ACTIONS(1036), }, [STATE(200)] = { [sym_line_comment] = STATE(200), [sym_block_comment] = STATE(200), - [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(958), + [anon_sym_SEMI] = ACTIONS(960), + [anon_sym_LPAREN] = ACTIONS(960), + [anon_sym_RPAREN] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(960), + [anon_sym_RBRACK] = ACTIONS(960), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_RBRACE] = ACTIONS(960), + [anon_sym_EQ_GT] = ACTIONS(960), + [anon_sym_COLON] = ACTIONS(958), + [anon_sym_DOLLAR] = ACTIONS(960), + [anon_sym_PLUS] = ACTIONS(958), + [anon_sym_STAR] = ACTIONS(958), + [anon_sym_QMARK] = ACTIONS(960), + [anon_sym_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__raw_string_literal_start] = ACTIONS(960), + [sym_float_literal] = ACTIONS(960), }, [STATE(201)] = { - [sym_attribute_item] = STATE(1059), - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1969), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), [sym_line_comment] = STATE(201), [sym_block_comment] = STATE(201), - [aux_sym_enum_variant_list_repeat1] = STATE(1058), - [sym_identifier] = ACTIONS(339), + [sym_identifier] = ACTIONS(1002), + [anon_sym_SEMI] = ACTIONS(1004), + [anon_sym_LPAREN] = ACTIONS(1004), + [anon_sym_RPAREN] = ACTIONS(1004), + [anon_sym_LBRACK] = ACTIONS(1004), + [anon_sym_RBRACK] = ACTIONS(1004), + [anon_sym_LBRACE] = ACTIONS(1004), + [anon_sym_RBRACE] = ACTIONS(1004), + [anon_sym_EQ_GT] = ACTIONS(1004), + [anon_sym_COLON] = ACTIONS(1002), + [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_PLUS] = ACTIONS(1002), + [anon_sym_STAR] = ACTIONS(1002), + [anon_sym_QMARK] = ACTIONS(1004), + [anon_sym_u8] = ACTIONS(1002), + [anon_sym_i8] = ACTIONS(1002), + [anon_sym_u16] = ACTIONS(1002), + [anon_sym_i16] = ACTIONS(1002), + [anon_sym_u32] = ACTIONS(1002), + [anon_sym_i32] = ACTIONS(1002), + [anon_sym_u64] = ACTIONS(1002), + [anon_sym_i64] = ACTIONS(1002), + [anon_sym_u128] = ACTIONS(1002), + [anon_sym_i128] = ACTIONS(1002), + [anon_sym_isize] = ACTIONS(1002), + [anon_sym_usize] = ACTIONS(1002), + [anon_sym_f32] = ACTIONS(1002), + [anon_sym_f64] = ACTIONS(1002), + [anon_sym_bool] = ACTIONS(1002), + [anon_sym_str] = ACTIONS(1002), + [anon_sym_char] = ACTIONS(1002), + [anon_sym_DASH] = ACTIONS(1002), + [anon_sym_SLASH] = ACTIONS(1002), + [anon_sym_PERCENT] = ACTIONS(1002), + [anon_sym_CARET] = ACTIONS(1002), + [anon_sym_BANG] = ACTIONS(1002), + [anon_sym_AMP] = ACTIONS(1002), + [anon_sym_PIPE] = ACTIONS(1002), + [anon_sym_AMP_AMP] = ACTIONS(1004), + [anon_sym_PIPE_PIPE] = ACTIONS(1004), + [anon_sym_LT_LT] = ACTIONS(1002), + [anon_sym_GT_GT] = ACTIONS(1002), + [anon_sym_PLUS_EQ] = ACTIONS(1004), + [anon_sym_DASH_EQ] = ACTIONS(1004), + [anon_sym_STAR_EQ] = ACTIONS(1004), + [anon_sym_SLASH_EQ] = ACTIONS(1004), + [anon_sym_PERCENT_EQ] = ACTIONS(1004), + [anon_sym_CARET_EQ] = ACTIONS(1004), + [anon_sym_AMP_EQ] = ACTIONS(1004), + [anon_sym_PIPE_EQ] = ACTIONS(1004), + [anon_sym_LT_LT_EQ] = ACTIONS(1004), + [anon_sym_GT_GT_EQ] = ACTIONS(1004), + [anon_sym_EQ] = ACTIONS(1002), + [anon_sym_EQ_EQ] = ACTIONS(1004), + [anon_sym_BANG_EQ] = ACTIONS(1004), + [anon_sym_GT] = ACTIONS(1002), + [anon_sym_LT] = ACTIONS(1002), + [anon_sym_GT_EQ] = ACTIONS(1004), + [anon_sym_LT_EQ] = ACTIONS(1004), + [anon_sym_AT] = ACTIONS(1004), + [anon_sym__] = ACTIONS(1002), + [anon_sym_DOT] = ACTIONS(1002), + [anon_sym_DOT_DOT] = ACTIONS(1002), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1004), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1004), + [anon_sym_COMMA] = ACTIONS(1004), + [anon_sym_COLON_COLON] = ACTIONS(1004), + [anon_sym_DASH_GT] = ACTIONS(1004), + [anon_sym_POUND] = ACTIONS(1004), + [anon_sym_SQUOTE] = ACTIONS(1002), + [anon_sym_as] = ACTIONS(1002), + [anon_sym_async] = ACTIONS(1002), + [anon_sym_await] = ACTIONS(1002), + [anon_sym_break] = ACTIONS(1002), + [anon_sym_const] = ACTIONS(1002), + [anon_sym_continue] = ACTIONS(1002), + [anon_sym_default] = ACTIONS(1002), + [anon_sym_enum] = ACTIONS(1002), + [anon_sym_fn] = ACTIONS(1002), + [anon_sym_for] = ACTIONS(1002), + [anon_sym_gen] = ACTIONS(1002), + [anon_sym_if] = ACTIONS(1002), + [anon_sym_impl] = ACTIONS(1002), + [anon_sym_let] = ACTIONS(1002), + [anon_sym_loop] = ACTIONS(1002), + [anon_sym_match] = ACTIONS(1002), + [anon_sym_mod] = ACTIONS(1002), + [anon_sym_pub] = ACTIONS(1002), + [anon_sym_return] = ACTIONS(1002), + [anon_sym_static] = ACTIONS(1002), + [anon_sym_struct] = ACTIONS(1002), + [anon_sym_trait] = ACTIONS(1002), + [anon_sym_type] = ACTIONS(1002), + [anon_sym_union] = ACTIONS(1002), + [anon_sym_unsafe] = ACTIONS(1002), + [anon_sym_use] = ACTIONS(1002), + [anon_sym_where] = ACTIONS(1002), + [anon_sym_while] = ACTIONS(1002), + [sym_mutable_specifier] = ACTIONS(1002), + [sym_integer_literal] = ACTIONS(1004), + [aux_sym_string_literal_token1] = ACTIONS(1004), + [sym_char_literal] = ACTIONS(1004), + [anon_sym_true] = ACTIONS(1002), + [anon_sym_false] = ACTIONS(1002), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1002), + [sym_super] = ACTIONS(1002), + [sym_crate] = ACTIONS(1002), + [sym__raw_string_literal_start] = ACTIONS(1004), + [sym_float_literal] = ACTIONS(1004), + }, + [STATE(202)] = { + [sym_attribute_item] = STATE(1068), + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3031), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1678), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1491), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), + [sym_line_comment] = STATE(202), + [sym_block_comment] = STATE(202), + [aux_sym_enum_variant_list_repeat1] = STATE(1066), + [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), @@ -40474,901 +40726,671 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(752), + [anon_sym_POUND] = ACTIONS(771), [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(202)] = { - [sym_line_comment] = STATE(202), - [sym_block_comment] = STATE(202), - [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(1023), - [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__raw_string_literal_start] = ACTIONS(1023), - [sym_float_literal] = ACTIONS(1023), + [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(203)] = { [sym_line_comment] = STATE(203), [sym_block_comment] = STATE(203), - [sym_identifier] = ACTIONS(975), - [anon_sym_SEMI] = ACTIONS(977), - [anon_sym_LPAREN] = ACTIONS(977), - [anon_sym_RPAREN] = ACTIONS(977), - [anon_sym_LBRACK] = ACTIONS(977), - [anon_sym_RBRACK] = ACTIONS(977), - [anon_sym_LBRACE] = ACTIONS(977), - [anon_sym_RBRACE] = ACTIONS(977), - [anon_sym_EQ_GT] = ACTIONS(977), - [anon_sym_COLON] = ACTIONS(975), - [anon_sym_DOLLAR] = ACTIONS(977), - [anon_sym_PLUS] = ACTIONS(975), - [anon_sym_STAR] = ACTIONS(975), - [anon_sym_QMARK] = ACTIONS(977), - [anon_sym_u8] = ACTIONS(975), - [anon_sym_i8] = ACTIONS(975), - [anon_sym_u16] = ACTIONS(975), - [anon_sym_i16] = ACTIONS(975), - [anon_sym_u32] = ACTIONS(975), - [anon_sym_i32] = ACTIONS(975), - [anon_sym_u64] = ACTIONS(975), - [anon_sym_i64] = ACTIONS(975), - [anon_sym_u128] = ACTIONS(975), - [anon_sym_i128] = ACTIONS(975), - [anon_sym_isize] = ACTIONS(975), - [anon_sym_usize] = ACTIONS(975), - [anon_sym_f32] = ACTIONS(975), - [anon_sym_f64] = ACTIONS(975), - [anon_sym_bool] = ACTIONS(975), - [anon_sym_str] = ACTIONS(975), - [anon_sym_char] = ACTIONS(975), - [anon_sym_DASH] = ACTIONS(975), - [anon_sym_SLASH] = ACTIONS(975), - [anon_sym_PERCENT] = ACTIONS(975), - [anon_sym_CARET] = ACTIONS(975), - [anon_sym_BANG] = ACTIONS(975), - [anon_sym_AMP] = ACTIONS(975), - [anon_sym_PIPE] = ACTIONS(975), - [anon_sym_AMP_AMP] = ACTIONS(977), - [anon_sym_PIPE_PIPE] = ACTIONS(977), - [anon_sym_LT_LT] = ACTIONS(975), - [anon_sym_GT_GT] = ACTIONS(975), - [anon_sym_PLUS_EQ] = ACTIONS(977), - [anon_sym_DASH_EQ] = ACTIONS(977), - [anon_sym_STAR_EQ] = ACTIONS(977), - [anon_sym_SLASH_EQ] = ACTIONS(977), - [anon_sym_PERCENT_EQ] = ACTIONS(977), - [anon_sym_CARET_EQ] = ACTIONS(977), - [anon_sym_AMP_EQ] = ACTIONS(977), - [anon_sym_PIPE_EQ] = ACTIONS(977), - [anon_sym_LT_LT_EQ] = ACTIONS(977), - [anon_sym_GT_GT_EQ] = ACTIONS(977), - [anon_sym_EQ] = ACTIONS(975), - [anon_sym_EQ_EQ] = ACTIONS(977), - [anon_sym_BANG_EQ] = ACTIONS(977), - [anon_sym_GT] = ACTIONS(975), - [anon_sym_LT] = ACTIONS(975), - [anon_sym_GT_EQ] = ACTIONS(977), - [anon_sym_LT_EQ] = ACTIONS(977), - [anon_sym_AT] = ACTIONS(977), - [anon_sym__] = ACTIONS(975), - [anon_sym_DOT] = ACTIONS(975), - [anon_sym_DOT_DOT] = ACTIONS(975), - [anon_sym_DOT_DOT_DOT] = ACTIONS(977), - [anon_sym_DOT_DOT_EQ] = ACTIONS(977), - [anon_sym_COMMA] = ACTIONS(977), - [anon_sym_COLON_COLON] = ACTIONS(977), - [anon_sym_DASH_GT] = ACTIONS(977), - [anon_sym_POUND] = ACTIONS(977), - [anon_sym_SQUOTE] = ACTIONS(975), - [anon_sym_as] = ACTIONS(975), - [anon_sym_async] = ACTIONS(975), - [anon_sym_await] = ACTIONS(975), - [anon_sym_break] = ACTIONS(975), - [anon_sym_const] = ACTIONS(975), - [anon_sym_continue] = ACTIONS(975), - [anon_sym_default] = ACTIONS(975), - [anon_sym_enum] = ACTIONS(975), - [anon_sym_fn] = ACTIONS(975), - [anon_sym_for] = ACTIONS(975), - [anon_sym_gen] = ACTIONS(975), - [anon_sym_if] = ACTIONS(975), - [anon_sym_impl] = ACTIONS(975), - [anon_sym_let] = ACTIONS(975), - [anon_sym_loop] = ACTIONS(975), - [anon_sym_match] = ACTIONS(975), - [anon_sym_mod] = ACTIONS(975), - [anon_sym_pub] = ACTIONS(975), - [anon_sym_return] = ACTIONS(975), - [anon_sym_static] = ACTIONS(975), - [anon_sym_struct] = ACTIONS(975), - [anon_sym_trait] = ACTIONS(975), - [anon_sym_type] = ACTIONS(975), - [anon_sym_union] = ACTIONS(975), - [anon_sym_unsafe] = ACTIONS(975), - [anon_sym_use] = ACTIONS(975), - [anon_sym_where] = ACTIONS(975), - [anon_sym_while] = ACTIONS(975), - [sym_mutable_specifier] = ACTIONS(975), - [sym_integer_literal] = ACTIONS(977), - [aux_sym_string_literal_token1] = ACTIONS(977), - [sym_char_literal] = ACTIONS(977), - [anon_sym_true] = ACTIONS(975), - [anon_sym_false] = ACTIONS(975), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(975), - [sym_super] = ACTIONS(975), - [sym_crate] = ACTIONS(975), - [sym__raw_string_literal_start] = ACTIONS(977), - [sym_float_literal] = ACTIONS(977), + [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(204)] = { + [sym_attribute_item] = STATE(405), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_self_parameter] = STATE(3168), + [sym_variadic_parameter] = STATE(3168), + [sym_parameter] = STATE(3168), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(2879), + [sym_bracketed_type] = STATE(3734), + [sym_lifetime] = STATE(3173), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3444), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2525), + [sym_scoped_identifier] = STATE(2223), + [sym_scoped_type_identifier] = STATE(2238), + [sym_const_block] = STATE(2197), + [sym__pattern] = STATE(2582), + [sym_generic_pattern] = STATE(2197), + [sym_tuple_pattern] = STATE(2197), + [sym_slice_pattern] = STATE(2197), + [sym_tuple_struct_pattern] = STATE(2197), + [sym_struct_pattern] = STATE(2197), + [sym_remaining_field_pattern] = STATE(2197), + [sym_mut_pattern] = STATE(2197), + [sym_range_pattern] = STATE(2197), + [sym_ref_pattern] = STATE(2197), + [sym_captured_pattern] = STATE(2197), + [sym_reference_pattern] = STATE(2197), + [sym_or_pattern] = STATE(2197), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2129), + [sym_string_literal] = STATE(2129), + [sym_raw_string_literal] = STATE(2129), + [sym_boolean_literal] = STATE(2129), [sym_line_comment] = STATE(204), [sym_block_comment] = STATE(204), - [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(1050), + [anon_sym_LPAREN] = ACTIONS(1052), + [anon_sym_RPAREN] = ACTIONS(1054), + [anon_sym_LBRACK] = ACTIONS(1056), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1062), + [anon_sym_i8] = ACTIONS(1062), + [anon_sym_u16] = ACTIONS(1062), + [anon_sym_i16] = ACTIONS(1062), + [anon_sym_u32] = ACTIONS(1062), + [anon_sym_i32] = ACTIONS(1062), + [anon_sym_u64] = ACTIONS(1062), + [anon_sym_i64] = ACTIONS(1062), + [anon_sym_u128] = ACTIONS(1062), + [anon_sym_i128] = ACTIONS(1062), + [anon_sym_isize] = ACTIONS(1062), + [anon_sym_usize] = ACTIONS(1062), + [anon_sym_f32] = ACTIONS(1062), + [anon_sym_f64] = ACTIONS(1062), + [anon_sym_bool] = ACTIONS(1062), + [anon_sym_str] = ACTIONS(1062), + [anon_sym_char] = ACTIONS(1062), + [anon_sym_DASH] = ACTIONS(1064), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1068), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1072), + [anon_sym_DOT_DOT] = ACTIONS(1074), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1076), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1078), + [anon_sym_COMMA] = ACTIONS(1080), + [anon_sym_COLON_COLON] = ACTIONS(1082), + [anon_sym_POUND] = ACTIONS(1084), + [anon_sym_SQUOTE] = ACTIONS(1086), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1092), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1098), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1098), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_ref] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1108), + [sym_mutable_specifier] = ACTIONS(1110), + [sym_integer_literal] = ACTIONS(1112), + [aux_sym_string_literal_token1] = ACTIONS(1114), + [sym_char_literal] = ACTIONS(1112), + [anon_sym_true] = ACTIONS(1116), + [anon_sym_false] = ACTIONS(1116), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1118), + [sym_super] = ACTIONS(1120), + [sym_crate] = ACTIONS(1120), + [sym_metavariable] = ACTIONS(1122), + [sym__raw_string_literal_start] = ACTIONS(1124), + [sym_float_literal] = ACTIONS(1112), }, [STATE(205)] = { + [sym_attribute_item] = STATE(1068), + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3031), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1963), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1491), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), [sym_line_comment] = STATE(205), [sym_block_comment] = STATE(205), - [sym_identifier] = ACTIONS(951), - [anon_sym_SEMI] = ACTIONS(953), - [anon_sym_LPAREN] = ACTIONS(953), - [anon_sym_RPAREN] = ACTIONS(953), - [anon_sym_LBRACK] = ACTIONS(953), - [anon_sym_RBRACK] = ACTIONS(953), - [anon_sym_LBRACE] = ACTIONS(953), - [anon_sym_RBRACE] = ACTIONS(953), - [anon_sym_EQ_GT] = ACTIONS(953), - [anon_sym_COLON] = ACTIONS(951), - [anon_sym_DOLLAR] = ACTIONS(953), - [anon_sym_PLUS] = ACTIONS(951), - [anon_sym_STAR] = ACTIONS(951), - [anon_sym_QMARK] = ACTIONS(953), - [anon_sym_u8] = ACTIONS(951), - [anon_sym_i8] = ACTIONS(951), - [anon_sym_u16] = ACTIONS(951), - [anon_sym_i16] = ACTIONS(951), - [anon_sym_u32] = ACTIONS(951), - [anon_sym_i32] = ACTIONS(951), - [anon_sym_u64] = ACTIONS(951), - [anon_sym_i64] = ACTIONS(951), - [anon_sym_u128] = ACTIONS(951), - [anon_sym_i128] = ACTIONS(951), - [anon_sym_isize] = ACTIONS(951), - [anon_sym_usize] = ACTIONS(951), - [anon_sym_f32] = ACTIONS(951), - [anon_sym_f64] = ACTIONS(951), - [anon_sym_bool] = ACTIONS(951), - [anon_sym_str] = ACTIONS(951), - [anon_sym_char] = ACTIONS(951), - [anon_sym_DASH] = ACTIONS(951), - [anon_sym_SLASH] = ACTIONS(951), - [anon_sym_PERCENT] = ACTIONS(951), - [anon_sym_CARET] = ACTIONS(951), - [anon_sym_BANG] = ACTIONS(951), - [anon_sym_AMP] = ACTIONS(951), - [anon_sym_PIPE] = ACTIONS(951), - [anon_sym_AMP_AMP] = ACTIONS(953), - [anon_sym_PIPE_PIPE] = ACTIONS(953), - [anon_sym_LT_LT] = ACTIONS(951), - [anon_sym_GT_GT] = ACTIONS(951), - [anon_sym_PLUS_EQ] = ACTIONS(953), - [anon_sym_DASH_EQ] = ACTIONS(953), - [anon_sym_STAR_EQ] = ACTIONS(953), - [anon_sym_SLASH_EQ] = ACTIONS(953), - [anon_sym_PERCENT_EQ] = ACTIONS(953), - [anon_sym_CARET_EQ] = ACTIONS(953), - [anon_sym_AMP_EQ] = ACTIONS(953), - [anon_sym_PIPE_EQ] = ACTIONS(953), - [anon_sym_LT_LT_EQ] = ACTIONS(953), - [anon_sym_GT_GT_EQ] = ACTIONS(953), - [anon_sym_EQ] = ACTIONS(951), - [anon_sym_EQ_EQ] = ACTIONS(953), - [anon_sym_BANG_EQ] = ACTIONS(953), - [anon_sym_GT] = ACTIONS(951), - [anon_sym_LT] = ACTIONS(951), - [anon_sym_GT_EQ] = ACTIONS(953), - [anon_sym_LT_EQ] = ACTIONS(953), - [anon_sym_AT] = ACTIONS(953), - [anon_sym__] = ACTIONS(951), - [anon_sym_DOT] = ACTIONS(951), - [anon_sym_DOT_DOT] = ACTIONS(951), - [anon_sym_DOT_DOT_DOT] = ACTIONS(953), - [anon_sym_DOT_DOT_EQ] = ACTIONS(953), - [anon_sym_COMMA] = ACTIONS(953), - [anon_sym_COLON_COLON] = ACTIONS(953), - [anon_sym_DASH_GT] = ACTIONS(953), - [anon_sym_POUND] = ACTIONS(953), - [anon_sym_SQUOTE] = ACTIONS(951), - [anon_sym_as] = ACTIONS(951), - [anon_sym_async] = ACTIONS(951), - [anon_sym_await] = ACTIONS(951), - [anon_sym_break] = ACTIONS(951), - [anon_sym_const] = ACTIONS(951), - [anon_sym_continue] = ACTIONS(951), - [anon_sym_default] = ACTIONS(951), - [anon_sym_enum] = ACTIONS(951), - [anon_sym_fn] = ACTIONS(951), - [anon_sym_for] = ACTIONS(951), - [anon_sym_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__raw_string_literal_start] = ACTIONS(953), - [sym_float_literal] = ACTIONS(953), + [aux_sym_enum_variant_list_repeat1] = STATE(1066), + [sym_identifier] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_POUND] = ACTIONS(771), + [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(206)] = { [sym_line_comment] = STATE(206), [sym_block_comment] = STATE(206), - [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(957), - [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__raw_string_literal_start] = ACTIONS(957), - [sym_float_literal] = ACTIONS(957), + [sym_identifier] = ACTIONS(1126), + [anon_sym_SEMI] = ACTIONS(1128), + [anon_sym_LPAREN] = ACTIONS(1128), + [anon_sym_RPAREN] = ACTIONS(1128), + [anon_sym_LBRACK] = ACTIONS(1128), + [anon_sym_RBRACK] = ACTIONS(1128), + [anon_sym_LBRACE] = ACTIONS(1128), + [anon_sym_RBRACE] = ACTIONS(1128), + [anon_sym_EQ_GT] = ACTIONS(1128), + [anon_sym_COLON] = ACTIONS(1126), + [anon_sym_DOLLAR] = ACTIONS(1128), + [anon_sym_PLUS] = ACTIONS(1126), + [anon_sym_STAR] = ACTIONS(1126), + [anon_sym_QMARK] = ACTIONS(1128), + [anon_sym_u8] = ACTIONS(1126), + [anon_sym_i8] = ACTIONS(1126), + [anon_sym_u16] = ACTIONS(1126), + [anon_sym_i16] = ACTIONS(1126), + [anon_sym_u32] = ACTIONS(1126), + [anon_sym_i32] = ACTIONS(1126), + [anon_sym_u64] = ACTIONS(1126), + [anon_sym_i64] = ACTIONS(1126), + [anon_sym_u128] = ACTIONS(1126), + [anon_sym_i128] = ACTIONS(1126), + [anon_sym_isize] = ACTIONS(1126), + [anon_sym_usize] = ACTIONS(1126), + [anon_sym_f32] = ACTIONS(1126), + [anon_sym_f64] = ACTIONS(1126), + [anon_sym_bool] = ACTIONS(1126), + [anon_sym_str] = ACTIONS(1126), + [anon_sym_char] = ACTIONS(1126), + [anon_sym_DASH] = ACTIONS(1126), + [anon_sym_SLASH] = ACTIONS(1126), + [anon_sym_PERCENT] = ACTIONS(1126), + [anon_sym_CARET] = ACTIONS(1126), + [anon_sym_BANG] = ACTIONS(1126), + [anon_sym_AMP] = ACTIONS(1126), + [anon_sym_PIPE] = ACTIONS(1126), + [anon_sym_AMP_AMP] = ACTIONS(1128), + [anon_sym_PIPE_PIPE] = ACTIONS(1128), + [anon_sym_LT_LT] = ACTIONS(1126), + [anon_sym_GT_GT] = ACTIONS(1126), + [anon_sym_PLUS_EQ] = ACTIONS(1128), + [anon_sym_DASH_EQ] = ACTIONS(1128), + [anon_sym_STAR_EQ] = ACTIONS(1128), + [anon_sym_SLASH_EQ] = ACTIONS(1128), + [anon_sym_PERCENT_EQ] = ACTIONS(1128), + [anon_sym_CARET_EQ] = ACTIONS(1128), + [anon_sym_AMP_EQ] = ACTIONS(1128), + [anon_sym_PIPE_EQ] = ACTIONS(1128), + [anon_sym_LT_LT_EQ] = ACTIONS(1128), + [anon_sym_GT_GT_EQ] = ACTIONS(1128), + [anon_sym_EQ] = ACTIONS(1126), + [anon_sym_EQ_EQ] = ACTIONS(1128), + [anon_sym_BANG_EQ] = ACTIONS(1128), + [anon_sym_GT] = ACTIONS(1126), + [anon_sym_LT] = ACTIONS(1126), + [anon_sym_GT_EQ] = ACTIONS(1128), + [anon_sym_LT_EQ] = ACTIONS(1128), + [anon_sym_AT] = ACTIONS(1128), + [anon_sym__] = ACTIONS(1126), + [anon_sym_DOT] = ACTIONS(1126), + [anon_sym_DOT_DOT] = ACTIONS(1126), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1128), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1128), + [anon_sym_COMMA] = ACTIONS(1128), + [anon_sym_COLON_COLON] = ACTIONS(1128), + [anon_sym_DASH_GT] = ACTIONS(1128), + [anon_sym_POUND] = ACTIONS(1128), + [anon_sym_SQUOTE] = ACTIONS(1126), + [anon_sym_as] = ACTIONS(1126), + [anon_sym_async] = ACTIONS(1126), + [anon_sym_await] = ACTIONS(1126), + [anon_sym_break] = ACTIONS(1126), + [anon_sym_const] = ACTIONS(1126), + [anon_sym_continue] = ACTIONS(1126), + [anon_sym_default] = ACTIONS(1126), + [anon_sym_enum] = ACTIONS(1126), + [anon_sym_fn] = ACTIONS(1126), + [anon_sym_for] = ACTIONS(1126), + [anon_sym_gen] = ACTIONS(1126), + [anon_sym_if] = ACTIONS(1126), + [anon_sym_impl] = ACTIONS(1126), + [anon_sym_let] = ACTIONS(1126), + [anon_sym_loop] = ACTIONS(1126), + [anon_sym_match] = ACTIONS(1126), + [anon_sym_mod] = ACTIONS(1126), + [anon_sym_pub] = ACTIONS(1126), + [anon_sym_return] = ACTIONS(1126), + [anon_sym_static] = ACTIONS(1126), + [anon_sym_struct] = ACTIONS(1126), + [anon_sym_trait] = ACTIONS(1126), + [anon_sym_type] = ACTIONS(1126), + [anon_sym_union] = ACTIONS(1126), + [anon_sym_unsafe] = ACTIONS(1126), + [anon_sym_use] = ACTIONS(1126), + [anon_sym_where] = ACTIONS(1126), + [anon_sym_while] = ACTIONS(1126), + [sym_mutable_specifier] = ACTIONS(1126), + [sym_integer_literal] = ACTIONS(1128), + [aux_sym_string_literal_token1] = ACTIONS(1128), + [sym_char_literal] = ACTIONS(1128), + [anon_sym_true] = ACTIONS(1126), + [anon_sym_false] = ACTIONS(1126), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1126), + [sym_super] = ACTIONS(1126), + [sym_crate] = ACTIONS(1126), + [sym__raw_string_literal_start] = ACTIONS(1128), + [sym_float_literal] = ACTIONS(1128), }, [STATE(207)] = { + [sym_attribute_item] = STATE(405), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_self_parameter] = STATE(3168), + [sym_variadic_parameter] = STATE(3168), + [sym_parameter] = STATE(3168), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(2879), + [sym_bracketed_type] = STATE(3726), + [sym_lifetime] = STATE(3173), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3316), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2601), + [sym_scoped_identifier] = STATE(2336), + [sym_scoped_type_identifier] = STATE(2238), + [sym_const_block] = STATE(2197), + [sym__pattern] = STATE(3441), + [sym_generic_pattern] = STATE(2197), + [sym_tuple_pattern] = STATE(2197), + [sym_slice_pattern] = STATE(2197), + [sym_tuple_struct_pattern] = STATE(2197), + [sym_struct_pattern] = STATE(2197), + [sym_remaining_field_pattern] = STATE(2197), + [sym_mut_pattern] = STATE(2197), + [sym_range_pattern] = STATE(2197), + [sym_ref_pattern] = STATE(2197), + [sym_captured_pattern] = STATE(2197), + [sym_reference_pattern] = STATE(2197), + [sym_or_pattern] = STATE(2197), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2129), + [sym_string_literal] = STATE(2129), + [sym_raw_string_literal] = STATE(2129), + [sym_boolean_literal] = STATE(2129), [sym_line_comment] = STATE(207), [sym_block_comment] = STATE(207), - [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), + [sym_identifier] = ACTIONS(1130), + [anon_sym_LPAREN] = ACTIONS(1132), + [anon_sym_RPAREN] = ACTIONS(1134), + [anon_sym_LBRACK] = ACTIONS(1056), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1136), + [anon_sym_i8] = ACTIONS(1136), + [anon_sym_u16] = ACTIONS(1136), + [anon_sym_i16] = ACTIONS(1136), + [anon_sym_u32] = ACTIONS(1136), + [anon_sym_i32] = ACTIONS(1136), + [anon_sym_u64] = ACTIONS(1136), + [anon_sym_i64] = ACTIONS(1136), + [anon_sym_u128] = ACTIONS(1136), + [anon_sym_i128] = ACTIONS(1136), + [anon_sym_isize] = ACTIONS(1136), + [anon_sym_usize] = ACTIONS(1136), + [anon_sym_f32] = ACTIONS(1136), + [anon_sym_f64] = ACTIONS(1136), + [anon_sym_bool] = ACTIONS(1136), + [anon_sym_str] = ACTIONS(1136), + [anon_sym_char] = ACTIONS(1136), + [anon_sym_DASH] = ACTIONS(1064), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1138), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1140), + [anon_sym_DOT_DOT] = ACTIONS(1074), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1076), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1078), + [anon_sym_COMMA] = ACTIONS(1142), + [anon_sym_COLON_COLON] = ACTIONS(1144), + [anon_sym_POUND] = ACTIONS(1084), + [anon_sym_SQUOTE] = ACTIONS(1086), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1146), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1148), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1148), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_ref] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1108), + [sym_mutable_specifier] = ACTIONS(1110), + [sym_integer_literal] = ACTIONS(1112), + [aux_sym_string_literal_token1] = ACTIONS(1114), + [sym_char_literal] = ACTIONS(1112), + [anon_sym_true] = ACTIONS(1116), + [anon_sym_false] = ACTIONS(1116), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1150), + [sym_super] = ACTIONS(1152), + [sym_crate] = ACTIONS(1152), + [sym_metavariable] = ACTIONS(1154), + [sym__raw_string_literal_start] = ACTIONS(1124), + [sym_float_literal] = ACTIONS(1112), }, [STATE(208)] = { + [sym_attribute_item] = STATE(1068), + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3031), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1670), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1491), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), [sym_line_comment] = STATE(208), [sym_block_comment] = STATE(208), - [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), - }, - [STATE(209)] = { - [sym_attribute_item] = STATE(1059), - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1673), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(209), - [sym_block_comment] = STATE(209), [aux_sym_enum_variant_list_repeat1] = STATE(211), - [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), @@ -41394,211 +41416,326 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(752), + [anon_sym_POUND] = ACTIONS(771), [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(209)] = { + [sym_attribute_item] = STATE(402), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_self_parameter] = STATE(3048), + [sym_variadic_parameter] = STATE(3048), + [sym_parameter] = STATE(3048), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(2778), + [sym_bracketed_type] = STATE(3726), + [sym_lifetime] = STATE(3173), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3316), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2601), + [sym_scoped_identifier] = STATE(2336), + [sym_scoped_type_identifier] = STATE(2238), + [sym_const_block] = STATE(2197), + [sym__pattern] = STATE(3441), + [sym_generic_pattern] = STATE(2197), + [sym_tuple_pattern] = STATE(2197), + [sym_slice_pattern] = STATE(2197), + [sym_tuple_struct_pattern] = STATE(2197), + [sym_struct_pattern] = STATE(2197), + [sym_remaining_field_pattern] = STATE(2197), + [sym_mut_pattern] = STATE(2197), + [sym_range_pattern] = STATE(2197), + [sym_ref_pattern] = STATE(2197), + [sym_captured_pattern] = STATE(2197), + [sym_reference_pattern] = STATE(2197), + [sym_or_pattern] = STATE(2197), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2129), + [sym_string_literal] = STATE(2129), + [sym_raw_string_literal] = STATE(2129), + [sym_boolean_literal] = STATE(2129), + [sym_line_comment] = STATE(209), + [sym_block_comment] = STATE(209), + [sym_identifier] = ACTIONS(1130), + [anon_sym_LPAREN] = ACTIONS(1132), + [anon_sym_RPAREN] = ACTIONS(1156), + [anon_sym_LBRACK] = ACTIONS(1056), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1136), + [anon_sym_i8] = ACTIONS(1136), + [anon_sym_u16] = ACTIONS(1136), + [anon_sym_i16] = ACTIONS(1136), + [anon_sym_u32] = ACTIONS(1136), + [anon_sym_i32] = ACTIONS(1136), + [anon_sym_u64] = ACTIONS(1136), + [anon_sym_i64] = ACTIONS(1136), + [anon_sym_u128] = ACTIONS(1136), + [anon_sym_i128] = ACTIONS(1136), + [anon_sym_isize] = ACTIONS(1136), + [anon_sym_usize] = ACTIONS(1136), + [anon_sym_f32] = ACTIONS(1136), + [anon_sym_f64] = ACTIONS(1136), + [anon_sym_bool] = ACTIONS(1136), + [anon_sym_str] = ACTIONS(1136), + [anon_sym_char] = ACTIONS(1136), + [anon_sym_DASH] = ACTIONS(1064), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1138), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1158), + [anon_sym_DOT_DOT] = ACTIONS(1074), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1076), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1078), + [anon_sym_COMMA] = ACTIONS(1160), + [anon_sym_COLON_COLON] = ACTIONS(1144), + [anon_sym_POUND] = ACTIONS(1084), + [anon_sym_SQUOTE] = ACTIONS(1086), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1146), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1148), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1148), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_ref] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1108), + [sym_mutable_specifier] = ACTIONS(1110), + [sym_integer_literal] = ACTIONS(1112), + [aux_sym_string_literal_token1] = ACTIONS(1114), + [sym_char_literal] = ACTIONS(1112), + [anon_sym_true] = ACTIONS(1116), + [anon_sym_false] = ACTIONS(1116), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1150), + [sym_super] = ACTIONS(1152), + [sym_crate] = ACTIONS(1152), + [sym_metavariable] = ACTIONS(1154), + [sym__raw_string_literal_start] = ACTIONS(1124), + [sym_float_literal] = ACTIONS(1112), }, [STATE(210)] = { + [sym_attribute_item] = STATE(429), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_self_parameter] = STATE(2910), + [sym_variadic_parameter] = STATE(2910), + [sym_parameter] = STATE(2910), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(2694), + [sym_bracketed_type] = STATE(3726), + [sym_lifetime] = STATE(3173), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3316), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2601), + [sym_scoped_identifier] = STATE(2336), + [sym_scoped_type_identifier] = STATE(2238), + [sym_const_block] = STATE(2197), + [sym__pattern] = STATE(3441), + [sym_generic_pattern] = STATE(2197), + [sym_tuple_pattern] = STATE(2197), + [sym_slice_pattern] = STATE(2197), + [sym_tuple_struct_pattern] = STATE(2197), + [sym_struct_pattern] = STATE(2197), + [sym_remaining_field_pattern] = STATE(2197), + [sym_mut_pattern] = STATE(2197), + [sym_range_pattern] = STATE(2197), + [sym_ref_pattern] = STATE(2197), + [sym_captured_pattern] = STATE(2197), + [sym_reference_pattern] = STATE(2197), + [sym_or_pattern] = STATE(2197), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2129), + [sym_string_literal] = STATE(2129), + [sym_raw_string_literal] = STATE(2129), + [sym_boolean_literal] = STATE(2129), [sym_line_comment] = STATE(210), [sym_block_comment] = STATE(210), - [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(917), - [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__raw_string_literal_start] = ACTIONS(917), - [sym_float_literal] = ACTIONS(917), + [sym_identifier] = ACTIONS(1130), + [anon_sym_LPAREN] = ACTIONS(1132), + [anon_sym_RPAREN] = ACTIONS(1162), + [anon_sym_LBRACK] = ACTIONS(1056), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1136), + [anon_sym_i8] = ACTIONS(1136), + [anon_sym_u16] = ACTIONS(1136), + [anon_sym_i16] = ACTIONS(1136), + [anon_sym_u32] = ACTIONS(1136), + [anon_sym_i32] = ACTIONS(1136), + [anon_sym_u64] = ACTIONS(1136), + [anon_sym_i64] = ACTIONS(1136), + [anon_sym_u128] = ACTIONS(1136), + [anon_sym_i128] = ACTIONS(1136), + [anon_sym_isize] = ACTIONS(1136), + [anon_sym_usize] = ACTIONS(1136), + [anon_sym_f32] = ACTIONS(1136), + [anon_sym_f64] = ACTIONS(1136), + [anon_sym_bool] = ACTIONS(1136), + [anon_sym_str] = ACTIONS(1136), + [anon_sym_char] = ACTIONS(1136), + [anon_sym_DASH] = ACTIONS(1064), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1138), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1164), + [anon_sym_DOT_DOT] = ACTIONS(1074), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1076), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1078), + [anon_sym_COMMA] = ACTIONS(1166), + [anon_sym_COLON_COLON] = ACTIONS(1144), + [anon_sym_POUND] = ACTIONS(1084), + [anon_sym_SQUOTE] = ACTIONS(1086), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1146), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1148), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1148), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_ref] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1108), + [sym_mutable_specifier] = ACTIONS(1110), + [sym_integer_literal] = ACTIONS(1112), + [aux_sym_string_literal_token1] = ACTIONS(1114), + [sym_char_literal] = ACTIONS(1112), + [anon_sym_true] = ACTIONS(1116), + [anon_sym_false] = ACTIONS(1116), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1150), + [sym_super] = ACTIONS(1152), + [sym_crate] = ACTIONS(1152), + [sym_metavariable] = ACTIONS(1154), + [sym__raw_string_literal_start] = ACTIONS(1124), + [sym_float_literal] = ACTIONS(1112), }, [STATE(211)] = { - [sym_attribute_item] = STATE(1059), - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1709), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym_attribute_item] = STATE(1068), + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3031), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1697), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1491), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), [sym_line_comment] = STATE(211), [sym_block_comment] = STATE(211), - [aux_sym_enum_variant_list_repeat1] = STATE(1058), - [sym_identifier] = ACTIONS(339), + [aux_sym_enum_variant_list_repeat1] = STATE(1066), + [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), @@ -41624,211 +41761,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(752), + [anon_sym_POUND] = ACTIONS(771), [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_attribute_item] = STATE(1068), + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3031), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1687), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1491), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), [sym_line_comment] = STATE(212), [sym_block_comment] = STATE(212), - [sym_identifier] = ACTIONS(1053), - [anon_sym_SEMI] = ACTIONS(1055), - [anon_sym_LPAREN] = ACTIONS(1055), - [anon_sym_RPAREN] = ACTIONS(1055), - [anon_sym_LBRACK] = ACTIONS(1055), - [anon_sym_RBRACK] = ACTIONS(1055), - [anon_sym_LBRACE] = ACTIONS(1055), - [anon_sym_RBRACE] = ACTIONS(1055), - [anon_sym_EQ_GT] = ACTIONS(1055), - [anon_sym_COLON] = ACTIONS(1053), - [anon_sym_DOLLAR] = ACTIONS(1055), - [anon_sym_PLUS] = ACTIONS(1053), - [anon_sym_STAR] = ACTIONS(1053), - [anon_sym_QMARK] = ACTIONS(1055), - [anon_sym_u8] = ACTIONS(1053), - [anon_sym_i8] = ACTIONS(1053), - [anon_sym_u16] = ACTIONS(1053), - [anon_sym_i16] = ACTIONS(1053), - [anon_sym_u32] = ACTIONS(1053), - [anon_sym_i32] = ACTIONS(1053), - [anon_sym_u64] = ACTIONS(1053), - [anon_sym_i64] = ACTIONS(1053), - [anon_sym_u128] = ACTIONS(1053), - [anon_sym_i128] = ACTIONS(1053), - [anon_sym_isize] = ACTIONS(1053), - [anon_sym_usize] = ACTIONS(1053), - [anon_sym_f32] = ACTIONS(1053), - [anon_sym_f64] = ACTIONS(1053), - [anon_sym_bool] = ACTIONS(1053), - [anon_sym_str] = ACTIONS(1053), - [anon_sym_char] = ACTIONS(1053), - [anon_sym_DASH] = ACTIONS(1053), - [anon_sym_SLASH] = ACTIONS(1053), - [anon_sym_PERCENT] = ACTIONS(1053), - [anon_sym_CARET] = ACTIONS(1053), - [anon_sym_BANG] = ACTIONS(1053), - [anon_sym_AMP] = ACTIONS(1053), - [anon_sym_PIPE] = ACTIONS(1053), - [anon_sym_AMP_AMP] = ACTIONS(1055), - [anon_sym_PIPE_PIPE] = ACTIONS(1055), - [anon_sym_LT_LT] = ACTIONS(1053), - [anon_sym_GT_GT] = ACTIONS(1053), - [anon_sym_PLUS_EQ] = ACTIONS(1055), - [anon_sym_DASH_EQ] = ACTIONS(1055), - [anon_sym_STAR_EQ] = ACTIONS(1055), - [anon_sym_SLASH_EQ] = ACTIONS(1055), - [anon_sym_PERCENT_EQ] = ACTIONS(1055), - [anon_sym_CARET_EQ] = ACTIONS(1055), - [anon_sym_AMP_EQ] = ACTIONS(1055), - [anon_sym_PIPE_EQ] = ACTIONS(1055), - [anon_sym_LT_LT_EQ] = ACTIONS(1055), - [anon_sym_GT_GT_EQ] = ACTIONS(1055), - [anon_sym_EQ] = ACTIONS(1053), - [anon_sym_EQ_EQ] = ACTIONS(1055), - [anon_sym_BANG_EQ] = ACTIONS(1055), - [anon_sym_GT] = ACTIONS(1053), - [anon_sym_LT] = ACTIONS(1053), - [anon_sym_GT_EQ] = ACTIONS(1055), - [anon_sym_LT_EQ] = ACTIONS(1055), - [anon_sym_AT] = ACTIONS(1055), - [anon_sym__] = ACTIONS(1053), - [anon_sym_DOT] = ACTIONS(1053), - [anon_sym_DOT_DOT] = ACTIONS(1053), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1055), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1055), - [anon_sym_COMMA] = ACTIONS(1055), - [anon_sym_COLON_COLON] = ACTIONS(1055), - [anon_sym_DASH_GT] = ACTIONS(1055), - [anon_sym_POUND] = ACTIONS(1055), - [anon_sym_SQUOTE] = ACTIONS(1053), - [anon_sym_as] = ACTIONS(1053), - [anon_sym_async] = ACTIONS(1053), - [anon_sym_await] = ACTIONS(1053), - [anon_sym_break] = ACTIONS(1053), - [anon_sym_const] = ACTIONS(1053), - [anon_sym_continue] = ACTIONS(1053), - [anon_sym_default] = ACTIONS(1053), - [anon_sym_enum] = ACTIONS(1053), - [anon_sym_fn] = ACTIONS(1053), - [anon_sym_for] = ACTIONS(1053), - [anon_sym_gen] = ACTIONS(1053), - [anon_sym_if] = ACTIONS(1053), - [anon_sym_impl] = ACTIONS(1053), - [anon_sym_let] = ACTIONS(1053), - [anon_sym_loop] = ACTIONS(1053), - [anon_sym_match] = ACTIONS(1053), - [anon_sym_mod] = ACTIONS(1053), - [anon_sym_pub] = ACTIONS(1053), - [anon_sym_return] = ACTIONS(1053), - [anon_sym_static] = ACTIONS(1053), - [anon_sym_struct] = ACTIONS(1053), - [anon_sym_trait] = ACTIONS(1053), - [anon_sym_type] = ACTIONS(1053), - [anon_sym_union] = ACTIONS(1053), - [anon_sym_unsafe] = ACTIONS(1053), - [anon_sym_use] = ACTIONS(1053), - [anon_sym_where] = ACTIONS(1053), - [anon_sym_while] = ACTIONS(1053), - [sym_mutable_specifier] = ACTIONS(1053), - [sym_integer_literal] = ACTIONS(1055), - [aux_sym_string_literal_token1] = ACTIONS(1055), - [sym_char_literal] = ACTIONS(1055), - [anon_sym_true] = ACTIONS(1053), - [anon_sym_false] = ACTIONS(1053), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1053), - [sym_super] = ACTIONS(1053), - [sym_crate] = ACTIONS(1053), - [sym__raw_string_literal_start] = ACTIONS(1055), - [sym_float_literal] = ACTIONS(1055), - }, - [STATE(213)] = { - [sym_attribute_item] = STATE(1059), - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1973), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(213), - [sym_block_comment] = STATE(213), - [aux_sym_enum_variant_list_repeat1] = STATE(1058), - [sym_identifier] = ACTIONS(339), + [aux_sym_enum_variant_list_repeat1] = STATE(1066), + [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), @@ -41854,96 +41876,901 @@ 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(752), + [anon_sym_POUND] = ACTIONS(771), [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(213)] = { + [sym_line_comment] = STATE(213), + [sym_block_comment] = STATE(213), + [sym_identifier] = ACTIONS(1168), + [anon_sym_SEMI] = ACTIONS(1170), + [anon_sym_LPAREN] = ACTIONS(1170), + [anon_sym_RPAREN] = ACTIONS(1170), + [anon_sym_LBRACK] = ACTIONS(1170), + [anon_sym_RBRACK] = ACTIONS(1170), + [anon_sym_LBRACE] = ACTIONS(1170), + [anon_sym_RBRACE] = ACTIONS(1170), + [anon_sym_EQ_GT] = ACTIONS(1170), + [anon_sym_COLON] = ACTIONS(1168), + [anon_sym_DOLLAR] = ACTIONS(1170), + [anon_sym_PLUS] = ACTIONS(1168), + [anon_sym_STAR] = ACTIONS(1168), + [anon_sym_QMARK] = ACTIONS(1170), + [anon_sym_u8] = ACTIONS(1168), + [anon_sym_i8] = ACTIONS(1168), + [anon_sym_u16] = ACTIONS(1168), + [anon_sym_i16] = ACTIONS(1168), + [anon_sym_u32] = ACTIONS(1168), + [anon_sym_i32] = ACTIONS(1168), + [anon_sym_u64] = ACTIONS(1168), + [anon_sym_i64] = ACTIONS(1168), + [anon_sym_u128] = ACTIONS(1168), + [anon_sym_i128] = ACTIONS(1168), + [anon_sym_isize] = ACTIONS(1168), + [anon_sym_usize] = ACTIONS(1168), + [anon_sym_f32] = ACTIONS(1168), + [anon_sym_f64] = ACTIONS(1168), + [anon_sym_bool] = ACTIONS(1168), + [anon_sym_str] = ACTIONS(1168), + [anon_sym_char] = ACTIONS(1168), + [anon_sym_DASH] = ACTIONS(1168), + [anon_sym_SLASH] = ACTIONS(1168), + [anon_sym_PERCENT] = ACTIONS(1168), + [anon_sym_CARET] = ACTIONS(1168), + [anon_sym_BANG] = ACTIONS(1168), + [anon_sym_AMP] = ACTIONS(1168), + [anon_sym_PIPE] = ACTIONS(1168), + [anon_sym_AMP_AMP] = ACTIONS(1170), + [anon_sym_PIPE_PIPE] = ACTIONS(1170), + [anon_sym_LT_LT] = ACTIONS(1168), + [anon_sym_GT_GT] = ACTIONS(1168), + [anon_sym_PLUS_EQ] = ACTIONS(1170), + [anon_sym_DASH_EQ] = ACTIONS(1170), + [anon_sym_STAR_EQ] = ACTIONS(1170), + [anon_sym_SLASH_EQ] = ACTIONS(1170), + [anon_sym_PERCENT_EQ] = ACTIONS(1170), + [anon_sym_CARET_EQ] = ACTIONS(1170), + [anon_sym_AMP_EQ] = ACTIONS(1170), + [anon_sym_PIPE_EQ] = ACTIONS(1170), + [anon_sym_LT_LT_EQ] = ACTIONS(1170), + [anon_sym_GT_GT_EQ] = ACTIONS(1170), + [anon_sym_EQ] = ACTIONS(1168), + [anon_sym_EQ_EQ] = ACTIONS(1170), + [anon_sym_BANG_EQ] = ACTIONS(1170), + [anon_sym_GT] = ACTIONS(1168), + [anon_sym_LT] = ACTIONS(1168), + [anon_sym_GT_EQ] = ACTIONS(1170), + [anon_sym_LT_EQ] = ACTIONS(1170), + [anon_sym_AT] = ACTIONS(1170), + [anon_sym__] = ACTIONS(1168), + [anon_sym_DOT] = ACTIONS(1168), + [anon_sym_DOT_DOT] = ACTIONS(1168), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1170), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1170), + [anon_sym_COMMA] = ACTIONS(1170), + [anon_sym_COLON_COLON] = ACTIONS(1170), + [anon_sym_DASH_GT] = ACTIONS(1170), + [anon_sym_POUND] = ACTIONS(1170), + [anon_sym_SQUOTE] = ACTIONS(1168), + [anon_sym_as] = ACTIONS(1168), + [anon_sym_async] = ACTIONS(1168), + [anon_sym_await] = ACTIONS(1168), + [anon_sym_break] = ACTIONS(1168), + [anon_sym_const] = ACTIONS(1168), + [anon_sym_continue] = ACTIONS(1168), + [anon_sym_default] = ACTIONS(1168), + [anon_sym_enum] = ACTIONS(1168), + [anon_sym_fn] = ACTIONS(1168), + [anon_sym_for] = ACTIONS(1168), + [anon_sym_gen] = ACTIONS(1168), + [anon_sym_if] = ACTIONS(1168), + [anon_sym_impl] = ACTIONS(1168), + [anon_sym_let] = ACTIONS(1168), + [anon_sym_loop] = ACTIONS(1168), + [anon_sym_match] = ACTIONS(1168), + [anon_sym_mod] = ACTIONS(1168), + [anon_sym_pub] = ACTIONS(1168), + [anon_sym_return] = ACTIONS(1168), + [anon_sym_static] = ACTIONS(1168), + [anon_sym_struct] = ACTIONS(1168), + [anon_sym_trait] = ACTIONS(1168), + [anon_sym_type] = ACTIONS(1168), + [anon_sym_union] = ACTIONS(1168), + [anon_sym_unsafe] = ACTIONS(1168), + [anon_sym_use] = ACTIONS(1168), + [anon_sym_where] = ACTIONS(1168), + [anon_sym_while] = ACTIONS(1168), + [sym_mutable_specifier] = ACTIONS(1168), + [sym_integer_literal] = ACTIONS(1170), + [aux_sym_string_literal_token1] = ACTIONS(1170), + [sym_char_literal] = ACTIONS(1170), + [anon_sym_true] = ACTIONS(1168), + [anon_sym_false] = ACTIONS(1168), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1168), + [sym_super] = ACTIONS(1168), + [sym_crate] = ACTIONS(1168), + [sym__raw_string_literal_start] = ACTIONS(1170), + [sym_float_literal] = ACTIONS(1170), }, [STATE(214)] = { - [sym_attribute_item] = STATE(1059), - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1689), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), [sym_line_comment] = STATE(214), [sym_block_comment] = STATE(214), - [aux_sym_enum_variant_list_repeat1] = STATE(1058), - [sym_identifier] = ACTIONS(339), + [sym_identifier] = ACTIONS(928), + [anon_sym_SEMI] = ACTIONS(930), + [anon_sym_LPAREN] = ACTIONS(930), + [anon_sym_RPAREN] = ACTIONS(930), + [anon_sym_LBRACK] = ACTIONS(930), + [anon_sym_RBRACK] = ACTIONS(930), + [anon_sym_LBRACE] = ACTIONS(930), + [anon_sym_RBRACE] = ACTIONS(930), + [anon_sym_EQ_GT] = ACTIONS(930), + [anon_sym_COLON] = ACTIONS(928), + [anon_sym_DOLLAR] = ACTIONS(930), + [anon_sym_PLUS] = ACTIONS(928), + [anon_sym_STAR] = ACTIONS(928), + [anon_sym_QMARK] = ACTIONS(930), + [anon_sym_u8] = ACTIONS(928), + [anon_sym_i8] = ACTIONS(928), + [anon_sym_u16] = ACTIONS(928), + [anon_sym_i16] = ACTIONS(928), + [anon_sym_u32] = ACTIONS(928), + [anon_sym_i32] = ACTIONS(928), + [anon_sym_u64] = ACTIONS(928), + [anon_sym_i64] = ACTIONS(928), + [anon_sym_u128] = ACTIONS(928), + [anon_sym_i128] = ACTIONS(928), + [anon_sym_isize] = ACTIONS(928), + [anon_sym_usize] = ACTIONS(928), + [anon_sym_f32] = ACTIONS(928), + [anon_sym_f64] = ACTIONS(928), + [anon_sym_bool] = ACTIONS(928), + [anon_sym_str] = ACTIONS(928), + [anon_sym_char] = ACTIONS(928), + [anon_sym_DASH] = ACTIONS(928), + [anon_sym_SLASH] = ACTIONS(928), + [anon_sym_PERCENT] = ACTIONS(928), + [anon_sym_CARET] = ACTIONS(928), + [anon_sym_BANG] = ACTIONS(928), + [anon_sym_AMP] = ACTIONS(928), + [anon_sym_PIPE] = ACTIONS(928), + [anon_sym_AMP_AMP] = ACTIONS(930), + [anon_sym_PIPE_PIPE] = ACTIONS(930), + [anon_sym_LT_LT] = ACTIONS(928), + [anon_sym_GT_GT] = ACTIONS(928), + [anon_sym_PLUS_EQ] = ACTIONS(930), + [anon_sym_DASH_EQ] = ACTIONS(930), + [anon_sym_STAR_EQ] = ACTIONS(930), + [anon_sym_SLASH_EQ] = ACTIONS(930), + [anon_sym_PERCENT_EQ] = ACTIONS(930), + [anon_sym_CARET_EQ] = ACTIONS(930), + [anon_sym_AMP_EQ] = ACTIONS(930), + [anon_sym_PIPE_EQ] = ACTIONS(930), + [anon_sym_LT_LT_EQ] = ACTIONS(930), + [anon_sym_GT_GT_EQ] = ACTIONS(930), + [anon_sym_EQ] = ACTIONS(928), + [anon_sym_EQ_EQ] = ACTIONS(930), + [anon_sym_BANG_EQ] = ACTIONS(930), + [anon_sym_GT] = ACTIONS(928), + [anon_sym_LT] = ACTIONS(928), + [anon_sym_GT_EQ] = ACTIONS(930), + [anon_sym_LT_EQ] = ACTIONS(930), + [anon_sym_AT] = ACTIONS(930), + [anon_sym__] = ACTIONS(928), + [anon_sym_DOT] = ACTIONS(928), + [anon_sym_DOT_DOT] = ACTIONS(928), + [anon_sym_DOT_DOT_DOT] = ACTIONS(930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(930), + [anon_sym_COMMA] = ACTIONS(930), + [anon_sym_COLON_COLON] = ACTIONS(930), + [anon_sym_DASH_GT] = ACTIONS(930), + [anon_sym_POUND] = ACTIONS(930), + [anon_sym_SQUOTE] = ACTIONS(928), + [anon_sym_as] = ACTIONS(928), + [anon_sym_async] = ACTIONS(928), + [anon_sym_await] = ACTIONS(928), + [anon_sym_break] = ACTIONS(928), + [anon_sym_const] = ACTIONS(928), + [anon_sym_continue] = ACTIONS(928), + [anon_sym_default] = ACTIONS(928), + [anon_sym_enum] = ACTIONS(928), + [anon_sym_fn] = ACTIONS(928), + [anon_sym_for] = ACTIONS(928), + [anon_sym_gen] = ACTIONS(928), + [anon_sym_if] = ACTIONS(928), + [anon_sym_impl] = ACTIONS(928), + [anon_sym_let] = ACTIONS(928), + [anon_sym_loop] = ACTIONS(928), + [anon_sym_match] = ACTIONS(928), + [anon_sym_mod] = ACTIONS(928), + [anon_sym_pub] = ACTIONS(928), + [anon_sym_return] = ACTIONS(928), + [anon_sym_static] = ACTIONS(928), + [anon_sym_struct] = ACTIONS(928), + [anon_sym_trait] = ACTIONS(928), + [anon_sym_type] = ACTIONS(928), + [anon_sym_union] = ACTIONS(928), + [anon_sym_unsafe] = ACTIONS(928), + [anon_sym_use] = ACTIONS(928), + [anon_sym_where] = ACTIONS(928), + [anon_sym_while] = ACTIONS(928), + [sym_mutable_specifier] = ACTIONS(928), + [sym_integer_literal] = ACTIONS(930), + [aux_sym_string_literal_token1] = ACTIONS(930), + [sym_char_literal] = ACTIONS(930), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(928), + [sym_super] = ACTIONS(928), + [sym_crate] = ACTIONS(928), + [sym__raw_string_literal_start] = ACTIONS(930), + [sym_float_literal] = ACTIONS(930), + }, + [STATE(215)] = { + [sym_attribute_item] = STATE(405), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_self_parameter] = STATE(3168), + [sym_variadic_parameter] = STATE(3168), + [sym_parameter] = STATE(3168), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(2879), + [sym_bracketed_type] = STATE(3734), + [sym_lifetime] = STATE(3173), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3444), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2525), + [sym_scoped_identifier] = STATE(2223), + [sym_scoped_type_identifier] = STATE(2238), + [sym_const_block] = STATE(2197), + [sym__pattern] = STATE(2582), + [sym_generic_pattern] = STATE(2197), + [sym_tuple_pattern] = STATE(2197), + [sym_slice_pattern] = STATE(2197), + [sym_tuple_struct_pattern] = STATE(2197), + [sym_struct_pattern] = STATE(2197), + [sym_remaining_field_pattern] = STATE(2197), + [sym_mut_pattern] = STATE(2197), + [sym_range_pattern] = STATE(2197), + [sym_ref_pattern] = STATE(2197), + [sym_captured_pattern] = STATE(2197), + [sym_reference_pattern] = STATE(2197), + [sym_or_pattern] = STATE(2197), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2129), + [sym_string_literal] = STATE(2129), + [sym_raw_string_literal] = STATE(2129), + [sym_boolean_literal] = STATE(2129), + [sym_line_comment] = STATE(215), + [sym_block_comment] = STATE(215), + [sym_identifier] = ACTIONS(1050), + [anon_sym_LPAREN] = ACTIONS(1052), + [anon_sym_RPAREN] = ACTIONS(1172), + [anon_sym_LBRACK] = ACTIONS(1056), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1062), + [anon_sym_i8] = ACTIONS(1062), + [anon_sym_u16] = ACTIONS(1062), + [anon_sym_i16] = ACTIONS(1062), + [anon_sym_u32] = ACTIONS(1062), + [anon_sym_i32] = ACTIONS(1062), + [anon_sym_u64] = ACTIONS(1062), + [anon_sym_i64] = ACTIONS(1062), + [anon_sym_u128] = ACTIONS(1062), + [anon_sym_i128] = ACTIONS(1062), + [anon_sym_isize] = ACTIONS(1062), + [anon_sym_usize] = ACTIONS(1062), + [anon_sym_f32] = ACTIONS(1062), + [anon_sym_f64] = ACTIONS(1062), + [anon_sym_bool] = ACTIONS(1062), + [anon_sym_str] = ACTIONS(1062), + [anon_sym_char] = ACTIONS(1062), + [anon_sym_DASH] = ACTIONS(1064), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1068), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1072), + [anon_sym_DOT_DOT] = ACTIONS(1074), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1076), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1078), + [anon_sym_COMMA] = ACTIONS(1174), + [anon_sym_COLON_COLON] = ACTIONS(1082), + [anon_sym_POUND] = ACTIONS(1084), + [anon_sym_SQUOTE] = ACTIONS(1086), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1092), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1098), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1098), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_ref] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1108), + [sym_mutable_specifier] = ACTIONS(1110), + [sym_integer_literal] = ACTIONS(1112), + [aux_sym_string_literal_token1] = ACTIONS(1114), + [sym_char_literal] = ACTIONS(1112), + [anon_sym_true] = ACTIONS(1116), + [anon_sym_false] = ACTIONS(1116), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1118), + [sym_super] = ACTIONS(1120), + [sym_crate] = ACTIONS(1120), + [sym_metavariable] = ACTIONS(1122), + [sym__raw_string_literal_start] = ACTIONS(1124), + [sym_float_literal] = ACTIONS(1112), + }, + [STATE(216)] = { + [sym_line_comment] = STATE(216), + [sym_block_comment] = STATE(216), + [sym_identifier] = ACTIONS(1176), + [anon_sym_SEMI] = ACTIONS(1178), + [anon_sym_LPAREN] = ACTIONS(1178), + [anon_sym_RPAREN] = ACTIONS(1178), + [anon_sym_LBRACK] = ACTIONS(1178), + [anon_sym_RBRACK] = ACTIONS(1178), + [anon_sym_LBRACE] = ACTIONS(1178), + [anon_sym_RBRACE] = ACTIONS(1178), + [anon_sym_EQ_GT] = ACTIONS(1178), + [anon_sym_COLON] = ACTIONS(1176), + [anon_sym_DOLLAR] = ACTIONS(1178), + [anon_sym_PLUS] = ACTIONS(1176), + [anon_sym_STAR] = ACTIONS(1176), + [anon_sym_QMARK] = ACTIONS(1178), + [anon_sym_u8] = ACTIONS(1176), + [anon_sym_i8] = ACTIONS(1176), + [anon_sym_u16] = ACTIONS(1176), + [anon_sym_i16] = ACTIONS(1176), + [anon_sym_u32] = ACTIONS(1176), + [anon_sym_i32] = ACTIONS(1176), + [anon_sym_u64] = ACTIONS(1176), + [anon_sym_i64] = ACTIONS(1176), + [anon_sym_u128] = ACTIONS(1176), + [anon_sym_i128] = ACTIONS(1176), + [anon_sym_isize] = ACTIONS(1176), + [anon_sym_usize] = ACTIONS(1176), + [anon_sym_f32] = ACTIONS(1176), + [anon_sym_f64] = ACTIONS(1176), + [anon_sym_bool] = ACTIONS(1176), + [anon_sym_str] = ACTIONS(1176), + [anon_sym_char] = ACTIONS(1176), + [anon_sym_DASH] = ACTIONS(1176), + [anon_sym_SLASH] = ACTIONS(1176), + [anon_sym_PERCENT] = ACTIONS(1176), + [anon_sym_CARET] = ACTIONS(1176), + [anon_sym_BANG] = ACTIONS(1176), + [anon_sym_AMP] = ACTIONS(1176), + [anon_sym_PIPE] = ACTIONS(1176), + [anon_sym_AMP_AMP] = ACTIONS(1178), + [anon_sym_PIPE_PIPE] = ACTIONS(1178), + [anon_sym_LT_LT] = ACTIONS(1176), + [anon_sym_GT_GT] = ACTIONS(1176), + [anon_sym_PLUS_EQ] = ACTIONS(1178), + [anon_sym_DASH_EQ] = ACTIONS(1178), + [anon_sym_STAR_EQ] = ACTIONS(1178), + [anon_sym_SLASH_EQ] = ACTIONS(1178), + [anon_sym_PERCENT_EQ] = ACTIONS(1178), + [anon_sym_CARET_EQ] = ACTIONS(1178), + [anon_sym_AMP_EQ] = ACTIONS(1178), + [anon_sym_PIPE_EQ] = ACTIONS(1178), + [anon_sym_LT_LT_EQ] = ACTIONS(1178), + [anon_sym_GT_GT_EQ] = ACTIONS(1178), + [anon_sym_EQ] = ACTIONS(1176), + [anon_sym_EQ_EQ] = ACTIONS(1178), + [anon_sym_BANG_EQ] = ACTIONS(1178), + [anon_sym_GT] = ACTIONS(1176), + [anon_sym_LT] = ACTIONS(1176), + [anon_sym_GT_EQ] = ACTIONS(1178), + [anon_sym_LT_EQ] = ACTIONS(1178), + [anon_sym_AT] = ACTIONS(1178), + [anon_sym__] = ACTIONS(1176), + [anon_sym_DOT] = ACTIONS(1176), + [anon_sym_DOT_DOT] = ACTIONS(1176), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1178), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1178), + [anon_sym_COMMA] = ACTIONS(1178), + [anon_sym_COLON_COLON] = ACTIONS(1178), + [anon_sym_DASH_GT] = ACTIONS(1178), + [anon_sym_POUND] = ACTIONS(1178), + [anon_sym_SQUOTE] = ACTIONS(1176), + [anon_sym_as] = ACTIONS(1176), + [anon_sym_async] = ACTIONS(1176), + [anon_sym_await] = ACTIONS(1176), + [anon_sym_break] = ACTIONS(1176), + [anon_sym_const] = ACTIONS(1176), + [anon_sym_continue] = ACTIONS(1176), + [anon_sym_default] = ACTIONS(1176), + [anon_sym_enum] = ACTIONS(1176), + [anon_sym_fn] = ACTIONS(1176), + [anon_sym_for] = ACTIONS(1176), + [anon_sym_gen] = ACTIONS(1176), + [anon_sym_if] = ACTIONS(1176), + [anon_sym_impl] = ACTIONS(1176), + [anon_sym_let] = ACTIONS(1176), + [anon_sym_loop] = ACTIONS(1176), + [anon_sym_match] = ACTIONS(1176), + [anon_sym_mod] = ACTIONS(1176), + [anon_sym_pub] = ACTIONS(1176), + [anon_sym_return] = ACTIONS(1176), + [anon_sym_static] = ACTIONS(1176), + [anon_sym_struct] = ACTIONS(1176), + [anon_sym_trait] = ACTIONS(1176), + [anon_sym_type] = ACTIONS(1176), + [anon_sym_union] = ACTIONS(1176), + [anon_sym_unsafe] = ACTIONS(1176), + [anon_sym_use] = ACTIONS(1176), + [anon_sym_where] = ACTIONS(1176), + [anon_sym_while] = ACTIONS(1176), + [sym_mutable_specifier] = ACTIONS(1176), + [sym_integer_literal] = ACTIONS(1178), + [aux_sym_string_literal_token1] = ACTIONS(1178), + [sym_char_literal] = ACTIONS(1178), + [anon_sym_true] = ACTIONS(1176), + [anon_sym_false] = ACTIONS(1176), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1176), + [sym_super] = ACTIONS(1176), + [sym_crate] = ACTIONS(1176), + [sym__raw_string_literal_start] = ACTIONS(1178), + [sym_float_literal] = ACTIONS(1178), + }, + [STATE(217)] = { + [sym_attribute_item] = STATE(405), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_self_parameter] = STATE(3168), + [sym_variadic_parameter] = STATE(3168), + [sym_parameter] = STATE(3168), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(2879), + [sym_bracketed_type] = STATE(3734), + [sym_lifetime] = STATE(3173), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3444), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2525), + [sym_scoped_identifier] = STATE(2223), + [sym_scoped_type_identifier] = STATE(2238), + [sym_const_block] = STATE(2197), + [sym__pattern] = STATE(2582), + [sym_generic_pattern] = STATE(2197), + [sym_tuple_pattern] = STATE(2197), + [sym_slice_pattern] = STATE(2197), + [sym_tuple_struct_pattern] = STATE(2197), + [sym_struct_pattern] = STATE(2197), + [sym_remaining_field_pattern] = STATE(2197), + [sym_mut_pattern] = STATE(2197), + [sym_range_pattern] = STATE(2197), + [sym_ref_pattern] = STATE(2197), + [sym_captured_pattern] = STATE(2197), + [sym_reference_pattern] = STATE(2197), + [sym_or_pattern] = STATE(2197), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2129), + [sym_string_literal] = STATE(2129), + [sym_raw_string_literal] = STATE(2129), + [sym_boolean_literal] = STATE(2129), + [sym_line_comment] = STATE(217), + [sym_block_comment] = STATE(217), + [sym_identifier] = ACTIONS(1050), + [anon_sym_LPAREN] = ACTIONS(1052), + [anon_sym_RPAREN] = ACTIONS(1180), + [anon_sym_LBRACK] = ACTIONS(1056), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1062), + [anon_sym_i8] = ACTIONS(1062), + [anon_sym_u16] = ACTIONS(1062), + [anon_sym_i16] = ACTIONS(1062), + [anon_sym_u32] = ACTIONS(1062), + [anon_sym_i32] = ACTIONS(1062), + [anon_sym_u64] = ACTIONS(1062), + [anon_sym_i64] = ACTIONS(1062), + [anon_sym_u128] = ACTIONS(1062), + [anon_sym_i128] = ACTIONS(1062), + [anon_sym_isize] = ACTIONS(1062), + [anon_sym_usize] = ACTIONS(1062), + [anon_sym_f32] = ACTIONS(1062), + [anon_sym_f64] = ACTIONS(1062), + [anon_sym_bool] = ACTIONS(1062), + [anon_sym_str] = ACTIONS(1062), + [anon_sym_char] = ACTIONS(1062), + [anon_sym_DASH] = ACTIONS(1064), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1068), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1072), + [anon_sym_DOT_DOT] = ACTIONS(1074), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1076), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1078), + [anon_sym_COMMA] = ACTIONS(1182), + [anon_sym_COLON_COLON] = ACTIONS(1082), + [anon_sym_POUND] = ACTIONS(1084), + [anon_sym_SQUOTE] = ACTIONS(1086), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1092), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1098), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1098), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_ref] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1108), + [sym_mutable_specifier] = ACTIONS(1110), + [sym_integer_literal] = ACTIONS(1112), + [aux_sym_string_literal_token1] = ACTIONS(1114), + [sym_char_literal] = ACTIONS(1112), + [anon_sym_true] = ACTIONS(1116), + [anon_sym_false] = ACTIONS(1116), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1118), + [sym_super] = ACTIONS(1120), + [sym_crate] = ACTIONS(1120), + [sym_metavariable] = ACTIONS(1122), + [sym__raw_string_literal_start] = ACTIONS(1124), + [sym_float_literal] = ACTIONS(1112), + }, + [STATE(218)] = { + [sym_line_comment] = STATE(218), + [sym_block_comment] = STATE(218), + [sym_identifier] = ACTIONS(938), + [anon_sym_SEMI] = ACTIONS(940), + [anon_sym_LPAREN] = ACTIONS(940), + [anon_sym_RPAREN] = ACTIONS(940), + [anon_sym_LBRACK] = ACTIONS(940), + [anon_sym_RBRACK] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(940), + [anon_sym_RBRACE] = ACTIONS(940), + [anon_sym_EQ_GT] = ACTIONS(940), + [anon_sym_COLON] = ACTIONS(938), + [anon_sym_DOLLAR] = ACTIONS(940), + [anon_sym_PLUS] = ACTIONS(938), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_QMARK] = ACTIONS(940), + [anon_sym_u8] = ACTIONS(938), + [anon_sym_i8] = ACTIONS(938), + [anon_sym_u16] = ACTIONS(938), + [anon_sym_i16] = ACTIONS(938), + [anon_sym_u32] = ACTIONS(938), + [anon_sym_i32] = ACTIONS(938), + [anon_sym_u64] = ACTIONS(938), + [anon_sym_i64] = ACTIONS(938), + [anon_sym_u128] = ACTIONS(938), + [anon_sym_i128] = ACTIONS(938), + [anon_sym_isize] = ACTIONS(938), + [anon_sym_usize] = ACTIONS(938), + [anon_sym_f32] = ACTIONS(938), + [anon_sym_f64] = ACTIONS(938), + [anon_sym_bool] = ACTIONS(938), + [anon_sym_str] = ACTIONS(938), + [anon_sym_char] = ACTIONS(938), + [anon_sym_DASH] = ACTIONS(938), + [anon_sym_SLASH] = ACTIONS(938), + [anon_sym_PERCENT] = ACTIONS(938), + [anon_sym_CARET] = ACTIONS(938), + [anon_sym_BANG] = ACTIONS(938), + [anon_sym_AMP] = ACTIONS(938), + [anon_sym_PIPE] = ACTIONS(938), + [anon_sym_AMP_AMP] = ACTIONS(940), + [anon_sym_PIPE_PIPE] = ACTIONS(940), + [anon_sym_LT_LT] = ACTIONS(938), + [anon_sym_GT_GT] = ACTIONS(938), + [anon_sym_PLUS_EQ] = ACTIONS(940), + [anon_sym_DASH_EQ] = ACTIONS(940), + [anon_sym_STAR_EQ] = ACTIONS(940), + [anon_sym_SLASH_EQ] = ACTIONS(940), + [anon_sym_PERCENT_EQ] = ACTIONS(940), + [anon_sym_CARET_EQ] = ACTIONS(940), + [anon_sym_AMP_EQ] = ACTIONS(940), + [anon_sym_PIPE_EQ] = ACTIONS(940), + [anon_sym_LT_LT_EQ] = ACTIONS(940), + [anon_sym_GT_GT_EQ] = ACTIONS(940), + [anon_sym_EQ] = ACTIONS(938), + [anon_sym_EQ_EQ] = ACTIONS(940), + [anon_sym_BANG_EQ] = ACTIONS(940), + [anon_sym_GT] = ACTIONS(938), + [anon_sym_LT] = ACTIONS(938), + [anon_sym_GT_EQ] = ACTIONS(940), + [anon_sym_LT_EQ] = ACTIONS(940), + [anon_sym_AT] = ACTIONS(940), + [anon_sym__] = ACTIONS(938), + [anon_sym_DOT] = ACTIONS(938), + [anon_sym_DOT_DOT] = ACTIONS(938), + [anon_sym_DOT_DOT_DOT] = ACTIONS(940), + [anon_sym_DOT_DOT_EQ] = ACTIONS(940), + [anon_sym_COMMA] = ACTIONS(940), + [anon_sym_COLON_COLON] = ACTIONS(940), + [anon_sym_DASH_GT] = ACTIONS(940), + [anon_sym_POUND] = ACTIONS(940), + [anon_sym_SQUOTE] = ACTIONS(938), + [anon_sym_as] = ACTIONS(938), + [anon_sym_async] = ACTIONS(938), + [anon_sym_await] = ACTIONS(938), + [anon_sym_break] = ACTIONS(938), + [anon_sym_const] = ACTIONS(938), + [anon_sym_continue] = ACTIONS(938), + [anon_sym_default] = ACTIONS(938), + [anon_sym_enum] = ACTIONS(938), + [anon_sym_fn] = ACTIONS(938), + [anon_sym_for] = ACTIONS(938), + [anon_sym_gen] = ACTIONS(938), + [anon_sym_if] = ACTIONS(938), + [anon_sym_impl] = ACTIONS(938), + [anon_sym_let] = ACTIONS(938), + [anon_sym_loop] = ACTIONS(938), + [anon_sym_match] = ACTIONS(938), + [anon_sym_mod] = ACTIONS(938), + [anon_sym_pub] = ACTIONS(938), + [anon_sym_return] = ACTIONS(938), + [anon_sym_static] = ACTIONS(938), + [anon_sym_struct] = ACTIONS(938), + [anon_sym_trait] = ACTIONS(938), + [anon_sym_type] = ACTIONS(938), + [anon_sym_union] = ACTIONS(938), + [anon_sym_unsafe] = ACTIONS(938), + [anon_sym_use] = ACTIONS(938), + [anon_sym_where] = ACTIONS(938), + [anon_sym_while] = ACTIONS(938), + [sym_mutable_specifier] = ACTIONS(938), + [sym_integer_literal] = ACTIONS(940), + [aux_sym_string_literal_token1] = ACTIONS(940), + [sym_char_literal] = ACTIONS(940), + [anon_sym_true] = ACTIONS(938), + [anon_sym_false] = ACTIONS(938), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(938), + [sym_super] = ACTIONS(938), + [sym_crate] = ACTIONS(938), + [sym__raw_string_literal_start] = ACTIONS(940), + [sym_float_literal] = ACTIONS(940), + }, + [STATE(219)] = { + [sym_line_comment] = STATE(219), + [sym_block_comment] = STATE(219), + [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(1032), + [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__raw_string_literal_start] = ACTIONS(1032), + [sym_float_literal] = ACTIONS(1032), + }, + [STATE(220)] = { + [sym_attribute_item] = STATE(1068), + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3031), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1973), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1491), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), + [sym_line_comment] = STATE(220), + [sym_block_comment] = STATE(220), + [aux_sym_enum_variant_list_repeat1] = STATE(1066), + [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), @@ -41969,322 +42796,94 @@ 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(752), + [anon_sym_POUND] = ACTIONS(771), [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(215)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3105), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1766), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1607), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(226), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1480), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(215), - [sym_block_comment] = STATE(215), - [sym_identifier] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1057), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(507), - [anon_sym_BANG] = ACTIONS(1057), - [anon_sym_AMP] = ACTIONS(1059), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1061), - [anon_sym_DOT_DOT] = ACTIONS(1063), - [anon_sym_COLON_COLON] = ACTIONS(481), - [anon_sym_DASH_GT] = ACTIONS(1065), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(509), - [anon_sym_break] = ACTIONS(511), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(489), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(513), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(515), - [anon_sym_static] = ACTIONS(517), - [anon_sym_union] = ACTIONS(489), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(519), - [anon_sym_move] = ACTIONS(521), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(501), - [sym_super] = ACTIONS(503), - [sym_crate] = ACTIONS(503), - [sym_metavariable] = ACTIONS(505), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [STATE(216)] = { - [sym_bracketed_type] = STATE(3667), - [sym_generic_function] = STATE(1921), - [sym_generic_type_with_turbofish] = STATE(3104), - [sym__expression_except_range] = STATE(1706), - [sym__expression] = STATE(1734), - [sym_macro_invocation] = STATE(1722), - [sym_scoped_identifier] = STATE(1634), - [sym_scoped_type_identifier_in_expression_position] = STATE(3327), - [sym_range_expression] = STATE(1718), - [sym_unary_expression] = STATE(1921), - [sym_try_expression] = STATE(1921), - [sym_reference_expression] = STATE(1921), - [sym_binary_expression] = STATE(1921), - [sym_assignment_expression] = STATE(1921), - [sym_compound_assignment_expr] = STATE(1921), - [sym_type_cast_expression] = STATE(1921), - [sym_return_expression] = STATE(1921), - [sym_yield_expression] = STATE(1921), - [sym_call_expression] = STATE(1921), - [sym_array_expression] = STATE(1921), - [sym_parenthesized_expression] = STATE(1921), - [sym_tuple_expression] = STATE(1921), - [sym_unit_expression] = STATE(1921), - [sym_struct_expression] = STATE(1921), - [sym_if_expression] = STATE(1921), - [sym_match_expression] = STATE(1921), - [sym_while_expression] = STATE(1921), - [sym_loop_expression] = STATE(1921), - [sym_for_expression] = STATE(1921), - [sym_const_block] = STATE(1921), - [sym_closure_expression] = STATE(1921), - [sym_closure_parameters] = STATE(245), - [sym_label] = STATE(3773), - [sym_break_expression] = STATE(1921), - [sym_continue_expression] = STATE(1921), - [sym_index_expression] = STATE(1921), - [sym_await_expression] = STATE(1921), - [sym_field_expression] = STATE(1693), - [sym_unsafe_block] = STATE(1921), - [sym_async_block] = STATE(1921), - [sym_gen_block] = STATE(1921), - [sym_try_block] = STATE(1921), - [sym_block] = STATE(1921), - [sym__literal] = STATE(1921), - [sym_string_literal] = STATE(1852), - [sym_raw_string_literal] = STATE(1852), - [sym_boolean_literal] = STATE(1852), - [sym_line_comment] = STATE(216), - [sym_block_comment] = STATE(216), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(989), - [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(989), - [anon_sym_BANG] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(991), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1067), - [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(1069), - [anon_sym_raw] = ACTIONS(1071), - [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(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(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1817), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1514), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(217), - [sym_block_comment] = STATE(217), - [sym_identifier] = ACTIONS(339), + [STATE(221)] = { + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3031), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1802), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1491), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1460), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), + [sym_line_comment] = STATE(221), + [sym_block_comment] = STATE(221), + [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), @@ -42303,446 +42902,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(1073), + [anon_sym__] = ACTIONS(1184), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_DASH_GT] = ACTIONS(1075), + [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), - }, - [STATE(218)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3105), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1781), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1607), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_let_condition] = STATE(2860), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(254), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(218), - [sym_block_comment] = STATE(218), - [sym_identifier] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(907), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(907), - [anon_sym_BANG] = ACTIONS(907), - [anon_sym_AMP] = ACTIONS(909), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(911), - [anon_sym_COLON_COLON] = ACTIONS(481), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_default] = ACTIONS(489), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(491), - [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(913), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(493), - [anon_sym_static] = ACTIONS(495), - [anon_sym_union] = ACTIONS(489), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(497), - [anon_sym_move] = ACTIONS(499), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(501), - [sym_super] = ACTIONS(503), - [sym_crate] = ACTIONS(503), - [sym_metavariable] = ACTIONS(505), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [STATE(219)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3105), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1686), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1607), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(254), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1539), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(219), - [sym_block_comment] = STATE(219), - [sym_identifier] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(907), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(479), - [anon_sym_BANG] = ACTIONS(907), - [anon_sym_AMP] = ACTIONS(909), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(1079), - [anon_sym_COLON_COLON] = ACTIONS(481), - [anon_sym_DASH_GT] = ACTIONS(1081), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_default] = ACTIONS(489), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(491), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(493), - [anon_sym_static] = ACTIONS(495), - [anon_sym_union] = ACTIONS(489), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(497), - [anon_sym_move] = ACTIONS(499), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(501), - [sym_super] = ACTIONS(503), - [sym_crate] = ACTIONS(503), - [sym_metavariable] = ACTIONS(505), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [STATE(220)] = { - [sym_bracketed_type] = STATE(3667), - [sym_generic_function] = STATE(1921), - [sym_generic_type_with_turbofish] = STATE(3104), - [sym__expression_except_range] = STATE(1706), - [sym__expression] = STATE(1858), - [sym_macro_invocation] = STATE(1722), - [sym_scoped_identifier] = STATE(1634), - [sym_scoped_type_identifier_in_expression_position] = STATE(3327), - [sym_range_expression] = STATE(1718), - [sym_unary_expression] = STATE(1921), - [sym_try_expression] = STATE(1921), - [sym_reference_expression] = STATE(1921), - [sym_binary_expression] = STATE(1921), - [sym_assignment_expression] = STATE(1921), - [sym_compound_assignment_expr] = STATE(1921), - [sym_type_cast_expression] = STATE(1921), - [sym_return_expression] = STATE(1921), - [sym_yield_expression] = STATE(1921), - [sym_call_expression] = STATE(1921), - [sym_array_expression] = STATE(1921), - [sym_parenthesized_expression] = STATE(1921), - [sym_tuple_expression] = STATE(1921), - [sym_unit_expression] = STATE(1921), - [sym_struct_expression] = STATE(1921), - [sym_if_expression] = STATE(1921), - [sym_match_expression] = STATE(1921), - [sym_while_expression] = STATE(1921), - [sym_loop_expression] = STATE(1921), - [sym_for_expression] = STATE(1921), - [sym_const_block] = STATE(1921), - [sym_closure_expression] = STATE(1921), - [sym_closure_parameters] = STATE(245), - [sym_label] = STATE(3773), - [sym_break_expression] = STATE(1921), - [sym_continue_expression] = STATE(1921), - [sym_index_expression] = STATE(1921), - [sym_await_expression] = STATE(1921), - [sym_field_expression] = STATE(1693), - [sym_unsafe_block] = STATE(1921), - [sym_async_block] = STATE(1921), - [sym_gen_block] = STATE(1921), - [sym_try_block] = STATE(1921), - [sym_block] = STATE(1787), - [sym__literal] = STATE(1921), - [sym_string_literal] = STATE(1852), - [sym_raw_string_literal] = STATE(1852), - [sym_boolean_literal] = STATE(1852), - [sym_line_comment] = STATE(220), - [sym_block_comment] = STATE(220), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(989), - [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(989), - [anon_sym_AMP] = ACTIONS(991), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1083), - [anon_sym_DOT_DOT] = ACTIONS(1067), - [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym_DASH_GT] = ACTIONS(1085), - [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(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(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1882), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(221), - [sym_block_comment] = STATE(221), - [aux_sym_tuple_expression_repeat1] = STATE(239), - [sym_identifier] = ACTIONS(339), + [STATE(222)] = { + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3031), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1827), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1491), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1451), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), + [sym_line_comment] = STATE(222), + [sym_block_comment] = STATE(222), + [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1087), [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), @@ -42761,102 +43016,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(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(1188), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DASH_GT] = ACTIONS(1190), [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(222)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1882), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(222), - [sym_block_comment] = STATE(222), - [aux_sym_tuple_expression_repeat1] = STATE(246), - [sym_identifier] = ACTIONS(339), + [STATE(223)] = { + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3031), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1919), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1491), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1466), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), + [sym_line_comment] = STATE(223), + [sym_block_comment] = STATE(223), + [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1087), [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), @@ -42875,214 +43130,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(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(1192), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DASH_GT] = ACTIONS(1194), [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(223)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3105), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1477), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1607), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(254), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(223), - [sym_block_comment] = STATE(223), - [sym_identifier] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(907), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(907), - [anon_sym_BANG] = ACTIONS(907), - [anon_sym_AMP] = ACTIONS(909), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1079), - [anon_sym_COLON_COLON] = ACTIONS(481), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_default] = ACTIONS(489), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(491), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(493), - [anon_sym_static] = ACTIONS(495), - [anon_sym_union] = ACTIONS(489), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [sym_mutable_specifier] = ACTIONS(1089), - [anon_sym_raw] = ACTIONS(1091), - [anon_sym_yield] = ACTIONS(497), - [anon_sym_move] = ACTIONS(499), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(501), - [sym_super] = ACTIONS(503), - [sym_crate] = ACTIONS(503), - [sym_metavariable] = ACTIONS(505), - [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(224)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1577), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1480), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3031), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1729), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1491), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1464), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), [sym_line_comment] = STATE(224), [sym_block_comment] = STATE(224), - [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), @@ -43101,102 +43244,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(23), [anon_sym_str] = ACTIONS(23), [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(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(1061), - [anon_sym_DOT_DOT] = ACTIONS(1093), + [anon_sym__] = ACTIONS(1196), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_DASH_GT] = ACTIONS(1065), + [anon_sym_DASH_GT] = ACTIONS(1198), [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(225)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1477), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3031), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1796), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1491), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), [sym_line_comment] = STATE(225), [sym_block_comment] = STATE(225), - [sym_identifier] = ACTIONS(339), + [aux_sym_tuple_expression_repeat1] = STATE(258), + [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(1200), [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), @@ -43220,325 +43365,667 @@ 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(1093), + [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), - [sym_mutable_specifier] = ACTIONS(1095), - [anon_sym_raw] = ACTIONS(1097), - [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(226)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3105), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1750), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1607), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), + [sym_bracketed_type] = STATE(3702), + [sym_generic_function] = STATE(1815), + [sym_generic_type_with_turbofish] = STATE(2969), + [sym__expression_except_range] = STATE(1694), + [sym__expression] = STATE(1738), + [sym_macro_invocation] = STATE(1832), + [sym_scoped_identifier] = STATE(1654), + [sym_scoped_type_identifier_in_expression_position] = STATE(3227), + [sym_range_expression] = STATE(1820), + [sym_unary_expression] = STATE(1815), + [sym_try_expression] = STATE(1815), + [sym_reference_expression] = STATE(1815), + [sym_binary_expression] = STATE(1815), + [sym_assignment_expression] = STATE(1815), + [sym_compound_assignment_expr] = STATE(1815), + [sym_type_cast_expression] = STATE(1815), + [sym_return_expression] = STATE(1815), + [sym_yield_expression] = STATE(1815), + [sym_call_expression] = STATE(1815), + [sym_array_expression] = STATE(1815), + [sym_parenthesized_expression] = STATE(1815), + [sym_tuple_expression] = STATE(1815), + [sym_unit_expression] = STATE(1815), + [sym_struct_expression] = STATE(1815), + [sym_if_expression] = STATE(1815), + [sym_match_expression] = STATE(1815), + [sym_while_expression] = STATE(1815), + [sym_loop_expression] = STATE(1815), + [sym_for_expression] = STATE(1815), + [sym_const_block] = STATE(1815), + [sym_closure_expression] = STATE(1815), [sym_closure_parameters] = STATE(226), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1514), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym_label] = STATE(3807), + [sym_break_expression] = STATE(1815), + [sym_continue_expression] = STATE(1815), + [sym_index_expression] = STATE(1815), + [sym_await_expression] = STATE(1815), + [sym_field_expression] = STATE(1695), + [sym_unsafe_block] = STATE(1815), + [sym_async_block] = STATE(1815), + [sym_gen_block] = STATE(1815), + [sym_try_block] = STATE(1815), + [sym_block] = STATE(1787), + [sym__literal] = STATE(1815), + [sym_string_literal] = STATE(1733), + [sym_raw_string_literal] = STATE(1733), + [sym_boolean_literal] = STATE(1733), [sym_line_comment] = STATE(226), [sym_block_comment] = STATE(226), - [sym_identifier] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1057), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(507), - [anon_sym_BANG] = ACTIONS(1057), - [anon_sym_AMP] = ACTIONS(1059), + [sym_identifier] = ACTIONS(410), + [anon_sym_LPAREN] = ACTIONS(500), + [anon_sym_LBRACK] = ACTIONS(502), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_STAR] = ACTIONS(986), + [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(986), + [anon_sym_AMP] = ACTIONS(988), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1073), - [anon_sym_DOT_DOT] = ACTIONS(1063), - [anon_sym_COLON_COLON] = ACTIONS(481), - [anon_sym_DASH_GT] = ACTIONS(1075), + [anon_sym__] = ACTIONS(1202), + [anon_sym_DOT_DOT] = ACTIONS(1204), + [anon_sym_COLON_COLON] = ACTIONS(420), + [anon_sym_DASH_GT] = ACTIONS(1206), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(509), - [anon_sym_break] = ACTIONS(511), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(489), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(513), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(515), - [anon_sym_static] = ACTIONS(517), - [anon_sym_union] = ACTIONS(489), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(519), - [anon_sym_move] = ACTIONS(521), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(501), - [sym_super] = ACTIONS(503), - [sym_crate] = ACTIONS(503), - [sym_metavariable] = ACTIONS(505), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [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(227)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3105), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1477), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1607), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), + [sym_bracketed_type] = STATE(3702), + [sym_generic_function] = STATE(1815), + [sym_generic_type_with_turbofish] = STATE(2969), + [sym__expression_except_range] = STATE(1694), + [sym__expression] = STATE(1740), + [sym_macro_invocation] = STATE(1832), + [sym_scoped_identifier] = STATE(1654), + [sym_scoped_type_identifier_in_expression_position] = STATE(3227), + [sym_range_expression] = STATE(1820), + [sym_unary_expression] = STATE(1815), + [sym_try_expression] = STATE(1815), + [sym_reference_expression] = STATE(1815), + [sym_binary_expression] = STATE(1815), + [sym_assignment_expression] = STATE(1815), + [sym_compound_assignment_expr] = STATE(1815), + [sym_type_cast_expression] = STATE(1815), + [sym_return_expression] = STATE(1815), + [sym_yield_expression] = STATE(1815), + [sym_call_expression] = STATE(1815), + [sym_array_expression] = STATE(1815), + [sym_parenthesized_expression] = STATE(1815), + [sym_tuple_expression] = STATE(1815), + [sym_unit_expression] = STATE(1815), + [sym_struct_expression] = STATE(1815), + [sym_if_expression] = STATE(1815), + [sym_match_expression] = STATE(1815), + [sym_while_expression] = STATE(1815), + [sym_loop_expression] = STATE(1815), + [sym_for_expression] = STATE(1815), + [sym_const_block] = STATE(1815), + [sym_closure_expression] = STATE(1815), [sym_closure_parameters] = STATE(226), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym_label] = STATE(3807), + [sym_break_expression] = STATE(1815), + [sym_continue_expression] = STATE(1815), + [sym_index_expression] = STATE(1815), + [sym_await_expression] = STATE(1815), + [sym_field_expression] = STATE(1695), + [sym_unsafe_block] = STATE(1815), + [sym_async_block] = STATE(1815), + [sym_gen_block] = STATE(1815), + [sym_try_block] = STATE(1815), + [sym_block] = STATE(1811), + [sym__literal] = STATE(1815), + [sym_string_literal] = STATE(1733), + [sym_raw_string_literal] = STATE(1733), + [sym_boolean_literal] = STATE(1733), [sym_line_comment] = STATE(227), [sym_block_comment] = STATE(227), - [sym_identifier] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1057), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(1057), - [anon_sym_BANG] = ACTIONS(1057), - [anon_sym_AMP] = ACTIONS(1059), + [sym_identifier] = ACTIONS(410), + [anon_sym_LPAREN] = ACTIONS(500), + [anon_sym_LBRACK] = ACTIONS(502), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_STAR] = ACTIONS(986), + [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(986), + [anon_sym_AMP] = ACTIONS(988), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1063), - [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym__] = ACTIONS(1208), + [anon_sym_DOT_DOT] = ACTIONS(1204), + [anon_sym_COLON_COLON] = ACTIONS(420), + [anon_sym_DASH_GT] = ACTIONS(1210), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(509), - [anon_sym_break] = ACTIONS(511), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(489), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(513), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(515), - [anon_sym_static] = ACTIONS(517), - [anon_sym_union] = ACTIONS(489), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [sym_mutable_specifier] = ACTIONS(1099), - [anon_sym_raw] = ACTIONS(1101), - [anon_sym_yield] = ACTIONS(519), - [anon_sym_move] = ACTIONS(521), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(501), - [sym_super] = ACTIONS(503), - [sym_crate] = ACTIONS(503), - [sym_metavariable] = ACTIONS(505), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [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(228)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1567), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1514), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym_attribute_item] = STATE(426), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_self_parameter] = STATE(3362), + [sym_variadic_parameter] = STATE(3362), + [sym_parameter] = STATE(3362), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(3138), + [sym_bracketed_type] = STATE(3726), + [sym_lifetime] = STATE(3173), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3316), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2601), + [sym_scoped_identifier] = STATE(2336), + [sym_scoped_type_identifier] = STATE(2238), + [sym_const_block] = STATE(2197), + [sym__pattern] = STATE(3441), + [sym_generic_pattern] = STATE(2197), + [sym_tuple_pattern] = STATE(2197), + [sym_slice_pattern] = STATE(2197), + [sym_tuple_struct_pattern] = STATE(2197), + [sym_struct_pattern] = STATE(2197), + [sym_remaining_field_pattern] = STATE(2197), + [sym_mut_pattern] = STATE(2197), + [sym_range_pattern] = STATE(2197), + [sym_ref_pattern] = STATE(2197), + [sym_captured_pattern] = STATE(2197), + [sym_reference_pattern] = STATE(2197), + [sym_or_pattern] = STATE(2197), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2129), + [sym_string_literal] = STATE(2129), + [sym_raw_string_literal] = STATE(2129), + [sym_boolean_literal] = STATE(2129), [sym_line_comment] = STATE(228), [sym_block_comment] = STATE(228), - [sym_identifier] = ACTIONS(339), + [sym_identifier] = ACTIONS(1130), + [anon_sym_LPAREN] = ACTIONS(1132), + [anon_sym_RPAREN] = ACTIONS(1212), + [anon_sym_LBRACK] = ACTIONS(1056), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1136), + [anon_sym_i8] = ACTIONS(1136), + [anon_sym_u16] = ACTIONS(1136), + [anon_sym_i16] = ACTIONS(1136), + [anon_sym_u32] = ACTIONS(1136), + [anon_sym_i32] = ACTIONS(1136), + [anon_sym_u64] = ACTIONS(1136), + [anon_sym_i64] = ACTIONS(1136), + [anon_sym_u128] = ACTIONS(1136), + [anon_sym_i128] = ACTIONS(1136), + [anon_sym_isize] = ACTIONS(1136), + [anon_sym_usize] = ACTIONS(1136), + [anon_sym_f32] = ACTIONS(1136), + [anon_sym_f64] = ACTIONS(1136), + [anon_sym_bool] = ACTIONS(1136), + [anon_sym_str] = ACTIONS(1136), + [anon_sym_char] = ACTIONS(1136), + [anon_sym_DASH] = ACTIONS(1064), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1138), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1214), + [anon_sym_DOT_DOT] = ACTIONS(1074), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1076), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1078), + [anon_sym_COLON_COLON] = ACTIONS(1144), + [anon_sym_POUND] = ACTIONS(1084), + [anon_sym_SQUOTE] = ACTIONS(1086), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1146), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1148), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1148), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_ref] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1108), + [sym_mutable_specifier] = ACTIONS(1110), + [sym_integer_literal] = ACTIONS(1112), + [aux_sym_string_literal_token1] = ACTIONS(1114), + [sym_char_literal] = ACTIONS(1112), + [anon_sym_true] = ACTIONS(1116), + [anon_sym_false] = ACTIONS(1116), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1150), + [sym_super] = ACTIONS(1152), + [sym_crate] = ACTIONS(1152), + [sym_metavariable] = ACTIONS(1154), + [sym__raw_string_literal_start] = ACTIONS(1124), + [sym_float_literal] = ACTIONS(1112), + }, + [STATE(229)] = { + [sym_bracketed_type] = STATE(3702), + [sym_generic_function] = STATE(1815), + [sym_generic_type_with_turbofish] = STATE(2969), + [sym__expression_except_range] = STATE(1694), + [sym__expression] = STATE(1745), + [sym_macro_invocation] = STATE(1832), + [sym_scoped_identifier] = STATE(1654), + [sym_scoped_type_identifier_in_expression_position] = STATE(3227), + [sym_range_expression] = STATE(1820), + [sym_unary_expression] = STATE(1815), + [sym_try_expression] = STATE(1815), + [sym_reference_expression] = STATE(1815), + [sym_binary_expression] = STATE(1815), + [sym_assignment_expression] = STATE(1815), + [sym_compound_assignment_expr] = STATE(1815), + [sym_type_cast_expression] = STATE(1815), + [sym_return_expression] = STATE(1815), + [sym_yield_expression] = STATE(1815), + [sym_call_expression] = STATE(1815), + [sym_array_expression] = STATE(1815), + [sym_parenthesized_expression] = STATE(1815), + [sym_tuple_expression] = STATE(1815), + [sym_unit_expression] = STATE(1815), + [sym_struct_expression] = STATE(1815), + [sym_if_expression] = STATE(1815), + [sym_match_expression] = STATE(1815), + [sym_while_expression] = STATE(1815), + [sym_loop_expression] = STATE(1815), + [sym_for_expression] = STATE(1815), + [sym_const_block] = STATE(1815), + [sym_closure_expression] = STATE(1815), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3807), + [sym_break_expression] = STATE(1815), + [sym_continue_expression] = STATE(1815), + [sym_index_expression] = STATE(1815), + [sym_await_expression] = STATE(1815), + [sym_field_expression] = STATE(1695), + [sym_unsafe_block] = STATE(1815), + [sym_async_block] = STATE(1815), + [sym_gen_block] = STATE(1815), + [sym_try_block] = STATE(1815), + [sym_block] = STATE(1946), + [sym__literal] = STATE(1815), + [sym_string_literal] = STATE(1733), + [sym_raw_string_literal] = STATE(1733), + [sym_boolean_literal] = STATE(1733), + [sym_line_comment] = STATE(229), + [sym_block_comment] = STATE(229), + [sym_identifier] = ACTIONS(410), + [anon_sym_LPAREN] = ACTIONS(500), + [anon_sym_LBRACK] = ACTIONS(502), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_STAR] = ACTIONS(986), + [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(986), + [anon_sym_AMP] = ACTIONS(988), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1216), + [anon_sym_DOT_DOT] = ACTIONS(1204), + [anon_sym_COLON_COLON] = ACTIONS(420), + [anon_sym_DASH_GT] = ACTIONS(1218), + [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(230)] = { + [sym_bracketed_type] = STATE(3702), + [sym_generic_function] = STATE(1815), + [sym_generic_type_with_turbofish] = STATE(2969), + [sym__expression_except_range] = STATE(1694), + [sym__expression] = STATE(1746), + [sym_macro_invocation] = STATE(1832), + [sym_scoped_identifier] = STATE(1654), + [sym_scoped_type_identifier_in_expression_position] = STATE(3227), + [sym_range_expression] = STATE(1820), + [sym_unary_expression] = STATE(1815), + [sym_try_expression] = STATE(1815), + [sym_reference_expression] = STATE(1815), + [sym_binary_expression] = STATE(1815), + [sym_assignment_expression] = STATE(1815), + [sym_compound_assignment_expr] = STATE(1815), + [sym_type_cast_expression] = STATE(1815), + [sym_return_expression] = STATE(1815), + [sym_yield_expression] = STATE(1815), + [sym_call_expression] = STATE(1815), + [sym_array_expression] = STATE(1815), + [sym_parenthesized_expression] = STATE(1815), + [sym_tuple_expression] = STATE(1815), + [sym_unit_expression] = STATE(1815), + [sym_struct_expression] = STATE(1815), + [sym_if_expression] = STATE(1815), + [sym_match_expression] = STATE(1815), + [sym_while_expression] = STATE(1815), + [sym_loop_expression] = STATE(1815), + [sym_for_expression] = STATE(1815), + [sym_const_block] = STATE(1815), + [sym_closure_expression] = STATE(1815), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3807), + [sym_break_expression] = STATE(1815), + [sym_continue_expression] = STATE(1815), + [sym_index_expression] = STATE(1815), + [sym_await_expression] = STATE(1815), + [sym_field_expression] = STATE(1695), + [sym_unsafe_block] = STATE(1815), + [sym_async_block] = STATE(1815), + [sym_gen_block] = STATE(1815), + [sym_try_block] = STATE(1815), + [sym_block] = STATE(1841), + [sym__literal] = STATE(1815), + [sym_string_literal] = STATE(1733), + [sym_raw_string_literal] = STATE(1733), + [sym_boolean_literal] = STATE(1733), + [sym_line_comment] = STATE(230), + [sym_block_comment] = STATE(230), + [sym_identifier] = ACTIONS(410), + [anon_sym_LPAREN] = ACTIONS(500), + [anon_sym_LBRACK] = ACTIONS(502), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_STAR] = ACTIONS(986), + [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(986), + [anon_sym_AMP] = ACTIONS(988), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1220), + [anon_sym_DOT_DOT] = ACTIONS(1204), + [anon_sym_COLON_COLON] = ACTIONS(420), + [anon_sym_DASH_GT] = ACTIONS(1222), + [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(231)] = { + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3031), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1796), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1491), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), + [sym_line_comment] = STATE(231), + [sym_block_comment] = STATE(231), + [aux_sym_tuple_expression_repeat1] = STATE(259), + [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(1200), [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), @@ -43557,218 +44044,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(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(1073), - [anon_sym_DOT_DOT] = ACTIONS(1093), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_DASH_GT] = ACTIONS(1075), [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(229)] = { - [sym_attribute_item] = STATE(400), - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_self_parameter] = STATE(2994), - [sym_variadic_parameter] = STATE(2994), - [sym_parameter] = STATE(2994), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2670), - [sym_bracketed_type] = STATE(3699), - [sym_lifetime] = STATE(3008), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3431), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(2528), - [sym_scoped_identifier] = STATE(2224), - [sym_scoped_type_identifier] = STATE(2186), - [sym_const_block] = STATE(2221), - [sym__pattern] = STATE(2596), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), - [sym_line_comment] = STATE(229), - [sym_block_comment] = STATE(229), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(1103), - [anon_sym_LPAREN] = ACTIONS(1105), - [anon_sym_RPAREN] = ACTIONS(1107), - [anon_sym_LBRACK] = ACTIONS(1109), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1115), - [anon_sym_i8] = ACTIONS(1115), - [anon_sym_u16] = ACTIONS(1115), - [anon_sym_i16] = ACTIONS(1115), - [anon_sym_u32] = ACTIONS(1115), - [anon_sym_i32] = ACTIONS(1115), - [anon_sym_u64] = ACTIONS(1115), - [anon_sym_i64] = ACTIONS(1115), - [anon_sym_u128] = ACTIONS(1115), - [anon_sym_i128] = ACTIONS(1115), - [anon_sym_isize] = ACTIONS(1115), - [anon_sym_usize] = ACTIONS(1115), - [anon_sym_f32] = ACTIONS(1115), - [anon_sym_f64] = ACTIONS(1115), - [anon_sym_bool] = ACTIONS(1115), - [anon_sym_str] = ACTIONS(1115), - [anon_sym_char] = ACTIONS(1115), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(1121), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1125), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1129), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COMMA] = ACTIONS(1133), - [anon_sym_COLON_COLON] = ACTIONS(1135), - [anon_sym_POUND] = ACTIONS(1137), - [anon_sym_SQUOTE] = ACTIONS(1139), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1143), - [anon_sym_default] = ACTIONS(1145), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1151), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1151), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_ref] = ACTIONS(1159), - [anon_sym_dyn] = ACTIONS(1161), - [sym_mutable_specifier] = ACTIONS(1163), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1171), - [sym_super] = ACTIONS(1173), - [sym_crate] = ACTIONS(1173), - [sym_metavariable] = ACTIONS(1175), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), + [STATE(232)] = { + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3114), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1488), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1631), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(244), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), + [sym_line_comment] = STATE(232), + [sym_block_comment] = STATE(232), + [sym_identifier] = ACTIONS(470), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_STAR] = ACTIONS(910), + [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(910), + [anon_sym_BANG] = ACTIONS(910), + [anon_sym_AMP] = ACTIONS(912), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1224), + [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(512), + [anon_sym_break] = ACTIONS(514), + [anon_sym_const] = ACTIONS(358), + [anon_sym_continue] = ACTIONS(516), + [anon_sym_default] = ACTIONS(482), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(518), + [anon_sym_if] = ACTIONS(366), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(520), + [anon_sym_static] = ACTIONS(522), + [anon_sym_union] = ACTIONS(482), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [sym_mutable_specifier] = ACTIONS(1226), + [anon_sym_raw] = ACTIONS(1228), + [anon_sym_yield] = ACTIONS(524), + [anon_sym_move] = ACTIONS(526), + [anon_sym_try] = ACTIONS(378), + [sym_integer_literal] = ACTIONS(99), + [aux_sym_string_literal_token1] = ACTIONS(101), + [sym_char_literal] = ACTIONS(99), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(494), + [sym_super] = ACTIONS(496), + [sym_crate] = ACTIONS(496), + [sym_metavariable] = ACTIONS(498), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), }, - [STATE(230)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1727), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(230), - [sym_block_comment] = STATE(230), - [aux_sym_tuple_expression_repeat1] = STATE(239), - [sym_identifier] = ACTIONS(339), + [STATE(233)] = { + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3031), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1785), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1491), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), + [sym_line_comment] = STATE(233), + [sym_block_comment] = STATE(233), + [aux_sym_tuple_expression_repeat1] = STATE(235), + [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1179), + [anon_sym_RPAREN] = ACTIONS(1230), [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), @@ -43795,206 +44280,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(231)] = { + [STATE(234)] = { [sym_attribute_item] = STATE(426), - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_self_parameter] = STATE(3032), - [sym_variadic_parameter] = STATE(3032), - [sym_parameter] = STATE(3032), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2793), - [sym_bracketed_type] = STATE(3691), - [sym_lifetime] = STATE(3008), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3333), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(2540), - [sym_scoped_identifier] = STATE(2311), - [sym_scoped_type_identifier] = STATE(2186), - [sym_const_block] = STATE(2221), - [sym__pattern] = STATE(3210), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), - [sym_line_comment] = STATE(231), - [sym_block_comment] = STATE(231), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(1181), - [anon_sym_LPAREN] = ACTIONS(1183), - [anon_sym_RPAREN] = ACTIONS(1185), - [anon_sym_LBRACK] = ACTIONS(1109), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1187), - [anon_sym_i8] = ACTIONS(1187), - [anon_sym_u16] = ACTIONS(1187), - [anon_sym_i16] = ACTIONS(1187), - [anon_sym_u32] = ACTIONS(1187), - [anon_sym_i32] = ACTIONS(1187), - [anon_sym_u64] = ACTIONS(1187), - [anon_sym_i64] = ACTIONS(1187), - [anon_sym_u128] = ACTIONS(1187), - [anon_sym_i128] = ACTIONS(1187), - [anon_sym_isize] = ACTIONS(1187), - [anon_sym_usize] = ACTIONS(1187), - [anon_sym_f32] = ACTIONS(1187), - [anon_sym_f64] = ACTIONS(1187), - [anon_sym_bool] = ACTIONS(1187), - [anon_sym_str] = ACTIONS(1187), - [anon_sym_char] = ACTIONS(1187), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(1189), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1191), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1129), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COMMA] = ACTIONS(1193), - [anon_sym_COLON_COLON] = ACTIONS(1195), - [anon_sym_POUND] = ACTIONS(1137), - [anon_sym_SQUOTE] = ACTIONS(1139), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1143), - [anon_sym_default] = ACTIONS(1197), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1199), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1199), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_ref] = ACTIONS(1159), - [anon_sym_dyn] = ACTIONS(1161), - [sym_mutable_specifier] = ACTIONS(1163), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1201), - [sym_super] = ACTIONS(1203), - [sym_crate] = ACTIONS(1203), - [sym_metavariable] = ACTIONS(1205), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_self_parameter] = STATE(3362), + [sym_variadic_parameter] = STATE(3362), + [sym_parameter] = STATE(3362), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(3138), + [sym_bracketed_type] = STATE(3726), + [sym_lifetime] = STATE(3173), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3316), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2601), + [sym_scoped_identifier] = STATE(2336), + [sym_scoped_type_identifier] = STATE(2238), + [sym_const_block] = STATE(2197), + [sym__pattern] = STATE(3441), + [sym_generic_pattern] = STATE(2197), + [sym_tuple_pattern] = STATE(2197), + [sym_slice_pattern] = STATE(2197), + [sym_tuple_struct_pattern] = STATE(2197), + [sym_struct_pattern] = STATE(2197), + [sym_remaining_field_pattern] = STATE(2197), + [sym_mut_pattern] = STATE(2197), + [sym_range_pattern] = STATE(2197), + [sym_ref_pattern] = STATE(2197), + [sym_captured_pattern] = STATE(2197), + [sym_reference_pattern] = STATE(2197), + [sym_or_pattern] = STATE(2197), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2129), + [sym_string_literal] = STATE(2129), + [sym_raw_string_literal] = STATE(2129), + [sym_boolean_literal] = STATE(2129), + [sym_line_comment] = STATE(234), + [sym_block_comment] = STATE(234), + [sym_identifier] = ACTIONS(1130), + [anon_sym_LPAREN] = ACTIONS(1132), + [anon_sym_RPAREN] = ACTIONS(1232), + [anon_sym_LBRACK] = ACTIONS(1056), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1136), + [anon_sym_i8] = ACTIONS(1136), + [anon_sym_u16] = ACTIONS(1136), + [anon_sym_i16] = ACTIONS(1136), + [anon_sym_u32] = ACTIONS(1136), + [anon_sym_i32] = ACTIONS(1136), + [anon_sym_u64] = ACTIONS(1136), + [anon_sym_i64] = ACTIONS(1136), + [anon_sym_u128] = ACTIONS(1136), + [anon_sym_i128] = ACTIONS(1136), + [anon_sym_isize] = ACTIONS(1136), + [anon_sym_usize] = ACTIONS(1136), + [anon_sym_f32] = ACTIONS(1136), + [anon_sym_f64] = ACTIONS(1136), + [anon_sym_bool] = ACTIONS(1136), + [anon_sym_str] = ACTIONS(1136), + [anon_sym_char] = ACTIONS(1136), + [anon_sym_DASH] = ACTIONS(1064), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1138), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1214), + [anon_sym_DOT_DOT] = ACTIONS(1074), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1076), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1078), + [anon_sym_COLON_COLON] = ACTIONS(1144), + [anon_sym_POUND] = ACTIONS(1084), + [anon_sym_SQUOTE] = ACTIONS(1086), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1146), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1148), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1148), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_ref] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1108), + [sym_mutable_specifier] = ACTIONS(1110), + [sym_integer_literal] = ACTIONS(1112), + [aux_sym_string_literal_token1] = ACTIONS(1114), + [sym_char_literal] = ACTIONS(1112), + [anon_sym_true] = ACTIONS(1116), + [anon_sym_false] = ACTIONS(1116), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1150), + [sym_super] = ACTIONS(1152), + [sym_crate] = ACTIONS(1152), + [sym_metavariable] = ACTIONS(1154), + [sym__raw_string_literal_start] = ACTIONS(1124), + [sym_float_literal] = ACTIONS(1112), }, - [STATE(232)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1563), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1539), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(232), - [sym_block_comment] = STATE(232), - [sym_identifier] = ACTIONS(339), + [STATE(235)] = { + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3031), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1794), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1491), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), + [sym_line_comment] = STATE(235), + [sym_block_comment] = STATE(235), + [aux_sym_tuple_expression_repeat1] = STATE(258), + [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(1234), [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), @@ -44013,102 +44500,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(1077), - [anon_sym_DOT_DOT] = ACTIONS(1093), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_DASH_GT] = ACTIONS(1081), [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(233)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1820), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1480), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(233), - [sym_block_comment] = STATE(233), - [sym_identifier] = ACTIONS(339), + [STATE(236)] = { + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3031), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1794), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1491), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), + [sym_line_comment] = STATE(236), + [sym_block_comment] = STATE(236), + [aux_sym_tuple_expression_repeat1] = STATE(239), + [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(1234), [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), @@ -44127,788 +44614,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(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(1061), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_DASH_GT] = ACTIONS(1065), [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(234)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3105), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1788), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1607), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(226), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1539), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(234), - [sym_block_comment] = STATE(234), - [sym_identifier] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1057), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(507), - [anon_sym_BANG] = ACTIONS(1057), - [anon_sym_AMP] = ACTIONS(1059), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(1063), - [anon_sym_COLON_COLON] = ACTIONS(481), - [anon_sym_DASH_GT] = ACTIONS(1081), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(509), - [anon_sym_break] = ACTIONS(511), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(489), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(513), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(515), - [anon_sym_static] = ACTIONS(517), - [anon_sym_union] = ACTIONS(489), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(519), - [anon_sym_move] = ACTIONS(521), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(501), - [sym_super] = ACTIONS(503), - [sym_crate] = ACTIONS(503), - [sym_metavariable] = ACTIONS(505), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [STATE(235)] = { - [sym_attribute_item] = STATE(400), - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_self_parameter] = STATE(2994), - [sym_variadic_parameter] = STATE(2994), - [sym_parameter] = STATE(2994), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2670), - [sym_bracketed_type] = STATE(3699), - [sym_lifetime] = STATE(3008), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3431), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(2528), - [sym_scoped_identifier] = STATE(2224), - [sym_scoped_type_identifier] = STATE(2186), - [sym_const_block] = STATE(2221), - [sym__pattern] = STATE(2596), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), - [sym_line_comment] = STATE(235), - [sym_block_comment] = STATE(235), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(1103), - [anon_sym_LPAREN] = ACTIONS(1105), - [anon_sym_RPAREN] = ACTIONS(1207), - [anon_sym_LBRACK] = ACTIONS(1109), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1115), - [anon_sym_i8] = ACTIONS(1115), - [anon_sym_u16] = ACTIONS(1115), - [anon_sym_i16] = ACTIONS(1115), - [anon_sym_u32] = ACTIONS(1115), - [anon_sym_i32] = ACTIONS(1115), - [anon_sym_u64] = ACTIONS(1115), - [anon_sym_i64] = ACTIONS(1115), - [anon_sym_u128] = ACTIONS(1115), - [anon_sym_i128] = ACTIONS(1115), - [anon_sym_isize] = ACTIONS(1115), - [anon_sym_usize] = ACTIONS(1115), - [anon_sym_f32] = ACTIONS(1115), - [anon_sym_f64] = ACTIONS(1115), - [anon_sym_bool] = ACTIONS(1115), - [anon_sym_str] = ACTIONS(1115), - [anon_sym_char] = ACTIONS(1115), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(1121), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1125), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1129), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COMMA] = ACTIONS(1209), - [anon_sym_COLON_COLON] = ACTIONS(1135), - [anon_sym_POUND] = ACTIONS(1137), - [anon_sym_SQUOTE] = ACTIONS(1139), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1143), - [anon_sym_default] = ACTIONS(1145), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1151), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1151), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_ref] = ACTIONS(1159), - [anon_sym_dyn] = ACTIONS(1161), - [sym_mutable_specifier] = ACTIONS(1163), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1171), - [sym_super] = ACTIONS(1173), - [sym_crate] = ACTIONS(1173), - [sym_metavariable] = ACTIONS(1175), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), + [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(236)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3105), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1798), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1607), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(226), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1509), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(236), - [sym_block_comment] = STATE(236), - [sym_identifier] = ACTIONS(475), + [STATE(237)] = { + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3031), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1600), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1491), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1460), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), + [sym_line_comment] = STATE(237), + [sym_block_comment] = STATE(237), + [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1057), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(507), - [anon_sym_BANG] = ACTIONS(1057), - [anon_sym_AMP] = ACTIONS(1059), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(354), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1211), - [anon_sym_DOT_DOT] = ACTIONS(1063), - [anon_sym_COLON_COLON] = ACTIONS(481), - [anon_sym_DASH_GT] = ACTIONS(1213), + [anon_sym__] = ACTIONS(1184), + [anon_sym_DOT_DOT] = ACTIONS(1236), + [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DASH_GT] = ACTIONS(1186), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(509), - [anon_sym_break] = ACTIONS(511), - [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(489), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(513), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(515), - [anon_sym_static] = ACTIONS(517), - [anon_sym_union] = ACTIONS(489), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(519), - [anon_sym_move] = ACTIONS(521), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(501), - [sym_super] = ACTIONS(503), - [sym_crate] = ACTIONS(503), - [sym_metavariable] = ACTIONS(505), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [STATE(237)] = { - [sym_attribute_item] = STATE(400), - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_self_parameter] = STATE(2994), - [sym_variadic_parameter] = STATE(2994), - [sym_parameter] = STATE(2994), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2670), - [sym_bracketed_type] = STATE(3691), - [sym_lifetime] = STATE(3008), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3333), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(2540), - [sym_scoped_identifier] = STATE(2311), - [sym_scoped_type_identifier] = STATE(2186), - [sym_const_block] = STATE(2221), - [sym__pattern] = STATE(3210), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), - [sym_line_comment] = STATE(237), - [sym_block_comment] = STATE(237), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(1181), - [anon_sym_LPAREN] = ACTIONS(1183), - [anon_sym_RPAREN] = ACTIONS(1215), - [anon_sym_LBRACK] = ACTIONS(1109), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1187), - [anon_sym_i8] = ACTIONS(1187), - [anon_sym_u16] = ACTIONS(1187), - [anon_sym_i16] = ACTIONS(1187), - [anon_sym_u32] = ACTIONS(1187), - [anon_sym_i32] = ACTIONS(1187), - [anon_sym_u64] = ACTIONS(1187), - [anon_sym_i64] = ACTIONS(1187), - [anon_sym_u128] = ACTIONS(1187), - [anon_sym_i128] = ACTIONS(1187), - [anon_sym_isize] = ACTIONS(1187), - [anon_sym_usize] = ACTIONS(1187), - [anon_sym_f32] = ACTIONS(1187), - [anon_sym_f64] = ACTIONS(1187), - [anon_sym_bool] = ACTIONS(1187), - [anon_sym_str] = ACTIONS(1187), - [anon_sym_char] = ACTIONS(1187), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(1189), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1217), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1129), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COMMA] = ACTIONS(1219), - [anon_sym_COLON_COLON] = ACTIONS(1195), - [anon_sym_POUND] = ACTIONS(1137), - [anon_sym_SQUOTE] = ACTIONS(1139), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1143), - [anon_sym_default] = ACTIONS(1197), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1199), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1199), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_ref] = ACTIONS(1159), - [anon_sym_dyn] = ACTIONS(1161), - [sym_mutable_specifier] = ACTIONS(1163), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1201), - [sym_super] = ACTIONS(1203), - [sym_crate] = ACTIONS(1203), - [sym_metavariable] = ACTIONS(1205), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), + [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(238)] = { - [sym_bracketed_type] = STATE(3667), - [sym_generic_function] = STATE(1921), - [sym_generic_type_with_turbofish] = STATE(3104), - [sym__expression_except_range] = STATE(1706), - [sym__expression] = STATE(1955), - [sym_macro_invocation] = STATE(1722), - [sym_scoped_identifier] = STATE(1634), - [sym_scoped_type_identifier_in_expression_position] = STATE(3327), - [sym_range_expression] = STATE(1718), - [sym_unary_expression] = STATE(1921), - [sym_try_expression] = STATE(1921), - [sym_reference_expression] = STATE(1921), - [sym_binary_expression] = STATE(1921), - [sym_assignment_expression] = STATE(1921), - [sym_compound_assignment_expr] = STATE(1921), - [sym_type_cast_expression] = STATE(1921), - [sym_return_expression] = STATE(1921), - [sym_yield_expression] = STATE(1921), - [sym_call_expression] = STATE(1921), - [sym_array_expression] = STATE(1921), - [sym_parenthesized_expression] = STATE(1921), - [sym_tuple_expression] = STATE(1921), - [sym_unit_expression] = STATE(1921), - [sym_struct_expression] = STATE(1921), - [sym_if_expression] = STATE(1921), - [sym_let_condition] = STATE(2860), - [sym_match_expression] = STATE(1921), - [sym_while_expression] = STATE(1921), - [sym_loop_expression] = STATE(1921), - [sym_for_expression] = STATE(1921), - [sym_const_block] = STATE(1921), - [sym_closure_expression] = STATE(1921), - [sym_closure_parameters] = STATE(245), - [sym_label] = STATE(3773), - [sym_break_expression] = STATE(1921), - [sym_continue_expression] = STATE(1921), - [sym_index_expression] = STATE(1921), - [sym_await_expression] = STATE(1921), - [sym_field_expression] = STATE(1693), - [sym_unsafe_block] = STATE(1921), - [sym_async_block] = STATE(1921), - [sym_gen_block] = STATE(1921), - [sym_try_block] = STATE(1921), - [sym_block] = STATE(1921), - [sym__literal] = STATE(1921), - [sym_string_literal] = STATE(1852), - [sym_raw_string_literal] = STATE(1852), - [sym_boolean_literal] = STATE(1852), + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3031), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1875), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1491), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), [sym_line_comment] = STATE(238), [sym_block_comment] = STATE(238), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(989), - [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(989), - [anon_sym_BANG] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(991), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(993), - [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(995), - [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(239)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1967), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(239), - [sym_block_comment] = STATE(239), - [aux_sym_tuple_expression_repeat1] = STATE(239), - [sym_identifier] = ACTIONS(1221), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_RPAREN] = ACTIONS(1227), - [anon_sym_LBRACK] = ACTIONS(1229), - [anon_sym_LBRACE] = ACTIONS(1232), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_u8] = ACTIONS(1238), - [anon_sym_i8] = ACTIONS(1238), - [anon_sym_u16] = ACTIONS(1238), - [anon_sym_i16] = ACTIONS(1238), - [anon_sym_u32] = ACTIONS(1238), - [anon_sym_i32] = ACTIONS(1238), - [anon_sym_u64] = ACTIONS(1238), - [anon_sym_i64] = ACTIONS(1238), - [anon_sym_u128] = ACTIONS(1238), - [anon_sym_i128] = ACTIONS(1238), - [anon_sym_isize] = ACTIONS(1238), - [anon_sym_usize] = ACTIONS(1238), - [anon_sym_f32] = ACTIONS(1238), - [anon_sym_f64] = ACTIONS(1238), - [anon_sym_bool] = ACTIONS(1238), - [anon_sym_str] = ACTIONS(1238), - [anon_sym_char] = ACTIONS(1238), - [anon_sym_DASH] = ACTIONS(1235), - [anon_sym_BANG] = ACTIONS(1235), - [anon_sym_AMP] = ACTIONS(1241), - [anon_sym_PIPE] = ACTIONS(1244), - [anon_sym_LT] = ACTIONS(1247), - [anon_sym_DOT_DOT] = ACTIONS(1250), - [anon_sym_COLON_COLON] = ACTIONS(1253), - [anon_sym_SQUOTE] = ACTIONS(1256), - [anon_sym_async] = ACTIONS(1259), - [anon_sym_break] = ACTIONS(1262), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_continue] = ACTIONS(1268), - [anon_sym_default] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1274), - [anon_sym_gen] = ACTIONS(1277), - [anon_sym_if] = ACTIONS(1280), - [anon_sym_loop] = ACTIONS(1283), - [anon_sym_match] = ACTIONS(1286), - [anon_sym_return] = ACTIONS(1289), - [anon_sym_static] = ACTIONS(1292), - [anon_sym_union] = ACTIONS(1271), - [anon_sym_unsafe] = ACTIONS(1295), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_yield] = ACTIONS(1301), - [anon_sym_move] = ACTIONS(1304), - [anon_sym_try] = ACTIONS(1307), - [sym_integer_literal] = ACTIONS(1310), - [aux_sym_string_literal_token1] = ACTIONS(1313), - [sym_char_literal] = ACTIONS(1310), - [anon_sym_true] = ACTIONS(1316), - [anon_sym_false] = ACTIONS(1316), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1319), - [sym_super] = ACTIONS(1322), - [sym_crate] = ACTIONS(1322), - [sym_metavariable] = ACTIONS(1325), - [sym__raw_string_literal_start] = ACTIONS(1328), - [sym_float_literal] = ACTIONS(1310), - }, - [STATE(240)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1727), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(240), - [sym_block_comment] = STATE(240), - [aux_sym_tuple_expression_repeat1] = STATE(241), - [sym_identifier] = ACTIONS(339), + [aux_sym_tuple_expression_repeat1] = STATE(225), + [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1179), + [anon_sym_RPAREN] = ACTIONS(1238), [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), @@ -44935,94 +44850,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), + [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(241)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1825), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(241), - [sym_block_comment] = STATE(241), - [aux_sym_tuple_expression_repeat1] = STATE(239), - [sym_identifier] = ACTIONS(339), + [STATE(239)] = { + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3031), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1803), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1491), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), + [sym_line_comment] = STATE(239), + [sym_block_comment] = STATE(239), + [aux_sym_tuple_expression_repeat1] = STATE(258), + [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1331), + [anon_sym_RPAREN] = ACTIONS(1240), [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), @@ -45049,776 +44964,1346 @@ 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(240)] = { + [sym_attribute_item] = STATE(426), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_self_parameter] = STATE(3362), + [sym_variadic_parameter] = STATE(3362), + [sym_parameter] = STATE(3362), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(3138), + [sym_bracketed_type] = STATE(3726), + [sym_lifetime] = STATE(3173), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3316), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2601), + [sym_scoped_identifier] = STATE(2336), + [sym_scoped_type_identifier] = STATE(2238), + [sym_const_block] = STATE(2197), + [sym__pattern] = STATE(3441), + [sym_generic_pattern] = STATE(2197), + [sym_tuple_pattern] = STATE(2197), + [sym_slice_pattern] = STATE(2197), + [sym_tuple_struct_pattern] = STATE(2197), + [sym_struct_pattern] = STATE(2197), + [sym_remaining_field_pattern] = STATE(2197), + [sym_mut_pattern] = STATE(2197), + [sym_range_pattern] = STATE(2197), + [sym_ref_pattern] = STATE(2197), + [sym_captured_pattern] = STATE(2197), + [sym_reference_pattern] = STATE(2197), + [sym_or_pattern] = STATE(2197), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2129), + [sym_string_literal] = STATE(2129), + [sym_raw_string_literal] = STATE(2129), + [sym_boolean_literal] = STATE(2129), + [sym_line_comment] = STATE(240), + [sym_block_comment] = STATE(240), + [sym_identifier] = ACTIONS(1130), + [anon_sym_LPAREN] = ACTIONS(1132), + [anon_sym_RPAREN] = ACTIONS(1242), + [anon_sym_LBRACK] = ACTIONS(1056), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1136), + [anon_sym_i8] = ACTIONS(1136), + [anon_sym_u16] = ACTIONS(1136), + [anon_sym_i16] = ACTIONS(1136), + [anon_sym_u32] = ACTIONS(1136), + [anon_sym_i32] = ACTIONS(1136), + [anon_sym_u64] = ACTIONS(1136), + [anon_sym_i64] = ACTIONS(1136), + [anon_sym_u128] = ACTIONS(1136), + [anon_sym_i128] = ACTIONS(1136), + [anon_sym_isize] = ACTIONS(1136), + [anon_sym_usize] = ACTIONS(1136), + [anon_sym_f32] = ACTIONS(1136), + [anon_sym_f64] = ACTIONS(1136), + [anon_sym_bool] = ACTIONS(1136), + [anon_sym_str] = ACTIONS(1136), + [anon_sym_char] = ACTIONS(1136), + [anon_sym_DASH] = ACTIONS(1064), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1138), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1214), + [anon_sym_DOT_DOT] = ACTIONS(1074), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1076), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1078), + [anon_sym_COLON_COLON] = ACTIONS(1144), + [anon_sym_POUND] = ACTIONS(1084), + [anon_sym_SQUOTE] = ACTIONS(1086), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1146), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1148), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1148), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_ref] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1108), + [sym_mutable_specifier] = ACTIONS(1110), + [sym_integer_literal] = ACTIONS(1112), + [aux_sym_string_literal_token1] = ACTIONS(1114), + [sym_char_literal] = ACTIONS(1112), + [anon_sym_true] = ACTIONS(1116), + [anon_sym_false] = ACTIONS(1116), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1150), + [sym_super] = ACTIONS(1152), + [sym_crate] = ACTIONS(1152), + [sym_metavariable] = ACTIONS(1154), + [sym__raw_string_literal_start] = ACTIONS(1124), + [sym_float_literal] = ACTIONS(1112), + }, + [STATE(241)] = { + [sym_bracketed_type] = STATE(3702), + [sym_generic_function] = STATE(1815), + [sym_generic_type_with_turbofish] = STATE(2969), + [sym__expression_except_range] = STATE(1694), + [sym__expression] = STATE(1845), + [sym_macro_invocation] = STATE(1832), + [sym_scoped_identifier] = STATE(1654), + [sym_scoped_type_identifier_in_expression_position] = STATE(3227), + [sym_range_expression] = STATE(1820), + [sym_unary_expression] = STATE(1815), + [sym_try_expression] = STATE(1815), + [sym_reference_expression] = STATE(1815), + [sym_binary_expression] = STATE(1815), + [sym_assignment_expression] = STATE(1815), + [sym_compound_assignment_expr] = STATE(1815), + [sym_type_cast_expression] = STATE(1815), + [sym_return_expression] = STATE(1815), + [sym_yield_expression] = STATE(1815), + [sym_call_expression] = STATE(1815), + [sym_array_expression] = STATE(1815), + [sym_parenthesized_expression] = STATE(1815), + [sym_tuple_expression] = STATE(1815), + [sym_unit_expression] = STATE(1815), + [sym_struct_expression] = STATE(1815), + [sym_if_expression] = STATE(1815), + [sym_match_expression] = STATE(1815), + [sym_while_expression] = STATE(1815), + [sym_loop_expression] = STATE(1815), + [sym_for_expression] = STATE(1815), + [sym_const_block] = STATE(1815), + [sym_closure_expression] = STATE(1815), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3807), + [sym_break_expression] = STATE(1815), + [sym_continue_expression] = STATE(1815), + [sym_index_expression] = STATE(1815), + [sym_await_expression] = STATE(1815), + [sym_field_expression] = STATE(1695), + [sym_unsafe_block] = STATE(1815), + [sym_async_block] = STATE(1815), + [sym_gen_block] = STATE(1815), + [sym_try_block] = STATE(1815), + [sym_block] = STATE(1815), + [sym__literal] = STATE(1815), + [sym_string_literal] = STATE(1733), + [sym_raw_string_literal] = STATE(1733), + [sym_boolean_literal] = STATE(1733), + [sym_line_comment] = STATE(241), + [sym_block_comment] = STATE(241), + [sym_identifier] = ACTIONS(410), + [anon_sym_LPAREN] = ACTIONS(500), + [anon_sym_LBRACK] = ACTIONS(502), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_STAR] = ACTIONS(986), + [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(986), + [anon_sym_BANG] = ACTIONS(986), + [anon_sym_AMP] = ACTIONS(988), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1204), + [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(1244), + [anon_sym_raw] = ACTIONS(1246), + [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(242)] = { - [sym_attribute_item] = STATE(417), - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_self_parameter] = STATE(2884), - [sym_variadic_parameter] = STATE(2884), - [sym_parameter] = STATE(2884), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2717), - [sym_bracketed_type] = STATE(3691), - [sym_lifetime] = STATE(3008), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3333), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(2540), - [sym_scoped_identifier] = STATE(2311), - [sym_scoped_type_identifier] = STATE(2186), - [sym_const_block] = STATE(2221), - [sym__pattern] = STATE(3210), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3114), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1904), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1631), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(262), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1464), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), [sym_line_comment] = STATE(242), [sym_block_comment] = STATE(242), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(1181), - [anon_sym_LPAREN] = ACTIONS(1183), - [anon_sym_RPAREN] = ACTIONS(1333), - [anon_sym_LBRACK] = ACTIONS(1109), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1187), - [anon_sym_i8] = ACTIONS(1187), - [anon_sym_u16] = ACTIONS(1187), - [anon_sym_i16] = ACTIONS(1187), - [anon_sym_u32] = ACTIONS(1187), - [anon_sym_i32] = ACTIONS(1187), - [anon_sym_u64] = ACTIONS(1187), - [anon_sym_i64] = ACTIONS(1187), - [anon_sym_u128] = ACTIONS(1187), - [anon_sym_i128] = ACTIONS(1187), - [anon_sym_isize] = ACTIONS(1187), - [anon_sym_usize] = ACTIONS(1187), - [anon_sym_f32] = ACTIONS(1187), - [anon_sym_f64] = ACTIONS(1187), - [anon_sym_bool] = ACTIONS(1187), - [anon_sym_str] = ACTIONS(1187), - [anon_sym_char] = ACTIONS(1187), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(1189), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1335), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1129), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COMMA] = ACTIONS(1337), - [anon_sym_COLON_COLON] = ACTIONS(1195), - [anon_sym_POUND] = ACTIONS(1137), - [anon_sym_SQUOTE] = ACTIONS(1139), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1143), - [anon_sym_default] = ACTIONS(1197), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1199), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1199), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_ref] = ACTIONS(1159), - [anon_sym_dyn] = ACTIONS(1161), - [sym_mutable_specifier] = ACTIONS(1163), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1201), - [sym_super] = ACTIONS(1203), - [sym_crate] = ACTIONS(1203), - [sym_metavariable] = ACTIONS(1205), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), + [sym_identifier] = ACTIONS(470), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_STAR] = ACTIONS(1248), + [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(1248), + [anon_sym_AMP] = ACTIONS(1250), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1196), + [anon_sym_DOT_DOT] = ACTIONS(1252), + [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_DASH_GT] = ACTIONS(1198), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(478), + [anon_sym_break] = ACTIONS(480), + [anon_sym_const] = ACTIONS(358), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(482), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(484), + [anon_sym_if] = ACTIONS(366), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(486), + [anon_sym_static] = ACTIONS(488), + [anon_sym_union] = ACTIONS(482), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_yield] = ACTIONS(490), + [anon_sym_move] = ACTIONS(492), + [anon_sym_try] = ACTIONS(378), + [sym_integer_literal] = ACTIONS(99), + [aux_sym_string_literal_token1] = ACTIONS(101), + [sym_char_literal] = ACTIONS(99), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(494), + [sym_super] = ACTIONS(496), + [sym_crate] = ACTIONS(496), + [sym_metavariable] = ACTIONS(498), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), }, [STATE(243)] = { - [sym_bracketed_type] = STATE(3667), - [sym_generic_function] = STATE(1921), - [sym_generic_type_with_turbofish] = STATE(3104), - [sym__expression_except_range] = STATE(1706), - [sym__expression] = STATE(1863), - [sym_macro_invocation] = STATE(1722), - [sym_scoped_identifier] = STATE(1634), - [sym_scoped_type_identifier_in_expression_position] = STATE(3327), - [sym_range_expression] = STATE(1718), - [sym_unary_expression] = STATE(1921), - [sym_try_expression] = STATE(1921), - [sym_reference_expression] = STATE(1921), - [sym_binary_expression] = STATE(1921), - [sym_assignment_expression] = STATE(1921), - [sym_compound_assignment_expr] = STATE(1921), - [sym_type_cast_expression] = STATE(1921), - [sym_return_expression] = STATE(1921), - [sym_yield_expression] = STATE(1921), - [sym_call_expression] = STATE(1921), - [sym_array_expression] = STATE(1921), - [sym_parenthesized_expression] = STATE(1921), - [sym_tuple_expression] = STATE(1921), - [sym_unit_expression] = STATE(1921), - [sym_struct_expression] = STATE(1921), - [sym_if_expression] = STATE(1921), - [sym_match_expression] = STATE(1921), - [sym_while_expression] = STATE(1921), - [sym_loop_expression] = STATE(1921), - [sym_for_expression] = STATE(1921), - [sym_const_block] = STATE(1921), - [sym_closure_expression] = STATE(1921), - [sym_closure_parameters] = STATE(245), - [sym_label] = STATE(3773), - [sym_break_expression] = STATE(1921), - [sym_continue_expression] = STATE(1921), - [sym_index_expression] = STATE(1921), - [sym_await_expression] = STATE(1921), - [sym_field_expression] = STATE(1693), - [sym_unsafe_block] = STATE(1921), - [sym_async_block] = STATE(1921), - [sym_gen_block] = STATE(1921), - [sym_try_block] = STATE(1921), - [sym_block] = STATE(1721), - [sym__literal] = STATE(1921), - [sym_string_literal] = STATE(1852), - [sym_raw_string_literal] = STATE(1852), - [sym_boolean_literal] = STATE(1852), + [sym_attribute_item] = STATE(426), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_self_parameter] = STATE(3362), + [sym_variadic_parameter] = STATE(3362), + [sym_parameter] = STATE(3362), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(3138), + [sym_bracketed_type] = STATE(3726), + [sym_lifetime] = STATE(3173), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3316), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2601), + [sym_scoped_identifier] = STATE(2336), + [sym_scoped_type_identifier] = STATE(2238), + [sym_const_block] = STATE(2197), + [sym__pattern] = STATE(3441), + [sym_generic_pattern] = STATE(2197), + [sym_tuple_pattern] = STATE(2197), + [sym_slice_pattern] = STATE(2197), + [sym_tuple_struct_pattern] = STATE(2197), + [sym_struct_pattern] = STATE(2197), + [sym_remaining_field_pattern] = STATE(2197), + [sym_mut_pattern] = STATE(2197), + [sym_range_pattern] = STATE(2197), + [sym_ref_pattern] = STATE(2197), + [sym_captured_pattern] = STATE(2197), + [sym_reference_pattern] = STATE(2197), + [sym_or_pattern] = STATE(2197), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2129), + [sym_string_literal] = STATE(2129), + [sym_raw_string_literal] = STATE(2129), + [sym_boolean_literal] = STATE(2129), [sym_line_comment] = STATE(243), [sym_block_comment] = STATE(243), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(989), - [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(989), - [anon_sym_AMP] = ACTIONS(991), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1339), - [anon_sym_DOT_DOT] = ACTIONS(1067), - [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym_DASH_GT] = ACTIONS(1341), - [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), + [sym_identifier] = ACTIONS(1130), + [anon_sym_LPAREN] = ACTIONS(1132), + [anon_sym_RPAREN] = ACTIONS(1254), + [anon_sym_LBRACK] = ACTIONS(1056), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1136), + [anon_sym_i8] = ACTIONS(1136), + [anon_sym_u16] = ACTIONS(1136), + [anon_sym_i16] = ACTIONS(1136), + [anon_sym_u32] = ACTIONS(1136), + [anon_sym_i32] = ACTIONS(1136), + [anon_sym_u64] = ACTIONS(1136), + [anon_sym_i64] = ACTIONS(1136), + [anon_sym_u128] = ACTIONS(1136), + [anon_sym_i128] = ACTIONS(1136), + [anon_sym_isize] = ACTIONS(1136), + [anon_sym_usize] = ACTIONS(1136), + [anon_sym_f32] = ACTIONS(1136), + [anon_sym_f64] = ACTIONS(1136), + [anon_sym_bool] = ACTIONS(1136), + [anon_sym_str] = ACTIONS(1136), + [anon_sym_char] = ACTIONS(1136), + [anon_sym_DASH] = ACTIONS(1064), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1138), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1214), + [anon_sym_DOT_DOT] = ACTIONS(1074), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1076), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1078), + [anon_sym_COLON_COLON] = ACTIONS(1144), + [anon_sym_POUND] = ACTIONS(1084), + [anon_sym_SQUOTE] = ACTIONS(1086), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1146), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1148), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1148), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_ref] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1108), + [sym_mutable_specifier] = ACTIONS(1110), + [sym_integer_literal] = ACTIONS(1112), + [aux_sym_string_literal_token1] = ACTIONS(1114), + [sym_char_literal] = ACTIONS(1112), + [anon_sym_true] = ACTIONS(1116), + [anon_sym_false] = ACTIONS(1116), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1150), + [sym_super] = ACTIONS(1152), + [sym_crate] = ACTIONS(1152), + [sym_metavariable] = ACTIONS(1154), + [sym__raw_string_literal_start] = ACTIONS(1124), + [sym_float_literal] = ACTIONS(1112), }, [STATE(244)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3105), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1705), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1607), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(254), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1509), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3114), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1669), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1631), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(244), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1460), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), [sym_line_comment] = STATE(244), [sym_block_comment] = STATE(244), - [sym_identifier] = ACTIONS(475), + [sym_identifier] = ACTIONS(470), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(907), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(479), - [anon_sym_BANG] = ACTIONS(907), - [anon_sym_AMP] = ACTIONS(909), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_STAR] = ACTIONS(910), + [anon_sym_u8] = ACTIONS(472), + [anon_sym_i8] = ACTIONS(472), + [anon_sym_u16] = ACTIONS(472), + [anon_sym_i16] = ACTIONS(472), + [anon_sym_u32] = ACTIONS(472), + [anon_sym_i32] = ACTIONS(472), + [anon_sym_u64] = ACTIONS(472), + [anon_sym_i64] = ACTIONS(472), + [anon_sym_u128] = ACTIONS(472), + [anon_sym_i128] = ACTIONS(472), + [anon_sym_isize] = ACTIONS(472), + [anon_sym_usize] = ACTIONS(472), + [anon_sym_f32] = ACTIONS(472), + [anon_sym_f64] = ACTIONS(472), + [anon_sym_bool] = ACTIONS(472), + [anon_sym_str] = ACTIONS(472), + [anon_sym_char] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(510), + [anon_sym_BANG] = ACTIONS(910), + [anon_sym_AMP] = ACTIONS(912), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1211), - [anon_sym_DOT_DOT] = ACTIONS(1079), - [anon_sym_COLON_COLON] = ACTIONS(481), - [anon_sym_DASH_GT] = ACTIONS(1213), + [anon_sym__] = ACTIONS(1184), + [anon_sym_DOT_DOT] = ACTIONS(1224), + [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_DASH_GT] = ACTIONS(1186), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_default] = ACTIONS(489), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(491), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(493), - [anon_sym_static] = ACTIONS(495), - [anon_sym_union] = ACTIONS(489), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(497), - [anon_sym_move] = ACTIONS(499), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(501), - [sym_super] = ACTIONS(503), - [sym_crate] = ACTIONS(503), - [sym_metavariable] = ACTIONS(505), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_async] = ACTIONS(512), + [anon_sym_break] = ACTIONS(514), + [anon_sym_const] = ACTIONS(358), + [anon_sym_continue] = ACTIONS(516), + [anon_sym_default] = ACTIONS(482), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(518), + [anon_sym_if] = ACTIONS(366), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(520), + [anon_sym_static] = ACTIONS(522), + [anon_sym_union] = ACTIONS(482), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_yield] = ACTIONS(524), + [anon_sym_move] = ACTIONS(526), + [anon_sym_try] = ACTIONS(378), + [sym_integer_literal] = ACTIONS(99), + [aux_sym_string_literal_token1] = ACTIONS(101), + [sym_char_literal] = ACTIONS(99), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(494), + [sym_super] = ACTIONS(496), + [sym_crate] = ACTIONS(496), + [sym_metavariable] = ACTIONS(498), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), }, [STATE(245)] = { - [sym_bracketed_type] = STATE(3667), - [sym_generic_function] = STATE(1921), - [sym_generic_type_with_turbofish] = STATE(3104), - [sym__expression_except_range] = STATE(1706), - [sym__expression] = STATE(1856), - [sym_macro_invocation] = STATE(1722), - [sym_scoped_identifier] = STATE(1634), - [sym_scoped_type_identifier_in_expression_position] = STATE(3327), - [sym_range_expression] = STATE(1718), - [sym_unary_expression] = STATE(1921), - [sym_try_expression] = STATE(1921), - [sym_reference_expression] = STATE(1921), - [sym_binary_expression] = STATE(1921), - [sym_assignment_expression] = STATE(1921), - [sym_compound_assignment_expr] = STATE(1921), - [sym_type_cast_expression] = STATE(1921), - [sym_return_expression] = STATE(1921), - [sym_yield_expression] = STATE(1921), - [sym_call_expression] = STATE(1921), - [sym_array_expression] = STATE(1921), - [sym_parenthesized_expression] = STATE(1921), - [sym_tuple_expression] = STATE(1921), - [sym_unit_expression] = STATE(1921), - [sym_struct_expression] = STATE(1921), - [sym_if_expression] = STATE(1921), - [sym_match_expression] = STATE(1921), - [sym_while_expression] = STATE(1921), - [sym_loop_expression] = STATE(1921), - [sym_for_expression] = STATE(1921), - [sym_const_block] = STATE(1921), - [sym_closure_expression] = STATE(1921), - [sym_closure_parameters] = STATE(245), - [sym_label] = STATE(3773), - [sym_break_expression] = STATE(1921), - [sym_continue_expression] = STATE(1921), - [sym_index_expression] = STATE(1921), - [sym_await_expression] = STATE(1921), - [sym_field_expression] = STATE(1693), - [sym_unsafe_block] = STATE(1921), - [sym_async_block] = STATE(1921), - [sym_gen_block] = STATE(1921), - [sym_try_block] = STATE(1921), - [sym_block] = STATE(1760), - [sym__literal] = STATE(1921), - [sym_string_literal] = STATE(1852), - [sym_raw_string_literal] = STATE(1852), - [sym_boolean_literal] = STATE(1852), + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3114), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1691), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1631), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(244), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1451), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), [sym_line_comment] = STATE(245), [sym_block_comment] = STATE(245), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(989), - [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(989), - [anon_sym_AMP] = ACTIONS(991), + [sym_identifier] = ACTIONS(470), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_STAR] = ACTIONS(910), + [anon_sym_u8] = ACTIONS(472), + [anon_sym_i8] = ACTIONS(472), + [anon_sym_u16] = ACTIONS(472), + [anon_sym_i16] = ACTIONS(472), + [anon_sym_u32] = ACTIONS(472), + [anon_sym_i32] = ACTIONS(472), + [anon_sym_u64] = ACTIONS(472), + [anon_sym_i64] = ACTIONS(472), + [anon_sym_u128] = ACTIONS(472), + [anon_sym_i128] = ACTIONS(472), + [anon_sym_isize] = ACTIONS(472), + [anon_sym_usize] = ACTIONS(472), + [anon_sym_f32] = ACTIONS(472), + [anon_sym_f64] = ACTIONS(472), + [anon_sym_bool] = ACTIONS(472), + [anon_sym_str] = ACTIONS(472), + [anon_sym_char] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(510), + [anon_sym_BANG] = ACTIONS(910), + [anon_sym_AMP] = ACTIONS(912), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1343), - [anon_sym_DOT_DOT] = ACTIONS(1067), - [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym_DASH_GT] = ACTIONS(1345), + [anon_sym__] = ACTIONS(1188), + [anon_sym_DOT_DOT] = ACTIONS(1224), + [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_DASH_GT] = ACTIONS(1190), [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_async] = ACTIONS(512), + [anon_sym_break] = ACTIONS(514), + [anon_sym_const] = ACTIONS(358), + [anon_sym_continue] = ACTIONS(516), + [anon_sym_default] = ACTIONS(482), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(518), + [anon_sym_if] = ACTIONS(366), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(520), + [anon_sym_static] = ACTIONS(522), + [anon_sym_union] = ACTIONS(482), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_yield] = ACTIONS(524), + [anon_sym_move] = ACTIONS(526), + [anon_sym_try] = ACTIONS(378), + [sym_integer_literal] = ACTIONS(99), + [aux_sym_string_literal_token1] = ACTIONS(101), + [sym_char_literal] = ACTIONS(99), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(494), + [sym_super] = ACTIONS(496), + [sym_crate] = ACTIONS(496), + [sym_metavariable] = ACTIONS(498), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), }, [STATE(246)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1885), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym_attribute_item] = STATE(426), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_self_parameter] = STATE(3362), + [sym_variadic_parameter] = STATE(3362), + [sym_parameter] = STATE(3362), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(3138), + [sym_bracketed_type] = STATE(3726), + [sym_lifetime] = STATE(3173), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3316), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2601), + [sym_scoped_identifier] = STATE(2336), + [sym_scoped_type_identifier] = STATE(2238), + [sym_const_block] = STATE(2197), + [sym__pattern] = STATE(3441), + [sym_generic_pattern] = STATE(2197), + [sym_tuple_pattern] = STATE(2197), + [sym_slice_pattern] = STATE(2197), + [sym_tuple_struct_pattern] = STATE(2197), + [sym_struct_pattern] = STATE(2197), + [sym_remaining_field_pattern] = STATE(2197), + [sym_mut_pattern] = STATE(2197), + [sym_range_pattern] = STATE(2197), + [sym_ref_pattern] = STATE(2197), + [sym_captured_pattern] = STATE(2197), + [sym_reference_pattern] = STATE(2197), + [sym_or_pattern] = STATE(2197), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2129), + [sym_string_literal] = STATE(2129), + [sym_raw_string_literal] = STATE(2129), + [sym_boolean_literal] = STATE(2129), [sym_line_comment] = STATE(246), [sym_block_comment] = STATE(246), - [aux_sym_tuple_expression_repeat1] = STATE(239), - [sym_identifier] = ACTIONS(339), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1347), - [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), + [sym_identifier] = ACTIONS(1130), + [anon_sym_LPAREN] = ACTIONS(1132), + [anon_sym_RPAREN] = ACTIONS(1256), + [anon_sym_LBRACK] = ACTIONS(1056), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1136), + [anon_sym_i8] = ACTIONS(1136), + [anon_sym_u16] = ACTIONS(1136), + [anon_sym_i16] = ACTIONS(1136), + [anon_sym_u32] = ACTIONS(1136), + [anon_sym_i32] = ACTIONS(1136), + [anon_sym_u64] = ACTIONS(1136), + [anon_sym_i64] = ACTIONS(1136), + [anon_sym_u128] = ACTIONS(1136), + [anon_sym_i128] = ACTIONS(1136), + [anon_sym_isize] = ACTIONS(1136), + [anon_sym_usize] = ACTIONS(1136), + [anon_sym_f32] = ACTIONS(1136), + [anon_sym_f64] = ACTIONS(1136), + [anon_sym_bool] = ACTIONS(1136), + [anon_sym_str] = ACTIONS(1136), + [anon_sym_char] = ACTIONS(1136), + [anon_sym_DASH] = ACTIONS(1064), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1138), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1214), + [anon_sym_DOT_DOT] = ACTIONS(1074), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1076), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1078), + [anon_sym_COLON_COLON] = ACTIONS(1144), + [anon_sym_POUND] = ACTIONS(1084), + [anon_sym_SQUOTE] = ACTIONS(1086), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1146), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1148), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1148), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_ref] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1108), + [sym_mutable_specifier] = ACTIONS(1110), + [sym_integer_literal] = ACTIONS(1112), + [aux_sym_string_literal_token1] = ACTIONS(1114), + [sym_char_literal] = ACTIONS(1112), + [anon_sym_true] = ACTIONS(1116), + [anon_sym_false] = ACTIONS(1116), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1150), + [sym_super] = ACTIONS(1152), + [sym_crate] = ACTIONS(1152), + [sym_metavariable] = ACTIONS(1154), + [sym__raw_string_literal_start] = ACTIONS(1124), + [sym_float_literal] = ACTIONS(1112), }, [STATE(247)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1594), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1509), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3114), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1488), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1631), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(262), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), [sym_line_comment] = STATE(247), [sym_block_comment] = STATE(247), - [sym_identifier] = ACTIONS(339), + [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(349), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_STAR] = ACTIONS(1248), + [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(1248), + [anon_sym_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1250), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1211), - [anon_sym_DOT_DOT] = ACTIONS(1093), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_DASH_GT] = ACTIONS(1213), + [anon_sym_DOT_DOT] = ACTIONS(1252), + [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_async] = ACTIONS(478), + [anon_sym_break] = ACTIONS(480), + [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_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_default] = ACTIONS(482), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(484), + [anon_sym_if] = ACTIONS(366), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(486), + [anon_sym_static] = ACTIONS(488), + [anon_sym_union] = ACTIONS(482), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [sym_mutable_specifier] = ACTIONS(1258), + [anon_sym_raw] = ACTIONS(1260), + [anon_sym_yield] = ACTIONS(490), + [anon_sym_move] = ACTIONS(492), + [anon_sym_try] = ACTIONS(378), + [sym_integer_literal] = ACTIONS(99), + [aux_sym_string_literal_token1] = ACTIONS(101), + [sym_char_literal] = ACTIONS(99), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(494), + [sym_super] = ACTIONS(496), + [sym_crate] = ACTIONS(496), + [sym_metavariable] = ACTIONS(498), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), }, [STATE(248)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1839), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1539), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym_attribute_item] = STATE(426), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_self_parameter] = STATE(3362), + [sym_variadic_parameter] = STATE(3362), + [sym_parameter] = STATE(3362), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(3138), + [sym_bracketed_type] = STATE(3726), + [sym_lifetime] = STATE(3173), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3316), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2601), + [sym_scoped_identifier] = STATE(2336), + [sym_scoped_type_identifier] = STATE(2238), + [sym_const_block] = STATE(2197), + [sym__pattern] = STATE(3441), + [sym_generic_pattern] = STATE(2197), + [sym_tuple_pattern] = STATE(2197), + [sym_slice_pattern] = STATE(2197), + [sym_tuple_struct_pattern] = STATE(2197), + [sym_struct_pattern] = STATE(2197), + [sym_remaining_field_pattern] = STATE(2197), + [sym_mut_pattern] = STATE(2197), + [sym_range_pattern] = STATE(2197), + [sym_ref_pattern] = STATE(2197), + [sym_captured_pattern] = STATE(2197), + [sym_reference_pattern] = STATE(2197), + [sym_or_pattern] = STATE(2197), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2129), + [sym_string_literal] = STATE(2129), + [sym_raw_string_literal] = STATE(2129), + [sym_boolean_literal] = STATE(2129), [sym_line_comment] = STATE(248), [sym_block_comment] = STATE(248), - [sym_identifier] = ACTIONS(339), + [sym_identifier] = ACTIONS(1130), + [anon_sym_LPAREN] = ACTIONS(1132), + [anon_sym_RPAREN] = ACTIONS(1262), + [anon_sym_LBRACK] = ACTIONS(1056), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1136), + [anon_sym_i8] = ACTIONS(1136), + [anon_sym_u16] = ACTIONS(1136), + [anon_sym_i16] = ACTIONS(1136), + [anon_sym_u32] = ACTIONS(1136), + [anon_sym_i32] = ACTIONS(1136), + [anon_sym_u64] = ACTIONS(1136), + [anon_sym_i64] = ACTIONS(1136), + [anon_sym_u128] = ACTIONS(1136), + [anon_sym_i128] = ACTIONS(1136), + [anon_sym_isize] = ACTIONS(1136), + [anon_sym_usize] = ACTIONS(1136), + [anon_sym_f32] = ACTIONS(1136), + [anon_sym_f64] = ACTIONS(1136), + [anon_sym_bool] = ACTIONS(1136), + [anon_sym_str] = ACTIONS(1136), + [anon_sym_char] = ACTIONS(1136), + [anon_sym_DASH] = ACTIONS(1064), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1138), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1214), + [anon_sym_DOT_DOT] = ACTIONS(1074), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1076), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1078), + [anon_sym_COLON_COLON] = ACTIONS(1144), + [anon_sym_POUND] = ACTIONS(1084), + [anon_sym_SQUOTE] = ACTIONS(1086), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1146), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1148), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1148), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_ref] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1108), + [sym_mutable_specifier] = ACTIONS(1110), + [sym_integer_literal] = ACTIONS(1112), + [aux_sym_string_literal_token1] = ACTIONS(1114), + [sym_char_literal] = ACTIONS(1112), + [anon_sym_true] = ACTIONS(1116), + [anon_sym_false] = ACTIONS(1116), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1150), + [sym_super] = ACTIONS(1152), + [sym_crate] = ACTIONS(1152), + [sym_metavariable] = ACTIONS(1154), + [sym__raw_string_literal_start] = ACTIONS(1124), + [sym_float_literal] = ACTIONS(1112), + }, + [STATE(249)] = { + [sym_attribute_item] = STATE(426), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_self_parameter] = STATE(3362), + [sym_variadic_parameter] = STATE(3362), + [sym_parameter] = STATE(3362), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(3138), + [sym_bracketed_type] = STATE(3726), + [sym_lifetime] = STATE(3173), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3316), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2601), + [sym_scoped_identifier] = STATE(2336), + [sym_scoped_type_identifier] = STATE(2238), + [sym_const_block] = STATE(2197), + [sym__pattern] = STATE(3441), + [sym_generic_pattern] = STATE(2197), + [sym_tuple_pattern] = STATE(2197), + [sym_slice_pattern] = STATE(2197), + [sym_tuple_struct_pattern] = STATE(2197), + [sym_struct_pattern] = STATE(2197), + [sym_remaining_field_pattern] = STATE(2197), + [sym_mut_pattern] = STATE(2197), + [sym_range_pattern] = STATE(2197), + [sym_ref_pattern] = STATE(2197), + [sym_captured_pattern] = STATE(2197), + [sym_reference_pattern] = STATE(2197), + [sym_or_pattern] = STATE(2197), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2129), + [sym_string_literal] = STATE(2129), + [sym_raw_string_literal] = STATE(2129), + [sym_boolean_literal] = STATE(2129), + [sym_line_comment] = STATE(249), + [sym_block_comment] = STATE(249), + [sym_identifier] = ACTIONS(1130), + [anon_sym_LPAREN] = ACTIONS(1132), + [anon_sym_RPAREN] = ACTIONS(1264), + [anon_sym_LBRACK] = ACTIONS(1056), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1136), + [anon_sym_i8] = ACTIONS(1136), + [anon_sym_u16] = ACTIONS(1136), + [anon_sym_i16] = ACTIONS(1136), + [anon_sym_u32] = ACTIONS(1136), + [anon_sym_i32] = ACTIONS(1136), + [anon_sym_u64] = ACTIONS(1136), + [anon_sym_i64] = ACTIONS(1136), + [anon_sym_u128] = ACTIONS(1136), + [anon_sym_i128] = ACTIONS(1136), + [anon_sym_isize] = ACTIONS(1136), + [anon_sym_usize] = ACTIONS(1136), + [anon_sym_f32] = ACTIONS(1136), + [anon_sym_f64] = ACTIONS(1136), + [anon_sym_bool] = ACTIONS(1136), + [anon_sym_str] = ACTIONS(1136), + [anon_sym_char] = ACTIONS(1136), + [anon_sym_DASH] = ACTIONS(1064), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1138), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1214), + [anon_sym_DOT_DOT] = ACTIONS(1074), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1076), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1078), + [anon_sym_COLON_COLON] = ACTIONS(1144), + [anon_sym_POUND] = ACTIONS(1084), + [anon_sym_SQUOTE] = ACTIONS(1086), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1146), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1148), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1148), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_ref] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1108), + [sym_mutable_specifier] = ACTIONS(1110), + [sym_integer_literal] = ACTIONS(1112), + [aux_sym_string_literal_token1] = ACTIONS(1114), + [sym_char_literal] = ACTIONS(1112), + [anon_sym_true] = ACTIONS(1116), + [anon_sym_false] = ACTIONS(1116), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1150), + [sym_super] = ACTIONS(1152), + [sym_crate] = ACTIONS(1152), + [sym_metavariable] = ACTIONS(1154), + [sym__raw_string_literal_start] = ACTIONS(1124), + [sym_float_literal] = ACTIONS(1112), + }, + [STATE(250)] = { + [sym_attribute_item] = STATE(426), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_self_parameter] = STATE(3362), + [sym_variadic_parameter] = STATE(3362), + [sym_parameter] = STATE(3362), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(3138), + [sym_bracketed_type] = STATE(3726), + [sym_lifetime] = STATE(3173), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3316), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2601), + [sym_scoped_identifier] = STATE(2336), + [sym_scoped_type_identifier] = STATE(2238), + [sym_const_block] = STATE(2197), + [sym__pattern] = STATE(3441), + [sym_generic_pattern] = STATE(2197), + [sym_tuple_pattern] = STATE(2197), + [sym_slice_pattern] = STATE(2197), + [sym_tuple_struct_pattern] = STATE(2197), + [sym_struct_pattern] = STATE(2197), + [sym_remaining_field_pattern] = STATE(2197), + [sym_mut_pattern] = STATE(2197), + [sym_range_pattern] = STATE(2197), + [sym_ref_pattern] = STATE(2197), + [sym_captured_pattern] = STATE(2197), + [sym_reference_pattern] = STATE(2197), + [sym_or_pattern] = STATE(2197), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2129), + [sym_string_literal] = STATE(2129), + [sym_raw_string_literal] = STATE(2129), + [sym_boolean_literal] = STATE(2129), + [sym_line_comment] = STATE(250), + [sym_block_comment] = STATE(250), + [sym_identifier] = ACTIONS(1130), + [anon_sym_LPAREN] = ACTIONS(1132), + [anon_sym_RPAREN] = ACTIONS(1266), + [anon_sym_LBRACK] = ACTIONS(1056), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1136), + [anon_sym_i8] = ACTIONS(1136), + [anon_sym_u16] = ACTIONS(1136), + [anon_sym_i16] = ACTIONS(1136), + [anon_sym_u32] = ACTIONS(1136), + [anon_sym_i32] = ACTIONS(1136), + [anon_sym_u64] = ACTIONS(1136), + [anon_sym_i64] = ACTIONS(1136), + [anon_sym_u128] = ACTIONS(1136), + [anon_sym_i128] = ACTIONS(1136), + [anon_sym_isize] = ACTIONS(1136), + [anon_sym_usize] = ACTIONS(1136), + [anon_sym_f32] = ACTIONS(1136), + [anon_sym_f64] = ACTIONS(1136), + [anon_sym_bool] = ACTIONS(1136), + [anon_sym_str] = ACTIONS(1136), + [anon_sym_char] = ACTIONS(1136), + [anon_sym_DASH] = ACTIONS(1064), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1138), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1214), + [anon_sym_DOT_DOT] = ACTIONS(1074), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1076), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1078), + [anon_sym_COLON_COLON] = ACTIONS(1144), + [anon_sym_POUND] = ACTIONS(1084), + [anon_sym_SQUOTE] = ACTIONS(1086), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1146), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1148), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1148), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_ref] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1108), + [sym_mutable_specifier] = ACTIONS(1110), + [sym_integer_literal] = ACTIONS(1112), + [aux_sym_string_literal_token1] = ACTIONS(1114), + [sym_char_literal] = ACTIONS(1112), + [anon_sym_true] = ACTIONS(1116), + [anon_sym_false] = ACTIONS(1116), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1150), + [sym_super] = ACTIONS(1152), + [sym_crate] = ACTIONS(1152), + [sym_metavariable] = ACTIONS(1154), + [sym__raw_string_literal_start] = ACTIONS(1124), + [sym_float_literal] = ACTIONS(1112), + }, + [STATE(251)] = { + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3031), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1597), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1491), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1451), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), + [sym_line_comment] = STATE(251), + [sym_block_comment] = STATE(251), + [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), @@ -45837,102 +46322,558 @@ 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(1077), - [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym__] = ACTIONS(1188), + [anon_sym_DOT_DOT] = ACTIONS(1236), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_DASH_GT] = ACTIONS(1081), + [anon_sym_DASH_GT] = ACTIONS(1190), [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(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1848), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1509), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(249), - [sym_block_comment] = STATE(249), - [sym_identifier] = ACTIONS(339), + [STATE(252)] = { + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3114), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1722), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1631), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(244), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1466), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), + [sym_line_comment] = STATE(252), + [sym_block_comment] = STATE(252), + [sym_identifier] = ACTIONS(470), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_STAR] = ACTIONS(910), + [anon_sym_u8] = ACTIONS(472), + [anon_sym_i8] = ACTIONS(472), + [anon_sym_u16] = ACTIONS(472), + [anon_sym_i16] = ACTIONS(472), + [anon_sym_u32] = ACTIONS(472), + [anon_sym_i32] = ACTIONS(472), + [anon_sym_u64] = ACTIONS(472), + [anon_sym_i64] = ACTIONS(472), + [anon_sym_u128] = ACTIONS(472), + [anon_sym_i128] = ACTIONS(472), + [anon_sym_isize] = ACTIONS(472), + [anon_sym_usize] = ACTIONS(472), + [anon_sym_f32] = ACTIONS(472), + [anon_sym_f64] = ACTIONS(472), + [anon_sym_bool] = ACTIONS(472), + [anon_sym_str] = ACTIONS(472), + [anon_sym_char] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(510), + [anon_sym_BANG] = ACTIONS(910), + [anon_sym_AMP] = ACTIONS(912), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1192), + [anon_sym_DOT_DOT] = ACTIONS(1224), + [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_DASH_GT] = ACTIONS(1194), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(512), + [anon_sym_break] = ACTIONS(514), + [anon_sym_const] = ACTIONS(358), + [anon_sym_continue] = ACTIONS(516), + [anon_sym_default] = ACTIONS(482), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(518), + [anon_sym_if] = ACTIONS(366), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(520), + [anon_sym_static] = ACTIONS(522), + [anon_sym_union] = ACTIONS(482), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_yield] = ACTIONS(524), + [anon_sym_move] = ACTIONS(526), + [anon_sym_try] = ACTIONS(378), + [sym_integer_literal] = ACTIONS(99), + [aux_sym_string_literal_token1] = ACTIONS(101), + [sym_char_literal] = ACTIONS(99), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(494), + [sym_super] = ACTIONS(496), + [sym_crate] = ACTIONS(496), + [sym_metavariable] = ACTIONS(498), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), + }, + [STATE(253)] = { + [sym_bracketed_type] = STATE(3702), + [sym_generic_function] = STATE(1815), + [sym_generic_type_with_turbofish] = STATE(2969), + [sym__expression_except_range] = STATE(1694), + [sym__expression] = STATE(1889), + [sym_macro_invocation] = STATE(1832), + [sym_scoped_identifier] = STATE(1654), + [sym_scoped_type_identifier_in_expression_position] = STATE(3227), + [sym_range_expression] = STATE(1820), + [sym_unary_expression] = STATE(1815), + [sym_try_expression] = STATE(1815), + [sym_reference_expression] = STATE(1815), + [sym_binary_expression] = STATE(1815), + [sym_assignment_expression] = STATE(1815), + [sym_compound_assignment_expr] = STATE(1815), + [sym_type_cast_expression] = STATE(1815), + [sym_return_expression] = STATE(1815), + [sym_yield_expression] = STATE(1815), + [sym_call_expression] = STATE(1815), + [sym_array_expression] = STATE(1815), + [sym_parenthesized_expression] = STATE(1815), + [sym_tuple_expression] = STATE(1815), + [sym_unit_expression] = STATE(1815), + [sym_struct_expression] = STATE(1815), + [sym_if_expression] = STATE(1815), + [sym_let_condition] = STATE(2717), + [sym_match_expression] = STATE(1815), + [sym_while_expression] = STATE(1815), + [sym_loop_expression] = STATE(1815), + [sym_for_expression] = STATE(1815), + [sym_const_block] = STATE(1815), + [sym_closure_expression] = STATE(1815), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3807), + [sym_break_expression] = STATE(1815), + [sym_continue_expression] = STATE(1815), + [sym_index_expression] = STATE(1815), + [sym_await_expression] = STATE(1815), + [sym_field_expression] = STATE(1695), + [sym_unsafe_block] = STATE(1815), + [sym_async_block] = STATE(1815), + [sym_gen_block] = STATE(1815), + [sym_try_block] = STATE(1815), + [sym_block] = STATE(1815), + [sym__literal] = STATE(1815), + [sym_string_literal] = STATE(1733), + [sym_raw_string_literal] = STATE(1733), + [sym_boolean_literal] = STATE(1733), + [sym_line_comment] = STATE(253), + [sym_block_comment] = STATE(253), + [sym_identifier] = ACTIONS(410), + [anon_sym_LPAREN] = ACTIONS(500), + [anon_sym_LBRACK] = ACTIONS(502), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_STAR] = ACTIONS(986), + [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(986), + [anon_sym_BANG] = ACTIONS(986), + [anon_sym_AMP] = ACTIONS(988), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1204), + [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(992), + [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(254)] = { + [sym_bracketed_type] = STATE(3702), + [sym_generic_function] = STATE(1815), + [sym_generic_type_with_turbofish] = STATE(2969), + [sym__expression_except_range] = STATE(1694), + [sym__expression] = STATE(1965), + [sym_macro_invocation] = STATE(1832), + [sym_scoped_identifier] = STATE(1654), + [sym_scoped_type_identifier_in_expression_position] = STATE(3227), + [sym_range_expression] = STATE(1820), + [sym_unary_expression] = STATE(1815), + [sym_try_expression] = STATE(1815), + [sym_reference_expression] = STATE(1815), + [sym_binary_expression] = STATE(1815), + [sym_assignment_expression] = STATE(1815), + [sym_compound_assignment_expr] = STATE(1815), + [sym_type_cast_expression] = STATE(1815), + [sym_return_expression] = STATE(1815), + [sym_yield_expression] = STATE(1815), + [sym_call_expression] = STATE(1815), + [sym_array_expression] = STATE(1815), + [sym_parenthesized_expression] = STATE(1815), + [sym_tuple_expression] = STATE(1815), + [sym_unit_expression] = STATE(1815), + [sym_struct_expression] = STATE(1815), + [sym_if_expression] = STATE(1815), + [sym_let_condition] = STATE(2717), + [sym_match_expression] = STATE(1815), + [sym_while_expression] = STATE(1815), + [sym_loop_expression] = STATE(1815), + [sym_for_expression] = STATE(1815), + [sym_const_block] = STATE(1815), + [sym_closure_expression] = STATE(1815), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3807), + [sym_break_expression] = STATE(1815), + [sym_continue_expression] = STATE(1815), + [sym_index_expression] = STATE(1815), + [sym_await_expression] = STATE(1815), + [sym_field_expression] = STATE(1695), + [sym_unsafe_block] = STATE(1815), + [sym_async_block] = STATE(1815), + [sym_gen_block] = STATE(1815), + [sym_try_block] = STATE(1815), + [sym_block] = STATE(1815), + [sym__literal] = STATE(1815), + [sym_string_literal] = STATE(1733), + [sym_raw_string_literal] = STATE(1733), + [sym_boolean_literal] = STATE(1733), + [sym_line_comment] = STATE(254), + [sym_block_comment] = STATE(254), + [sym_identifier] = ACTIONS(410), + [anon_sym_LPAREN] = ACTIONS(500), + [anon_sym_LBRACK] = ACTIONS(502), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_STAR] = ACTIONS(986), + [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(986), + [anon_sym_BANG] = ACTIONS(986), + [anon_sym_AMP] = ACTIONS(988), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(990), + [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(992), + [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(255)] = { + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3114), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1699), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1631), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(244), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1464), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), + [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(348), + [anon_sym_STAR] = ACTIONS(910), + [anon_sym_u8] = ACTIONS(472), + [anon_sym_i8] = ACTIONS(472), + [anon_sym_u16] = ACTIONS(472), + [anon_sym_i16] = ACTIONS(472), + [anon_sym_u32] = ACTIONS(472), + [anon_sym_i32] = ACTIONS(472), + [anon_sym_u64] = ACTIONS(472), + [anon_sym_i64] = ACTIONS(472), + [anon_sym_u128] = ACTIONS(472), + [anon_sym_i128] = ACTIONS(472), + [anon_sym_isize] = ACTIONS(472), + [anon_sym_usize] = ACTIONS(472), + [anon_sym_f32] = ACTIONS(472), + [anon_sym_f64] = ACTIONS(472), + [anon_sym_bool] = ACTIONS(472), + [anon_sym_str] = ACTIONS(472), + [anon_sym_char] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(510), + [anon_sym_BANG] = ACTIONS(910), + [anon_sym_AMP] = ACTIONS(912), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1196), + [anon_sym_DOT_DOT] = ACTIONS(1224), + [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_DASH_GT] = ACTIONS(1198), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(512), + [anon_sym_break] = ACTIONS(514), + [anon_sym_const] = ACTIONS(358), + [anon_sym_continue] = ACTIONS(516), + [anon_sym_default] = ACTIONS(482), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(518), + [anon_sym_if] = ACTIONS(366), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(520), + [anon_sym_static] = ACTIONS(522), + [anon_sym_union] = ACTIONS(482), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_yield] = ACTIONS(524), + [anon_sym_move] = ACTIONS(526), + [anon_sym_try] = ACTIONS(378), + [sym_integer_literal] = ACTIONS(99), + [aux_sym_string_literal_token1] = ACTIONS(101), + [sym_char_literal] = ACTIONS(99), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(494), + [sym_super] = ACTIONS(496), + [sym_crate] = ACTIONS(496), + [sym_metavariable] = ACTIONS(498), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), + }, + [STATE(256)] = { + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3031), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1601), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1491), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1466), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), + [sym_line_comment] = STATE(256), + [sym_block_comment] = STATE(256), + [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), @@ -45951,104 +46892,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(1211), - [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym__] = ACTIONS(1192), + [anon_sym_DOT_DOT] = ACTIONS(1236), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_DASH_GT] = ACTIONS(1213), + [anon_sym_DASH_GT] = ACTIONS(1194), [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(250)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1867), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(250), - [sym_block_comment] = STATE(250), - [aux_sym_tuple_expression_repeat1] = STATE(230), - [sym_identifier] = ACTIONS(339), + [STATE(257)] = { + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3031), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1488), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1491), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), + [sym_line_comment] = STATE(257), + [sym_block_comment] = STATE(257), + [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1349), [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), @@ -46072,211 +47011,213 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(1236), [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(1268), + [anon_sym_raw] = ACTIONS(1270), + [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(251)] = { - [sym_attribute_item] = STATE(400), - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_self_parameter] = STATE(2994), - [sym_variadic_parameter] = STATE(2994), - [sym_parameter] = STATE(2994), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2670), - [sym_bracketed_type] = STATE(3699), - [sym_lifetime] = STATE(3008), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3431), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(2528), - [sym_scoped_identifier] = STATE(2224), - [sym_scoped_type_identifier] = STATE(2186), - [sym_const_block] = STATE(2221), - [sym__pattern] = STATE(2596), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), - [sym_line_comment] = STATE(251), - [sym_block_comment] = STATE(251), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(1103), - [anon_sym_LPAREN] = ACTIONS(1105), - [anon_sym_RPAREN] = ACTIONS(1351), - [anon_sym_LBRACK] = ACTIONS(1109), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1115), - [anon_sym_i8] = ACTIONS(1115), - [anon_sym_u16] = ACTIONS(1115), - [anon_sym_i16] = ACTIONS(1115), - [anon_sym_u32] = ACTIONS(1115), - [anon_sym_i32] = ACTIONS(1115), - [anon_sym_u64] = ACTIONS(1115), - [anon_sym_i64] = ACTIONS(1115), - [anon_sym_u128] = ACTIONS(1115), - [anon_sym_i128] = ACTIONS(1115), - [anon_sym_isize] = ACTIONS(1115), - [anon_sym_usize] = ACTIONS(1115), - [anon_sym_f32] = ACTIONS(1115), - [anon_sym_f64] = ACTIONS(1115), - [anon_sym_bool] = ACTIONS(1115), - [anon_sym_str] = ACTIONS(1115), - [anon_sym_char] = ACTIONS(1115), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(1121), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1125), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1129), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COMMA] = ACTIONS(1353), - [anon_sym_COLON_COLON] = ACTIONS(1135), - [anon_sym_POUND] = ACTIONS(1137), - [anon_sym_SQUOTE] = ACTIONS(1139), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1143), - [anon_sym_default] = ACTIONS(1145), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1151), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1151), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_ref] = ACTIONS(1159), - [anon_sym_dyn] = ACTIONS(1161), - [sym_mutable_specifier] = ACTIONS(1163), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1171), - [sym_super] = ACTIONS(1173), - [sym_crate] = ACTIONS(1173), - [sym_metavariable] = ACTIONS(1175), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), + [STATE(258)] = { + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3031), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1959), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1491), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), + [sym_line_comment] = STATE(258), + [sym_block_comment] = STATE(258), + [aux_sym_tuple_expression_repeat1] = STATE(258), + [sym_identifier] = ACTIONS(1272), + [anon_sym_LPAREN] = ACTIONS(1275), + [anon_sym_RPAREN] = ACTIONS(1278), + [anon_sym_LBRACK] = ACTIONS(1280), + [anon_sym_LBRACE] = ACTIONS(1283), + [anon_sym_STAR] = ACTIONS(1286), + [anon_sym_u8] = ACTIONS(1289), + [anon_sym_i8] = ACTIONS(1289), + [anon_sym_u16] = ACTIONS(1289), + [anon_sym_i16] = ACTIONS(1289), + [anon_sym_u32] = ACTIONS(1289), + [anon_sym_i32] = ACTIONS(1289), + [anon_sym_u64] = ACTIONS(1289), + [anon_sym_i64] = ACTIONS(1289), + [anon_sym_u128] = ACTIONS(1289), + [anon_sym_i128] = ACTIONS(1289), + [anon_sym_isize] = ACTIONS(1289), + [anon_sym_usize] = ACTIONS(1289), + [anon_sym_f32] = ACTIONS(1289), + [anon_sym_f64] = ACTIONS(1289), + [anon_sym_bool] = ACTIONS(1289), + [anon_sym_str] = ACTIONS(1289), + [anon_sym_char] = ACTIONS(1289), + [anon_sym_DASH] = ACTIONS(1286), + [anon_sym_BANG] = ACTIONS(1286), + [anon_sym_AMP] = ACTIONS(1292), + [anon_sym_PIPE] = ACTIONS(1295), + [anon_sym_LT] = ACTIONS(1298), + [anon_sym_DOT_DOT] = ACTIONS(1301), + [anon_sym_COLON_COLON] = ACTIONS(1304), + [anon_sym_SQUOTE] = ACTIONS(1307), + [anon_sym_async] = ACTIONS(1310), + [anon_sym_break] = ACTIONS(1313), + [anon_sym_const] = ACTIONS(1316), + [anon_sym_continue] = ACTIONS(1319), + [anon_sym_default] = ACTIONS(1322), + [anon_sym_for] = ACTIONS(1325), + [anon_sym_gen] = ACTIONS(1328), + [anon_sym_if] = ACTIONS(1331), + [anon_sym_loop] = ACTIONS(1334), + [anon_sym_match] = ACTIONS(1337), + [anon_sym_return] = ACTIONS(1340), + [anon_sym_static] = ACTIONS(1343), + [anon_sym_union] = ACTIONS(1322), + [anon_sym_unsafe] = ACTIONS(1346), + [anon_sym_while] = ACTIONS(1349), + [anon_sym_yield] = ACTIONS(1352), + [anon_sym_move] = ACTIONS(1355), + [anon_sym_try] = ACTIONS(1358), + [sym_integer_literal] = ACTIONS(1361), + [aux_sym_string_literal_token1] = ACTIONS(1364), + [sym_char_literal] = ACTIONS(1361), + [anon_sym_true] = ACTIONS(1367), + [anon_sym_false] = ACTIONS(1367), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1370), + [sym_super] = ACTIONS(1373), + [sym_crate] = ACTIONS(1373), + [sym_metavariable] = ACTIONS(1376), + [sym__raw_string_literal_start] = ACTIONS(1379), + [sym_float_literal] = ACTIONS(1361), }, - [STATE(252)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1876), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(252), - [sym_block_comment] = STATE(252), - [aux_sym_tuple_expression_repeat1] = STATE(221), - [sym_identifier] = ACTIONS(339), + [STATE(259)] = { + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3031), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1799), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1491), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), + [sym_line_comment] = STATE(259), + [sym_block_comment] = STATE(259), + [aux_sym_tuple_expression_repeat1] = STATE(258), + [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1355), + [anon_sym_RPAREN] = ACTIONS(1382), [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), @@ -46303,1679 +47244,776 @@ 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(253)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3105), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1678), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1607), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_let_condition] = STATE(2860), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(254), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(253), - [sym_block_comment] = STATE(253), - [sym_identifier] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(907), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(907), - [anon_sym_BANG] = ACTIONS(907), - [anon_sym_AMP] = ACTIONS(909), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1079), - [anon_sym_COLON_COLON] = ACTIONS(481), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_default] = ACTIONS(489), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(491), - [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(913), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(493), - [anon_sym_static] = ACTIONS(495), - [anon_sym_union] = ACTIONS(489), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(497), - [anon_sym_move] = ACTIONS(499), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(501), - [sym_super] = ACTIONS(503), - [sym_crate] = ACTIONS(503), - [sym_metavariable] = ACTIONS(505), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [STATE(254)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3105), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1701), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1607), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(254), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1514), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(254), - [sym_block_comment] = STATE(254), - [sym_identifier] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(907), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(479), - [anon_sym_BANG] = ACTIONS(907), - [anon_sym_AMP] = ACTIONS(909), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1073), - [anon_sym_DOT_DOT] = ACTIONS(1079), - [anon_sym_COLON_COLON] = ACTIONS(481), - [anon_sym_DASH_GT] = ACTIONS(1075), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_default] = ACTIONS(489), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(491), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(493), - [anon_sym_static] = ACTIONS(495), - [anon_sym_union] = ACTIONS(489), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(497), - [anon_sym_move] = ACTIONS(499), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(501), - [sym_super] = ACTIONS(503), - [sym_crate] = ACTIONS(503), - [sym_metavariable] = ACTIONS(505), - [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(255)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3105), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1710), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1607), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(254), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1480), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(255), - [sym_block_comment] = STATE(255), - [sym_identifier] = ACTIONS(475), + [STATE(260)] = { + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3114), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1707), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1631), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_let_condition] = STATE(2717), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(244), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), + [sym_line_comment] = STATE(260), + [sym_block_comment] = STATE(260), + [sym_identifier] = ACTIONS(470), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(907), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(479), - [anon_sym_BANG] = ACTIONS(907), - [anon_sym_AMP] = ACTIONS(909), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1061), - [anon_sym_DOT_DOT] = ACTIONS(1079), - [anon_sym_COLON_COLON] = ACTIONS(481), - [anon_sym_DASH_GT] = ACTIONS(1065), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_default] = ACTIONS(489), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(491), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(493), - [anon_sym_static] = ACTIONS(495), - [anon_sym_union] = ACTIONS(489), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(497), - [anon_sym_move] = ACTIONS(499), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(501), - [sym_super] = ACTIONS(503), - [sym_crate] = ACTIONS(503), - [sym_metavariable] = ACTIONS(505), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [STATE(256)] = { - [sym_bracketed_type] = STATE(3667), - [sym_generic_function] = STATE(1921), - [sym_generic_type_with_turbofish] = STATE(3104), - [sym__expression_except_range] = STATE(1706), - [sym__expression] = STATE(1862), - [sym_macro_invocation] = STATE(1722), - [sym_scoped_identifier] = STATE(1634), - [sym_scoped_type_identifier_in_expression_position] = STATE(3327), - [sym_range_expression] = STATE(1718), - [sym_unary_expression] = STATE(1921), - [sym_try_expression] = STATE(1921), - [sym_reference_expression] = STATE(1921), - [sym_binary_expression] = STATE(1921), - [sym_assignment_expression] = STATE(1921), - [sym_compound_assignment_expr] = STATE(1921), - [sym_type_cast_expression] = STATE(1921), - [sym_return_expression] = STATE(1921), - [sym_yield_expression] = STATE(1921), - [sym_call_expression] = STATE(1921), - [sym_array_expression] = STATE(1921), - [sym_parenthesized_expression] = STATE(1921), - [sym_tuple_expression] = STATE(1921), - [sym_unit_expression] = STATE(1921), - [sym_struct_expression] = STATE(1921), - [sym_if_expression] = STATE(1921), - [sym_match_expression] = STATE(1921), - [sym_while_expression] = STATE(1921), - [sym_loop_expression] = STATE(1921), - [sym_for_expression] = STATE(1921), - [sym_const_block] = STATE(1921), - [sym_closure_expression] = STATE(1921), - [sym_closure_parameters] = STATE(245), - [sym_label] = STATE(3773), - [sym_break_expression] = STATE(1921), - [sym_continue_expression] = STATE(1921), - [sym_index_expression] = STATE(1921), - [sym_await_expression] = STATE(1921), - [sym_field_expression] = STATE(1693), - [sym_unsafe_block] = STATE(1921), - [sym_async_block] = STATE(1921), - [sym_gen_block] = STATE(1921), - [sym_try_block] = STATE(1921), - [sym_block] = STATE(1922), - [sym__literal] = STATE(1921), - [sym_string_literal] = STATE(1852), - [sym_raw_string_literal] = STATE(1852), - [sym_boolean_literal] = STATE(1852), - [sym_line_comment] = STATE(256), - [sym_block_comment] = STATE(256), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(989), - [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(989), - [anon_sym_AMP] = ACTIONS(991), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1357), - [anon_sym_DOT_DOT] = ACTIONS(1067), - [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym_DASH_GT] = ACTIONS(1359), - [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(257)] = { - [sym_bracketed_type] = STATE(3667), - [sym_generic_function] = STATE(1921), - [sym_generic_type_with_turbofish] = STATE(3104), - [sym__expression_except_range] = STATE(1706), - [sym__expression] = STATE(1830), - [sym_macro_invocation] = STATE(1722), - [sym_scoped_identifier] = STATE(1634), - [sym_scoped_type_identifier_in_expression_position] = STATE(3327), - [sym_range_expression] = STATE(1718), - [sym_unary_expression] = STATE(1921), - [sym_try_expression] = STATE(1921), - [sym_reference_expression] = STATE(1921), - [sym_binary_expression] = STATE(1921), - [sym_assignment_expression] = STATE(1921), - [sym_compound_assignment_expr] = STATE(1921), - [sym_type_cast_expression] = STATE(1921), - [sym_return_expression] = STATE(1921), - [sym_yield_expression] = STATE(1921), - [sym_call_expression] = STATE(1921), - [sym_array_expression] = STATE(1921), - [sym_parenthesized_expression] = STATE(1921), - [sym_tuple_expression] = STATE(1921), - [sym_unit_expression] = STATE(1921), - [sym_struct_expression] = STATE(1921), - [sym_if_expression] = STATE(1921), - [sym_let_condition] = STATE(2860), - [sym_match_expression] = STATE(1921), - [sym_while_expression] = STATE(1921), - [sym_loop_expression] = STATE(1921), - [sym_for_expression] = STATE(1921), - [sym_const_block] = STATE(1921), - [sym_closure_expression] = STATE(1921), - [sym_closure_parameters] = STATE(245), - [sym_label] = STATE(3773), - [sym_break_expression] = STATE(1921), - [sym_continue_expression] = STATE(1921), - [sym_index_expression] = STATE(1921), - [sym_await_expression] = STATE(1921), - [sym_field_expression] = STATE(1693), - [sym_unsafe_block] = STATE(1921), - [sym_async_block] = STATE(1921), - [sym_gen_block] = STATE(1921), - [sym_try_block] = STATE(1921), - [sym_block] = STATE(1921), - [sym__literal] = STATE(1921), - [sym_string_literal] = STATE(1852), - [sym_raw_string_literal] = STATE(1852), - [sym_boolean_literal] = STATE(1852), - [sym_line_comment] = STATE(257), - [sym_block_comment] = STATE(257), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(989), - [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(989), - [anon_sym_BANG] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(991), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_STAR] = ACTIONS(910), + [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(910), + [anon_sym_BANG] = ACTIONS(910), + [anon_sym_AMP] = ACTIONS(912), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1067), - [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym_DOT_DOT] = ACTIONS(1224), + [anon_sym_COLON_COLON] = ACTIONS(476), [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(995), - [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(258)] = { - [sym_attribute_item] = STATE(405), - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_self_parameter] = STATE(3296), - [sym_variadic_parameter] = STATE(3296), - [sym_parameter] = STATE(3296), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(3097), - [sym_bracketed_type] = STATE(3691), - [sym_lifetime] = STATE(3008), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3333), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(2540), - [sym_scoped_identifier] = STATE(2311), - [sym_scoped_type_identifier] = STATE(2186), - [sym_const_block] = STATE(2221), - [sym__pattern] = STATE(3210), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), - [sym_line_comment] = STATE(258), - [sym_block_comment] = STATE(258), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(1181), - [anon_sym_LPAREN] = ACTIONS(1183), - [anon_sym_RPAREN] = ACTIONS(1361), - [anon_sym_LBRACK] = ACTIONS(1109), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1187), - [anon_sym_i8] = ACTIONS(1187), - [anon_sym_u16] = ACTIONS(1187), - [anon_sym_i16] = ACTIONS(1187), - [anon_sym_u32] = ACTIONS(1187), - [anon_sym_i32] = ACTIONS(1187), - [anon_sym_u64] = ACTIONS(1187), - [anon_sym_i64] = ACTIONS(1187), - [anon_sym_u128] = ACTIONS(1187), - [anon_sym_i128] = ACTIONS(1187), - [anon_sym_isize] = ACTIONS(1187), - [anon_sym_usize] = ACTIONS(1187), - [anon_sym_f32] = ACTIONS(1187), - [anon_sym_f64] = ACTIONS(1187), - [anon_sym_bool] = ACTIONS(1187), - [anon_sym_str] = ACTIONS(1187), - [anon_sym_char] = ACTIONS(1187), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(1189), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1363), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1129), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COLON_COLON] = ACTIONS(1195), - [anon_sym_POUND] = ACTIONS(1137), - [anon_sym_SQUOTE] = ACTIONS(1139), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1143), - [anon_sym_default] = ACTIONS(1197), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1199), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1199), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_ref] = ACTIONS(1159), - [anon_sym_dyn] = ACTIONS(1161), - [sym_mutable_specifier] = ACTIONS(1163), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1201), - [sym_super] = ACTIONS(1203), - [sym_crate] = ACTIONS(1203), - [sym_metavariable] = ACTIONS(1205), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), - }, - [STATE(259)] = { - [sym_attribute_item] = STATE(405), - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_self_parameter] = STATE(3296), - [sym_variadic_parameter] = STATE(3296), - [sym_parameter] = STATE(3296), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(3097), - [sym_bracketed_type] = STATE(3691), - [sym_lifetime] = STATE(3008), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3333), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(2540), - [sym_scoped_identifier] = STATE(2311), - [sym_scoped_type_identifier] = STATE(2186), - [sym_const_block] = STATE(2221), - [sym__pattern] = STATE(3210), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), - [sym_line_comment] = STATE(259), - [sym_block_comment] = STATE(259), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(1181), - [anon_sym_LPAREN] = ACTIONS(1183), - [anon_sym_RPAREN] = ACTIONS(1365), - [anon_sym_LBRACK] = ACTIONS(1109), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1187), - [anon_sym_i8] = ACTIONS(1187), - [anon_sym_u16] = ACTIONS(1187), - [anon_sym_i16] = ACTIONS(1187), - [anon_sym_u32] = ACTIONS(1187), - [anon_sym_i32] = ACTIONS(1187), - [anon_sym_u64] = ACTIONS(1187), - [anon_sym_i64] = ACTIONS(1187), - [anon_sym_u128] = ACTIONS(1187), - [anon_sym_i128] = ACTIONS(1187), - [anon_sym_isize] = ACTIONS(1187), - [anon_sym_usize] = ACTIONS(1187), - [anon_sym_f32] = ACTIONS(1187), - [anon_sym_f64] = ACTIONS(1187), - [anon_sym_bool] = ACTIONS(1187), - [anon_sym_str] = ACTIONS(1187), - [anon_sym_char] = ACTIONS(1187), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(1189), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1363), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1129), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COLON_COLON] = ACTIONS(1195), - [anon_sym_POUND] = ACTIONS(1137), - [anon_sym_SQUOTE] = ACTIONS(1139), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1143), - [anon_sym_default] = ACTIONS(1197), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1199), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1199), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_ref] = ACTIONS(1159), - [anon_sym_dyn] = ACTIONS(1161), - [sym_mutable_specifier] = ACTIONS(1163), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1201), - [sym_super] = ACTIONS(1203), - [sym_crate] = ACTIONS(1203), - [sym_metavariable] = ACTIONS(1205), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), - }, - [STATE(260)] = { - [sym_attribute_item] = STATE(405), - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_self_parameter] = STATE(3296), - [sym_variadic_parameter] = STATE(3296), - [sym_parameter] = STATE(3296), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(3097), - [sym_bracketed_type] = STATE(3691), - [sym_lifetime] = STATE(3008), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3333), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(2540), - [sym_scoped_identifier] = STATE(2311), - [sym_scoped_type_identifier] = STATE(2186), - [sym_const_block] = STATE(2221), - [sym__pattern] = STATE(3210), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), - [sym_line_comment] = STATE(260), - [sym_block_comment] = STATE(260), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(1181), - [anon_sym_LPAREN] = ACTIONS(1183), - [anon_sym_RPAREN] = ACTIONS(1367), - [anon_sym_LBRACK] = ACTIONS(1109), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1187), - [anon_sym_i8] = ACTIONS(1187), - [anon_sym_u16] = ACTIONS(1187), - [anon_sym_i16] = ACTIONS(1187), - [anon_sym_u32] = ACTIONS(1187), - [anon_sym_i32] = ACTIONS(1187), - [anon_sym_u64] = ACTIONS(1187), - [anon_sym_i64] = ACTIONS(1187), - [anon_sym_u128] = ACTIONS(1187), - [anon_sym_i128] = ACTIONS(1187), - [anon_sym_isize] = ACTIONS(1187), - [anon_sym_usize] = ACTIONS(1187), - [anon_sym_f32] = ACTIONS(1187), - [anon_sym_f64] = ACTIONS(1187), - [anon_sym_bool] = ACTIONS(1187), - [anon_sym_str] = ACTIONS(1187), - [anon_sym_char] = ACTIONS(1187), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(1189), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1363), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1129), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COLON_COLON] = ACTIONS(1195), - [anon_sym_POUND] = ACTIONS(1137), - [anon_sym_SQUOTE] = ACTIONS(1139), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1143), - [anon_sym_default] = ACTIONS(1197), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1199), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1199), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_ref] = ACTIONS(1159), - [anon_sym_dyn] = ACTIONS(1161), - [sym_mutable_specifier] = ACTIONS(1163), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1201), - [sym_super] = ACTIONS(1203), - [sym_crate] = ACTIONS(1203), - [sym_metavariable] = ACTIONS(1205), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), + [anon_sym_async] = ACTIONS(512), + [anon_sym_break] = ACTIONS(514), + [anon_sym_const] = ACTIONS(358), + [anon_sym_continue] = ACTIONS(516), + [anon_sym_default] = ACTIONS(482), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(518), + [anon_sym_if] = ACTIONS(366), + [anon_sym_let] = ACTIONS(916), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(520), + [anon_sym_static] = ACTIONS(522), + [anon_sym_union] = ACTIONS(482), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_yield] = ACTIONS(524), + [anon_sym_move] = ACTIONS(526), + [anon_sym_try] = ACTIONS(378), + [sym_integer_literal] = ACTIONS(99), + [aux_sym_string_literal_token1] = ACTIONS(101), + [sym_char_literal] = ACTIONS(99), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(494), + [sym_super] = ACTIONS(496), + [sym_crate] = ACTIONS(496), + [sym_metavariable] = ACTIONS(498), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), }, [STATE(261)] = { - [sym_attribute_item] = STATE(405), - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_self_parameter] = STATE(3296), - [sym_variadic_parameter] = STATE(3296), - [sym_parameter] = STATE(3296), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(3097), - [sym_bracketed_type] = STATE(3691), - [sym_lifetime] = STATE(3008), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3333), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(2540), - [sym_scoped_identifier] = STATE(2311), - [sym_scoped_type_identifier] = STATE(2186), - [sym_const_block] = STATE(2221), - [sym__pattern] = STATE(3210), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), + [sym_attribute_item] = STATE(426), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_self_parameter] = STATE(3362), + [sym_variadic_parameter] = STATE(3362), + [sym_parameter] = STATE(3362), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(3138), + [sym_bracketed_type] = STATE(3726), + [sym_lifetime] = STATE(3173), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3316), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2601), + [sym_scoped_identifier] = STATE(2336), + [sym_scoped_type_identifier] = STATE(2238), + [sym_const_block] = STATE(2197), + [sym__pattern] = STATE(3441), + [sym_generic_pattern] = STATE(2197), + [sym_tuple_pattern] = STATE(2197), + [sym_slice_pattern] = STATE(2197), + [sym_tuple_struct_pattern] = STATE(2197), + [sym_struct_pattern] = STATE(2197), + [sym_remaining_field_pattern] = STATE(2197), + [sym_mut_pattern] = STATE(2197), + [sym_range_pattern] = STATE(2197), + [sym_ref_pattern] = STATE(2197), + [sym_captured_pattern] = STATE(2197), + [sym_reference_pattern] = STATE(2197), + [sym_or_pattern] = STATE(2197), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2129), + [sym_string_literal] = STATE(2129), + [sym_raw_string_literal] = STATE(2129), + [sym_boolean_literal] = STATE(2129), [sym_line_comment] = STATE(261), [sym_block_comment] = STATE(261), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(1181), - [anon_sym_LPAREN] = ACTIONS(1183), - [anon_sym_RPAREN] = ACTIONS(1369), - [anon_sym_LBRACK] = ACTIONS(1109), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1187), - [anon_sym_i8] = ACTIONS(1187), - [anon_sym_u16] = ACTIONS(1187), - [anon_sym_i16] = ACTIONS(1187), - [anon_sym_u32] = ACTIONS(1187), - [anon_sym_i32] = ACTIONS(1187), - [anon_sym_u64] = ACTIONS(1187), - [anon_sym_i64] = ACTIONS(1187), - [anon_sym_u128] = ACTIONS(1187), - [anon_sym_i128] = ACTIONS(1187), - [anon_sym_isize] = ACTIONS(1187), - [anon_sym_usize] = ACTIONS(1187), - [anon_sym_f32] = ACTIONS(1187), - [anon_sym_f64] = ACTIONS(1187), - [anon_sym_bool] = ACTIONS(1187), - [anon_sym_str] = ACTIONS(1187), - [anon_sym_char] = ACTIONS(1187), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(1189), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1363), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1129), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COLON_COLON] = ACTIONS(1195), - [anon_sym_POUND] = ACTIONS(1137), - [anon_sym_SQUOTE] = ACTIONS(1139), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1143), - [anon_sym_default] = ACTIONS(1197), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1199), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1199), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_ref] = ACTIONS(1159), - [anon_sym_dyn] = ACTIONS(1161), - [sym_mutable_specifier] = ACTIONS(1163), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1201), - [sym_super] = ACTIONS(1203), - [sym_crate] = ACTIONS(1203), - [sym_metavariable] = ACTIONS(1205), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), + [sym_identifier] = ACTIONS(1130), + [anon_sym_LPAREN] = ACTIONS(1132), + [anon_sym_RPAREN] = ACTIONS(1384), + [anon_sym_LBRACK] = ACTIONS(1056), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1136), + [anon_sym_i8] = ACTIONS(1136), + [anon_sym_u16] = ACTIONS(1136), + [anon_sym_i16] = ACTIONS(1136), + [anon_sym_u32] = ACTIONS(1136), + [anon_sym_i32] = ACTIONS(1136), + [anon_sym_u64] = ACTIONS(1136), + [anon_sym_i64] = ACTIONS(1136), + [anon_sym_u128] = ACTIONS(1136), + [anon_sym_i128] = ACTIONS(1136), + [anon_sym_isize] = ACTIONS(1136), + [anon_sym_usize] = ACTIONS(1136), + [anon_sym_f32] = ACTIONS(1136), + [anon_sym_f64] = ACTIONS(1136), + [anon_sym_bool] = ACTIONS(1136), + [anon_sym_str] = ACTIONS(1136), + [anon_sym_char] = ACTIONS(1136), + [anon_sym_DASH] = ACTIONS(1064), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1138), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1214), + [anon_sym_DOT_DOT] = ACTIONS(1074), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1076), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1078), + [anon_sym_COLON_COLON] = ACTIONS(1144), + [anon_sym_POUND] = ACTIONS(1084), + [anon_sym_SQUOTE] = ACTIONS(1086), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1146), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1148), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1148), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_ref] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1108), + [sym_mutable_specifier] = ACTIONS(1110), + [sym_integer_literal] = ACTIONS(1112), + [aux_sym_string_literal_token1] = ACTIONS(1114), + [sym_char_literal] = ACTIONS(1112), + [anon_sym_true] = ACTIONS(1116), + [anon_sym_false] = ACTIONS(1116), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1150), + [sym_super] = ACTIONS(1152), + [sym_crate] = ACTIONS(1152), + [sym_metavariable] = ACTIONS(1154), + [sym__raw_string_literal_start] = ACTIONS(1124), + [sym_float_literal] = ACTIONS(1112), }, [STATE(262)] = { - [sym_attribute_item] = STATE(405), - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_self_parameter] = STATE(3296), - [sym_variadic_parameter] = STATE(3296), - [sym_parameter] = STATE(3296), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(3097), - [sym_bracketed_type] = STATE(3691), - [sym_lifetime] = STATE(3008), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3333), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(2540), - [sym_scoped_identifier] = STATE(2311), - [sym_scoped_type_identifier] = STATE(2186), - [sym_const_block] = STATE(2221), - [sym__pattern] = STATE(3210), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3114), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1934), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1631), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(262), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1460), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), [sym_line_comment] = STATE(262), [sym_block_comment] = STATE(262), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(1181), - [anon_sym_LPAREN] = ACTIONS(1183), - [anon_sym_RPAREN] = ACTIONS(1371), - [anon_sym_LBRACK] = ACTIONS(1109), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1187), - [anon_sym_i8] = ACTIONS(1187), - [anon_sym_u16] = ACTIONS(1187), - [anon_sym_i16] = ACTIONS(1187), - [anon_sym_u32] = ACTIONS(1187), - [anon_sym_i32] = ACTIONS(1187), - [anon_sym_u64] = ACTIONS(1187), - [anon_sym_i64] = ACTIONS(1187), - [anon_sym_u128] = ACTIONS(1187), - [anon_sym_i128] = ACTIONS(1187), - [anon_sym_isize] = ACTIONS(1187), - [anon_sym_usize] = ACTIONS(1187), - [anon_sym_f32] = ACTIONS(1187), - [anon_sym_f64] = ACTIONS(1187), - [anon_sym_bool] = ACTIONS(1187), - [anon_sym_str] = ACTIONS(1187), - [anon_sym_char] = ACTIONS(1187), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(1189), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1363), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1129), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COLON_COLON] = ACTIONS(1195), - [anon_sym_POUND] = ACTIONS(1137), - [anon_sym_SQUOTE] = ACTIONS(1139), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1143), - [anon_sym_default] = ACTIONS(1197), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1199), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1199), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_ref] = ACTIONS(1159), - [anon_sym_dyn] = ACTIONS(1161), - [sym_mutable_specifier] = ACTIONS(1163), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1201), - [sym_super] = ACTIONS(1203), - [sym_crate] = ACTIONS(1203), - [sym_metavariable] = ACTIONS(1205), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), + [sym_identifier] = ACTIONS(470), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_STAR] = ACTIONS(1248), + [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(1248), + [anon_sym_AMP] = ACTIONS(1250), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1184), + [anon_sym_DOT_DOT] = ACTIONS(1252), + [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_DASH_GT] = ACTIONS(1186), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(478), + [anon_sym_break] = ACTIONS(480), + [anon_sym_const] = ACTIONS(358), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(482), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(484), + [anon_sym_if] = ACTIONS(366), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(486), + [anon_sym_static] = ACTIONS(488), + [anon_sym_union] = ACTIONS(482), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_yield] = ACTIONS(490), + [anon_sym_move] = ACTIONS(492), + [anon_sym_try] = ACTIONS(378), + [sym_integer_literal] = ACTIONS(99), + [aux_sym_string_literal_token1] = ACTIONS(101), + [sym_char_literal] = ACTIONS(99), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(494), + [sym_super] = ACTIONS(496), + [sym_crate] = ACTIONS(496), + [sym_metavariable] = ACTIONS(498), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), }, [STATE(263)] = { - [sym_attribute_item] = STATE(405), - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_self_parameter] = STATE(3296), - [sym_variadic_parameter] = STATE(3296), - [sym_parameter] = STATE(3296), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(3097), - [sym_bracketed_type] = STATE(3691), - [sym_lifetime] = STATE(3008), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3333), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(2540), - [sym_scoped_identifier] = STATE(2311), - [sym_scoped_type_identifier] = STATE(2186), - [sym_const_block] = STATE(2221), - [sym__pattern] = STATE(3210), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3114), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1948), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1631), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(262), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1451), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), [sym_line_comment] = STATE(263), [sym_block_comment] = STATE(263), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(1181), - [anon_sym_LPAREN] = ACTIONS(1183), - [anon_sym_RPAREN] = ACTIONS(1373), - [anon_sym_LBRACK] = ACTIONS(1109), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1187), - [anon_sym_i8] = ACTIONS(1187), - [anon_sym_u16] = ACTIONS(1187), - [anon_sym_i16] = ACTIONS(1187), - [anon_sym_u32] = ACTIONS(1187), - [anon_sym_i32] = ACTIONS(1187), - [anon_sym_u64] = ACTIONS(1187), - [anon_sym_i64] = ACTIONS(1187), - [anon_sym_u128] = ACTIONS(1187), - [anon_sym_i128] = ACTIONS(1187), - [anon_sym_isize] = ACTIONS(1187), - [anon_sym_usize] = ACTIONS(1187), - [anon_sym_f32] = ACTIONS(1187), - [anon_sym_f64] = ACTIONS(1187), - [anon_sym_bool] = ACTIONS(1187), - [anon_sym_str] = ACTIONS(1187), - [anon_sym_char] = ACTIONS(1187), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(1189), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1363), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1129), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COLON_COLON] = ACTIONS(1195), - [anon_sym_POUND] = ACTIONS(1137), - [anon_sym_SQUOTE] = ACTIONS(1139), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1143), - [anon_sym_default] = ACTIONS(1197), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1199), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1199), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_ref] = ACTIONS(1159), - [anon_sym_dyn] = ACTIONS(1161), - [sym_mutable_specifier] = ACTIONS(1163), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1201), - [sym_super] = ACTIONS(1203), - [sym_crate] = ACTIONS(1203), - [sym_metavariable] = ACTIONS(1205), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), + [sym_identifier] = ACTIONS(470), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_STAR] = ACTIONS(1248), + [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(1248), + [anon_sym_AMP] = ACTIONS(1250), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1188), + [anon_sym_DOT_DOT] = ACTIONS(1252), + [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_DASH_GT] = ACTIONS(1190), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(478), + [anon_sym_break] = ACTIONS(480), + [anon_sym_const] = ACTIONS(358), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(482), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(484), + [anon_sym_if] = ACTIONS(366), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(486), + [anon_sym_static] = ACTIONS(488), + [anon_sym_union] = ACTIONS(482), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_yield] = ACTIONS(490), + [anon_sym_move] = ACTIONS(492), + [anon_sym_try] = ACTIONS(378), + [sym_integer_literal] = ACTIONS(99), + [aux_sym_string_literal_token1] = ACTIONS(101), + [sym_char_literal] = ACTIONS(99), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(494), + [sym_super] = ACTIONS(496), + [sym_crate] = ACTIONS(496), + [sym_metavariable] = ACTIONS(498), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), }, [STATE(264)] = { - [sym_attribute_item] = STATE(405), - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_self_parameter] = STATE(3296), - [sym_variadic_parameter] = STATE(3296), - [sym_parameter] = STATE(3296), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(3097), - [sym_bracketed_type] = STATE(3691), - [sym_lifetime] = STATE(3008), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3333), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(2540), - [sym_scoped_identifier] = STATE(2311), - [sym_scoped_type_identifier] = STATE(2186), - [sym_const_block] = STATE(2221), - [sym__pattern] = STATE(3210), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3114), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1866), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1631), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_let_condition] = STATE(2717), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(244), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), [sym_line_comment] = STATE(264), [sym_block_comment] = STATE(264), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(1181), - [anon_sym_LPAREN] = ACTIONS(1183), - [anon_sym_RPAREN] = ACTIONS(1375), - [anon_sym_LBRACK] = ACTIONS(1109), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1187), - [anon_sym_i8] = ACTIONS(1187), - [anon_sym_u16] = ACTIONS(1187), - [anon_sym_i16] = ACTIONS(1187), - [anon_sym_u32] = ACTIONS(1187), - [anon_sym_i32] = ACTIONS(1187), - [anon_sym_u64] = ACTIONS(1187), - [anon_sym_i64] = ACTIONS(1187), - [anon_sym_u128] = ACTIONS(1187), - [anon_sym_i128] = ACTIONS(1187), - [anon_sym_isize] = ACTIONS(1187), - [anon_sym_usize] = ACTIONS(1187), - [anon_sym_f32] = ACTIONS(1187), - [anon_sym_f64] = ACTIONS(1187), - [anon_sym_bool] = ACTIONS(1187), - [anon_sym_str] = ACTIONS(1187), - [anon_sym_char] = ACTIONS(1187), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(1189), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1363), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1129), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COLON_COLON] = ACTIONS(1195), - [anon_sym_POUND] = ACTIONS(1137), - [anon_sym_SQUOTE] = ACTIONS(1139), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1143), - [anon_sym_default] = ACTIONS(1197), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1199), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1199), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_ref] = ACTIONS(1159), - [anon_sym_dyn] = ACTIONS(1161), - [sym_mutable_specifier] = ACTIONS(1163), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1201), - [sym_super] = ACTIONS(1203), - [sym_crate] = ACTIONS(1203), - [sym_metavariable] = ACTIONS(1205), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), + [sym_identifier] = ACTIONS(470), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_STAR] = ACTIONS(910), + [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(910), + [anon_sym_BANG] = ACTIONS(910), + [anon_sym_AMP] = ACTIONS(912), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(914), + [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(512), + [anon_sym_break] = ACTIONS(514), + [anon_sym_const] = ACTIONS(358), + [anon_sym_continue] = ACTIONS(516), + [anon_sym_default] = ACTIONS(482), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(518), + [anon_sym_if] = ACTIONS(366), + [anon_sym_let] = ACTIONS(916), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(520), + [anon_sym_static] = ACTIONS(522), + [anon_sym_union] = ACTIONS(482), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_yield] = ACTIONS(524), + [anon_sym_move] = ACTIONS(526), + [anon_sym_try] = ACTIONS(378), + [sym_integer_literal] = ACTIONS(99), + [aux_sym_string_literal_token1] = ACTIONS(101), + [sym_char_literal] = ACTIONS(99), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(494), + [sym_super] = ACTIONS(496), + [sym_crate] = ACTIONS(496), + [sym_metavariable] = ACTIONS(498), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), }, [STATE(265)] = { - [sym_attribute_item] = STATE(405), - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_self_parameter] = STATE(3296), - [sym_variadic_parameter] = STATE(3296), - [sym_parameter] = STATE(3296), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(3097), - [sym_bracketed_type] = STATE(3691), - [sym_lifetime] = STATE(3008), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3333), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(2540), - [sym_scoped_identifier] = STATE(2311), - [sym_scoped_type_identifier] = STATE(2186), - [sym_const_block] = STATE(2221), - [sym__pattern] = STATE(3210), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3114), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1819), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1631), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(262), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1466), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), [sym_line_comment] = STATE(265), [sym_block_comment] = STATE(265), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(1181), - [anon_sym_LPAREN] = ACTIONS(1183), - [anon_sym_RPAREN] = ACTIONS(1377), - [anon_sym_LBRACK] = ACTIONS(1109), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1187), - [anon_sym_i8] = ACTIONS(1187), - [anon_sym_u16] = ACTIONS(1187), - [anon_sym_i16] = ACTIONS(1187), - [anon_sym_u32] = ACTIONS(1187), - [anon_sym_i32] = ACTIONS(1187), - [anon_sym_u64] = ACTIONS(1187), - [anon_sym_i64] = ACTIONS(1187), - [anon_sym_u128] = ACTIONS(1187), - [anon_sym_i128] = ACTIONS(1187), - [anon_sym_isize] = ACTIONS(1187), - [anon_sym_usize] = ACTIONS(1187), - [anon_sym_f32] = ACTIONS(1187), - [anon_sym_f64] = ACTIONS(1187), - [anon_sym_bool] = ACTIONS(1187), - [anon_sym_str] = ACTIONS(1187), - [anon_sym_char] = ACTIONS(1187), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(1189), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1363), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1129), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COLON_COLON] = ACTIONS(1195), - [anon_sym_POUND] = ACTIONS(1137), - [anon_sym_SQUOTE] = ACTIONS(1139), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1143), - [anon_sym_default] = ACTIONS(1197), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1199), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1199), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_ref] = ACTIONS(1159), - [anon_sym_dyn] = ACTIONS(1161), - [sym_mutable_specifier] = ACTIONS(1163), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1201), - [sym_super] = ACTIONS(1203), - [sym_crate] = ACTIONS(1203), - [sym_metavariable] = ACTIONS(1205), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), + [sym_identifier] = ACTIONS(470), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_STAR] = ACTIONS(1248), + [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(1248), + [anon_sym_AMP] = ACTIONS(1250), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1192), + [anon_sym_DOT_DOT] = ACTIONS(1252), + [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_DASH_GT] = ACTIONS(1194), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(478), + [anon_sym_break] = ACTIONS(480), + [anon_sym_const] = ACTIONS(358), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(482), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(484), + [anon_sym_if] = ACTIONS(366), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(486), + [anon_sym_static] = ACTIONS(488), + [anon_sym_union] = ACTIONS(482), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_yield] = ACTIONS(490), + [anon_sym_move] = ACTIONS(492), + [anon_sym_try] = ACTIONS(378), + [sym_integer_literal] = ACTIONS(99), + [aux_sym_string_literal_token1] = ACTIONS(101), + [sym_char_literal] = ACTIONS(99), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(494), + [sym_super] = ACTIONS(496), + [sym_crate] = ACTIONS(496), + [sym_metavariable] = ACTIONS(498), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), }, [STATE(266)] = { - [sym_attribute_item] = STATE(405), - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_self_parameter] = STATE(3296), - [sym_variadic_parameter] = STATE(3296), - [sym_parameter] = STATE(3296), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(3097), - [sym_bracketed_type] = STATE(3691), - [sym_lifetime] = STATE(3008), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3333), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(2540), - [sym_scoped_identifier] = STATE(2311), - [sym_scoped_type_identifier] = STATE(2186), - [sym_const_block] = STATE(2221), - [sym__pattern] = STATE(3210), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3031), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1603), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1491), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1464), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), [sym_line_comment] = STATE(266), [sym_block_comment] = STATE(266), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(1181), - [anon_sym_LPAREN] = ACTIONS(1183), - [anon_sym_RPAREN] = ACTIONS(1379), - [anon_sym_LBRACK] = ACTIONS(1109), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1187), - [anon_sym_i8] = ACTIONS(1187), - [anon_sym_u16] = ACTIONS(1187), - [anon_sym_i16] = ACTIONS(1187), - [anon_sym_u32] = ACTIONS(1187), - [anon_sym_i32] = ACTIONS(1187), - [anon_sym_u64] = ACTIONS(1187), - [anon_sym_i64] = ACTIONS(1187), - [anon_sym_u128] = ACTIONS(1187), - [anon_sym_i128] = ACTIONS(1187), - [anon_sym_isize] = ACTIONS(1187), - [anon_sym_usize] = ACTIONS(1187), - [anon_sym_f32] = ACTIONS(1187), - [anon_sym_f64] = ACTIONS(1187), - [anon_sym_bool] = ACTIONS(1187), - [anon_sym_str] = ACTIONS(1187), - [anon_sym_char] = ACTIONS(1187), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(1189), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1363), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1129), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COLON_COLON] = ACTIONS(1195), - [anon_sym_POUND] = ACTIONS(1137), - [anon_sym_SQUOTE] = ACTIONS(1139), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1143), - [anon_sym_default] = ACTIONS(1197), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1199), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1199), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_ref] = ACTIONS(1159), - [anon_sym_dyn] = ACTIONS(1161), - [sym_mutable_specifier] = ACTIONS(1163), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1201), - [sym_super] = ACTIONS(1203), - [sym_crate] = ACTIONS(1203), - [sym_metavariable] = ACTIONS(1205), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), - }, - [STATE(267)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1947), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(267), - [sym_block_comment] = STATE(267), - [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), @@ -47994,660 +48032,1003 @@ 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(1196), + [anon_sym_DOT_DOT] = ACTIONS(1236), [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DASH_GT] = ACTIONS(1198), [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_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(2881), + [sym_bracketed_type] = STATE(3734), + [sym_lifetime] = STATE(3823), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3444), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2525), + [sym_scoped_identifier] = STATE(2223), + [sym_scoped_type_identifier] = STATE(2238), + [sym_const_block] = STATE(2197), + [sym_closure_expression] = STATE(3087), + [sym_closure_parameters] = STATE(221), + [sym__pattern] = STATE(2812), + [sym_generic_pattern] = STATE(2197), + [sym_tuple_pattern] = STATE(2197), + [sym_slice_pattern] = STATE(2197), + [sym_tuple_struct_pattern] = STATE(2197), + [sym_struct_pattern] = STATE(2197), + [sym_remaining_field_pattern] = STATE(2197), + [sym_mut_pattern] = STATE(2197), + [sym_range_pattern] = STATE(2197), + [sym_ref_pattern] = STATE(2197), + [sym_captured_pattern] = STATE(2197), + [sym_reference_pattern] = STATE(2197), + [sym_or_pattern] = STATE(2197), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2129), + [sym_string_literal] = STATE(2129), + [sym_raw_string_literal] = STATE(2129), + [sym_boolean_literal] = STATE(2129), + [sym_line_comment] = STATE(267), + [sym_block_comment] = STATE(267), + [sym_identifier] = ACTIONS(1050), + [anon_sym_LPAREN] = ACTIONS(1052), + [anon_sym_RPAREN] = ACTIONS(1386), + [anon_sym_LBRACK] = ACTIONS(1056), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1062), + [anon_sym_i8] = ACTIONS(1062), + [anon_sym_u16] = ACTIONS(1062), + [anon_sym_i16] = ACTIONS(1062), + [anon_sym_u32] = ACTIONS(1062), + [anon_sym_i32] = ACTIONS(1062), + [anon_sym_u64] = ACTIONS(1062), + [anon_sym_i64] = ACTIONS(1062), + [anon_sym_u128] = ACTIONS(1062), + [anon_sym_i128] = ACTIONS(1062), + [anon_sym_isize] = ACTIONS(1062), + [anon_sym_usize] = ACTIONS(1062), + [anon_sym_f32] = ACTIONS(1062), + [anon_sym_f64] = ACTIONS(1062), + [anon_sym_bool] = ACTIONS(1062), + [anon_sym_str] = ACTIONS(1062), + [anon_sym_char] = ACTIONS(1062), + [anon_sym_DASH] = ACTIONS(1064), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1388), + [anon_sym_PIPE] = ACTIONS(1390), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1392), + [anon_sym_DOT_DOT] = ACTIONS(1074), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1078), + [anon_sym_COMMA] = ACTIONS(1394), + [anon_sym_COLON_COLON] = ACTIONS(1082), + [anon_sym_SQUOTE] = ACTIONS(1086), + [anon_sym_async] = ACTIONS(1396), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1092), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1098), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_static] = ACTIONS(1398), + [anon_sym_union] = ACTIONS(1098), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_ref] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1108), + [sym_mutable_specifier] = ACTIONS(1400), + [anon_sym_move] = ACTIONS(1402), + [sym_integer_literal] = ACTIONS(1112), + [aux_sym_string_literal_token1] = ACTIONS(1114), + [sym_char_literal] = ACTIONS(1112), + [anon_sym_true] = ACTIONS(1116), + [anon_sym_false] = ACTIONS(1116), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1120), + [sym_super] = ACTIONS(1120), + [sym_crate] = ACTIONS(1120), + [sym_metavariable] = ACTIONS(1122), + [sym__raw_string_literal_start] = ACTIONS(1124), + [sym_float_literal] = ACTIONS(1112), }, [STATE(268)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3105), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1779), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1607), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(226), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(2881), + [sym_bracketed_type] = STATE(3734), + [sym_lifetime] = STATE(3823), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3444), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2525), + [sym_scoped_identifier] = STATE(2223), + [sym_scoped_type_identifier] = STATE(2238), + [sym_const_block] = STATE(2197), + [sym_closure_expression] = STATE(3087), + [sym_closure_parameters] = STATE(221), + [sym__pattern] = STATE(2812), + [sym_generic_pattern] = STATE(2197), + [sym_tuple_pattern] = STATE(2197), + [sym_slice_pattern] = STATE(2197), + [sym_tuple_struct_pattern] = STATE(2197), + [sym_struct_pattern] = STATE(2197), + [sym_remaining_field_pattern] = STATE(2197), + [sym_mut_pattern] = STATE(2197), + [sym_range_pattern] = STATE(2197), + [sym_ref_pattern] = STATE(2197), + [sym_captured_pattern] = STATE(2197), + [sym_reference_pattern] = STATE(2197), + [sym_or_pattern] = STATE(2197), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2129), + [sym_string_literal] = STATE(2129), + [sym_raw_string_literal] = STATE(2129), + [sym_boolean_literal] = STATE(2129), [sym_line_comment] = STATE(268), [sym_block_comment] = STATE(268), - [sym_identifier] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1057), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(1057), - [anon_sym_BANG] = ACTIONS(1057), - [anon_sym_AMP] = ACTIONS(1059), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1063), - [anon_sym_COLON_COLON] = ACTIONS(481), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(509), - [anon_sym_break] = ACTIONS(511), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(489), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(513), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(515), - [anon_sym_static] = ACTIONS(517), - [anon_sym_union] = ACTIONS(489), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(519), - [anon_sym_move] = ACTIONS(521), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(501), - [sym_super] = ACTIONS(503), - [sym_crate] = ACTIONS(503), - [sym_metavariable] = ACTIONS(505), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [sym_identifier] = ACTIONS(1050), + [anon_sym_LPAREN] = ACTIONS(1052), + [anon_sym_RPAREN] = ACTIONS(1404), + [anon_sym_LBRACK] = ACTIONS(1056), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1062), + [anon_sym_i8] = ACTIONS(1062), + [anon_sym_u16] = ACTIONS(1062), + [anon_sym_i16] = ACTIONS(1062), + [anon_sym_u32] = ACTIONS(1062), + [anon_sym_i32] = ACTIONS(1062), + [anon_sym_u64] = ACTIONS(1062), + [anon_sym_i64] = ACTIONS(1062), + [anon_sym_u128] = ACTIONS(1062), + [anon_sym_i128] = ACTIONS(1062), + [anon_sym_isize] = ACTIONS(1062), + [anon_sym_usize] = ACTIONS(1062), + [anon_sym_f32] = ACTIONS(1062), + [anon_sym_f64] = ACTIONS(1062), + [anon_sym_bool] = ACTIONS(1062), + [anon_sym_str] = ACTIONS(1062), + [anon_sym_char] = ACTIONS(1062), + [anon_sym_DASH] = ACTIONS(1064), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1388), + [anon_sym_PIPE] = ACTIONS(1390), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1392), + [anon_sym_DOT_DOT] = ACTIONS(1074), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1078), + [anon_sym_COMMA] = ACTIONS(1394), + [anon_sym_COLON_COLON] = ACTIONS(1082), + [anon_sym_SQUOTE] = ACTIONS(1086), + [anon_sym_async] = ACTIONS(1396), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1092), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1098), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_static] = ACTIONS(1398), + [anon_sym_union] = ACTIONS(1098), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_ref] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1108), + [sym_mutable_specifier] = ACTIONS(1400), + [anon_sym_move] = ACTIONS(1402), + [sym_integer_literal] = ACTIONS(1112), + [aux_sym_string_literal_token1] = ACTIONS(1114), + [sym_char_literal] = ACTIONS(1112), + [anon_sym_true] = ACTIONS(1116), + [anon_sym_false] = ACTIONS(1116), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1120), + [sym_super] = ACTIONS(1120), + [sym_crate] = ACTIONS(1120), + [sym_metavariable] = ACTIONS(1122), + [sym__raw_string_literal_start] = ACTIONS(1124), + [sym_float_literal] = ACTIONS(1112), }, [STATE(269)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3105), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1675), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1607), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(254), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(2881), + [sym_bracketed_type] = STATE(3734), + [sym_lifetime] = STATE(3823), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3444), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2525), + [sym_scoped_identifier] = STATE(2223), + [sym_scoped_type_identifier] = STATE(2238), + [sym_const_block] = STATE(2197), + [sym_closure_expression] = STATE(3087), + [sym_closure_parameters] = STATE(221), + [sym__pattern] = STATE(2812), + [sym_generic_pattern] = STATE(2197), + [sym_tuple_pattern] = STATE(2197), + [sym_slice_pattern] = STATE(2197), + [sym_tuple_struct_pattern] = STATE(2197), + [sym_struct_pattern] = STATE(2197), + [sym_remaining_field_pattern] = STATE(2197), + [sym_mut_pattern] = STATE(2197), + [sym_range_pattern] = STATE(2197), + [sym_ref_pattern] = STATE(2197), + [sym_captured_pattern] = STATE(2197), + [sym_reference_pattern] = STATE(2197), + [sym_or_pattern] = STATE(2197), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2129), + [sym_string_literal] = STATE(2129), + [sym_raw_string_literal] = STATE(2129), + [sym_boolean_literal] = STATE(2129), [sym_line_comment] = STATE(269), [sym_block_comment] = STATE(269), - [sym_identifier] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(907), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(907), - [anon_sym_BANG] = ACTIONS(907), - [anon_sym_AMP] = ACTIONS(909), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(911), - [anon_sym_COLON_COLON] = ACTIONS(481), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_default] = ACTIONS(489), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(491), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(493), - [anon_sym_static] = ACTIONS(495), - [anon_sym_union] = ACTIONS(489), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(497), - [anon_sym_move] = ACTIONS(499), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(501), - [sym_super] = ACTIONS(503), - [sym_crate] = ACTIONS(503), - [sym_metavariable] = ACTIONS(505), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [sym_identifier] = ACTIONS(1050), + [anon_sym_LPAREN] = ACTIONS(1052), + [anon_sym_RPAREN] = ACTIONS(1406), + [anon_sym_LBRACK] = ACTIONS(1056), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1062), + [anon_sym_i8] = ACTIONS(1062), + [anon_sym_u16] = ACTIONS(1062), + [anon_sym_i16] = ACTIONS(1062), + [anon_sym_u32] = ACTIONS(1062), + [anon_sym_i32] = ACTIONS(1062), + [anon_sym_u64] = ACTIONS(1062), + [anon_sym_i64] = ACTIONS(1062), + [anon_sym_u128] = ACTIONS(1062), + [anon_sym_i128] = ACTIONS(1062), + [anon_sym_isize] = ACTIONS(1062), + [anon_sym_usize] = ACTIONS(1062), + [anon_sym_f32] = ACTIONS(1062), + [anon_sym_f64] = ACTIONS(1062), + [anon_sym_bool] = ACTIONS(1062), + [anon_sym_str] = ACTIONS(1062), + [anon_sym_char] = ACTIONS(1062), + [anon_sym_DASH] = ACTIONS(1064), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1388), + [anon_sym_PIPE] = ACTIONS(1390), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1392), + [anon_sym_DOT_DOT] = ACTIONS(1074), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1078), + [anon_sym_COMMA] = ACTIONS(1394), + [anon_sym_COLON_COLON] = ACTIONS(1082), + [anon_sym_SQUOTE] = ACTIONS(1086), + [anon_sym_async] = ACTIONS(1396), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1092), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1098), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_static] = ACTIONS(1398), + [anon_sym_union] = ACTIONS(1098), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_ref] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1108), + [sym_mutable_specifier] = ACTIONS(1400), + [anon_sym_move] = ACTIONS(1402), + [sym_integer_literal] = ACTIONS(1112), + [aux_sym_string_literal_token1] = ACTIONS(1114), + [sym_char_literal] = ACTIONS(1112), + [anon_sym_true] = ACTIONS(1116), + [anon_sym_false] = ACTIONS(1116), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1120), + [sym_super] = ACTIONS(1120), + [sym_crate] = ACTIONS(1120), + [sym_metavariable] = ACTIONS(1122), + [sym__raw_string_literal_start] = ACTIONS(1124), + [sym_float_literal] = ACTIONS(1112), }, [STATE(270)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3105), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1449), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1607), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(226), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym_else_clause] = STATE(412), [sym_line_comment] = STATE(270), [sym_block_comment] = STATE(270), - [sym_identifier] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1057), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(1057), - [anon_sym_BANG] = ACTIONS(1057), - [anon_sym_AMP] = ACTIONS(1059), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1063), - [anon_sym_COLON_COLON] = ACTIONS(481), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(509), - [anon_sym_break] = ACTIONS(511), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(489), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(513), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(515), - [anon_sym_static] = ACTIONS(517), - [anon_sym_union] = ACTIONS(489), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(519), - [anon_sym_move] = ACTIONS(521), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(501), - [sym_super] = ACTIONS(503), - [sym_crate] = ACTIONS(503), - [sym_metavariable] = ACTIONS(505), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [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(1412), + [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(271)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3105), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1650), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1607), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(254), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym_attribute_item] = STATE(426), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_self_parameter] = STATE(3362), + [sym_variadic_parameter] = STATE(3362), + [sym_parameter] = STATE(3362), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(3138), + [sym_bracketed_type] = STATE(3726), + [sym_lifetime] = STATE(3173), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3316), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2601), + [sym_scoped_identifier] = STATE(2336), + [sym_scoped_type_identifier] = STATE(2238), + [sym_const_block] = STATE(2197), + [sym__pattern] = STATE(3441), + [sym_generic_pattern] = STATE(2197), + [sym_tuple_pattern] = STATE(2197), + [sym_slice_pattern] = STATE(2197), + [sym_tuple_struct_pattern] = STATE(2197), + [sym_struct_pattern] = STATE(2197), + [sym_remaining_field_pattern] = STATE(2197), + [sym_mut_pattern] = STATE(2197), + [sym_range_pattern] = STATE(2197), + [sym_ref_pattern] = STATE(2197), + [sym_captured_pattern] = STATE(2197), + [sym_reference_pattern] = STATE(2197), + [sym_or_pattern] = STATE(2197), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2129), + [sym_string_literal] = STATE(2129), + [sym_raw_string_literal] = STATE(2129), + [sym_boolean_literal] = STATE(2129), [sym_line_comment] = STATE(271), [sym_block_comment] = STATE(271), - [sym_identifier] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(907), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(907), - [anon_sym_BANG] = ACTIONS(907), - [anon_sym_AMP] = ACTIONS(909), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(911), - [anon_sym_COLON_COLON] = ACTIONS(481), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_default] = ACTIONS(489), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(491), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(493), - [anon_sym_static] = ACTIONS(495), - [anon_sym_union] = ACTIONS(489), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(497), - [anon_sym_move] = ACTIONS(499), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(501), - [sym_super] = ACTIONS(503), - [sym_crate] = ACTIONS(503), - [sym_metavariable] = ACTIONS(505), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [sym_identifier] = ACTIONS(1130), + [anon_sym_LPAREN] = ACTIONS(1132), + [anon_sym_LBRACK] = ACTIONS(1056), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1136), + [anon_sym_i8] = ACTIONS(1136), + [anon_sym_u16] = ACTIONS(1136), + [anon_sym_i16] = ACTIONS(1136), + [anon_sym_u32] = ACTIONS(1136), + [anon_sym_i32] = ACTIONS(1136), + [anon_sym_u64] = ACTIONS(1136), + [anon_sym_i64] = ACTIONS(1136), + [anon_sym_u128] = ACTIONS(1136), + [anon_sym_i128] = ACTIONS(1136), + [anon_sym_isize] = ACTIONS(1136), + [anon_sym_usize] = ACTIONS(1136), + [anon_sym_f32] = ACTIONS(1136), + [anon_sym_f64] = ACTIONS(1136), + [anon_sym_bool] = ACTIONS(1136), + [anon_sym_str] = ACTIONS(1136), + [anon_sym_char] = ACTIONS(1136), + [anon_sym_DASH] = ACTIONS(1064), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1138), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1214), + [anon_sym_DOT_DOT] = ACTIONS(1074), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1076), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1078), + [anon_sym_COLON_COLON] = ACTIONS(1144), + [anon_sym_POUND] = ACTIONS(1084), + [anon_sym_SQUOTE] = ACTIONS(1086), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1146), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1148), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1148), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_ref] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1108), + [sym_mutable_specifier] = ACTIONS(1110), + [sym_integer_literal] = ACTIONS(1112), + [aux_sym_string_literal_token1] = ACTIONS(1114), + [sym_char_literal] = ACTIONS(1112), + [anon_sym_true] = ACTIONS(1116), + [anon_sym_false] = ACTIONS(1116), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1150), + [sym_super] = ACTIONS(1152), + [sym_crate] = ACTIONS(1152), + [sym_metavariable] = ACTIONS(1154), + [sym__raw_string_literal_start] = ACTIONS(1124), + [sym_float_literal] = ACTIONS(1112), }, [STATE(272)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1940), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3114), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1712), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1631), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(244), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), [sym_line_comment] = STATE(272), [sym_block_comment] = STATE(272), - [sym_identifier] = ACTIONS(339), + [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(910), + [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(910), + [anon_sym_BANG] = ACTIONS(910), + [anon_sym_AMP] = ACTIONS(912), [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(1224), + [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(512), + [anon_sym_break] = ACTIONS(514), + [anon_sym_const] = ACTIONS(358), + [anon_sym_continue] = ACTIONS(516), + [anon_sym_default] = ACTIONS(482), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(518), + [anon_sym_if] = ACTIONS(366), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(520), + [anon_sym_static] = ACTIONS(522), + [anon_sym_union] = ACTIONS(482), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_yield] = ACTIONS(524), + [anon_sym_move] = ACTIONS(526), + [anon_sym_try] = ACTIONS(378), + [sym_integer_literal] = ACTIONS(99), + [aux_sym_string_literal_token1] = ACTIONS(101), + [sym_char_literal] = ACTIONS(99), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(494), + [sym_super] = ACTIONS(496), + [sym_crate] = ACTIONS(496), + [sym_metavariable] = ACTIONS(498), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), }, [STATE(273)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1874), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym_bracketed_type] = STATE(3702), + [sym_generic_function] = STATE(1815), + [sym_generic_type_with_turbofish] = STATE(2969), + [sym__expression_except_range] = STATE(1694), + [sym__expression] = STATE(1890), + [sym_macro_invocation] = STATE(1832), + [sym_scoped_identifier] = STATE(1654), + [sym_scoped_type_identifier_in_expression_position] = STATE(3227), + [sym_range_expression] = STATE(1820), + [sym_unary_expression] = STATE(1815), + [sym_try_expression] = STATE(1815), + [sym_reference_expression] = STATE(1815), + [sym_binary_expression] = STATE(1815), + [sym_assignment_expression] = STATE(1815), + [sym_compound_assignment_expr] = STATE(1815), + [sym_type_cast_expression] = STATE(1815), + [sym_return_expression] = STATE(1815), + [sym_yield_expression] = STATE(1815), + [sym_call_expression] = STATE(1815), + [sym_array_expression] = STATE(1815), + [sym_parenthesized_expression] = STATE(1815), + [sym_tuple_expression] = STATE(1815), + [sym_unit_expression] = STATE(1815), + [sym_struct_expression] = STATE(1815), + [sym_if_expression] = STATE(1815), + [sym_match_expression] = STATE(1815), + [sym_while_expression] = STATE(1815), + [sym_loop_expression] = STATE(1815), + [sym_for_expression] = STATE(1815), + [sym_const_block] = STATE(1815), + [sym_closure_expression] = STATE(1815), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3807), + [sym_break_expression] = STATE(1815), + [sym_continue_expression] = STATE(1815), + [sym_index_expression] = STATE(1815), + [sym_await_expression] = STATE(1815), + [sym_field_expression] = STATE(1695), + [sym_unsafe_block] = STATE(1815), + [sym_async_block] = STATE(1815), + [sym_gen_block] = STATE(1815), + [sym_try_block] = STATE(1815), + [sym_block] = STATE(1815), + [sym__literal] = STATE(1815), + [sym_string_literal] = STATE(1733), + [sym_raw_string_literal] = STATE(1733), + [sym_boolean_literal] = STATE(1733), [sym_line_comment] = STATE(273), [sym_block_comment] = STATE(273), - [sym_identifier] = ACTIONS(339), + [sym_identifier] = ACTIONS(410), + [anon_sym_LPAREN] = ACTIONS(500), + [anon_sym_LBRACK] = ACTIONS(502), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_STAR] = ACTIONS(986), + [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(986), + [anon_sym_BANG] = ACTIONS(986), + [anon_sym_AMP] = ACTIONS(988), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1204), + [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(274)] = { + [sym_bracketed_type] = STATE(3702), + [sym_generic_function] = STATE(1815), + [sym_generic_type_with_turbofish] = STATE(2969), + [sym__expression_except_range] = STATE(1694), + [sym__expression] = STATE(1892), + [sym_macro_invocation] = STATE(1832), + [sym_scoped_identifier] = STATE(1654), + [sym_scoped_type_identifier_in_expression_position] = STATE(3227), + [sym_range_expression] = STATE(1820), + [sym_unary_expression] = STATE(1815), + [sym_try_expression] = STATE(1815), + [sym_reference_expression] = STATE(1815), + [sym_binary_expression] = STATE(1815), + [sym_assignment_expression] = STATE(1815), + [sym_compound_assignment_expr] = STATE(1815), + [sym_type_cast_expression] = STATE(1815), + [sym_return_expression] = STATE(1815), + [sym_yield_expression] = STATE(1815), + [sym_call_expression] = STATE(1815), + [sym_array_expression] = STATE(1815), + [sym_parenthesized_expression] = STATE(1815), + [sym_tuple_expression] = STATE(1815), + [sym_unit_expression] = STATE(1815), + [sym_struct_expression] = STATE(1815), + [sym_if_expression] = STATE(1815), + [sym_match_expression] = STATE(1815), + [sym_while_expression] = STATE(1815), + [sym_loop_expression] = STATE(1815), + [sym_for_expression] = STATE(1815), + [sym_const_block] = STATE(1815), + [sym_closure_expression] = STATE(1815), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3807), + [sym_break_expression] = STATE(1815), + [sym_continue_expression] = STATE(1815), + [sym_index_expression] = STATE(1815), + [sym_await_expression] = STATE(1815), + [sym_field_expression] = STATE(1695), + [sym_unsafe_block] = STATE(1815), + [sym_async_block] = STATE(1815), + [sym_gen_block] = STATE(1815), + [sym_try_block] = STATE(1815), + [sym_block] = STATE(1815), + [sym__literal] = STATE(1815), + [sym_string_literal] = STATE(1733), + [sym_raw_string_literal] = STATE(1733), + [sym_boolean_literal] = STATE(1733), + [sym_line_comment] = STATE(274), + [sym_block_comment] = STATE(274), + [sym_identifier] = ACTIONS(410), + [anon_sym_LPAREN] = ACTIONS(500), + [anon_sym_LBRACK] = ACTIONS(502), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_STAR] = ACTIONS(986), + [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(986), + [anon_sym_BANG] = ACTIONS(986), + [anon_sym_AMP] = ACTIONS(988), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1204), + [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(275)] = { + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3031), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1956), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1491), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), + [sym_line_comment] = STATE(275), + [sym_block_comment] = STATE(275), + [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), @@ -48674,204 +49055,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(274)] = { - [sym_bracketed_type] = STATE(3667), - [sym_generic_function] = STATE(1921), - [sym_generic_type_with_turbofish] = STATE(3104), - [sym__expression_except_range] = STATE(1706), - [sym__expression] = STATE(1765), - [sym_macro_invocation] = STATE(1722), - [sym_scoped_identifier] = STATE(1634), - [sym_scoped_type_identifier_in_expression_position] = STATE(3327), - [sym_range_expression] = STATE(1718), - [sym_unary_expression] = STATE(1921), - [sym_try_expression] = STATE(1921), - [sym_reference_expression] = STATE(1921), - [sym_binary_expression] = STATE(1921), - [sym_assignment_expression] = STATE(1921), - [sym_compound_assignment_expr] = STATE(1921), - [sym_type_cast_expression] = STATE(1921), - [sym_return_expression] = STATE(1921), - [sym_yield_expression] = STATE(1921), - [sym_call_expression] = STATE(1921), - [sym_array_expression] = STATE(1921), - [sym_parenthesized_expression] = STATE(1921), - [sym_tuple_expression] = STATE(1921), - [sym_unit_expression] = STATE(1921), - [sym_struct_expression] = STATE(1921), - [sym_if_expression] = STATE(1921), - [sym_match_expression] = STATE(1921), - [sym_while_expression] = STATE(1921), - [sym_loop_expression] = STATE(1921), - [sym_for_expression] = STATE(1921), - [sym_const_block] = STATE(1921), - [sym_closure_expression] = STATE(1921), - [sym_closure_parameters] = STATE(245), - [sym_label] = STATE(3773), - [sym_break_expression] = STATE(1921), - [sym_continue_expression] = STATE(1921), - [sym_index_expression] = STATE(1921), - [sym_await_expression] = STATE(1921), - [sym_field_expression] = STATE(1693), - [sym_unsafe_block] = STATE(1921), - [sym_async_block] = STATE(1921), - [sym_gen_block] = STATE(1921), - [sym_try_block] = STATE(1921), - [sym_block] = STATE(1921), - [sym__literal] = STATE(1921), - [sym_string_literal] = STATE(1852), - [sym_raw_string_literal] = STATE(1852), - [sym_boolean_literal] = STATE(1852), - [sym_line_comment] = STATE(274), - [sym_block_comment] = STATE(274), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(989), - [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(989), - [anon_sym_BANG] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(991), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1067), - [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(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(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1887), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(275), - [sym_block_comment] = STATE(275), - [sym_identifier] = ACTIONS(339), + [STATE(276)] = { + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3031), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1958), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1491), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), + [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), @@ -48898,1436 +49167,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), - }, - [STATE(276)] = { - [sym_bracketed_type] = STATE(3667), - [sym_generic_function] = STATE(1921), - [sym_generic_type_with_turbofish] = STATE(3104), - [sym__expression_except_range] = STATE(1706), - [sym__expression] = STATE(1827), - [sym_macro_invocation] = STATE(1722), - [sym_scoped_identifier] = STATE(1634), - [sym_scoped_type_identifier_in_expression_position] = STATE(3327), - [sym_range_expression] = STATE(1718), - [sym_unary_expression] = STATE(1921), - [sym_try_expression] = STATE(1921), - [sym_reference_expression] = STATE(1921), - [sym_binary_expression] = STATE(1921), - [sym_assignment_expression] = STATE(1921), - [sym_compound_assignment_expr] = STATE(1921), - [sym_type_cast_expression] = STATE(1921), - [sym_return_expression] = STATE(1921), - [sym_yield_expression] = STATE(1921), - [sym_call_expression] = STATE(1921), - [sym_array_expression] = STATE(1921), - [sym_parenthesized_expression] = STATE(1921), - [sym_tuple_expression] = STATE(1921), - [sym_unit_expression] = STATE(1921), - [sym_struct_expression] = STATE(1921), - [sym_if_expression] = STATE(1921), - [sym_match_expression] = STATE(1921), - [sym_while_expression] = STATE(1921), - [sym_loop_expression] = STATE(1921), - [sym_for_expression] = STATE(1921), - [sym_const_block] = STATE(1921), - [sym_closure_expression] = STATE(1921), - [sym_closure_parameters] = STATE(245), - [sym_label] = STATE(3773), - [sym_break_expression] = STATE(1921), - [sym_continue_expression] = STATE(1921), - [sym_index_expression] = STATE(1921), - [sym_await_expression] = STATE(1921), - [sym_field_expression] = STATE(1693), - [sym_unsafe_block] = STATE(1921), - [sym_async_block] = STATE(1921), - [sym_gen_block] = STATE(1921), - [sym_try_block] = STATE(1921), - [sym_block] = STATE(1921), - [sym__literal] = STATE(1921), - [sym_string_literal] = STATE(1852), - [sym_raw_string_literal] = STATE(1852), - [sym_boolean_literal] = STATE(1852), - [sym_line_comment] = STATE(276), - [sym_block_comment] = STATE(276), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(989), - [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(989), - [anon_sym_BANG] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(991), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1067), - [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(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(3667), - [sym_generic_function] = STATE(1921), - [sym_generic_type_with_turbofish] = STATE(3104), - [sym__expression_except_range] = STATE(1706), - [sym__expression] = STATE(1864), - [sym_macro_invocation] = STATE(1722), - [sym_scoped_identifier] = STATE(1634), - [sym_scoped_type_identifier_in_expression_position] = STATE(3327), - [sym_range_expression] = STATE(1718), - [sym_unary_expression] = STATE(1921), - [sym_try_expression] = STATE(1921), - [sym_reference_expression] = STATE(1921), - [sym_binary_expression] = STATE(1921), - [sym_assignment_expression] = STATE(1921), - [sym_compound_assignment_expr] = STATE(1921), - [sym_type_cast_expression] = STATE(1921), - [sym_return_expression] = STATE(1921), - [sym_yield_expression] = STATE(1921), - [sym_call_expression] = STATE(1921), - [sym_array_expression] = STATE(1921), - [sym_parenthesized_expression] = STATE(1921), - [sym_tuple_expression] = STATE(1921), - [sym_unit_expression] = STATE(1921), - [sym_struct_expression] = STATE(1921), - [sym_if_expression] = STATE(1921), - [sym_match_expression] = STATE(1921), - [sym_while_expression] = STATE(1921), - [sym_loop_expression] = STATE(1921), - [sym_for_expression] = STATE(1921), - [sym_const_block] = STATE(1921), - [sym_closure_expression] = STATE(1921), - [sym_closure_parameters] = STATE(245), - [sym_label] = STATE(3773), - [sym_break_expression] = STATE(1921), - [sym_continue_expression] = STATE(1921), - [sym_index_expression] = STATE(1921), - [sym_await_expression] = STATE(1921), - [sym_field_expression] = STATE(1693), - [sym_unsafe_block] = STATE(1921), - [sym_async_block] = STATE(1921), - [sym_gen_block] = STATE(1921), - [sym_try_block] = STATE(1921), - [sym_block] = STATE(1921), - [sym__literal] = STATE(1921), - [sym_string_literal] = STATE(1852), - [sym_raw_string_literal] = STATE(1852), - [sym_boolean_literal] = STATE(1852), + [sym_bracketed_type] = STATE(3702), + [sym_generic_function] = STATE(1815), + [sym_generic_type_with_turbofish] = STATE(2969), + [sym__expression_except_range] = STATE(1694), + [sym__expression] = STATE(1893), + [sym_macro_invocation] = STATE(1832), + [sym_scoped_identifier] = STATE(1654), + [sym_scoped_type_identifier_in_expression_position] = STATE(3227), + [sym_range_expression] = STATE(1820), + [sym_unary_expression] = STATE(1815), + [sym_try_expression] = STATE(1815), + [sym_reference_expression] = STATE(1815), + [sym_binary_expression] = STATE(1815), + [sym_assignment_expression] = STATE(1815), + [sym_compound_assignment_expr] = STATE(1815), + [sym_type_cast_expression] = STATE(1815), + [sym_return_expression] = STATE(1815), + [sym_yield_expression] = STATE(1815), + [sym_call_expression] = STATE(1815), + [sym_array_expression] = STATE(1815), + [sym_parenthesized_expression] = STATE(1815), + [sym_tuple_expression] = STATE(1815), + [sym_unit_expression] = STATE(1815), + [sym_struct_expression] = STATE(1815), + [sym_if_expression] = STATE(1815), + [sym_match_expression] = STATE(1815), + [sym_while_expression] = STATE(1815), + [sym_loop_expression] = STATE(1815), + [sym_for_expression] = STATE(1815), + [sym_const_block] = STATE(1815), + [sym_closure_expression] = STATE(1815), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3807), + [sym_break_expression] = STATE(1815), + [sym_continue_expression] = STATE(1815), + [sym_index_expression] = STATE(1815), + [sym_await_expression] = STATE(1815), + [sym_field_expression] = STATE(1695), + [sym_unsafe_block] = STATE(1815), + [sym_async_block] = STATE(1815), + [sym_gen_block] = STATE(1815), + [sym_try_block] = STATE(1815), + [sym_block] = STATE(1815), + [sym__literal] = STATE(1815), + [sym_string_literal] = STATE(1733), + [sym_raw_string_literal] = STATE(1733), + [sym_boolean_literal] = STATE(1733), [sym_line_comment] = STATE(277), [sym_block_comment] = STATE(277), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(989), - [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(989), - [anon_sym_BANG] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(991), + [sym_identifier] = ACTIONS(410), + [anon_sym_LPAREN] = ACTIONS(500), + [anon_sym_LBRACK] = ACTIONS(502), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_STAR] = ACTIONS(986), + [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(986), + [anon_sym_BANG] = ACTIONS(986), + [anon_sym_AMP] = ACTIONS(988), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1067), - [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym_DOT_DOT] = ACTIONS(1204), + [anon_sym_COLON_COLON] = ACTIONS(420), [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_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(278)] = { - [sym_bracketed_type] = STATE(3667), - [sym_generic_function] = STATE(1921), - [sym_generic_type_with_turbofish] = STATE(3104), - [sym__expression_except_range] = STATE(1706), - [sym__expression] = STATE(1828), - [sym_macro_invocation] = STATE(1722), - [sym_scoped_identifier] = STATE(1634), - [sym_scoped_type_identifier_in_expression_position] = STATE(3327), - [sym_range_expression] = STATE(1718), - [sym_unary_expression] = STATE(1921), - [sym_try_expression] = STATE(1921), - [sym_reference_expression] = STATE(1921), - [sym_binary_expression] = STATE(1921), - [sym_assignment_expression] = STATE(1921), - [sym_compound_assignment_expr] = STATE(1921), - [sym_type_cast_expression] = STATE(1921), - [sym_return_expression] = STATE(1921), - [sym_yield_expression] = STATE(1921), - [sym_call_expression] = STATE(1921), - [sym_array_expression] = STATE(1921), - [sym_parenthesized_expression] = STATE(1921), - [sym_tuple_expression] = STATE(1921), - [sym_unit_expression] = STATE(1921), - [sym_struct_expression] = STATE(1921), - [sym_if_expression] = STATE(1921), - [sym_match_expression] = STATE(1921), - [sym_while_expression] = STATE(1921), - [sym_loop_expression] = STATE(1921), - [sym_for_expression] = STATE(1921), - [sym_const_block] = STATE(1921), - [sym_closure_expression] = STATE(1921), - [sym_closure_parameters] = STATE(245), - [sym_label] = STATE(3773), - [sym_break_expression] = STATE(1921), - [sym_continue_expression] = STATE(1921), - [sym_index_expression] = STATE(1921), - [sym_await_expression] = STATE(1921), - [sym_field_expression] = STATE(1693), - [sym_unsafe_block] = STATE(1921), - [sym_async_block] = STATE(1921), - [sym_gen_block] = STATE(1921), - [sym_try_block] = STATE(1921), - [sym_block] = STATE(1921), - [sym__literal] = STATE(1921), - [sym_string_literal] = STATE(1852), - [sym_raw_string_literal] = STATE(1852), - [sym_boolean_literal] = STATE(1852), + [sym_bracketed_type] = STATE(3702), + [sym_generic_function] = STATE(1815), + [sym_generic_type_with_turbofish] = STATE(2969), + [sym__expression_except_range] = STATE(1694), + [sym__expression] = STATE(1894), + [sym_macro_invocation] = STATE(1832), + [sym_scoped_identifier] = STATE(1654), + [sym_scoped_type_identifier_in_expression_position] = STATE(3227), + [sym_range_expression] = STATE(1820), + [sym_unary_expression] = STATE(1815), + [sym_try_expression] = STATE(1815), + [sym_reference_expression] = STATE(1815), + [sym_binary_expression] = STATE(1815), + [sym_assignment_expression] = STATE(1815), + [sym_compound_assignment_expr] = STATE(1815), + [sym_type_cast_expression] = STATE(1815), + [sym_return_expression] = STATE(1815), + [sym_yield_expression] = STATE(1815), + [sym_call_expression] = STATE(1815), + [sym_array_expression] = STATE(1815), + [sym_parenthesized_expression] = STATE(1815), + [sym_tuple_expression] = STATE(1815), + [sym_unit_expression] = STATE(1815), + [sym_struct_expression] = STATE(1815), + [sym_if_expression] = STATE(1815), + [sym_match_expression] = STATE(1815), + [sym_while_expression] = STATE(1815), + [sym_loop_expression] = STATE(1815), + [sym_for_expression] = STATE(1815), + [sym_const_block] = STATE(1815), + [sym_closure_expression] = STATE(1815), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3807), + [sym_break_expression] = STATE(1815), + [sym_continue_expression] = STATE(1815), + [sym_index_expression] = STATE(1815), + [sym_await_expression] = STATE(1815), + [sym_field_expression] = STATE(1695), + [sym_unsafe_block] = STATE(1815), + [sym_async_block] = STATE(1815), + [sym_gen_block] = STATE(1815), + [sym_try_block] = STATE(1815), + [sym_block] = STATE(1815), + [sym__literal] = STATE(1815), + [sym_string_literal] = STATE(1733), + [sym_raw_string_literal] = STATE(1733), + [sym_boolean_literal] = STATE(1733), [sym_line_comment] = STATE(278), [sym_block_comment] = STATE(278), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(989), - [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(989), - [anon_sym_BANG] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(991), + [sym_identifier] = ACTIONS(410), + [anon_sym_LPAREN] = ACTIONS(500), + [anon_sym_LBRACK] = ACTIONS(502), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_STAR] = ACTIONS(986), + [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(986), + [anon_sym_BANG] = ACTIONS(986), + [anon_sym_AMP] = ACTIONS(988), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1067), - [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym_DOT_DOT] = ACTIONS(1204), + [anon_sym_COLON_COLON] = ACTIONS(420), [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_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(279)] = { - [sym_bracketed_type] = STATE(3667), - [sym_generic_function] = STATE(1921), - [sym_generic_type_with_turbofish] = STATE(3104), - [sym__expression_except_range] = STATE(1706), - [sym__expression] = STATE(1715), - [sym_macro_invocation] = STATE(1722), - [sym_scoped_identifier] = STATE(1634), - [sym_scoped_type_identifier_in_expression_position] = STATE(3327), - [sym_range_expression] = STATE(1718), - [sym_unary_expression] = STATE(1921), - [sym_try_expression] = STATE(1921), - [sym_reference_expression] = STATE(1921), - [sym_binary_expression] = STATE(1921), - [sym_assignment_expression] = STATE(1921), - [sym_compound_assignment_expr] = STATE(1921), - [sym_type_cast_expression] = STATE(1921), - [sym_return_expression] = STATE(1921), - [sym_yield_expression] = STATE(1921), - [sym_call_expression] = STATE(1921), - [sym_array_expression] = STATE(1921), - [sym_parenthesized_expression] = STATE(1921), - [sym_tuple_expression] = STATE(1921), - [sym_unit_expression] = STATE(1921), - [sym_struct_expression] = STATE(1921), - [sym_if_expression] = STATE(1921), - [sym_match_expression] = STATE(1921), - [sym_while_expression] = STATE(1921), - [sym_loop_expression] = STATE(1921), - [sym_for_expression] = STATE(1921), - [sym_const_block] = STATE(1921), - [sym_closure_expression] = STATE(1921), - [sym_closure_parameters] = STATE(245), - [sym_label] = STATE(3773), - [sym_break_expression] = STATE(1921), - [sym_continue_expression] = STATE(1921), - [sym_index_expression] = STATE(1921), - [sym_await_expression] = STATE(1921), - [sym_field_expression] = STATE(1693), - [sym_unsafe_block] = STATE(1921), - [sym_async_block] = STATE(1921), - [sym_gen_block] = STATE(1921), - [sym_try_block] = STATE(1921), - [sym_block] = STATE(1921), - [sym__literal] = STATE(1921), - [sym_string_literal] = STATE(1852), - [sym_raw_string_literal] = STATE(1852), - [sym_boolean_literal] = STATE(1852), + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3031), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1807), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1491), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), [sym_line_comment] = STATE(279), [sym_block_comment] = STATE(279), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(989), - [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(989), - [anon_sym_BANG] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(991), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1067), - [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(280)] = { - [sym_bracketed_type] = STATE(3667), - [sym_generic_function] = STATE(1921), - [sym_generic_type_with_turbofish] = STATE(3104), - [sym__expression_except_range] = STATE(1706), - [sym__expression] = STATE(1829), - [sym_macro_invocation] = STATE(1722), - [sym_scoped_identifier] = STATE(1634), - [sym_scoped_type_identifier_in_expression_position] = STATE(3327), - [sym_range_expression] = STATE(1718), - [sym_unary_expression] = STATE(1921), - [sym_try_expression] = STATE(1921), - [sym_reference_expression] = STATE(1921), - [sym_binary_expression] = STATE(1921), - [sym_assignment_expression] = STATE(1921), - [sym_compound_assignment_expr] = STATE(1921), - [sym_type_cast_expression] = STATE(1921), - [sym_return_expression] = STATE(1921), - [sym_yield_expression] = STATE(1921), - [sym_call_expression] = STATE(1921), - [sym_array_expression] = STATE(1921), - [sym_parenthesized_expression] = STATE(1921), - [sym_tuple_expression] = STATE(1921), - [sym_unit_expression] = STATE(1921), - [sym_struct_expression] = STATE(1921), - [sym_if_expression] = STATE(1921), - [sym_match_expression] = STATE(1921), - [sym_while_expression] = STATE(1921), - [sym_loop_expression] = STATE(1921), - [sym_for_expression] = STATE(1921), - [sym_const_block] = STATE(1921), - [sym_closure_expression] = STATE(1921), - [sym_closure_parameters] = STATE(245), - [sym_label] = STATE(3773), - [sym_break_expression] = STATE(1921), - [sym_continue_expression] = STATE(1921), - [sym_index_expression] = STATE(1921), - [sym_await_expression] = STATE(1921), - [sym_field_expression] = STATE(1693), - [sym_unsafe_block] = STATE(1921), - [sym_async_block] = STATE(1921), - [sym_gen_block] = STATE(1921), - [sym_try_block] = STATE(1921), - [sym_block] = STATE(1921), - [sym__literal] = STATE(1921), - [sym_string_literal] = STATE(1852), - [sym_raw_string_literal] = STATE(1852), - [sym_boolean_literal] = STATE(1852), - [sym_line_comment] = STATE(280), - [sym_block_comment] = STATE(280), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(989), - [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(989), - [anon_sym_BANG] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(991), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1067), - [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(281)] = { - [sym_bracketed_type] = STATE(3667), - [sym_generic_function] = STATE(1921), - [sym_generic_type_with_turbofish] = STATE(3104), - [sym__expression_except_range] = STATE(1706), - [sym__expression] = STATE(1830), - [sym_macro_invocation] = STATE(1722), - [sym_scoped_identifier] = STATE(1634), - [sym_scoped_type_identifier_in_expression_position] = STATE(3327), - [sym_range_expression] = STATE(1718), - [sym_unary_expression] = STATE(1921), - [sym_try_expression] = STATE(1921), - [sym_reference_expression] = STATE(1921), - [sym_binary_expression] = STATE(1921), - [sym_assignment_expression] = STATE(1921), - [sym_compound_assignment_expr] = STATE(1921), - [sym_type_cast_expression] = STATE(1921), - [sym_return_expression] = STATE(1921), - [sym_yield_expression] = STATE(1921), - [sym_call_expression] = STATE(1921), - [sym_array_expression] = STATE(1921), - [sym_parenthesized_expression] = STATE(1921), - [sym_tuple_expression] = STATE(1921), - [sym_unit_expression] = STATE(1921), - [sym_struct_expression] = STATE(1921), - [sym_if_expression] = STATE(1921), - [sym_match_expression] = STATE(1921), - [sym_while_expression] = STATE(1921), - [sym_loop_expression] = STATE(1921), - [sym_for_expression] = STATE(1921), - [sym_const_block] = STATE(1921), - [sym_closure_expression] = STATE(1921), - [sym_closure_parameters] = STATE(245), - [sym_label] = STATE(3773), - [sym_break_expression] = STATE(1921), - [sym_continue_expression] = STATE(1921), - [sym_index_expression] = STATE(1921), - [sym_await_expression] = STATE(1921), - [sym_field_expression] = STATE(1693), - [sym_unsafe_block] = STATE(1921), - [sym_async_block] = STATE(1921), - [sym_gen_block] = STATE(1921), - [sym_try_block] = STATE(1921), - [sym_block] = STATE(1921), - [sym__literal] = STATE(1921), - [sym_string_literal] = STATE(1852), - [sym_raw_string_literal] = STATE(1852), - [sym_boolean_literal] = STATE(1852), - [sym_line_comment] = STATE(281), - [sym_block_comment] = STATE(281), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(989), - [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(989), - [anon_sym_BANG] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(991), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1067), - [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(282)] = { - [sym_bracketed_type] = STATE(3667), - [sym_generic_function] = STATE(1921), - [sym_generic_type_with_turbofish] = STATE(3104), - [sym__expression_except_range] = STATE(1706), - [sym__expression] = STATE(1831), - [sym_macro_invocation] = STATE(1722), - [sym_scoped_identifier] = STATE(1634), - [sym_scoped_type_identifier_in_expression_position] = STATE(3327), - [sym_range_expression] = STATE(1718), - [sym_unary_expression] = STATE(1921), - [sym_try_expression] = STATE(1921), - [sym_reference_expression] = STATE(1921), - [sym_binary_expression] = STATE(1921), - [sym_assignment_expression] = STATE(1921), - [sym_compound_assignment_expr] = STATE(1921), - [sym_type_cast_expression] = STATE(1921), - [sym_return_expression] = STATE(1921), - [sym_yield_expression] = STATE(1921), - [sym_call_expression] = STATE(1921), - [sym_array_expression] = STATE(1921), - [sym_parenthesized_expression] = STATE(1921), - [sym_tuple_expression] = STATE(1921), - [sym_unit_expression] = STATE(1921), - [sym_struct_expression] = STATE(1921), - [sym_if_expression] = STATE(1921), - [sym_match_expression] = STATE(1921), - [sym_while_expression] = STATE(1921), - [sym_loop_expression] = STATE(1921), - [sym_for_expression] = STATE(1921), - [sym_const_block] = STATE(1921), - [sym_closure_expression] = STATE(1921), - [sym_closure_parameters] = STATE(245), - [sym_label] = STATE(3773), - [sym_break_expression] = STATE(1921), - [sym_continue_expression] = STATE(1921), - [sym_index_expression] = STATE(1921), - [sym_await_expression] = STATE(1921), - [sym_field_expression] = STATE(1693), - [sym_unsafe_block] = STATE(1921), - [sym_async_block] = STATE(1921), - [sym_gen_block] = STATE(1921), - [sym_try_block] = STATE(1921), - [sym_block] = STATE(1921), - [sym__literal] = STATE(1921), - [sym_string_literal] = STATE(1852), - [sym_raw_string_literal] = STATE(1852), - [sym_boolean_literal] = STATE(1852), - [sym_line_comment] = STATE(282), - [sym_block_comment] = STATE(282), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(989), - [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(989), - [anon_sym_BANG] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(991), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1067), - [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(283)] = { - [sym_bracketed_type] = STATE(3667), - [sym_generic_function] = STATE(1921), - [sym_generic_type_with_turbofish] = STATE(3104), - [sym__expression_except_range] = STATE(1706), - [sym__expression] = STATE(1832), - [sym_macro_invocation] = STATE(1722), - [sym_scoped_identifier] = STATE(1634), - [sym_scoped_type_identifier_in_expression_position] = STATE(3327), - [sym_range_expression] = STATE(1718), - [sym_unary_expression] = STATE(1921), - [sym_try_expression] = STATE(1921), - [sym_reference_expression] = STATE(1921), - [sym_binary_expression] = STATE(1921), - [sym_assignment_expression] = STATE(1921), - [sym_compound_assignment_expr] = STATE(1921), - [sym_type_cast_expression] = STATE(1921), - [sym_return_expression] = STATE(1921), - [sym_yield_expression] = STATE(1921), - [sym_call_expression] = STATE(1921), - [sym_array_expression] = STATE(1921), - [sym_parenthesized_expression] = STATE(1921), - [sym_tuple_expression] = STATE(1921), - [sym_unit_expression] = STATE(1921), - [sym_struct_expression] = STATE(1921), - [sym_if_expression] = STATE(1921), - [sym_match_expression] = STATE(1921), - [sym_while_expression] = STATE(1921), - [sym_loop_expression] = STATE(1921), - [sym_for_expression] = STATE(1921), - [sym_const_block] = STATE(1921), - [sym_closure_expression] = STATE(1921), - [sym_closure_parameters] = STATE(245), - [sym_label] = STATE(3773), - [sym_break_expression] = STATE(1921), - [sym_continue_expression] = STATE(1921), - [sym_index_expression] = STATE(1921), - [sym_await_expression] = STATE(1921), - [sym_field_expression] = STATE(1693), - [sym_unsafe_block] = STATE(1921), - [sym_async_block] = STATE(1921), - [sym_gen_block] = STATE(1921), - [sym_try_block] = STATE(1921), - [sym_block] = STATE(1921), - [sym__literal] = STATE(1921), - [sym_string_literal] = STATE(1852), - [sym_raw_string_literal] = STATE(1852), - [sym_boolean_literal] = STATE(1852), - [sym_line_comment] = STATE(283), - [sym_block_comment] = STATE(283), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(989), - [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(989), - [anon_sym_BANG] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(991), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1067), - [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(284)] = { - [sym_bracketed_type] = STATE(3667), - [sym_generic_function] = STATE(1921), - [sym_generic_type_with_turbofish] = STATE(3104), - [sym__expression_except_range] = STATE(1706), - [sym__expression] = STATE(1833), - [sym_macro_invocation] = STATE(1722), - [sym_scoped_identifier] = STATE(1634), - [sym_scoped_type_identifier_in_expression_position] = STATE(3327), - [sym_range_expression] = STATE(1718), - [sym_unary_expression] = STATE(1921), - [sym_try_expression] = STATE(1921), - [sym_reference_expression] = STATE(1921), - [sym_binary_expression] = STATE(1921), - [sym_assignment_expression] = STATE(1921), - [sym_compound_assignment_expr] = STATE(1921), - [sym_type_cast_expression] = STATE(1921), - [sym_return_expression] = STATE(1921), - [sym_yield_expression] = STATE(1921), - [sym_call_expression] = STATE(1921), - [sym_array_expression] = STATE(1921), - [sym_parenthesized_expression] = STATE(1921), - [sym_tuple_expression] = STATE(1921), - [sym_unit_expression] = STATE(1921), - [sym_struct_expression] = STATE(1921), - [sym_if_expression] = STATE(1921), - [sym_match_expression] = STATE(1921), - [sym_while_expression] = STATE(1921), - [sym_loop_expression] = STATE(1921), - [sym_for_expression] = STATE(1921), - [sym_const_block] = STATE(1921), - [sym_closure_expression] = STATE(1921), - [sym_closure_parameters] = STATE(245), - [sym_label] = STATE(3773), - [sym_break_expression] = STATE(1921), - [sym_continue_expression] = STATE(1921), - [sym_index_expression] = STATE(1921), - [sym_await_expression] = STATE(1921), - [sym_field_expression] = STATE(1693), - [sym_unsafe_block] = STATE(1921), - [sym_async_block] = STATE(1921), - [sym_gen_block] = STATE(1921), - [sym_try_block] = STATE(1921), - [sym_block] = STATE(1921), - [sym__literal] = STATE(1921), - [sym_string_literal] = STATE(1852), - [sym_raw_string_literal] = STATE(1852), - [sym_boolean_literal] = STATE(1852), - [sym_line_comment] = STATE(284), - [sym_block_comment] = STATE(284), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(989), - [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(989), - [anon_sym_BANG] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(991), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1067), - [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(285)] = { - [sym_bracketed_type] = STATE(3667), - [sym_generic_function] = STATE(1921), - [sym_generic_type_with_turbofish] = STATE(3104), - [sym__expression_except_range] = STATE(1706), - [sym__expression] = STATE(1834), - [sym_macro_invocation] = STATE(1722), - [sym_scoped_identifier] = STATE(1634), - [sym_scoped_type_identifier_in_expression_position] = STATE(3327), - [sym_range_expression] = STATE(1718), - [sym_unary_expression] = STATE(1921), - [sym_try_expression] = STATE(1921), - [sym_reference_expression] = STATE(1921), - [sym_binary_expression] = STATE(1921), - [sym_assignment_expression] = STATE(1921), - [sym_compound_assignment_expr] = STATE(1921), - [sym_type_cast_expression] = STATE(1921), - [sym_return_expression] = STATE(1921), - [sym_yield_expression] = STATE(1921), - [sym_call_expression] = STATE(1921), - [sym_array_expression] = STATE(1921), - [sym_parenthesized_expression] = STATE(1921), - [sym_tuple_expression] = STATE(1921), - [sym_unit_expression] = STATE(1921), - [sym_struct_expression] = STATE(1921), - [sym_if_expression] = STATE(1921), - [sym_match_expression] = STATE(1921), - [sym_while_expression] = STATE(1921), - [sym_loop_expression] = STATE(1921), - [sym_for_expression] = STATE(1921), - [sym_const_block] = STATE(1921), - [sym_closure_expression] = STATE(1921), - [sym_closure_parameters] = STATE(245), - [sym_label] = STATE(3773), - [sym_break_expression] = STATE(1921), - [sym_continue_expression] = STATE(1921), - [sym_index_expression] = STATE(1921), - [sym_await_expression] = STATE(1921), - [sym_field_expression] = STATE(1693), - [sym_unsafe_block] = STATE(1921), - [sym_async_block] = STATE(1921), - [sym_gen_block] = STATE(1921), - [sym_try_block] = STATE(1921), - [sym_block] = STATE(1921), - [sym__literal] = STATE(1921), - [sym_string_literal] = STATE(1852), - [sym_raw_string_literal] = STATE(1852), - [sym_boolean_literal] = STATE(1852), - [sym_line_comment] = STATE(285), - [sym_block_comment] = STATE(285), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(989), - [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(989), - [anon_sym_BANG] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(991), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1067), - [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(3667), - [sym_generic_function] = STATE(1921), - [sym_generic_type_with_turbofish] = STATE(3104), - [sym__expression_except_range] = STATE(1706), - [sym__expression] = STATE(1835), - [sym_macro_invocation] = STATE(1722), - [sym_scoped_identifier] = STATE(1634), - [sym_scoped_type_identifier_in_expression_position] = STATE(3327), - [sym_range_expression] = STATE(1718), - [sym_unary_expression] = STATE(1921), - [sym_try_expression] = STATE(1921), - [sym_reference_expression] = STATE(1921), - [sym_binary_expression] = STATE(1921), - [sym_assignment_expression] = STATE(1921), - [sym_compound_assignment_expr] = STATE(1921), - [sym_type_cast_expression] = STATE(1921), - [sym_return_expression] = STATE(1921), - [sym_yield_expression] = STATE(1921), - [sym_call_expression] = STATE(1921), - [sym_array_expression] = STATE(1921), - [sym_parenthesized_expression] = STATE(1921), - [sym_tuple_expression] = STATE(1921), - [sym_unit_expression] = STATE(1921), - [sym_struct_expression] = STATE(1921), - [sym_if_expression] = STATE(1921), - [sym_match_expression] = STATE(1921), - [sym_while_expression] = STATE(1921), - [sym_loop_expression] = STATE(1921), - [sym_for_expression] = STATE(1921), - [sym_const_block] = STATE(1921), - [sym_closure_expression] = STATE(1921), - [sym_closure_parameters] = STATE(245), - [sym_label] = STATE(3773), - [sym_break_expression] = STATE(1921), - [sym_continue_expression] = STATE(1921), - [sym_index_expression] = STATE(1921), - [sym_await_expression] = STATE(1921), - [sym_field_expression] = STATE(1693), - [sym_unsafe_block] = STATE(1921), - [sym_async_block] = STATE(1921), - [sym_gen_block] = STATE(1921), - [sym_try_block] = STATE(1921), - [sym_block] = STATE(1921), - [sym__literal] = STATE(1921), - [sym_string_literal] = STATE(1852), - [sym_raw_string_literal] = STATE(1852), - [sym_boolean_literal] = STATE(1852), - [sym_line_comment] = STATE(286), - [sym_block_comment] = STATE(286), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(989), - [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(989), - [anon_sym_BANG] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(991), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1067), - [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(287)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3105), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1780), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1607), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(226), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(287), - [sym_block_comment] = STATE(287), - [sym_identifier] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1057), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(1057), - [anon_sym_BANG] = ACTIONS(1057), - [anon_sym_AMP] = ACTIONS(1059), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1381), - [anon_sym_COLON_COLON] = ACTIONS(481), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(509), - [anon_sym_break] = ACTIONS(511), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(489), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(513), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(515), - [anon_sym_static] = ACTIONS(517), - [anon_sym_union] = ACTIONS(489), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(519), - [anon_sym_move] = ACTIONS(521), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(501), - [sym_super] = ACTIONS(503), - [sym_crate] = ACTIONS(503), - [sym_metavariable] = ACTIONS(505), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [STATE(288)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1888), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [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(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3767), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [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(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(288), - [sym_block_comment] = STATE(288), - [sym_identifier] = ACTIONS(339), + [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(1383), + [anon_sym_LBRACE] = ACTIONS(348), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -50354,316 +49503,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(1385), + [anon_sym_async] = ACTIONS(356), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(1387), + [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(1389), - [anon_sym_gen] = ACTIONS(1391), - [anon_sym_if] = ACTIONS(1393), - [anon_sym_loop] = ACTIONS(1395), - [anon_sym_match] = ACTIONS(1397), + [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(1399), - [anon_sym_while] = ACTIONS(1401), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(1403), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(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(289)] = { - [sym_bracketed_type] = STATE(3667), - [sym_generic_function] = STATE(1921), - [sym_generic_type_with_turbofish] = STATE(3104), - [sym__expression_except_range] = STATE(1706), - [sym__expression] = STATE(1879), - [sym_macro_invocation] = STATE(1722), - [sym_scoped_identifier] = STATE(1634), - [sym_scoped_type_identifier_in_expression_position] = STATE(3327), - [sym_range_expression] = STATE(1718), - [sym_unary_expression] = STATE(1921), - [sym_try_expression] = STATE(1921), - [sym_reference_expression] = STATE(1921), - [sym_binary_expression] = STATE(1921), - [sym_assignment_expression] = STATE(1921), - [sym_compound_assignment_expr] = STATE(1921), - [sym_type_cast_expression] = STATE(1921), - [sym_return_expression] = STATE(1921), - [sym_yield_expression] = STATE(1921), - [sym_call_expression] = STATE(1921), - [sym_array_expression] = STATE(1921), - [sym_parenthesized_expression] = STATE(1921), - [sym_tuple_expression] = STATE(1921), - [sym_unit_expression] = STATE(1921), - [sym_struct_expression] = STATE(1921), - [sym_if_expression] = STATE(1921), - [sym_match_expression] = STATE(1921), - [sym_while_expression] = STATE(1921), - [sym_loop_expression] = STATE(1921), - [sym_for_expression] = STATE(1921), - [sym_const_block] = STATE(1921), - [sym_closure_expression] = STATE(1921), - [sym_closure_parameters] = STATE(245), - [sym_label] = STATE(3773), - [sym_break_expression] = STATE(1921), - [sym_continue_expression] = STATE(1921), - [sym_index_expression] = STATE(1921), - [sym_await_expression] = STATE(1921), - [sym_field_expression] = STATE(1693), - [sym_unsafe_block] = STATE(1921), - [sym_async_block] = STATE(1921), - [sym_gen_block] = STATE(1921), - [sym_try_block] = STATE(1921), - [sym_block] = STATE(1921), - [sym__literal] = STATE(1921), - [sym_string_literal] = STATE(1852), - [sym_raw_string_literal] = STATE(1852), - [sym_boolean_literal] = STATE(1852), - [sym_line_comment] = STATE(289), - [sym_block_comment] = STATE(289), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(989), - [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(989), - [anon_sym_BANG] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(991), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1067), - [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(290)] = { - [sym_else_clause] = STATE(407), - [sym_line_comment] = STATE(290), - [sym_block_comment] = STATE(290), - [ts_builtin_sym_end] = ACTIONS(1405), - [sym_identifier] = ACTIONS(1407), - [anon_sym_SEMI] = ACTIONS(1405), - [anon_sym_macro_rules_BANG] = ACTIONS(1405), - [anon_sym_LPAREN] = ACTIONS(1405), - [anon_sym_LBRACK] = ACTIONS(1405), - [anon_sym_LBRACE] = ACTIONS(1405), - [anon_sym_RBRACE] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1407), - [anon_sym_STAR] = ACTIONS(1407), - [anon_sym_QMARK] = ACTIONS(1405), - [anon_sym_u8] = ACTIONS(1407), - [anon_sym_i8] = ACTIONS(1407), - [anon_sym_u16] = ACTIONS(1407), - [anon_sym_i16] = ACTIONS(1407), - [anon_sym_u32] = ACTIONS(1407), - [anon_sym_i32] = ACTIONS(1407), - [anon_sym_u64] = ACTIONS(1407), - [anon_sym_i64] = ACTIONS(1407), - [anon_sym_u128] = ACTIONS(1407), - [anon_sym_i128] = ACTIONS(1407), - [anon_sym_isize] = ACTIONS(1407), - [anon_sym_usize] = ACTIONS(1407), - [anon_sym_f32] = ACTIONS(1407), - [anon_sym_f64] = ACTIONS(1407), - [anon_sym_bool] = ACTIONS(1407), - [anon_sym_str] = ACTIONS(1407), - [anon_sym_char] = ACTIONS(1407), - [anon_sym_DASH] = ACTIONS(1407), - [anon_sym_SLASH] = ACTIONS(1407), - [anon_sym_PERCENT] = ACTIONS(1407), - [anon_sym_CARET] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1407), - [anon_sym_AMP] = ACTIONS(1407), - [anon_sym_PIPE] = ACTIONS(1407), - [anon_sym_AMP_AMP] = ACTIONS(1405), - [anon_sym_PIPE_PIPE] = ACTIONS(1405), - [anon_sym_LT_LT] = ACTIONS(1407), - [anon_sym_GT_GT] = ACTIONS(1407), - [anon_sym_PLUS_EQ] = ACTIONS(1405), - [anon_sym_DASH_EQ] = ACTIONS(1405), - [anon_sym_STAR_EQ] = ACTIONS(1405), - [anon_sym_SLASH_EQ] = ACTIONS(1405), - [anon_sym_PERCENT_EQ] = ACTIONS(1405), - [anon_sym_CARET_EQ] = ACTIONS(1405), - [anon_sym_AMP_EQ] = ACTIONS(1405), - [anon_sym_PIPE_EQ] = ACTIONS(1405), - [anon_sym_LT_LT_EQ] = ACTIONS(1405), - [anon_sym_GT_GT_EQ] = ACTIONS(1405), - [anon_sym_EQ] = ACTIONS(1407), - [anon_sym_EQ_EQ] = ACTIONS(1405), - [anon_sym_BANG_EQ] = ACTIONS(1405), - [anon_sym_GT] = ACTIONS(1407), - [anon_sym_LT] = ACTIONS(1407), - [anon_sym_GT_EQ] = ACTIONS(1405), - [anon_sym_LT_EQ] = ACTIONS(1405), - [anon_sym_DOT] = ACTIONS(1407), - [anon_sym_DOT_DOT] = ACTIONS(1407), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1405), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1405), - [anon_sym_COLON_COLON] = ACTIONS(1405), - [anon_sym_POUND] = ACTIONS(1405), - [anon_sym_SQUOTE] = ACTIONS(1407), - [anon_sym_as] = ACTIONS(1407), - [anon_sym_async] = ACTIONS(1407), - [anon_sym_break] = ACTIONS(1407), - [anon_sym_const] = ACTIONS(1407), - [anon_sym_continue] = ACTIONS(1407), - [anon_sym_default] = ACTIONS(1407), - [anon_sym_enum] = ACTIONS(1407), - [anon_sym_fn] = ACTIONS(1407), - [anon_sym_for] = ACTIONS(1407), - [anon_sym_gen] = ACTIONS(1407), - [anon_sym_if] = ACTIONS(1407), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_let] = ACTIONS(1407), - [anon_sym_loop] = ACTIONS(1407), - [anon_sym_match] = ACTIONS(1407), - [anon_sym_mod] = ACTIONS(1407), - [anon_sym_pub] = ACTIONS(1407), - [anon_sym_return] = ACTIONS(1407), - [anon_sym_static] = ACTIONS(1407), - [anon_sym_struct] = ACTIONS(1407), - [anon_sym_trait] = ACTIONS(1407), - [anon_sym_type] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1407), - [anon_sym_unsafe] = ACTIONS(1407), - [anon_sym_use] = ACTIONS(1407), - [anon_sym_while] = ACTIONS(1407), - [anon_sym_extern] = ACTIONS(1407), - [anon_sym_else] = ACTIONS(1409), - [anon_sym_yield] = ACTIONS(1407), - [anon_sym_move] = ACTIONS(1407), - [anon_sym_try] = ACTIONS(1407), - [sym_integer_literal] = ACTIONS(1405), - [aux_sym_string_literal_token1] = ACTIONS(1405), - [sym_char_literal] = ACTIONS(1405), - [anon_sym_true] = ACTIONS(1407), - [anon_sym_false] = ACTIONS(1407), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1407), - [sym_super] = ACTIONS(1407), - [sym_crate] = ACTIONS(1407), - [sym_metavariable] = ACTIONS(1405), - [sym__raw_string_literal_start] = ACTIONS(1405), - [sym_float_literal] = ACTIONS(1405), + [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(291)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1946), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(291), - [sym_block_comment] = STATE(291), - [sym_identifier] = ACTIONS(339), + [STATE(280)] = { + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3031), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1966), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1491), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(489), + [sym_match_expression] = STATE(489), + [sym_while_expression] = STATE(489), + [sym_loop_expression] = STATE(489), + [sym_for_expression] = STATE(489), + [sym_const_block] = STATE(489), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3802), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(489), + [sym_async_block] = STATE(489), + [sym_gen_block] = STATE(489), + [sym_try_block] = STATE(489), + [sym_block] = STATE(489), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), + [sym_line_comment] = STATE(280), + [sym_block_comment] = STATE(280), + [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(1414), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -50690,92 +49615,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(1416), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(1418), [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(1420), + [anon_sym_gen] = ACTIONS(1422), + [anon_sym_if] = ACTIONS(1424), + [anon_sym_loop] = ACTIONS(1426), + [anon_sym_match] = ACTIONS(1428), [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(1430), + [anon_sym_while] = ACTIONS(1432), + [anon_sym_yield] = ACTIONS(93), + [anon_sym_move] = ACTIONS(95), + [anon_sym_try] = ACTIONS(1434), + [sym_integer_literal] = ACTIONS(99), + [aux_sym_string_literal_token1] = ACTIONS(101), + [sym_char_literal] = ACTIONS(99), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(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(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1912), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(292), - [sym_block_comment] = STATE(292), - [sym_identifier] = ACTIONS(339), + [STATE(281)] = { + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3031), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1982), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1491), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), + [sym_line_comment] = STATE(281), + [sym_block_comment] = STATE(281), + [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), @@ -50802,92 +49727,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(293)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1913), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(293), - [sym_block_comment] = STATE(293), - [sym_identifier] = ACTIONS(339), + [STATE(282)] = { + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3031), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1587), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1491), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), + [sym_line_comment] = STATE(282), + [sym_block_comment] = STATE(282), + [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), @@ -50911,95 +49836,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(1236), [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(294)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1793), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(294), - [sym_block_comment] = STATE(294), - [sym_identifier] = ACTIONS(339), + [STATE(283)] = { + [sym_bracketed_type] = STATE(3702), + [sym_generic_function] = STATE(1815), + [sym_generic_type_with_turbofish] = STATE(2969), + [sym__expression_except_range] = STATE(1694), + [sym__expression] = STATE(1895), + [sym_macro_invocation] = STATE(1832), + [sym_scoped_identifier] = STATE(1654), + [sym_scoped_type_identifier_in_expression_position] = STATE(3227), + [sym_range_expression] = STATE(1820), + [sym_unary_expression] = STATE(1815), + [sym_try_expression] = STATE(1815), + [sym_reference_expression] = STATE(1815), + [sym_binary_expression] = STATE(1815), + [sym_assignment_expression] = STATE(1815), + [sym_compound_assignment_expr] = STATE(1815), + [sym_type_cast_expression] = STATE(1815), + [sym_return_expression] = STATE(1815), + [sym_yield_expression] = STATE(1815), + [sym_call_expression] = STATE(1815), + [sym_array_expression] = STATE(1815), + [sym_parenthesized_expression] = STATE(1815), + [sym_tuple_expression] = STATE(1815), + [sym_unit_expression] = STATE(1815), + [sym_struct_expression] = STATE(1815), + [sym_if_expression] = STATE(1815), + [sym_match_expression] = STATE(1815), + [sym_while_expression] = STATE(1815), + [sym_loop_expression] = STATE(1815), + [sym_for_expression] = STATE(1815), + [sym_const_block] = STATE(1815), + [sym_closure_expression] = STATE(1815), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3807), + [sym_break_expression] = STATE(1815), + [sym_continue_expression] = STATE(1815), + [sym_index_expression] = STATE(1815), + [sym_await_expression] = STATE(1815), + [sym_field_expression] = STATE(1695), + [sym_unsafe_block] = STATE(1815), + [sym_async_block] = STATE(1815), + [sym_gen_block] = STATE(1815), + [sym_try_block] = STATE(1815), + [sym_block] = STATE(1815), + [sym__literal] = STATE(1815), + [sym_string_literal] = STATE(1733), + [sym_raw_string_literal] = STATE(1733), + [sym_boolean_literal] = STATE(1733), + [sym_line_comment] = STATE(283), + [sym_block_comment] = STATE(283), + [sym_identifier] = ACTIONS(410), + [anon_sym_LPAREN] = ACTIONS(500), + [anon_sym_LBRACK] = ACTIONS(502), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_STAR] = ACTIONS(986), + [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(986), + [anon_sym_BANG] = ACTIONS(986), + [anon_sym_AMP] = ACTIONS(988), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1204), + [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(284)] = { + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3031), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1521), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1491), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), + [sym_line_comment] = STATE(284), + [sym_block_comment] = STATE(284), + [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), @@ -51023,319 +50060,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(1236), [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(295)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3105), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1648), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1607), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(254), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(295), - [sym_block_comment] = STATE(295), - [sym_identifier] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(907), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(907), - [anon_sym_BANG] = ACTIONS(907), - [anon_sym_AMP] = ACTIONS(909), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(911), - [anon_sym_COLON_COLON] = ACTIONS(481), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_default] = ACTIONS(489), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(491), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(493), - [anon_sym_static] = ACTIONS(495), - [anon_sym_union] = ACTIONS(489), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(497), - [anon_sym_move] = ACTIONS(499), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(501), - [sym_super] = ACTIONS(503), - [sym_crate] = ACTIONS(503), - [sym_metavariable] = ACTIONS(505), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [STATE(296)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3105), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1675), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1607), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(254), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(296), - [sym_block_comment] = STATE(296), - [sym_identifier] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(907), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(907), - [anon_sym_BANG] = ACTIONS(907), - [anon_sym_AMP] = ACTIONS(909), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1079), - [anon_sym_COLON_COLON] = ACTIONS(481), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_default] = ACTIONS(489), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(491), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(493), - [anon_sym_static] = ACTIONS(495), - [anon_sym_union] = ACTIONS(489), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(497), - [anon_sym_move] = ACTIONS(499), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(501), - [sym_super] = ACTIONS(503), - [sym_crate] = ACTIONS(503), - [sym_metavariable] = ACTIONS(505), - [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(297)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1934), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(297), - [sym_block_comment] = STATE(297), - [sym_identifier] = ACTIONS(339), + [STATE(285)] = { + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3031), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1588), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1491), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), + [sym_line_comment] = STATE(285), + [sym_block_comment] = STATE(285), + [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), @@ -51359,431 +50172,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(1236), [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(298)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3105), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1780), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1607), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(226), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(298), - [sym_block_comment] = STATE(298), - [sym_identifier] = ACTIONS(475), + [STATE(286)] = { + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3114), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1760), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1631), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(262), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), + [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(343), - [anon_sym_STAR] = ACTIONS(1057), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(1057), - [anon_sym_BANG] = ACTIONS(1057), - [anon_sym_AMP] = ACTIONS(1059), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_STAR] = ACTIONS(1248), + [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(1248), + [anon_sym_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1250), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1063), - [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(1436), + [anon_sym_COLON_COLON] = ACTIONS(476), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(509), - [anon_sym_break] = ACTIONS(511), - [anon_sym_const] = ACTIONS(353), + [anon_sym_async] = ACTIONS(478), + [anon_sym_break] = ACTIONS(480), + [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(489), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(513), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(515), - [anon_sym_static] = ACTIONS(517), - [anon_sym_union] = ACTIONS(489), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(519), - [anon_sym_move] = ACTIONS(521), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(501), - [sym_super] = ACTIONS(503), - [sym_crate] = ACTIONS(503), - [sym_metavariable] = ACTIONS(505), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [STATE(299)] = { - [sym_bracketed_type] = STATE(3667), - [sym_generic_function] = STATE(1921), - [sym_generic_type_with_turbofish] = STATE(3104), - [sym__expression_except_range] = STATE(1706), - [sym__expression] = STATE(1836), - [sym_macro_invocation] = STATE(1722), - [sym_scoped_identifier] = STATE(1634), - [sym_scoped_type_identifier_in_expression_position] = STATE(3327), - [sym_range_expression] = STATE(1718), - [sym_unary_expression] = STATE(1921), - [sym_try_expression] = STATE(1921), - [sym_reference_expression] = STATE(1921), - [sym_binary_expression] = STATE(1921), - [sym_assignment_expression] = STATE(1921), - [sym_compound_assignment_expr] = STATE(1921), - [sym_type_cast_expression] = STATE(1921), - [sym_return_expression] = STATE(1921), - [sym_yield_expression] = STATE(1921), - [sym_call_expression] = STATE(1921), - [sym_array_expression] = STATE(1921), - [sym_parenthesized_expression] = STATE(1921), - [sym_tuple_expression] = STATE(1921), - [sym_unit_expression] = STATE(1921), - [sym_struct_expression] = STATE(1921), - [sym_if_expression] = STATE(1921), - [sym_match_expression] = STATE(1921), - [sym_while_expression] = STATE(1921), - [sym_loop_expression] = STATE(1921), - [sym_for_expression] = STATE(1921), - [sym_const_block] = STATE(1921), - [sym_closure_expression] = STATE(1921), - [sym_closure_parameters] = STATE(245), - [sym_label] = STATE(3773), - [sym_break_expression] = STATE(1921), - [sym_continue_expression] = STATE(1921), - [sym_index_expression] = STATE(1921), - [sym_await_expression] = STATE(1921), - [sym_field_expression] = STATE(1693), - [sym_unsafe_block] = STATE(1921), - [sym_async_block] = STATE(1921), - [sym_gen_block] = STATE(1921), - [sym_try_block] = STATE(1921), - [sym_block] = STATE(1921), - [sym__literal] = STATE(1921), - [sym_string_literal] = STATE(1852), - [sym_raw_string_literal] = STATE(1852), - [sym_boolean_literal] = STATE(1852), - [sym_line_comment] = STATE(299), - [sym_block_comment] = STATE(299), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(989), - [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(989), - [anon_sym_BANG] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(991), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(993), - [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(300)] = { - [sym_bracketed_type] = STATE(3667), - [sym_generic_function] = STATE(1921), - [sym_generic_type_with_turbofish] = STATE(3104), - [sym__expression_except_range] = STATE(1706), - [sym__expression] = STATE(1836), - [sym_macro_invocation] = STATE(1722), - [sym_scoped_identifier] = STATE(1634), - [sym_scoped_type_identifier_in_expression_position] = STATE(3327), - [sym_range_expression] = STATE(1718), - [sym_unary_expression] = STATE(1921), - [sym_try_expression] = STATE(1921), - [sym_reference_expression] = STATE(1921), - [sym_binary_expression] = STATE(1921), - [sym_assignment_expression] = STATE(1921), - [sym_compound_assignment_expr] = STATE(1921), - [sym_type_cast_expression] = STATE(1921), - [sym_return_expression] = STATE(1921), - [sym_yield_expression] = STATE(1921), - [sym_call_expression] = STATE(1921), - [sym_array_expression] = STATE(1921), - [sym_parenthesized_expression] = STATE(1921), - [sym_tuple_expression] = STATE(1921), - [sym_unit_expression] = STATE(1921), - [sym_struct_expression] = STATE(1921), - [sym_if_expression] = STATE(1921), - [sym_match_expression] = STATE(1921), - [sym_while_expression] = STATE(1921), - [sym_loop_expression] = STATE(1921), - [sym_for_expression] = STATE(1921), - [sym_const_block] = STATE(1921), - [sym_closure_expression] = STATE(1921), - [sym_closure_parameters] = STATE(245), - [sym_label] = STATE(3773), - [sym_break_expression] = STATE(1921), - [sym_continue_expression] = STATE(1921), - [sym_index_expression] = STATE(1921), - [sym_await_expression] = STATE(1921), - [sym_field_expression] = STATE(1693), - [sym_unsafe_block] = STATE(1921), - [sym_async_block] = STATE(1921), - [sym_gen_block] = STATE(1921), - [sym_try_block] = STATE(1921), - [sym_block] = STATE(1921), - [sym__literal] = STATE(1921), - [sym_string_literal] = STATE(1852), - [sym_raw_string_literal] = STATE(1852), - [sym_boolean_literal] = STATE(1852), - [sym_line_comment] = STATE(300), - [sym_block_comment] = STATE(300), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(989), - [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(989), - [anon_sym_BANG] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(991), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1067), - [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_default] = ACTIONS(482), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(484), + [anon_sym_if] = ACTIONS(366), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(486), + [anon_sym_static] = ACTIONS(488), + [anon_sym_union] = ACTIONS(482), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_yield] = ACTIONS(490), + [anon_sym_move] = ACTIONS(492), + [anon_sym_try] = ACTIONS(378), + [sym_integer_literal] = ACTIONS(99), + [aux_sym_string_literal_token1] = ACTIONS(101), + [sym_char_literal] = ACTIONS(99), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(494), + [sym_super] = ACTIONS(496), + [sym_crate] = ACTIONS(496), + [sym_metavariable] = ACTIONS(498), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), }, - [STATE(301)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1467), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(301), - [sym_block_comment] = STATE(301), - [sym_identifier] = ACTIONS(339), + [STATE(287)] = { + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3031), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1589), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1491), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), + [sym_line_comment] = STATE(287), + [sym_block_comment] = STATE(287), + [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), @@ -51807,95 +50396,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(1093), + [anon_sym_DOT_DOT] = ACTIONS(1236), [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(302)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1929), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(302), - [sym_block_comment] = STATE(302), - [sym_identifier] = ACTIONS(339), + [STATE(288)] = { + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3031), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1978), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1491), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [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(1471), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3802), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [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(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), + [sym_line_comment] = STATE(288), + [sym_block_comment] = STATE(288), + [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(1414), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -51922,204 +50511,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(1416), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(1418), [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(1420), + [anon_sym_gen] = ACTIONS(1422), + [anon_sym_if] = ACTIONS(1424), + [anon_sym_loop] = ACTIONS(1426), + [anon_sym_match] = ACTIONS(1428), [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(303)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3105), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1467), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1607), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(254), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(303), - [sym_block_comment] = STATE(303), - [sym_identifier] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(907), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(907), - [anon_sym_BANG] = ACTIONS(907), - [anon_sym_AMP] = ACTIONS(909), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1079), - [anon_sym_COLON_COLON] = ACTIONS(481), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_default] = ACTIONS(489), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(491), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(493), - [anon_sym_static] = ACTIONS(495), - [anon_sym_union] = ACTIONS(489), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(497), - [anon_sym_move] = ACTIONS(499), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(501), - [sym_super] = ACTIONS(503), - [sym_crate] = ACTIONS(503), - [sym_metavariable] = ACTIONS(505), - [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(1430), + [anon_sym_while] = ACTIONS(1432), + [anon_sym_yield] = ACTIONS(93), + [anon_sym_move] = ACTIONS(95), + [anon_sym_try] = ACTIONS(1434), + [sym_integer_literal] = ACTIONS(99), + [aux_sym_string_literal_token1] = ACTIONS(101), + [sym_char_literal] = ACTIONS(99), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(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(304)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1931), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(304), - [sym_block_comment] = STATE(304), - [sym_identifier] = ACTIONS(339), + [STATE(289)] = { + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3031), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1957), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1491), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), + [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), @@ -52146,92 +50623,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(305)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1935), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(305), - [sym_block_comment] = STATE(305), - [sym_identifier] = ACTIONS(339), + [STATE(290)] = { + [sym_line_comment] = STATE(290), + [sym_block_comment] = STATE(290), + [ts_builtin_sym_end] = ACTIONS(1438), + [sym_identifier] = ACTIONS(1440), + [anon_sym_SEMI] = ACTIONS(1438), + [anon_sym_macro_rules_BANG] = ACTIONS(1438), + [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_LBRACK] = ACTIONS(1438), + [anon_sym_LBRACE] = ACTIONS(1438), + [anon_sym_RBRACE] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1440), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_QMARK] = ACTIONS(1438), + [anon_sym_u8] = ACTIONS(1440), + [anon_sym_i8] = ACTIONS(1440), + [anon_sym_u16] = ACTIONS(1440), + [anon_sym_i16] = ACTIONS(1440), + [anon_sym_u32] = ACTIONS(1440), + [anon_sym_i32] = ACTIONS(1440), + [anon_sym_u64] = ACTIONS(1440), + [anon_sym_i64] = ACTIONS(1440), + [anon_sym_u128] = ACTIONS(1440), + [anon_sym_i128] = ACTIONS(1440), + [anon_sym_isize] = ACTIONS(1440), + [anon_sym_usize] = ACTIONS(1440), + [anon_sym_f32] = ACTIONS(1440), + [anon_sym_f64] = ACTIONS(1440), + [anon_sym_bool] = ACTIONS(1440), + [anon_sym_str] = ACTIONS(1440), + [anon_sym_char] = ACTIONS(1440), + [anon_sym_DASH] = ACTIONS(1440), + [anon_sym_SLASH] = ACTIONS(1440), + [anon_sym_PERCENT] = ACTIONS(1440), + [anon_sym_CARET] = ACTIONS(1440), + [anon_sym_BANG] = ACTIONS(1440), + [anon_sym_AMP] = ACTIONS(1440), + [anon_sym_PIPE] = ACTIONS(1440), + [anon_sym_AMP_AMP] = ACTIONS(1438), + [anon_sym_PIPE_PIPE] = ACTIONS(1438), + [anon_sym_LT_LT] = ACTIONS(1440), + [anon_sym_GT_GT] = ACTIONS(1440), + [anon_sym_PLUS_EQ] = ACTIONS(1438), + [anon_sym_DASH_EQ] = ACTIONS(1438), + [anon_sym_STAR_EQ] = ACTIONS(1438), + [anon_sym_SLASH_EQ] = ACTIONS(1438), + [anon_sym_PERCENT_EQ] = ACTIONS(1438), + [anon_sym_CARET_EQ] = ACTIONS(1438), + [anon_sym_AMP_EQ] = ACTIONS(1438), + [anon_sym_PIPE_EQ] = ACTIONS(1438), + [anon_sym_LT_LT_EQ] = ACTIONS(1438), + [anon_sym_GT_GT_EQ] = ACTIONS(1438), + [anon_sym_EQ] = ACTIONS(1440), + [anon_sym_EQ_EQ] = ACTIONS(1438), + [anon_sym_BANG_EQ] = ACTIONS(1438), + [anon_sym_GT] = ACTIONS(1440), + [anon_sym_LT] = ACTIONS(1440), + [anon_sym_GT_EQ] = ACTIONS(1438), + [anon_sym_LT_EQ] = ACTIONS(1438), + [anon_sym_DOT] = ACTIONS(1440), + [anon_sym_DOT_DOT] = ACTIONS(1440), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1438), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1438), + [anon_sym_COLON_COLON] = ACTIONS(1438), + [anon_sym_POUND] = ACTIONS(1438), + [anon_sym_SQUOTE] = ACTIONS(1440), + [anon_sym_as] = ACTIONS(1440), + [anon_sym_async] = ACTIONS(1440), + [anon_sym_break] = ACTIONS(1440), + [anon_sym_const] = ACTIONS(1440), + [anon_sym_continue] = ACTIONS(1440), + [anon_sym_default] = ACTIONS(1440), + [anon_sym_enum] = ACTIONS(1440), + [anon_sym_fn] = ACTIONS(1440), + [anon_sym_for] = ACTIONS(1440), + [anon_sym_gen] = ACTIONS(1440), + [anon_sym_if] = ACTIONS(1440), + [anon_sym_impl] = ACTIONS(1440), + [anon_sym_let] = ACTIONS(1440), + [anon_sym_loop] = ACTIONS(1440), + [anon_sym_match] = ACTIONS(1440), + [anon_sym_mod] = ACTIONS(1440), + [anon_sym_pub] = ACTIONS(1440), + [anon_sym_return] = ACTIONS(1440), + [anon_sym_static] = ACTIONS(1440), + [anon_sym_struct] = ACTIONS(1440), + [anon_sym_trait] = ACTIONS(1440), + [anon_sym_type] = ACTIONS(1440), + [anon_sym_union] = ACTIONS(1440), + [anon_sym_unsafe] = ACTIONS(1440), + [anon_sym_use] = ACTIONS(1440), + [anon_sym_while] = ACTIONS(1440), + [anon_sym_extern] = ACTIONS(1440), + [anon_sym_safe] = ACTIONS(1440), + [anon_sym_else] = ACTIONS(1440), + [anon_sym_yield] = ACTIONS(1440), + [anon_sym_move] = ACTIONS(1440), + [anon_sym_try] = ACTIONS(1440), + [sym_integer_literal] = ACTIONS(1438), + [aux_sym_string_literal_token1] = ACTIONS(1438), + [sym_char_literal] = ACTIONS(1438), + [anon_sym_true] = ACTIONS(1440), + [anon_sym_false] = ACTIONS(1440), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1440), + [sym_super] = ACTIONS(1440), + [sym_crate] = ACTIONS(1440), + [sym_metavariable] = ACTIONS(1438), + [sym__raw_string_literal_start] = ACTIONS(1438), + [sym_float_literal] = ACTIONS(1438), + }, + [STATE(291)] = { + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3031), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1590), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1491), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), + [sym_line_comment] = STATE(291), + [sym_block_comment] = STATE(291), + [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), @@ -52258,92 +50847,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(306)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1716), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(479), - [sym_match_expression] = STATE(479), - [sym_while_expression] = STATE(479), - [sym_loop_expression] = STATE(479), - [sym_for_expression] = STATE(479), - [sym_const_block] = STATE(479), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3767), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(479), - [sym_async_block] = STATE(479), - [sym_gen_block] = STATE(479), - [sym_try_block] = STATE(479), - [sym_block] = STATE(479), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(306), - [sym_block_comment] = STATE(306), - [sym_identifier] = ACTIONS(339), + [STATE(292)] = { + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3031), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1967), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1491), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), + [sym_line_comment] = STATE(292), + [sym_block_comment] = STATE(292), + [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(1383), + [anon_sym_LBRACE] = ACTIONS(348), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -52370,92 +50959,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(1385), + [anon_sym_async] = ACTIONS(356), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(1387), + [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(1389), - [anon_sym_gen] = ACTIONS(1391), - [anon_sym_if] = ACTIONS(1393), - [anon_sym_loop] = ACTIONS(1395), - [anon_sym_match] = ACTIONS(1397), + [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(1399), - [anon_sym_while] = ACTIONS(1401), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(1403), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(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(307)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1972), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(307), - [sym_block_comment] = STATE(307), - [sym_identifier] = ACTIONS(339), + [STATE(293)] = { + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3031), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1580), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1491), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), + [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), @@ -52479,95 +51068,319 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(1236), [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(308)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1970), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(308), - [sym_block_comment] = STATE(308), - [sym_identifier] = ACTIONS(339), + [STATE(294)] = { + [sym_bracketed_type] = STATE(3702), + [sym_generic_function] = STATE(1815), + [sym_generic_type_with_turbofish] = STATE(2969), + [sym__expression_except_range] = STATE(1694), + [sym__expression] = STATE(1911), + [sym_macro_invocation] = STATE(1832), + [sym_scoped_identifier] = STATE(1654), + [sym_scoped_type_identifier_in_expression_position] = STATE(3227), + [sym_range_expression] = STATE(1820), + [sym_unary_expression] = STATE(1815), + [sym_try_expression] = STATE(1815), + [sym_reference_expression] = STATE(1815), + [sym_binary_expression] = STATE(1815), + [sym_assignment_expression] = STATE(1815), + [sym_compound_assignment_expr] = STATE(1815), + [sym_type_cast_expression] = STATE(1815), + [sym_return_expression] = STATE(1815), + [sym_yield_expression] = STATE(1815), + [sym_call_expression] = STATE(1815), + [sym_array_expression] = STATE(1815), + [sym_parenthesized_expression] = STATE(1815), + [sym_tuple_expression] = STATE(1815), + [sym_unit_expression] = STATE(1815), + [sym_struct_expression] = STATE(1815), + [sym_if_expression] = STATE(1815), + [sym_match_expression] = STATE(1815), + [sym_while_expression] = STATE(1815), + [sym_loop_expression] = STATE(1815), + [sym_for_expression] = STATE(1815), + [sym_const_block] = STATE(1815), + [sym_closure_expression] = STATE(1815), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3807), + [sym_break_expression] = STATE(1815), + [sym_continue_expression] = STATE(1815), + [sym_index_expression] = STATE(1815), + [sym_await_expression] = STATE(1815), + [sym_field_expression] = STATE(1695), + [sym_unsafe_block] = STATE(1815), + [sym_async_block] = STATE(1815), + [sym_gen_block] = STATE(1815), + [sym_try_block] = STATE(1815), + [sym_block] = STATE(1815), + [sym__literal] = STATE(1815), + [sym_string_literal] = STATE(1733), + [sym_raw_string_literal] = STATE(1733), + [sym_boolean_literal] = STATE(1733), + [sym_line_comment] = STATE(294), + [sym_block_comment] = STATE(294), + [sym_identifier] = ACTIONS(410), + [anon_sym_LPAREN] = ACTIONS(500), + [anon_sym_LBRACK] = ACTIONS(502), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_STAR] = ACTIONS(986), + [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(986), + [anon_sym_BANG] = ACTIONS(986), + [anon_sym_AMP] = ACTIONS(988), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1204), + [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(295)] = { + [sym_bracketed_type] = STATE(3702), + [sym_generic_function] = STATE(1815), + [sym_generic_type_with_turbofish] = STATE(2969), + [sym__expression_except_range] = STATE(1694), + [sym__expression] = STATE(1933), + [sym_macro_invocation] = STATE(1832), + [sym_scoped_identifier] = STATE(1654), + [sym_scoped_type_identifier_in_expression_position] = STATE(3227), + [sym_range_expression] = STATE(1820), + [sym_unary_expression] = STATE(1815), + [sym_try_expression] = STATE(1815), + [sym_reference_expression] = STATE(1815), + [sym_binary_expression] = STATE(1815), + [sym_assignment_expression] = STATE(1815), + [sym_compound_assignment_expr] = STATE(1815), + [sym_type_cast_expression] = STATE(1815), + [sym_return_expression] = STATE(1815), + [sym_yield_expression] = STATE(1815), + [sym_call_expression] = STATE(1815), + [sym_array_expression] = STATE(1815), + [sym_parenthesized_expression] = STATE(1815), + [sym_tuple_expression] = STATE(1815), + [sym_unit_expression] = STATE(1815), + [sym_struct_expression] = STATE(1815), + [sym_if_expression] = STATE(1815), + [sym_match_expression] = STATE(1815), + [sym_while_expression] = STATE(1815), + [sym_loop_expression] = STATE(1815), + [sym_for_expression] = STATE(1815), + [sym_const_block] = STATE(1815), + [sym_closure_expression] = STATE(1815), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3807), + [sym_break_expression] = STATE(1815), + [sym_continue_expression] = STATE(1815), + [sym_index_expression] = STATE(1815), + [sym_await_expression] = STATE(1815), + [sym_field_expression] = STATE(1695), + [sym_unsafe_block] = STATE(1815), + [sym_async_block] = STATE(1815), + [sym_gen_block] = STATE(1815), + [sym_try_block] = STATE(1815), + [sym_block] = STATE(1815), + [sym__literal] = STATE(1815), + [sym_string_literal] = STATE(1733), + [sym_raw_string_literal] = STATE(1733), + [sym_boolean_literal] = STATE(1733), + [sym_line_comment] = STATE(295), + [sym_block_comment] = STATE(295), + [sym_identifier] = ACTIONS(410), + [anon_sym_LPAREN] = ACTIONS(500), + [anon_sym_LBRACK] = ACTIONS(502), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_STAR] = ACTIONS(986), + [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(986), + [anon_sym_BANG] = ACTIONS(986), + [anon_sym_AMP] = ACTIONS(988), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1204), + [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(296)] = { + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3031), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1968), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1491), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), + [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(343), + [anon_sym_LBRACE] = ACTIONS(348), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -52594,92 +51407,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(309)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1956), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(309), - [sym_block_comment] = STATE(309), - [sym_identifier] = ACTIONS(339), + [STATE(297)] = { + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3031), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1582), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1491), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), + [sym_line_comment] = STATE(297), + [sym_block_comment] = STATE(297), + [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), @@ -52703,95 +51516,319 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(1236), [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(310)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), + [STATE(298)] = { + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3114), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1750), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1631), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(244), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), + [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(910), + [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(910), + [anon_sym_BANG] = ACTIONS(910), + [anon_sym_AMP] = ACTIONS(912), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(914), + [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(512), + [anon_sym_break] = ACTIONS(514), + [anon_sym_const] = ACTIONS(358), + [anon_sym_continue] = ACTIONS(516), + [anon_sym_default] = ACTIONS(482), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(518), + [anon_sym_if] = ACTIONS(366), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(520), + [anon_sym_static] = ACTIONS(522), + [anon_sym_union] = ACTIONS(482), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_yield] = ACTIONS(524), + [anon_sym_move] = ACTIONS(526), + [anon_sym_try] = ACTIONS(378), + [sym_integer_literal] = ACTIONS(99), + [aux_sym_string_literal_token1] = ACTIONS(101), + [sym_char_literal] = ACTIONS(99), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(494), + [sym_super] = ACTIONS(496), + [sym_crate] = ACTIONS(496), + [sym_metavariable] = ACTIONS(498), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), + }, + [STATE(299)] = { + [sym_bracketed_type] = STATE(3702), + [sym_generic_function] = STATE(1815), + [sym_generic_type_with_turbofish] = STATE(2969), + [sym__expression_except_range] = STATE(1694), + [sym__expression] = STATE(1842), + [sym_macro_invocation] = STATE(1832), + [sym_scoped_identifier] = STATE(1654), + [sym_scoped_type_identifier_in_expression_position] = STATE(3227), + [sym_range_expression] = STATE(1820), + [sym_unary_expression] = STATE(1815), + [sym_try_expression] = STATE(1815), + [sym_reference_expression] = STATE(1815), + [sym_binary_expression] = STATE(1815), + [sym_assignment_expression] = STATE(1815), + [sym_compound_assignment_expr] = STATE(1815), + [sym_type_cast_expression] = STATE(1815), + [sym_return_expression] = STATE(1815), + [sym_yield_expression] = STATE(1815), + [sym_call_expression] = STATE(1815), + [sym_array_expression] = STATE(1815), + [sym_parenthesized_expression] = STATE(1815), + [sym_tuple_expression] = STATE(1815), + [sym_unit_expression] = STATE(1815), + [sym_struct_expression] = STATE(1815), + [sym_if_expression] = STATE(1815), + [sym_match_expression] = STATE(1815), + [sym_while_expression] = STATE(1815), + [sym_loop_expression] = STATE(1815), + [sym_for_expression] = STATE(1815), + [sym_const_block] = STATE(1815), + [sym_closure_expression] = STATE(1815), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3807), + [sym_break_expression] = STATE(1815), + [sym_continue_expression] = STATE(1815), + [sym_index_expression] = STATE(1815), + [sym_await_expression] = STATE(1815), + [sym_field_expression] = STATE(1695), + [sym_unsafe_block] = STATE(1815), + [sym_async_block] = STATE(1815), + [sym_gen_block] = STATE(1815), + [sym_try_block] = STATE(1815), + [sym_block] = STATE(1815), + [sym__literal] = STATE(1815), + [sym_string_literal] = STATE(1733), + [sym_raw_string_literal] = STATE(1733), + [sym_boolean_literal] = STATE(1733), + [sym_line_comment] = STATE(299), + [sym_block_comment] = STATE(299), + [sym_identifier] = ACTIONS(410), + [anon_sym_LPAREN] = ACTIONS(500), + [anon_sym_LBRACK] = ACTIONS(502), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_STAR] = ACTIONS(986), + [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(986), + [anon_sym_BANG] = ACTIONS(986), + [anon_sym_AMP] = ACTIONS(988), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1204), + [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(300)] = { + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3031), + [sym__expression_except_range] = STATE(1441), [sym__expression] = STATE(1583), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(310), - [sym_block_comment] = STATE(310), - [sym_identifier] = ACTIONS(339), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1491), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), + [sym_line_comment] = STATE(300), + [sym_block_comment] = STATE(300), + [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), @@ -52815,95 +51852,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(1093), + [anon_sym_DOT_DOT] = ACTIONS(1236), [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(311)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1455), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(311), - [sym_block_comment] = STATE(311), - [sym_identifier] = ACTIONS(339), + [STATE(301)] = { + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3031), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1772), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1491), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), + [sym_line_comment] = STATE(301), + [sym_block_comment] = STATE(301), + [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), @@ -52927,95 +51964,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(1093), + [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(312)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1584), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(312), - [sym_block_comment] = STATE(312), - [sym_identifier] = ACTIONS(339), + [STATE(302)] = { + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3031), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1579), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1491), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), + [sym_line_comment] = STATE(302), + [sym_block_comment] = STATE(302), + [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), @@ -53039,95 +52076,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(1093), + [anon_sym_DOT_DOT] = ACTIONS(1236), [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(313)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1585), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(313), - [sym_block_comment] = STATE(313), - [sym_identifier] = ACTIONS(339), + [STATE(303)] = { + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3031), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1912), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1491), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), + [sym_line_comment] = STATE(303), + [sym_block_comment] = STATE(303), + [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), @@ -53151,95 +52188,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(1093), + [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(314)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1586), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(314), - [sym_block_comment] = STATE(314), - [sym_identifier] = ACTIONS(339), + [STATE(304)] = { + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3031), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1584), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1491), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), + [sym_line_comment] = STATE(304), + [sym_block_comment] = STATE(304), + [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), @@ -53263,95 +52300,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(1093), + [anon_sym_DOT_DOT] = ACTIONS(1236), [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(315)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1587), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(315), - [sym_block_comment] = STATE(315), - [sym_identifier] = ACTIONS(339), + [STATE(305)] = { + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3031), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1913), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1491), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), + [sym_line_comment] = STATE(305), + [sym_block_comment] = STATE(305), + [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), @@ -53375,95 +52412,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(1093), + [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(316)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1588), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(316), - [sym_block_comment] = STATE(316), - [sym_identifier] = ACTIONS(339), + [STATE(306)] = { + [sym_line_comment] = STATE(306), + [sym_block_comment] = STATE(306), + [ts_builtin_sym_end] = ACTIONS(1442), + [sym_identifier] = ACTIONS(1444), + [anon_sym_SEMI] = ACTIONS(1442), + [anon_sym_macro_rules_BANG] = ACTIONS(1442), + [anon_sym_LPAREN] = ACTIONS(1442), + [anon_sym_LBRACK] = ACTIONS(1442), + [anon_sym_LBRACE] = ACTIONS(1442), + [anon_sym_RBRACE] = ACTIONS(1442), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_STAR] = ACTIONS(1444), + [anon_sym_QMARK] = ACTIONS(1442), + [anon_sym_u8] = ACTIONS(1444), + [anon_sym_i8] = ACTIONS(1444), + [anon_sym_u16] = ACTIONS(1444), + [anon_sym_i16] = ACTIONS(1444), + [anon_sym_u32] = ACTIONS(1444), + [anon_sym_i32] = ACTIONS(1444), + [anon_sym_u64] = ACTIONS(1444), + [anon_sym_i64] = ACTIONS(1444), + [anon_sym_u128] = ACTIONS(1444), + [anon_sym_i128] = ACTIONS(1444), + [anon_sym_isize] = ACTIONS(1444), + [anon_sym_usize] = ACTIONS(1444), + [anon_sym_f32] = ACTIONS(1444), + [anon_sym_f64] = ACTIONS(1444), + [anon_sym_bool] = ACTIONS(1444), + [anon_sym_str] = ACTIONS(1444), + [anon_sym_char] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_SLASH] = ACTIONS(1444), + [anon_sym_PERCENT] = ACTIONS(1444), + [anon_sym_CARET] = ACTIONS(1444), + [anon_sym_BANG] = ACTIONS(1444), + [anon_sym_AMP] = ACTIONS(1444), + [anon_sym_PIPE] = ACTIONS(1444), + [anon_sym_AMP_AMP] = ACTIONS(1442), + [anon_sym_PIPE_PIPE] = ACTIONS(1442), + [anon_sym_LT_LT] = ACTIONS(1444), + [anon_sym_GT_GT] = ACTIONS(1444), + [anon_sym_PLUS_EQ] = ACTIONS(1442), + [anon_sym_DASH_EQ] = ACTIONS(1442), + [anon_sym_STAR_EQ] = ACTIONS(1442), + [anon_sym_SLASH_EQ] = ACTIONS(1442), + [anon_sym_PERCENT_EQ] = ACTIONS(1442), + [anon_sym_CARET_EQ] = ACTIONS(1442), + [anon_sym_AMP_EQ] = ACTIONS(1442), + [anon_sym_PIPE_EQ] = ACTIONS(1442), + [anon_sym_LT_LT_EQ] = ACTIONS(1442), + [anon_sym_GT_GT_EQ] = ACTIONS(1442), + [anon_sym_EQ] = ACTIONS(1444), + [anon_sym_EQ_EQ] = ACTIONS(1442), + [anon_sym_BANG_EQ] = ACTIONS(1442), + [anon_sym_GT] = ACTIONS(1444), + [anon_sym_LT] = ACTIONS(1444), + [anon_sym_GT_EQ] = ACTIONS(1442), + [anon_sym_LT_EQ] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1444), + [anon_sym_DOT_DOT] = ACTIONS(1444), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1442), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1442), + [anon_sym_COLON_COLON] = ACTIONS(1442), + [anon_sym_POUND] = ACTIONS(1442), + [anon_sym_SQUOTE] = ACTIONS(1444), + [anon_sym_as] = ACTIONS(1444), + [anon_sym_async] = ACTIONS(1444), + [anon_sym_break] = ACTIONS(1444), + [anon_sym_const] = ACTIONS(1444), + [anon_sym_continue] = ACTIONS(1444), + [anon_sym_default] = ACTIONS(1444), + [anon_sym_enum] = ACTIONS(1444), + [anon_sym_fn] = ACTIONS(1444), + [anon_sym_for] = ACTIONS(1444), + [anon_sym_gen] = ACTIONS(1444), + [anon_sym_if] = ACTIONS(1444), + [anon_sym_impl] = ACTIONS(1444), + [anon_sym_let] = ACTIONS(1444), + [anon_sym_loop] = ACTIONS(1444), + [anon_sym_match] = ACTIONS(1444), + [anon_sym_mod] = ACTIONS(1444), + [anon_sym_pub] = ACTIONS(1444), + [anon_sym_return] = ACTIONS(1444), + [anon_sym_static] = ACTIONS(1444), + [anon_sym_struct] = ACTIONS(1444), + [anon_sym_trait] = ACTIONS(1444), + [anon_sym_type] = ACTIONS(1444), + [anon_sym_union] = ACTIONS(1444), + [anon_sym_unsafe] = ACTIONS(1444), + [anon_sym_use] = ACTIONS(1444), + [anon_sym_while] = ACTIONS(1444), + [anon_sym_extern] = ACTIONS(1444), + [anon_sym_safe] = ACTIONS(1444), + [anon_sym_else] = ACTIONS(1444), + [anon_sym_yield] = ACTIONS(1444), + [anon_sym_move] = ACTIONS(1444), + [anon_sym_try] = ACTIONS(1444), + [sym_integer_literal] = ACTIONS(1442), + [aux_sym_string_literal_token1] = ACTIONS(1442), + [sym_char_literal] = ACTIONS(1442), + [anon_sym_true] = ACTIONS(1444), + [anon_sym_false] = ACTIONS(1444), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1444), + [sym_super] = ACTIONS(1444), + [sym_crate] = ACTIONS(1444), + [sym_metavariable] = ACTIONS(1442), + [sym__raw_string_literal_start] = ACTIONS(1442), + [sym_float_literal] = ACTIONS(1442), + }, + [STATE(307)] = { + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3114), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1478), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1631), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(244), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), + [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(343), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_STAR] = ACTIONS(910), + [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(910), + [anon_sym_BANG] = ACTIONS(910), + [anon_sym_AMP] = ACTIONS(912), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1224), + [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(512), + [anon_sym_break] = ACTIONS(514), + [anon_sym_const] = ACTIONS(358), + [anon_sym_continue] = ACTIONS(516), + [anon_sym_default] = ACTIONS(482), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(518), + [anon_sym_if] = ACTIONS(366), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(520), + [anon_sym_static] = ACTIONS(522), + [anon_sym_union] = ACTIONS(482), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_yield] = ACTIONS(524), + [anon_sym_move] = ACTIONS(526), + [anon_sym_try] = ACTIONS(378), + [sym_integer_literal] = ACTIONS(99), + [aux_sym_string_literal_token1] = ACTIONS(101), + [sym_char_literal] = ACTIONS(99), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(494), + [sym_super] = ACTIONS(496), + [sym_crate] = ACTIONS(496), + [sym_metavariable] = ACTIONS(498), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), + }, + [STATE(308)] = { + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3114), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1664), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1631), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(244), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), + [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(910), + [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(910), + [anon_sym_BANG] = ACTIONS(910), + [anon_sym_AMP] = ACTIONS(912), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(914), + [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(512), + [anon_sym_break] = ACTIONS(514), + [anon_sym_const] = ACTIONS(358), + [anon_sym_continue] = ACTIONS(516), + [anon_sym_default] = ACTIONS(482), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(518), + [anon_sym_if] = ACTIONS(366), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(520), + [anon_sym_static] = ACTIONS(522), + [anon_sym_union] = ACTIONS(482), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_yield] = ACTIONS(524), + [anon_sym_move] = ACTIONS(526), + [anon_sym_try] = ACTIONS(378), + [sym_integer_literal] = ACTIONS(99), + [aux_sym_string_literal_token1] = ACTIONS(101), + [sym_char_literal] = ACTIONS(99), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(494), + [sym_super] = ACTIONS(496), + [sym_crate] = ACTIONS(496), + [sym_metavariable] = ACTIONS(498), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), + }, + [STATE(309)] = { + [sym_bracketed_type] = STATE(3702), + [sym_generic_function] = STATE(1815), + [sym_generic_type_with_turbofish] = STATE(2969), + [sym__expression_except_range] = STATE(1694), + [sym__expression] = STATE(1882), + [sym_macro_invocation] = STATE(1832), + [sym_scoped_identifier] = STATE(1654), + [sym_scoped_type_identifier_in_expression_position] = STATE(3227), + [sym_range_expression] = STATE(1820), + [sym_unary_expression] = STATE(1815), + [sym_try_expression] = STATE(1815), + [sym_reference_expression] = STATE(1815), + [sym_binary_expression] = STATE(1815), + [sym_assignment_expression] = STATE(1815), + [sym_compound_assignment_expr] = STATE(1815), + [sym_type_cast_expression] = STATE(1815), + [sym_return_expression] = STATE(1815), + [sym_yield_expression] = STATE(1815), + [sym_call_expression] = STATE(1815), + [sym_array_expression] = STATE(1815), + [sym_parenthesized_expression] = STATE(1815), + [sym_tuple_expression] = STATE(1815), + [sym_unit_expression] = STATE(1815), + [sym_struct_expression] = STATE(1815), + [sym_if_expression] = STATE(1815), + [sym_match_expression] = STATE(1815), + [sym_while_expression] = STATE(1815), + [sym_loop_expression] = STATE(1815), + [sym_for_expression] = STATE(1815), + [sym_const_block] = STATE(1815), + [sym_closure_expression] = STATE(1815), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3807), + [sym_break_expression] = STATE(1815), + [sym_continue_expression] = STATE(1815), + [sym_index_expression] = STATE(1815), + [sym_await_expression] = STATE(1815), + [sym_field_expression] = STATE(1695), + [sym_unsafe_block] = STATE(1815), + [sym_async_block] = STATE(1815), + [sym_gen_block] = STATE(1815), + [sym_try_block] = STATE(1815), + [sym_block] = STATE(1815), + [sym__literal] = STATE(1815), + [sym_string_literal] = STATE(1733), + [sym_raw_string_literal] = STATE(1733), + [sym_boolean_literal] = STATE(1733), + [sym_line_comment] = STATE(309), + [sym_block_comment] = STATE(309), + [sym_identifier] = ACTIONS(410), + [anon_sym_LPAREN] = ACTIONS(500), + [anon_sym_LBRACK] = ACTIONS(502), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_STAR] = ACTIONS(986), + [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(986), + [anon_sym_BANG] = ACTIONS(986), + [anon_sym_AMP] = ACTIONS(988), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1204), + [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(310)] = { + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3031), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1478), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1491), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), + [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(348), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -53487,431 +52972,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(1093), + [anon_sym_DOT_DOT] = ACTIONS(1236), [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(311)] = { + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3114), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1566), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1631), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(262), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), + [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(1248), + [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(1248), + [anon_sym_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1250), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1252), + [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(478), + [anon_sym_break] = ACTIONS(480), + [anon_sym_const] = ACTIONS(358), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(482), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(484), + [anon_sym_if] = ACTIONS(366), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(486), + [anon_sym_static] = ACTIONS(488), + [anon_sym_union] = ACTIONS(482), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_yield] = ACTIONS(490), + [anon_sym_move] = ACTIONS(492), + [anon_sym_try] = ACTIONS(378), + [sym_integer_literal] = ACTIONS(99), + [aux_sym_string_literal_token1] = ACTIONS(101), + [sym_char_literal] = ACTIONS(99), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(494), + [sym_super] = ACTIONS(496), + [sym_crate] = ACTIONS(496), + [sym_metavariable] = ACTIONS(498), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), + }, + [STATE(312)] = { + [sym_bracketed_type] = STATE(3702), + [sym_generic_function] = STATE(1815), + [sym_generic_type_with_turbofish] = STATE(2969), + [sym__expression_except_range] = STATE(1694), + [sym__expression] = STATE(1878), + [sym_macro_invocation] = STATE(1832), + [sym_scoped_identifier] = STATE(1654), + [sym_scoped_type_identifier_in_expression_position] = STATE(3227), + [sym_range_expression] = STATE(1820), + [sym_unary_expression] = STATE(1815), + [sym_try_expression] = STATE(1815), + [sym_reference_expression] = STATE(1815), + [sym_binary_expression] = STATE(1815), + [sym_assignment_expression] = STATE(1815), + [sym_compound_assignment_expr] = STATE(1815), + [sym_type_cast_expression] = STATE(1815), + [sym_return_expression] = STATE(1815), + [sym_yield_expression] = STATE(1815), + [sym_call_expression] = STATE(1815), + [sym_array_expression] = STATE(1815), + [sym_parenthesized_expression] = STATE(1815), + [sym_tuple_expression] = STATE(1815), + [sym_unit_expression] = STATE(1815), + [sym_struct_expression] = STATE(1815), + [sym_if_expression] = STATE(1815), + [sym_match_expression] = STATE(1815), + [sym_while_expression] = STATE(1815), + [sym_loop_expression] = STATE(1815), + [sym_for_expression] = STATE(1815), + [sym_const_block] = STATE(1815), + [sym_closure_expression] = STATE(1815), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3807), + [sym_break_expression] = STATE(1815), + [sym_continue_expression] = STATE(1815), + [sym_index_expression] = STATE(1815), + [sym_await_expression] = STATE(1815), + [sym_field_expression] = STATE(1695), + [sym_unsafe_block] = STATE(1815), + [sym_async_block] = STATE(1815), + [sym_gen_block] = STATE(1815), + [sym_try_block] = STATE(1815), + [sym_block] = STATE(1815), + [sym__literal] = STATE(1815), + [sym_string_literal] = STATE(1733), + [sym_raw_string_literal] = STATE(1733), + [sym_boolean_literal] = STATE(1733), + [sym_line_comment] = STATE(312), + [sym_block_comment] = STATE(312), + [sym_identifier] = ACTIONS(410), + [anon_sym_LPAREN] = ACTIONS(500), + [anon_sym_LBRACK] = ACTIONS(502), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_STAR] = ACTIONS(986), + [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(986), + [anon_sym_BANG] = ACTIONS(986), + [anon_sym_AMP] = ACTIONS(988), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1204), + [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(313)] = { + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3114), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1702), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1631), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(244), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), + [sym_line_comment] = STATE(313), + [sym_block_comment] = STATE(313), + [sym_identifier] = ACTIONS(470), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_STAR] = ACTIONS(910), + [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(910), + [anon_sym_BANG] = ACTIONS(910), + [anon_sym_AMP] = ACTIONS(912), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1224), + [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(512), + [anon_sym_break] = ACTIONS(514), + [anon_sym_const] = ACTIONS(358), + [anon_sym_continue] = ACTIONS(516), + [anon_sym_default] = ACTIONS(482), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(518), + [anon_sym_if] = ACTIONS(366), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(520), + [anon_sym_static] = ACTIONS(522), + [anon_sym_union] = ACTIONS(482), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_yield] = ACTIONS(524), + [anon_sym_move] = ACTIONS(526), + [anon_sym_try] = ACTIONS(378), + [sym_integer_literal] = ACTIONS(99), + [aux_sym_string_literal_token1] = ACTIONS(101), + [sym_char_literal] = ACTIONS(99), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(494), + [sym_super] = ACTIONS(496), + [sym_crate] = ACTIONS(496), + [sym_metavariable] = ACTIONS(498), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), + }, + [STATE(314)] = { + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3114), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1521), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1631), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(244), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), + [sym_line_comment] = STATE(314), + [sym_block_comment] = STATE(314), + [sym_identifier] = ACTIONS(470), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_STAR] = ACTIONS(910), + [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(910), + [anon_sym_BANG] = ACTIONS(910), + [anon_sym_AMP] = ACTIONS(912), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1224), + [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(512), + [anon_sym_break] = ACTIONS(514), + [anon_sym_const] = ACTIONS(358), + [anon_sym_continue] = ACTIONS(516), + [anon_sym_default] = ACTIONS(482), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(518), + [anon_sym_if] = ACTIONS(366), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(520), + [anon_sym_static] = ACTIONS(522), + [anon_sym_union] = ACTIONS(482), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_yield] = ACTIONS(524), + [anon_sym_move] = ACTIONS(526), + [anon_sym_try] = ACTIONS(378), + [sym_integer_literal] = ACTIONS(99), + [aux_sym_string_literal_token1] = ACTIONS(101), + [sym_char_literal] = ACTIONS(99), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(494), + [sym_super] = ACTIONS(496), + [sym_crate] = ACTIONS(496), + [sym_metavariable] = ACTIONS(498), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), + }, + [STATE(315)] = { + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3114), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1704), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1631), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(244), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), + [sym_line_comment] = STATE(315), + [sym_block_comment] = STATE(315), + [sym_identifier] = ACTIONS(470), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_STAR] = ACTIONS(910), + [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(910), + [anon_sym_BANG] = ACTIONS(910), + [anon_sym_AMP] = ACTIONS(912), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1224), + [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(512), + [anon_sym_break] = ACTIONS(514), + [anon_sym_const] = ACTIONS(358), + [anon_sym_continue] = ACTIONS(516), + [anon_sym_default] = ACTIONS(482), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(518), + [anon_sym_if] = ACTIONS(366), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(520), + [anon_sym_static] = ACTIONS(522), + [anon_sym_union] = ACTIONS(482), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_yield] = ACTIONS(524), + [anon_sym_move] = ACTIONS(526), + [anon_sym_try] = ACTIONS(378), + [sym_integer_literal] = ACTIONS(99), + [aux_sym_string_literal_token1] = ACTIONS(101), + [sym_char_literal] = ACTIONS(99), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(494), + [sym_super] = ACTIONS(496), + [sym_crate] = ACTIONS(496), + [sym_metavariable] = ACTIONS(498), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), + }, + [STATE(316)] = { + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3114), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1705), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1631), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(244), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), + [sym_line_comment] = STATE(316), + [sym_block_comment] = STATE(316), + [sym_identifier] = ACTIONS(470), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_STAR] = ACTIONS(910), + [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(910), + [anon_sym_BANG] = ACTIONS(910), + [anon_sym_AMP] = ACTIONS(912), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1224), + [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(512), + [anon_sym_break] = ACTIONS(514), + [anon_sym_const] = ACTIONS(358), + [anon_sym_continue] = ACTIONS(516), + [anon_sym_default] = ACTIONS(482), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(518), + [anon_sym_if] = ACTIONS(366), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(520), + [anon_sym_static] = ACTIONS(522), + [anon_sym_union] = ACTIONS(482), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_yield] = ACTIONS(524), + [anon_sym_move] = ACTIONS(526), + [anon_sym_try] = ACTIONS(378), + [sym_integer_literal] = ACTIONS(99), + [aux_sym_string_literal_token1] = ACTIONS(101), + [sym_char_literal] = ACTIONS(99), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(494), + [sym_super] = ACTIONS(496), + [sym_crate] = ACTIONS(496), + [sym_metavariable] = ACTIONS(498), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), }, [STATE(317)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1950), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3114), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1706), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1631), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(244), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), [sym_line_comment] = STATE(317), [sym_block_comment] = STATE(317), - [sym_identifier] = ACTIONS(339), + [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(910), + [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(910), + [anon_sym_BANG] = ACTIONS(910), + [anon_sym_AMP] = ACTIONS(912), [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(1224), + [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(512), + [anon_sym_break] = ACTIONS(514), + [anon_sym_const] = ACTIONS(358), + [anon_sym_continue] = ACTIONS(516), + [anon_sym_default] = ACTIONS(482), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(518), + [anon_sym_if] = ACTIONS(366), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(520), + [anon_sym_static] = ACTIONS(522), + [anon_sym_union] = ACTIONS(482), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_yield] = ACTIONS(524), + [anon_sym_move] = ACTIONS(526), + [anon_sym_try] = ACTIONS(378), + [sym_integer_literal] = ACTIONS(99), + [aux_sym_string_literal_token1] = ACTIONS(101), + [sym_char_literal] = ACTIONS(99), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(494), + [sym_super] = ACTIONS(496), + [sym_crate] = ACTIONS(496), + [sym_metavariable] = ACTIONS(498), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), }, [STATE(318)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2680), - [sym_bracketed_type] = STATE(3699), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3431), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(2528), - [sym_scoped_identifier] = STATE(2224), - [sym_scoped_type_identifier] = STATE(2186), - [sym_const_block] = STATE(2221), - [sym_closure_expression] = STATE(2901), - [sym_closure_parameters] = STATE(217), - [sym__pattern] = STATE(2824), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3114), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1839), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1631), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(262), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), [sym_line_comment] = STATE(318), [sym_block_comment] = STATE(318), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(1103), - [anon_sym_LPAREN] = ACTIONS(1105), - [anon_sym_RPAREN] = ACTIONS(1411), - [anon_sym_LBRACK] = ACTIONS(1109), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1115), - [anon_sym_i8] = ACTIONS(1115), - [anon_sym_u16] = ACTIONS(1115), - [anon_sym_i16] = ACTIONS(1115), - [anon_sym_u32] = ACTIONS(1115), - [anon_sym_i32] = ACTIONS(1115), - [anon_sym_u64] = ACTIONS(1115), - [anon_sym_i64] = ACTIONS(1115), - [anon_sym_u128] = ACTIONS(1115), - [anon_sym_i128] = ACTIONS(1115), - [anon_sym_isize] = ACTIONS(1115), - [anon_sym_usize] = ACTIONS(1115), - [anon_sym_f32] = ACTIONS(1115), - [anon_sym_f64] = ACTIONS(1115), - [anon_sym_bool] = ACTIONS(1115), - [anon_sym_str] = ACTIONS(1115), - [anon_sym_char] = ACTIONS(1115), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(1413), - [anon_sym_PIPE] = ACTIONS(1415), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1417), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COMMA] = ACTIONS(1419), - [anon_sym_COLON_COLON] = ACTIONS(1135), - [anon_sym_SQUOTE] = ACTIONS(1139), - [anon_sym_async] = ACTIONS(1421), - [anon_sym_const] = ACTIONS(1143), - [anon_sym_default] = ACTIONS(1145), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1151), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_static] = ACTIONS(1423), - [anon_sym_union] = ACTIONS(1151), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_ref] = ACTIONS(1159), - [anon_sym_dyn] = ACTIONS(1161), - [sym_mutable_specifier] = ACTIONS(1425), - [anon_sym_move] = ACTIONS(1427), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1173), - [sym_super] = ACTIONS(1173), - [sym_crate] = ACTIONS(1173), - [sym_metavariable] = ACTIONS(1175), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), + [sym_identifier] = ACTIONS(470), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_STAR] = ACTIONS(1248), + [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(1248), + [anon_sym_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1250), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1252), + [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(478), + [anon_sym_break] = ACTIONS(480), + [anon_sym_const] = ACTIONS(358), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(482), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(484), + [anon_sym_if] = ACTIONS(366), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(486), + [anon_sym_static] = ACTIONS(488), + [anon_sym_union] = ACTIONS(482), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_yield] = ACTIONS(490), + [anon_sym_move] = ACTIONS(492), + [anon_sym_try] = ACTIONS(378), + [sym_integer_literal] = ACTIONS(99), + [aux_sym_string_literal_token1] = ACTIONS(101), + [sym_char_literal] = ACTIONS(99), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(494), + [sym_super] = ACTIONS(496), + [sym_crate] = ACTIONS(496), + [sym_metavariable] = ACTIONS(498), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), }, [STATE(319)] = { - [sym_attribute_item] = STATE(405), - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_self_parameter] = STATE(3296), - [sym_variadic_parameter] = STATE(3296), - [sym_parameter] = STATE(3296), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(3097), - [sym_bracketed_type] = STATE(3691), - [sym_lifetime] = STATE(3008), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3333), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(2540), - [sym_scoped_identifier] = STATE(2311), - [sym_scoped_type_identifier] = STATE(2186), - [sym_const_block] = STATE(2221), - [sym__pattern] = STATE(3210), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3114), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1715), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1631), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(244), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), [sym_line_comment] = STATE(319), [sym_block_comment] = STATE(319), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(1181), - [anon_sym_LPAREN] = ACTIONS(1183), - [anon_sym_LBRACK] = ACTIONS(1109), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1187), - [anon_sym_i8] = ACTIONS(1187), - [anon_sym_u16] = ACTIONS(1187), - [anon_sym_i16] = ACTIONS(1187), - [anon_sym_u32] = ACTIONS(1187), - [anon_sym_i32] = ACTIONS(1187), - [anon_sym_u64] = ACTIONS(1187), - [anon_sym_i64] = ACTIONS(1187), - [anon_sym_u128] = ACTIONS(1187), - [anon_sym_i128] = ACTIONS(1187), - [anon_sym_isize] = ACTIONS(1187), - [anon_sym_usize] = ACTIONS(1187), - [anon_sym_f32] = ACTIONS(1187), - [anon_sym_f64] = ACTIONS(1187), - [anon_sym_bool] = ACTIONS(1187), - [anon_sym_str] = ACTIONS(1187), - [anon_sym_char] = ACTIONS(1187), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(1189), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1363), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1129), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COLON_COLON] = ACTIONS(1195), - [anon_sym_POUND] = ACTIONS(1137), - [anon_sym_SQUOTE] = ACTIONS(1139), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1143), - [anon_sym_default] = ACTIONS(1197), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1199), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1199), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_ref] = ACTIONS(1159), - [anon_sym_dyn] = ACTIONS(1161), - [sym_mutable_specifier] = ACTIONS(1163), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1201), - [sym_super] = ACTIONS(1203), - [sym_crate] = ACTIONS(1203), - [sym_metavariable] = ACTIONS(1205), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), + [sym_identifier] = ACTIONS(470), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_STAR] = ACTIONS(910), + [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(910), + [anon_sym_BANG] = ACTIONS(910), + [anon_sym_AMP] = ACTIONS(912), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1224), + [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(512), + [anon_sym_break] = ACTIONS(514), + [anon_sym_const] = ACTIONS(358), + [anon_sym_continue] = ACTIONS(516), + [anon_sym_default] = ACTIONS(482), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(518), + [anon_sym_if] = ACTIONS(366), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(520), + [anon_sym_static] = ACTIONS(522), + [anon_sym_union] = ACTIONS(482), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_yield] = ACTIONS(524), + [anon_sym_move] = ACTIONS(526), + [anon_sym_try] = ACTIONS(378), + [sym_integer_literal] = ACTIONS(99), + [aux_sym_string_literal_token1] = ACTIONS(101), + [sym_char_literal] = ACTIONS(99), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(494), + [sym_super] = ACTIONS(496), + [sym_crate] = ACTIONS(496), + [sym_metavariable] = ACTIONS(498), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), }, [STATE(320)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1742), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3114), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1708), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1631), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(244), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), [sym_line_comment] = STATE(320), [sym_block_comment] = STATE(320), - [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(910), + [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(910), + [anon_sym_BANG] = ACTIONS(910), + [anon_sym_AMP] = ACTIONS(912), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1224), + [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(512), + [anon_sym_break] = ACTIONS(514), + [anon_sym_const] = ACTIONS(358), + [anon_sym_continue] = ACTIONS(516), + [anon_sym_default] = ACTIONS(482), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(518), + [anon_sym_if] = ACTIONS(366), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(520), + [anon_sym_static] = ACTIONS(522), + [anon_sym_union] = ACTIONS(482), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_yield] = ACTIONS(524), + [anon_sym_move] = ACTIONS(526), + [anon_sym_try] = ACTIONS(378), + [sym_integer_literal] = ACTIONS(99), + [aux_sym_string_literal_token1] = ACTIONS(101), + [sym_char_literal] = ACTIONS(99), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(494), + [sym_super] = ACTIONS(496), + [sym_crate] = ACTIONS(496), + [sym_metavariable] = ACTIONS(498), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), + }, + [STATE(321)] = { + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3114), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1710), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1631), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(244), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), + [sym_line_comment] = STATE(321), + [sym_block_comment] = STATE(321), + [sym_identifier] = ACTIONS(470), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_STAR] = ACTIONS(910), + [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(910), + [anon_sym_BANG] = ACTIONS(910), + [anon_sym_AMP] = ACTIONS(912), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1224), + [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(512), + [anon_sym_break] = ACTIONS(514), + [anon_sym_const] = ACTIONS(358), + [anon_sym_continue] = ACTIONS(516), + [anon_sym_default] = ACTIONS(482), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(518), + [anon_sym_if] = ACTIONS(366), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(520), + [anon_sym_static] = ACTIONS(522), + [anon_sym_union] = ACTIONS(482), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_yield] = ACTIONS(524), + [anon_sym_move] = ACTIONS(526), + [anon_sym_try] = ACTIONS(378), + [sym_integer_literal] = ACTIONS(99), + [aux_sym_string_literal_token1] = ACTIONS(101), + [sym_char_literal] = ACTIONS(99), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(494), + [sym_super] = ACTIONS(496), + [sym_crate] = ACTIONS(496), + [sym_metavariable] = ACTIONS(498), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), + }, + [STATE(322)] = { + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3114), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1711), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1631), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(244), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), + [sym_line_comment] = STATE(322), + [sym_block_comment] = STATE(322), + [sym_identifier] = ACTIONS(470), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_STAR] = ACTIONS(910), + [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(910), + [anon_sym_BANG] = ACTIONS(910), + [anon_sym_AMP] = ACTIONS(912), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1224), + [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(512), + [anon_sym_break] = ACTIONS(514), + [anon_sym_const] = ACTIONS(358), + [anon_sym_continue] = ACTIONS(516), + [anon_sym_default] = ACTIONS(482), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(518), + [anon_sym_if] = ACTIONS(366), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(520), + [anon_sym_static] = ACTIONS(522), + [anon_sym_union] = ACTIONS(482), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_yield] = ACTIONS(524), + [anon_sym_move] = ACTIONS(526), + [anon_sym_try] = ACTIONS(378), + [sym_integer_literal] = ACTIONS(99), + [aux_sym_string_literal_token1] = ACTIONS(101), + [sym_char_literal] = ACTIONS(99), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(494), + [sym_super] = ACTIONS(496), + [sym_crate] = ACTIONS(496), + [sym_metavariable] = ACTIONS(498), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), + }, + [STATE(323)] = { + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3031), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1805), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1491), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), + [sym_line_comment] = STATE(323), + [sym_block_comment] = STATE(323), + [sym_identifier] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(348), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -53938,92 +54431,428 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(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(321)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1966), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [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(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3767), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [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(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(321), - [sym_block_comment] = STATE(321), - [sym_identifier] = ACTIONS(339), + [STATE(324)] = { + [sym_bracketed_type] = STATE(3702), + [sym_generic_function] = STATE(1815), + [sym_generic_type_with_turbofish] = STATE(2969), + [sym__expression_except_range] = STATE(1694), + [sym__expression] = STATE(1883), + [sym_macro_invocation] = STATE(1832), + [sym_scoped_identifier] = STATE(1654), + [sym_scoped_type_identifier_in_expression_position] = STATE(3227), + [sym_range_expression] = STATE(1820), + [sym_unary_expression] = STATE(1815), + [sym_try_expression] = STATE(1815), + [sym_reference_expression] = STATE(1815), + [sym_binary_expression] = STATE(1815), + [sym_assignment_expression] = STATE(1815), + [sym_compound_assignment_expr] = STATE(1815), + [sym_type_cast_expression] = STATE(1815), + [sym_return_expression] = STATE(1815), + [sym_yield_expression] = STATE(1815), + [sym_call_expression] = STATE(1815), + [sym_array_expression] = STATE(1815), + [sym_parenthesized_expression] = STATE(1815), + [sym_tuple_expression] = STATE(1815), + [sym_unit_expression] = STATE(1815), + [sym_struct_expression] = STATE(1815), + [sym_if_expression] = STATE(1815), + [sym_match_expression] = STATE(1815), + [sym_while_expression] = STATE(1815), + [sym_loop_expression] = STATE(1815), + [sym_for_expression] = STATE(1815), + [sym_const_block] = STATE(1815), + [sym_closure_expression] = STATE(1815), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3807), + [sym_break_expression] = STATE(1815), + [sym_continue_expression] = STATE(1815), + [sym_index_expression] = STATE(1815), + [sym_await_expression] = STATE(1815), + [sym_field_expression] = STATE(1695), + [sym_unsafe_block] = STATE(1815), + [sym_async_block] = STATE(1815), + [sym_gen_block] = STATE(1815), + [sym_try_block] = STATE(1815), + [sym_block] = STATE(1815), + [sym__literal] = STATE(1815), + [sym_string_literal] = STATE(1733), + [sym_raw_string_literal] = STATE(1733), + [sym_boolean_literal] = STATE(1733), + [sym_line_comment] = STATE(324), + [sym_block_comment] = STATE(324), + [sym_identifier] = ACTIONS(410), + [anon_sym_LPAREN] = ACTIONS(500), + [anon_sym_LBRACK] = ACTIONS(502), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_STAR] = ACTIONS(986), + [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(986), + [anon_sym_BANG] = ACTIONS(986), + [anon_sym_AMP] = ACTIONS(988), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1204), + [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(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3114), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1713), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1631), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(244), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), + [sym_line_comment] = STATE(325), + [sym_block_comment] = STATE(325), + [sym_identifier] = ACTIONS(470), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_STAR] = ACTIONS(910), + [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(910), + [anon_sym_BANG] = ACTIONS(910), + [anon_sym_AMP] = ACTIONS(912), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1224), + [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(512), + [anon_sym_break] = ACTIONS(514), + [anon_sym_const] = ACTIONS(358), + [anon_sym_continue] = ACTIONS(516), + [anon_sym_default] = ACTIONS(482), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(518), + [anon_sym_if] = ACTIONS(366), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(520), + [anon_sym_static] = ACTIONS(522), + [anon_sym_union] = ACTIONS(482), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_yield] = ACTIONS(524), + [anon_sym_move] = ACTIONS(526), + [anon_sym_try] = ACTIONS(378), + [sym_integer_literal] = ACTIONS(99), + [aux_sym_string_literal_token1] = ACTIONS(101), + [sym_char_literal] = ACTIONS(99), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(494), + [sym_super] = ACTIONS(496), + [sym_crate] = ACTIONS(496), + [sym_metavariable] = ACTIONS(498), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), + }, + [STATE(326)] = { + [sym_bracketed_type] = STATE(3702), + [sym_generic_function] = STATE(1815), + [sym_generic_type_with_turbofish] = STATE(2969), + [sym__expression_except_range] = STATE(1694), + [sym__expression] = STATE(1884), + [sym_macro_invocation] = STATE(1832), + [sym_scoped_identifier] = STATE(1654), + [sym_scoped_type_identifier_in_expression_position] = STATE(3227), + [sym_range_expression] = STATE(1820), + [sym_unary_expression] = STATE(1815), + [sym_try_expression] = STATE(1815), + [sym_reference_expression] = STATE(1815), + [sym_binary_expression] = STATE(1815), + [sym_assignment_expression] = STATE(1815), + [sym_compound_assignment_expr] = STATE(1815), + [sym_type_cast_expression] = STATE(1815), + [sym_return_expression] = STATE(1815), + [sym_yield_expression] = STATE(1815), + [sym_call_expression] = STATE(1815), + [sym_array_expression] = STATE(1815), + [sym_parenthesized_expression] = STATE(1815), + [sym_tuple_expression] = STATE(1815), + [sym_unit_expression] = STATE(1815), + [sym_struct_expression] = STATE(1815), + [sym_if_expression] = STATE(1815), + [sym_match_expression] = STATE(1815), + [sym_while_expression] = STATE(1815), + [sym_loop_expression] = STATE(1815), + [sym_for_expression] = STATE(1815), + [sym_const_block] = STATE(1815), + [sym_closure_expression] = STATE(1815), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3807), + [sym_break_expression] = STATE(1815), + [sym_continue_expression] = STATE(1815), + [sym_index_expression] = STATE(1815), + [sym_await_expression] = STATE(1815), + [sym_field_expression] = STATE(1695), + [sym_unsafe_block] = STATE(1815), + [sym_async_block] = STATE(1815), + [sym_gen_block] = STATE(1815), + [sym_try_block] = STATE(1815), + [sym_block] = STATE(1815), + [sym__literal] = STATE(1815), + [sym_string_literal] = STATE(1733), + [sym_raw_string_literal] = STATE(1733), + [sym_boolean_literal] = STATE(1733), + [sym_line_comment] = STATE(326), + [sym_block_comment] = STATE(326), + [sym_identifier] = ACTIONS(410), + [anon_sym_LPAREN] = ACTIONS(500), + [anon_sym_LBRACK] = ACTIONS(502), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_STAR] = ACTIONS(986), + [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(986), + [anon_sym_BANG] = ACTIONS(986), + [anon_sym_AMP] = ACTIONS(988), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1204), + [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(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3031), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1862), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1491), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), + [sym_line_comment] = STATE(327), + [sym_block_comment] = STATE(327), + [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(1383), + [anon_sym_LBRACE] = ACTIONS(348), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -54050,92 +54879,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(1385), + [anon_sym_async] = ACTIONS(356), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(1387), + [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(1389), - [anon_sym_gen] = ACTIONS(1391), - [anon_sym_if] = ACTIONS(1393), - [anon_sym_loop] = ACTIONS(1395), - [anon_sym_match] = ACTIONS(1397), + [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(1399), - [anon_sym_while] = ACTIONS(1401), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(1403), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(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(322)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1948), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(322), - [sym_block_comment] = STATE(322), - [sym_identifier] = ACTIONS(339), + [STATE(328)] = { + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3031), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1864), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1491), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), + [sym_line_comment] = STATE(328), + [sym_block_comment] = STATE(328), + [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), @@ -54162,92 +54991,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(323)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1939), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(323), - [sym_block_comment] = STATE(323), - [sym_identifier] = ACTIONS(339), + [STATE(329)] = { + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3031), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1590), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1491), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), + [sym_line_comment] = STATE(329), + [sym_block_comment] = STATE(329), + [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), @@ -54271,319 +55100,319 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(1236), [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(324)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2680), - [sym_bracketed_type] = STATE(3699), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3431), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(2528), - [sym_scoped_identifier] = STATE(2224), - [sym_scoped_type_identifier] = STATE(2186), - [sym_const_block] = STATE(2221), - [sym_closure_expression] = STATE(2901), - [sym_closure_parameters] = STATE(217), - [sym__pattern] = STATE(2824), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), - [sym_line_comment] = STATE(324), - [sym_block_comment] = STATE(324), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(1103), - [anon_sym_LPAREN] = ACTIONS(1105), - [anon_sym_RPAREN] = ACTIONS(1429), - [anon_sym_LBRACK] = ACTIONS(1109), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1115), - [anon_sym_i8] = ACTIONS(1115), - [anon_sym_u16] = ACTIONS(1115), - [anon_sym_i16] = ACTIONS(1115), - [anon_sym_u32] = ACTIONS(1115), - [anon_sym_i32] = ACTIONS(1115), - [anon_sym_u64] = ACTIONS(1115), - [anon_sym_i64] = ACTIONS(1115), - [anon_sym_u128] = ACTIONS(1115), - [anon_sym_i128] = ACTIONS(1115), - [anon_sym_isize] = ACTIONS(1115), - [anon_sym_usize] = ACTIONS(1115), - [anon_sym_f32] = ACTIONS(1115), - [anon_sym_f64] = ACTIONS(1115), - [anon_sym_bool] = ACTIONS(1115), - [anon_sym_str] = ACTIONS(1115), - [anon_sym_char] = ACTIONS(1115), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(1413), - [anon_sym_PIPE] = ACTIONS(1415), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1417), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COMMA] = ACTIONS(1419), - [anon_sym_COLON_COLON] = ACTIONS(1135), - [anon_sym_SQUOTE] = ACTIONS(1139), - [anon_sym_async] = ACTIONS(1421), - [anon_sym_const] = ACTIONS(1143), - [anon_sym_default] = ACTIONS(1145), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1151), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_static] = ACTIONS(1423), - [anon_sym_union] = ACTIONS(1151), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_ref] = ACTIONS(1159), - [anon_sym_dyn] = ACTIONS(1161), - [sym_mutable_specifier] = ACTIONS(1425), - [anon_sym_move] = ACTIONS(1427), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1173), - [sym_super] = ACTIONS(1173), - [sym_crate] = ACTIONS(1173), - [sym_metavariable] = ACTIONS(1175), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), + [STATE(330)] = { + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3114), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1477), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1631), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(244), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), + [sym_line_comment] = STATE(330), + [sym_block_comment] = STATE(330), + [sym_identifier] = ACTIONS(470), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_STAR] = ACTIONS(910), + [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(910), + [anon_sym_BANG] = ACTIONS(910), + [anon_sym_AMP] = ACTIONS(912), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1224), + [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(512), + [anon_sym_break] = ACTIONS(514), + [anon_sym_const] = ACTIONS(358), + [anon_sym_continue] = ACTIONS(516), + [anon_sym_default] = ACTIONS(482), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(518), + [anon_sym_if] = ACTIONS(366), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(520), + [anon_sym_static] = ACTIONS(522), + [anon_sym_union] = ACTIONS(482), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_yield] = ACTIONS(524), + [anon_sym_move] = ACTIONS(526), + [anon_sym_try] = ACTIONS(378), + [sym_integer_literal] = ACTIONS(99), + [aux_sym_string_literal_token1] = ACTIONS(101), + [sym_char_literal] = ACTIONS(99), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(494), + [sym_super] = ACTIONS(496), + [sym_crate] = ACTIONS(496), + [sym_metavariable] = ACTIONS(498), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), }, - [STATE(325)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3105), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1778), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1607), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(226), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(325), - [sym_block_comment] = STATE(325), - [sym_identifier] = ACTIONS(475), + [STATE(331)] = { + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3114), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1760), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1631), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(262), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), + [sym_line_comment] = STATE(331), + [sym_block_comment] = STATE(331), + [sym_identifier] = ACTIONS(470), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1057), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(1057), - [anon_sym_BANG] = ACTIONS(1057), - [anon_sym_AMP] = ACTIONS(1059), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_STAR] = ACTIONS(1248), + [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(1248), + [anon_sym_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1250), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1063), - [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(1252), + [anon_sym_COLON_COLON] = ACTIONS(476), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(509), - [anon_sym_break] = ACTIONS(511), - [anon_sym_const] = ACTIONS(353), + [anon_sym_async] = ACTIONS(478), + [anon_sym_break] = ACTIONS(480), + [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(489), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(513), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(515), - [anon_sym_static] = ACTIONS(517), - [anon_sym_union] = ACTIONS(489), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(519), - [anon_sym_move] = ACTIONS(521), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(501), - [sym_super] = ACTIONS(503), - [sym_crate] = ACTIONS(503), - [sym_metavariable] = ACTIONS(505), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_default] = ACTIONS(482), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(484), + [anon_sym_if] = ACTIONS(366), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(486), + [anon_sym_static] = ACTIONS(488), + [anon_sym_union] = ACTIONS(482), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_yield] = ACTIONS(490), + [anon_sym_move] = ACTIONS(492), + [anon_sym_try] = ACTIONS(378), + [sym_integer_literal] = ACTIONS(99), + [aux_sym_string_literal_token1] = ACTIONS(101), + [sym_char_literal] = ACTIONS(99), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(494), + [sym_super] = ACTIONS(496), + [sym_crate] = ACTIONS(496), + [sym_metavariable] = ACTIONS(498), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), }, - [STATE(326)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1958), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(326), - [sym_block_comment] = STATE(326), - [sym_identifier] = ACTIONS(339), + [STATE(332)] = { + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3031), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1891), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1491), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), + [sym_line_comment] = STATE(332), + [sym_block_comment] = STATE(332), + [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), @@ -54610,92 +55439,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(327)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1965), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(327), - [sym_block_comment] = STATE(327), - [sym_identifier] = ACTIONS(339), + [STATE(333)] = { + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3031), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1897), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1491), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [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(1471), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3802), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [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(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), + [sym_line_comment] = STATE(333), + [sym_block_comment] = STATE(333), + [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(1414), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -54722,92 +55551,428 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(1416), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(1418), [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(1420), + [anon_sym_gen] = ACTIONS(1422), + [anon_sym_if] = ACTIONS(1424), + [anon_sym_loop] = ACTIONS(1426), + [anon_sym_match] = ACTIONS(1428), [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(1430), + [anon_sym_while] = ACTIONS(1432), + [anon_sym_yield] = ACTIONS(93), + [anon_sym_move] = ACTIONS(95), + [anon_sym_try] = ACTIONS(1434), + [sym_integer_literal] = ACTIONS(99), + [aux_sym_string_literal_token1] = ACTIONS(101), + [sym_char_literal] = ACTIONS(99), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(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(328)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1938), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(328), - [sym_block_comment] = STATE(328), - [sym_identifier] = ACTIONS(339), + [STATE(334)] = { + [sym_line_comment] = STATE(334), + [sym_block_comment] = STATE(334), + [ts_builtin_sym_end] = ACTIONS(1446), + [sym_identifier] = ACTIONS(1448), + [anon_sym_SEMI] = ACTIONS(1446), + [anon_sym_macro_rules_BANG] = ACTIONS(1446), + [anon_sym_LPAREN] = ACTIONS(1446), + [anon_sym_LBRACK] = ACTIONS(1446), + [anon_sym_LBRACE] = ACTIONS(1446), + [anon_sym_RBRACE] = ACTIONS(1446), + [anon_sym_PLUS] = ACTIONS(1448), + [anon_sym_STAR] = ACTIONS(1448), + [anon_sym_QMARK] = ACTIONS(1446), + [anon_sym_u8] = ACTIONS(1448), + [anon_sym_i8] = ACTIONS(1448), + [anon_sym_u16] = ACTIONS(1448), + [anon_sym_i16] = ACTIONS(1448), + [anon_sym_u32] = ACTIONS(1448), + [anon_sym_i32] = ACTIONS(1448), + [anon_sym_u64] = ACTIONS(1448), + [anon_sym_i64] = ACTIONS(1448), + [anon_sym_u128] = ACTIONS(1448), + [anon_sym_i128] = ACTIONS(1448), + [anon_sym_isize] = ACTIONS(1448), + [anon_sym_usize] = ACTIONS(1448), + [anon_sym_f32] = ACTIONS(1448), + [anon_sym_f64] = ACTIONS(1448), + [anon_sym_bool] = ACTIONS(1448), + [anon_sym_str] = ACTIONS(1448), + [anon_sym_char] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1448), + [anon_sym_SLASH] = ACTIONS(1448), + [anon_sym_PERCENT] = ACTIONS(1448), + [anon_sym_CARET] = ACTIONS(1448), + [anon_sym_BANG] = ACTIONS(1448), + [anon_sym_AMP] = ACTIONS(1448), + [anon_sym_PIPE] = ACTIONS(1448), + [anon_sym_AMP_AMP] = ACTIONS(1446), + [anon_sym_PIPE_PIPE] = ACTIONS(1446), + [anon_sym_LT_LT] = ACTIONS(1448), + [anon_sym_GT_GT] = ACTIONS(1448), + [anon_sym_PLUS_EQ] = ACTIONS(1446), + [anon_sym_DASH_EQ] = ACTIONS(1446), + [anon_sym_STAR_EQ] = ACTIONS(1446), + [anon_sym_SLASH_EQ] = ACTIONS(1446), + [anon_sym_PERCENT_EQ] = ACTIONS(1446), + [anon_sym_CARET_EQ] = ACTIONS(1446), + [anon_sym_AMP_EQ] = ACTIONS(1446), + [anon_sym_PIPE_EQ] = ACTIONS(1446), + [anon_sym_LT_LT_EQ] = ACTIONS(1446), + [anon_sym_GT_GT_EQ] = ACTIONS(1446), + [anon_sym_EQ] = ACTIONS(1448), + [anon_sym_EQ_EQ] = ACTIONS(1446), + [anon_sym_BANG_EQ] = ACTIONS(1446), + [anon_sym_GT] = ACTIONS(1448), + [anon_sym_LT] = ACTIONS(1448), + [anon_sym_GT_EQ] = ACTIONS(1446), + [anon_sym_LT_EQ] = ACTIONS(1446), + [anon_sym_DOT] = ACTIONS(1448), + [anon_sym_DOT_DOT] = ACTIONS(1448), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1446), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1446), + [anon_sym_COLON_COLON] = ACTIONS(1446), + [anon_sym_POUND] = ACTIONS(1446), + [anon_sym_SQUOTE] = ACTIONS(1448), + [anon_sym_as] = ACTIONS(1448), + [anon_sym_async] = ACTIONS(1448), + [anon_sym_break] = ACTIONS(1448), + [anon_sym_const] = ACTIONS(1448), + [anon_sym_continue] = ACTIONS(1448), + [anon_sym_default] = ACTIONS(1448), + [anon_sym_enum] = ACTIONS(1448), + [anon_sym_fn] = ACTIONS(1448), + [anon_sym_for] = ACTIONS(1448), + [anon_sym_gen] = ACTIONS(1448), + [anon_sym_if] = ACTIONS(1448), + [anon_sym_impl] = ACTIONS(1448), + [anon_sym_let] = ACTIONS(1448), + [anon_sym_loop] = ACTIONS(1448), + [anon_sym_match] = ACTIONS(1448), + [anon_sym_mod] = ACTIONS(1448), + [anon_sym_pub] = ACTIONS(1448), + [anon_sym_return] = ACTIONS(1448), + [anon_sym_static] = ACTIONS(1448), + [anon_sym_struct] = ACTIONS(1448), + [anon_sym_trait] = ACTIONS(1448), + [anon_sym_type] = ACTIONS(1448), + [anon_sym_union] = ACTIONS(1448), + [anon_sym_unsafe] = ACTIONS(1448), + [anon_sym_use] = ACTIONS(1448), + [anon_sym_while] = ACTIONS(1448), + [anon_sym_extern] = ACTIONS(1448), + [anon_sym_safe] = ACTIONS(1448), + [anon_sym_else] = ACTIONS(1448), + [anon_sym_yield] = ACTIONS(1448), + [anon_sym_move] = ACTIONS(1448), + [anon_sym_try] = ACTIONS(1448), + [sym_integer_literal] = ACTIONS(1446), + [aux_sym_string_literal_token1] = ACTIONS(1446), + [sym_char_literal] = ACTIONS(1446), + [anon_sym_true] = ACTIONS(1448), + [anon_sym_false] = ACTIONS(1448), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1448), + [sym_super] = ACTIONS(1448), + [sym_crate] = ACTIONS(1448), + [sym_metavariable] = ACTIONS(1446), + [sym__raw_string_literal_start] = ACTIONS(1446), + [sym_float_literal] = ACTIONS(1446), + }, + [STATE(335)] = { + [sym_bracketed_type] = STATE(3702), + [sym_generic_function] = STATE(1815), + [sym_generic_type_with_turbofish] = STATE(2969), + [sym__expression_except_range] = STATE(1694), + [sym__expression] = STATE(1955), + [sym_macro_invocation] = STATE(1832), + [sym_scoped_identifier] = STATE(1654), + [sym_scoped_type_identifier_in_expression_position] = STATE(3227), + [sym_range_expression] = STATE(1820), + [sym_unary_expression] = STATE(1815), + [sym_try_expression] = STATE(1815), + [sym_reference_expression] = STATE(1815), + [sym_binary_expression] = STATE(1815), + [sym_assignment_expression] = STATE(1815), + [sym_compound_assignment_expr] = STATE(1815), + [sym_type_cast_expression] = STATE(1815), + [sym_return_expression] = STATE(1815), + [sym_yield_expression] = STATE(1815), + [sym_call_expression] = STATE(1815), + [sym_array_expression] = STATE(1815), + [sym_parenthesized_expression] = STATE(1815), + [sym_tuple_expression] = STATE(1815), + [sym_unit_expression] = STATE(1815), + [sym_struct_expression] = STATE(1815), + [sym_if_expression] = STATE(1815), + [sym_match_expression] = STATE(1815), + [sym_while_expression] = STATE(1815), + [sym_loop_expression] = STATE(1815), + [sym_for_expression] = STATE(1815), + [sym_const_block] = STATE(1815), + [sym_closure_expression] = STATE(1815), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3807), + [sym_break_expression] = STATE(1815), + [sym_continue_expression] = STATE(1815), + [sym_index_expression] = STATE(1815), + [sym_await_expression] = STATE(1815), + [sym_field_expression] = STATE(1695), + [sym_unsafe_block] = STATE(1815), + [sym_async_block] = STATE(1815), + [sym_gen_block] = STATE(1815), + [sym_try_block] = STATE(1815), + [sym_block] = STATE(1815), + [sym__literal] = STATE(1815), + [sym_string_literal] = STATE(1733), + [sym_raw_string_literal] = STATE(1733), + [sym_boolean_literal] = STATE(1733), + [sym_line_comment] = STATE(335), + [sym_block_comment] = STATE(335), + [sym_identifier] = ACTIONS(410), + [anon_sym_LPAREN] = ACTIONS(500), + [anon_sym_LBRACK] = ACTIONS(502), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_STAR] = ACTIONS(986), + [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(986), + [anon_sym_BANG] = ACTIONS(986), + [anon_sym_AMP] = ACTIONS(988), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(990), + [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(336)] = { + [sym_bracketed_type] = STATE(3702), + [sym_generic_function] = STATE(1815), + [sym_generic_type_with_turbofish] = STATE(2969), + [sym__expression_except_range] = STATE(1694), + [sym__expression] = STATE(1898), + [sym_macro_invocation] = STATE(1832), + [sym_scoped_identifier] = STATE(1654), + [sym_scoped_type_identifier_in_expression_position] = STATE(3227), + [sym_range_expression] = STATE(1820), + [sym_unary_expression] = STATE(1815), + [sym_try_expression] = STATE(1815), + [sym_reference_expression] = STATE(1815), + [sym_binary_expression] = STATE(1815), + [sym_assignment_expression] = STATE(1815), + [sym_compound_assignment_expr] = STATE(1815), + [sym_type_cast_expression] = STATE(1815), + [sym_return_expression] = STATE(1815), + [sym_yield_expression] = STATE(1815), + [sym_call_expression] = STATE(1815), + [sym_array_expression] = STATE(1815), + [sym_parenthesized_expression] = STATE(1815), + [sym_tuple_expression] = STATE(1815), + [sym_unit_expression] = STATE(1815), + [sym_struct_expression] = STATE(1815), + [sym_if_expression] = STATE(1815), + [sym_match_expression] = STATE(1815), + [sym_while_expression] = STATE(1815), + [sym_loop_expression] = STATE(1815), + [sym_for_expression] = STATE(1815), + [sym_const_block] = STATE(1815), + [sym_closure_expression] = STATE(1815), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3807), + [sym_break_expression] = STATE(1815), + [sym_continue_expression] = STATE(1815), + [sym_index_expression] = STATE(1815), + [sym_await_expression] = STATE(1815), + [sym_field_expression] = STATE(1695), + [sym_unsafe_block] = STATE(1815), + [sym_async_block] = STATE(1815), + [sym_gen_block] = STATE(1815), + [sym_try_block] = STATE(1815), + [sym_block] = STATE(1815), + [sym__literal] = STATE(1815), + [sym_string_literal] = STATE(1733), + [sym_raw_string_literal] = STATE(1733), + [sym_boolean_literal] = STATE(1733), + [sym_line_comment] = STATE(336), + [sym_block_comment] = STATE(336), + [sym_identifier] = ACTIONS(410), + [anon_sym_LPAREN] = ACTIONS(500), + [anon_sym_LBRACK] = ACTIONS(502), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_STAR] = ACTIONS(986), + [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(986), + [anon_sym_BANG] = ACTIONS(986), + [anon_sym_AMP] = ACTIONS(988), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(990), + [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(337)] = { + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3031), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1477), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1491), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), + [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), @@ -54831,95 +55996,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(1236), [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(329)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1589), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(329), - [sym_block_comment] = STATE(329), - [sym_identifier] = ACTIONS(339), + [STATE(338)] = { + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3031), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1566), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1491), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), + [sym_line_comment] = STATE(338), + [sym_block_comment] = STATE(338), + [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), @@ -54943,207 +56108,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(1093), + [anon_sym_DOT_DOT] = ACTIONS(1236), [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(330)] = { - [sym_bracketed_type] = STATE(3667), - [sym_generic_function] = STATE(1921), - [sym_generic_type_with_turbofish] = STATE(3104), - [sym__expression_except_range] = STATE(1706), - [sym__expression] = STATE(1731), - [sym_macro_invocation] = STATE(1722), - [sym_scoped_identifier] = STATE(1634), - [sym_scoped_type_identifier_in_expression_position] = STATE(3327), - [sym_range_expression] = STATE(1718), - [sym_unary_expression] = STATE(1921), - [sym_try_expression] = STATE(1921), - [sym_reference_expression] = STATE(1921), - [sym_binary_expression] = STATE(1921), - [sym_assignment_expression] = STATE(1921), - [sym_compound_assignment_expr] = STATE(1921), - [sym_type_cast_expression] = STATE(1921), - [sym_return_expression] = STATE(1921), - [sym_yield_expression] = STATE(1921), - [sym_call_expression] = STATE(1921), - [sym_array_expression] = STATE(1921), - [sym_parenthesized_expression] = STATE(1921), - [sym_tuple_expression] = STATE(1921), - [sym_unit_expression] = STATE(1921), - [sym_struct_expression] = STATE(1921), - [sym_if_expression] = STATE(1921), - [sym_match_expression] = STATE(1921), - [sym_while_expression] = STATE(1921), - [sym_loop_expression] = STATE(1921), - [sym_for_expression] = STATE(1921), - [sym_const_block] = STATE(1921), - [sym_closure_expression] = STATE(1921), - [sym_closure_parameters] = STATE(245), - [sym_label] = STATE(3773), - [sym_break_expression] = STATE(1921), - [sym_continue_expression] = STATE(1921), - [sym_index_expression] = STATE(1921), - [sym_await_expression] = STATE(1921), - [sym_field_expression] = STATE(1693), - [sym_unsafe_block] = STATE(1921), - [sym_async_block] = STATE(1921), - [sym_gen_block] = STATE(1921), - [sym_try_block] = STATE(1921), - [sym_block] = STATE(1921), - [sym__literal] = STATE(1921), - [sym_string_literal] = STATE(1852), - [sym_raw_string_literal] = STATE(1852), - [sym_boolean_literal] = STATE(1852), - [sym_line_comment] = STATE(330), - [sym_block_comment] = STATE(330), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(989), - [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(989), - [anon_sym_BANG] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(991), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1067), - [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(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(331)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1590), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(331), - [sym_block_comment] = STATE(331), - [sym_identifier] = ACTIONS(339), + [STATE(339)] = { + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3031), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1975), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1491), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), + [sym_line_comment] = STATE(339), + [sym_block_comment] = STATE(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), @@ -55167,95 +56220,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(1093), + [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(332)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1591), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(332), - [sym_block_comment] = STATE(332), - [sym_identifier] = ACTIONS(339), + [STATE(340)] = { + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3114), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1885), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1631), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(262), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), + [sym_line_comment] = STATE(340), + [sym_block_comment] = STATE(340), + [sym_identifier] = ACTIONS(470), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_STAR] = ACTIONS(1248), + [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(1248), + [anon_sym_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1250), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1436), + [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(478), + [anon_sym_break] = ACTIONS(480), + [anon_sym_const] = ACTIONS(358), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(482), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(484), + [anon_sym_if] = ACTIONS(366), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(486), + [anon_sym_static] = ACTIONS(488), + [anon_sym_union] = ACTIONS(482), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_yield] = ACTIONS(490), + [anon_sym_move] = ACTIONS(492), + [anon_sym_try] = ACTIONS(378), + [sym_integer_literal] = ACTIONS(99), + [aux_sym_string_literal_token1] = ACTIONS(101), + [sym_char_literal] = ACTIONS(99), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(494), + [sym_super] = ACTIONS(496), + [sym_crate] = ACTIONS(496), + [sym_metavariable] = ACTIONS(498), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), + }, + [STATE(341)] = { + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3031), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1984), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1491), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), + [sym_line_comment] = STATE(341), + [sym_block_comment] = STATE(341), + [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), @@ -55279,95 +56444,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(1093), + [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(333)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1592), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(333), - [sym_block_comment] = STATE(333), - [sym_identifier] = ACTIONS(339), + [STATE(342)] = { + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3031), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1960), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1491), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), + [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(343), + [anon_sym_LBRACE] = ACTIONS(348), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -55391,207 +56556,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(1093), + [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(334)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3105), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1467), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1607), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), + [STATE(343)] = { + [sym_bracketed_type] = STATE(3702), + [sym_generic_function] = STATE(1815), + [sym_generic_type_with_turbofish] = STATE(2969), + [sym__expression_except_range] = STATE(1694), + [sym__expression] = STATE(1898), + [sym_macro_invocation] = STATE(1832), + [sym_scoped_identifier] = STATE(1654), + [sym_scoped_type_identifier_in_expression_position] = STATE(3227), + [sym_range_expression] = STATE(1820), + [sym_unary_expression] = STATE(1815), + [sym_try_expression] = STATE(1815), + [sym_reference_expression] = STATE(1815), + [sym_binary_expression] = STATE(1815), + [sym_assignment_expression] = STATE(1815), + [sym_compound_assignment_expr] = STATE(1815), + [sym_type_cast_expression] = STATE(1815), + [sym_return_expression] = STATE(1815), + [sym_yield_expression] = STATE(1815), + [sym_call_expression] = STATE(1815), + [sym_array_expression] = STATE(1815), + [sym_parenthesized_expression] = STATE(1815), + [sym_tuple_expression] = STATE(1815), + [sym_unit_expression] = STATE(1815), + [sym_struct_expression] = STATE(1815), + [sym_if_expression] = STATE(1815), + [sym_match_expression] = STATE(1815), + [sym_while_expression] = STATE(1815), + [sym_loop_expression] = STATE(1815), + [sym_for_expression] = STATE(1815), + [sym_const_block] = STATE(1815), + [sym_closure_expression] = STATE(1815), [sym_closure_parameters] = STATE(226), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(334), - [sym_block_comment] = STATE(334), - [sym_identifier] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1057), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(1057), - [anon_sym_BANG] = ACTIONS(1057), - [anon_sym_AMP] = ACTIONS(1059), + [sym_label] = STATE(3807), + [sym_break_expression] = STATE(1815), + [sym_continue_expression] = STATE(1815), + [sym_index_expression] = STATE(1815), + [sym_await_expression] = STATE(1815), + [sym_field_expression] = STATE(1695), + [sym_unsafe_block] = STATE(1815), + [sym_async_block] = STATE(1815), + [sym_gen_block] = STATE(1815), + [sym_try_block] = STATE(1815), + [sym_block] = STATE(1815), + [sym__literal] = STATE(1815), + [sym_string_literal] = STATE(1733), + [sym_raw_string_literal] = STATE(1733), + [sym_boolean_literal] = STATE(1733), + [sym_line_comment] = STATE(343), + [sym_block_comment] = STATE(343), + [sym_identifier] = ACTIONS(410), + [anon_sym_LPAREN] = ACTIONS(500), + [anon_sym_LBRACK] = ACTIONS(502), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_STAR] = ACTIONS(986), + [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(986), + [anon_sym_BANG] = ACTIONS(986), + [anon_sym_AMP] = ACTIONS(988), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1063), - [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(1204), + [anon_sym_COLON_COLON] = ACTIONS(420), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(509), - [anon_sym_break] = ACTIONS(511), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(489), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(513), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(515), - [anon_sym_static] = ACTIONS(517), - [anon_sym_union] = ACTIONS(489), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(519), - [anon_sym_move] = ACTIONS(521), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(501), - [sym_super] = ACTIONS(503), - [sym_crate] = ACTIONS(503), - [sym_metavariable] = ACTIONS(505), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [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(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1502), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(335), - [sym_block_comment] = STATE(335), - [sym_identifier] = ACTIONS(339), + [STATE(344)] = { + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3031), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1806), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1491), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), + [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), @@ -55615,95 +56780,319 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1093), + [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(336)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1593), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(336), - [sym_block_comment] = STATE(336), - [sym_identifier] = ACTIONS(339), + [STATE(345)] = { + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3114), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1641), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1631), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(244), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), + [sym_line_comment] = STATE(345), + [sym_block_comment] = STATE(345), + [sym_identifier] = ACTIONS(470), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_STAR] = ACTIONS(910), + [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(910), + [anon_sym_BANG] = ACTIONS(910), + [anon_sym_AMP] = ACTIONS(912), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(914), + [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(512), + [anon_sym_break] = ACTIONS(514), + [anon_sym_const] = ACTIONS(358), + [anon_sym_continue] = ACTIONS(516), + [anon_sym_default] = ACTIONS(482), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(518), + [anon_sym_if] = ACTIONS(366), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(520), + [anon_sym_static] = ACTIONS(522), + [anon_sym_union] = ACTIONS(482), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_yield] = ACTIONS(524), + [anon_sym_move] = ACTIONS(526), + [anon_sym_try] = ACTIONS(378), + [sym_integer_literal] = ACTIONS(99), + [aux_sym_string_literal_token1] = ACTIONS(101), + [sym_char_literal] = ACTIONS(99), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(494), + [sym_super] = ACTIONS(496), + [sym_crate] = ACTIONS(496), + [sym_metavariable] = ACTIONS(498), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), + }, + [STATE(346)] = { + [sym_line_comment] = STATE(346), + [sym_block_comment] = STATE(346), + [ts_builtin_sym_end] = ACTIONS(1450), + [sym_identifier] = ACTIONS(1452), + [anon_sym_SEMI] = ACTIONS(1450), + [anon_sym_macro_rules_BANG] = ACTIONS(1450), + [anon_sym_LPAREN] = ACTIONS(1450), + [anon_sym_LBRACK] = ACTIONS(1450), + [anon_sym_LBRACE] = ACTIONS(1450), + [anon_sym_RBRACE] = ACTIONS(1450), + [anon_sym_PLUS] = ACTIONS(1452), + [anon_sym_STAR] = ACTIONS(1452), + [anon_sym_QMARK] = ACTIONS(1450), + [anon_sym_u8] = ACTIONS(1452), + [anon_sym_i8] = ACTIONS(1452), + [anon_sym_u16] = ACTIONS(1452), + [anon_sym_i16] = ACTIONS(1452), + [anon_sym_u32] = ACTIONS(1452), + [anon_sym_i32] = ACTIONS(1452), + [anon_sym_u64] = ACTIONS(1452), + [anon_sym_i64] = ACTIONS(1452), + [anon_sym_u128] = ACTIONS(1452), + [anon_sym_i128] = ACTIONS(1452), + [anon_sym_isize] = ACTIONS(1452), + [anon_sym_usize] = ACTIONS(1452), + [anon_sym_f32] = ACTIONS(1452), + [anon_sym_f64] = ACTIONS(1452), + [anon_sym_bool] = ACTIONS(1452), + [anon_sym_str] = ACTIONS(1452), + [anon_sym_char] = ACTIONS(1452), + [anon_sym_DASH] = ACTIONS(1452), + [anon_sym_SLASH] = ACTIONS(1452), + [anon_sym_PERCENT] = ACTIONS(1452), + [anon_sym_CARET] = ACTIONS(1452), + [anon_sym_BANG] = ACTIONS(1452), + [anon_sym_AMP] = ACTIONS(1452), + [anon_sym_PIPE] = ACTIONS(1452), + [anon_sym_AMP_AMP] = ACTIONS(1450), + [anon_sym_PIPE_PIPE] = ACTIONS(1450), + [anon_sym_LT_LT] = ACTIONS(1452), + [anon_sym_GT_GT] = ACTIONS(1452), + [anon_sym_PLUS_EQ] = ACTIONS(1450), + [anon_sym_DASH_EQ] = ACTIONS(1450), + [anon_sym_STAR_EQ] = ACTIONS(1450), + [anon_sym_SLASH_EQ] = ACTIONS(1450), + [anon_sym_PERCENT_EQ] = ACTIONS(1450), + [anon_sym_CARET_EQ] = ACTIONS(1450), + [anon_sym_AMP_EQ] = ACTIONS(1450), + [anon_sym_PIPE_EQ] = ACTIONS(1450), + [anon_sym_LT_LT_EQ] = ACTIONS(1450), + [anon_sym_GT_GT_EQ] = ACTIONS(1450), + [anon_sym_EQ] = ACTIONS(1452), + [anon_sym_EQ_EQ] = ACTIONS(1450), + [anon_sym_BANG_EQ] = ACTIONS(1450), + [anon_sym_GT] = ACTIONS(1452), + [anon_sym_LT] = ACTIONS(1452), + [anon_sym_GT_EQ] = ACTIONS(1450), + [anon_sym_LT_EQ] = ACTIONS(1450), + [anon_sym_DOT] = ACTIONS(1452), + [anon_sym_DOT_DOT] = ACTIONS(1452), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1450), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1450), + [anon_sym_COLON_COLON] = ACTIONS(1450), + [anon_sym_POUND] = ACTIONS(1450), + [anon_sym_SQUOTE] = ACTIONS(1452), + [anon_sym_as] = ACTIONS(1452), + [anon_sym_async] = ACTIONS(1452), + [anon_sym_break] = ACTIONS(1452), + [anon_sym_const] = ACTIONS(1452), + [anon_sym_continue] = ACTIONS(1452), + [anon_sym_default] = ACTIONS(1452), + [anon_sym_enum] = ACTIONS(1452), + [anon_sym_fn] = ACTIONS(1452), + [anon_sym_for] = ACTIONS(1452), + [anon_sym_gen] = ACTIONS(1452), + [anon_sym_if] = ACTIONS(1452), + [anon_sym_impl] = ACTIONS(1452), + [anon_sym_let] = ACTIONS(1452), + [anon_sym_loop] = ACTIONS(1452), + [anon_sym_match] = ACTIONS(1452), + [anon_sym_mod] = ACTIONS(1452), + [anon_sym_pub] = ACTIONS(1452), + [anon_sym_return] = ACTIONS(1452), + [anon_sym_static] = ACTIONS(1452), + [anon_sym_struct] = ACTIONS(1452), + [anon_sym_trait] = ACTIONS(1452), + [anon_sym_type] = ACTIONS(1452), + [anon_sym_union] = ACTIONS(1452), + [anon_sym_unsafe] = ACTIONS(1452), + [anon_sym_use] = ACTIONS(1452), + [anon_sym_while] = ACTIONS(1452), + [anon_sym_extern] = ACTIONS(1452), + [anon_sym_safe] = ACTIONS(1452), + [anon_sym_else] = ACTIONS(1452), + [anon_sym_yield] = ACTIONS(1452), + [anon_sym_move] = ACTIONS(1452), + [anon_sym_try] = ACTIONS(1452), + [sym_integer_literal] = ACTIONS(1450), + [aux_sym_string_literal_token1] = ACTIONS(1450), + [sym_char_literal] = ACTIONS(1450), + [anon_sym_true] = ACTIONS(1452), + [anon_sym_false] = ACTIONS(1452), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1452), + [sym_super] = ACTIONS(1452), + [sym_crate] = ACTIONS(1452), + [sym_metavariable] = ACTIONS(1450), + [sym__raw_string_literal_start] = ACTIONS(1450), + [sym_float_literal] = ACTIONS(1450), + }, + [STATE(347)] = { + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3031), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1585), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1491), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), + [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_LBRACE] = ACTIONS(348), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -55727,1663 +57116,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(1236), [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(337)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3105), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1502), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1607), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(254), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(337), - [sym_block_comment] = STATE(337), - [sym_identifier] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(907), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(907), - [anon_sym_BANG] = ACTIONS(907), - [anon_sym_AMP] = ACTIONS(909), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1079), - [anon_sym_COLON_COLON] = ACTIONS(481), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_default] = ACTIONS(489), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(491), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(493), - [anon_sym_static] = ACTIONS(495), - [anon_sym_union] = ACTIONS(489), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(497), - [anon_sym_move] = ACTIONS(499), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(501), - [sym_super] = ACTIONS(503), - [sym_crate] = ACTIONS(503), - [sym_metavariable] = ACTIONS(505), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [STATE(338)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2680), - [sym_bracketed_type] = STATE(3699), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3431), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(2528), - [sym_scoped_identifier] = STATE(2224), - [sym_scoped_type_identifier] = STATE(2186), - [sym_const_block] = STATE(2221), - [sym_closure_expression] = STATE(2901), - [sym_closure_parameters] = STATE(217), - [sym__pattern] = STATE(2824), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), - [sym_line_comment] = STATE(338), - [sym_block_comment] = STATE(338), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(1103), - [anon_sym_LPAREN] = ACTIONS(1105), - [anon_sym_RPAREN] = ACTIONS(1431), - [anon_sym_LBRACK] = ACTIONS(1109), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1115), - [anon_sym_i8] = ACTIONS(1115), - [anon_sym_u16] = ACTIONS(1115), - [anon_sym_i16] = ACTIONS(1115), - [anon_sym_u32] = ACTIONS(1115), - [anon_sym_i32] = ACTIONS(1115), - [anon_sym_u64] = ACTIONS(1115), - [anon_sym_i64] = ACTIONS(1115), - [anon_sym_u128] = ACTIONS(1115), - [anon_sym_i128] = ACTIONS(1115), - [anon_sym_isize] = ACTIONS(1115), - [anon_sym_usize] = ACTIONS(1115), - [anon_sym_f32] = ACTIONS(1115), - [anon_sym_f64] = ACTIONS(1115), - [anon_sym_bool] = ACTIONS(1115), - [anon_sym_str] = ACTIONS(1115), - [anon_sym_char] = ACTIONS(1115), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(1413), - [anon_sym_PIPE] = ACTIONS(1415), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1417), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COMMA] = ACTIONS(1419), - [anon_sym_COLON_COLON] = ACTIONS(1135), - [anon_sym_SQUOTE] = ACTIONS(1139), - [anon_sym_async] = ACTIONS(1421), - [anon_sym_const] = ACTIONS(1143), - [anon_sym_default] = ACTIONS(1145), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1151), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_static] = ACTIONS(1423), - [anon_sym_union] = ACTIONS(1151), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_ref] = ACTIONS(1159), - [anon_sym_dyn] = ACTIONS(1161), - [sym_mutable_specifier] = ACTIONS(1425), - [anon_sym_move] = ACTIONS(1427), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1173), - [sym_super] = ACTIONS(1173), - [sym_crate] = ACTIONS(1173), - [sym_metavariable] = ACTIONS(1175), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), - }, - [STATE(339)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3105), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1695), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1607), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(254), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(339), - [sym_block_comment] = STATE(339), - [sym_identifier] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(907), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(907), - [anon_sym_BANG] = ACTIONS(907), - [anon_sym_AMP] = ACTIONS(909), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1079), - [anon_sym_COLON_COLON] = ACTIONS(481), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_default] = ACTIONS(489), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(491), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(493), - [anon_sym_static] = ACTIONS(495), - [anon_sym_union] = ACTIONS(489), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(497), - [anon_sym_move] = ACTIONS(499), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(501), - [sym_super] = ACTIONS(503), - [sym_crate] = ACTIONS(503), - [sym_metavariable] = ACTIONS(505), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [STATE(340)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3105), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1455), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1607), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(254), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(340), - [sym_block_comment] = STATE(340), - [sym_identifier] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(907), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(907), - [anon_sym_BANG] = ACTIONS(907), - [anon_sym_AMP] = ACTIONS(909), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1079), - [anon_sym_COLON_COLON] = ACTIONS(481), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_default] = ACTIONS(489), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(491), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(493), - [anon_sym_static] = ACTIONS(495), - [anon_sym_union] = ACTIONS(489), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(497), - [anon_sym_move] = ACTIONS(499), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(501), - [sym_super] = ACTIONS(503), - [sym_crate] = ACTIONS(503), - [sym_metavariable] = ACTIONS(505), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [STATE(341)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3105), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1696), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1607), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(254), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(341), - [sym_block_comment] = STATE(341), - [sym_identifier] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(907), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(907), - [anon_sym_BANG] = ACTIONS(907), - [anon_sym_AMP] = ACTIONS(909), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1079), - [anon_sym_COLON_COLON] = ACTIONS(481), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_default] = ACTIONS(489), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(491), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(493), - [anon_sym_static] = ACTIONS(495), - [anon_sym_union] = ACTIONS(489), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(497), - [anon_sym_move] = ACTIONS(499), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(501), - [sym_super] = ACTIONS(503), - [sym_crate] = ACTIONS(503), - [sym_metavariable] = ACTIONS(505), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [STATE(342)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3105), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1666), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1607), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(254), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(342), - [sym_block_comment] = STATE(342), - [sym_identifier] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(907), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(907), - [anon_sym_BANG] = ACTIONS(907), - [anon_sym_AMP] = ACTIONS(909), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1079), - [anon_sym_COLON_COLON] = ACTIONS(481), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_default] = ACTIONS(489), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(491), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(493), - [anon_sym_static] = ACTIONS(495), - [anon_sym_union] = ACTIONS(489), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(497), - [anon_sym_move] = ACTIONS(499), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(501), - [sym_super] = ACTIONS(503), - [sym_crate] = ACTIONS(503), - [sym_metavariable] = ACTIONS(505), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [STATE(343)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3105), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1676), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1607), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(254), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(343), - [sym_block_comment] = STATE(343), - [sym_identifier] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(907), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(907), - [anon_sym_BANG] = ACTIONS(907), - [anon_sym_AMP] = ACTIONS(909), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1079), - [anon_sym_COLON_COLON] = ACTIONS(481), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_default] = ACTIONS(489), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(491), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(493), - [anon_sym_static] = ACTIONS(495), - [anon_sym_union] = ACTIONS(489), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(497), - [anon_sym_move] = ACTIONS(499), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(501), - [sym_super] = ACTIONS(503), - [sym_crate] = ACTIONS(503), - [sym_metavariable] = ACTIONS(505), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [STATE(344)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3105), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1774), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1607), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(226), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(344), - [sym_block_comment] = STATE(344), - [sym_identifier] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1057), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(1057), - [anon_sym_BANG] = ACTIONS(1057), - [anon_sym_AMP] = ACTIONS(1059), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1063), - [anon_sym_COLON_COLON] = ACTIONS(481), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(509), - [anon_sym_break] = ACTIONS(511), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(489), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(513), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(515), - [anon_sym_static] = ACTIONS(517), - [anon_sym_union] = ACTIONS(489), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(519), - [anon_sym_move] = ACTIONS(521), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(501), - [sym_super] = ACTIONS(503), - [sym_crate] = ACTIONS(503), - [sym_metavariable] = ACTIONS(505), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [STATE(345)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3105), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1685), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1607), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(254), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(345), - [sym_block_comment] = STATE(345), - [sym_identifier] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(907), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(907), - [anon_sym_BANG] = ACTIONS(907), - [anon_sym_AMP] = ACTIONS(909), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1079), - [anon_sym_COLON_COLON] = ACTIONS(481), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_default] = ACTIONS(489), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(491), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(493), - [anon_sym_static] = ACTIONS(495), - [anon_sym_union] = ACTIONS(489), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(497), - [anon_sym_move] = ACTIONS(499), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(501), - [sym_super] = ACTIONS(503), - [sym_crate] = ACTIONS(503), - [sym_metavariable] = ACTIONS(505), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [STATE(346)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3105), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1691), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1607), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(254), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(346), - [sym_block_comment] = STATE(346), - [sym_identifier] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(907), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(907), - [anon_sym_BANG] = ACTIONS(907), - [anon_sym_AMP] = ACTIONS(909), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1079), - [anon_sym_COLON_COLON] = ACTIONS(481), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_default] = ACTIONS(489), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(491), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(493), - [anon_sym_static] = ACTIONS(495), - [anon_sym_union] = ACTIONS(489), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(497), - [anon_sym_move] = ACTIONS(499), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(501), - [sym_super] = ACTIONS(503), - [sym_crate] = ACTIONS(503), - [sym_metavariable] = ACTIONS(505), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [STATE(347)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3105), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1694), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1607), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(254), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(347), - [sym_block_comment] = STATE(347), - [sym_identifier] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(907), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(907), - [anon_sym_BANG] = ACTIONS(907), - [anon_sym_AMP] = ACTIONS(909), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1079), - [anon_sym_COLON_COLON] = ACTIONS(481), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_default] = ACTIONS(489), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(491), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(493), - [anon_sym_static] = ACTIONS(495), - [anon_sym_union] = ACTIONS(489), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(497), - [anon_sym_move] = ACTIONS(499), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(501), - [sym_super] = ACTIONS(503), - [sym_crate] = ACTIONS(503), - [sym_metavariable] = ACTIONS(505), - [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(348)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3105), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1655), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1607), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(254), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3114), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1566), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1631), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(244), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), [sym_line_comment] = STATE(348), [sym_block_comment] = STATE(348), - [sym_identifier] = ACTIONS(475), + [sym_identifier] = ACTIONS(470), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(907), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(907), - [anon_sym_BANG] = ACTIONS(907), - [anon_sym_AMP] = ACTIONS(909), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_STAR] = ACTIONS(910), + [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(910), + [anon_sym_BANG] = ACTIONS(910), + [anon_sym_AMP] = ACTIONS(912), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1079), - [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(1224), + [anon_sym_COLON_COLON] = ACTIONS(476), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_default] = ACTIONS(489), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(491), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(493), - [anon_sym_static] = ACTIONS(495), - [anon_sym_union] = ACTIONS(489), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(497), - [anon_sym_move] = ACTIONS(499), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(501), - [sym_super] = ACTIONS(503), - [sym_crate] = ACTIONS(503), - [sym_metavariable] = ACTIONS(505), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_async] = ACTIONS(512), + [anon_sym_break] = ACTIONS(514), + [anon_sym_const] = ACTIONS(358), + [anon_sym_continue] = ACTIONS(516), + [anon_sym_default] = ACTIONS(482), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(518), + [anon_sym_if] = ACTIONS(366), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(520), + [anon_sym_static] = ACTIONS(522), + [anon_sym_union] = ACTIONS(482), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_yield] = ACTIONS(524), + [anon_sym_move] = ACTIONS(526), + [anon_sym_try] = ACTIONS(378), + [sym_integer_literal] = ACTIONS(99), + [aux_sym_string_literal_token1] = ACTIONS(101), + [sym_char_literal] = ACTIONS(99), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(494), + [sym_super] = ACTIONS(496), + [sym_crate] = ACTIONS(496), + [sym_metavariable] = ACTIONS(498), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), }, [STATE(349)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3105), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1657), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1607), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(254), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3114), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1478), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1631), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(262), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), [sym_line_comment] = STATE(349), [sym_block_comment] = STATE(349), - [sym_identifier] = ACTIONS(475), + [sym_identifier] = ACTIONS(470), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(907), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(907), - [anon_sym_BANG] = ACTIONS(907), - [anon_sym_AMP] = ACTIONS(909), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_STAR] = ACTIONS(1248), + [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(1248), + [anon_sym_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1250), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1079), - [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(1252), + [anon_sym_COLON_COLON] = ACTIONS(476), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_default] = ACTIONS(489), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(491), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(493), - [anon_sym_static] = ACTIONS(495), - [anon_sym_union] = ACTIONS(489), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(497), - [anon_sym_move] = ACTIONS(499), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(501), - [sym_super] = ACTIONS(503), - [sym_crate] = ACTIONS(503), - [sym_metavariable] = ACTIONS(505), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_async] = ACTIONS(478), + [anon_sym_break] = ACTIONS(480), + [anon_sym_const] = ACTIONS(358), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(482), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(484), + [anon_sym_if] = ACTIONS(366), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(486), + [anon_sym_static] = ACTIONS(488), + [anon_sym_union] = ACTIONS(482), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_yield] = ACTIONS(490), + [anon_sym_move] = ACTIONS(492), + [anon_sym_try] = ACTIONS(378), + [sym_integer_literal] = ACTIONS(99), + [aux_sym_string_literal_token1] = ACTIONS(101), + [sym_char_literal] = ACTIONS(99), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(494), + [sym_super] = ACTIONS(496), + [sym_crate] = ACTIONS(496), + [sym_metavariable] = ACTIONS(498), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), }, [STATE(350)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3105), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1739), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1607), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(254), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym_bracketed_type] = STATE(3702), + [sym_generic_function] = STATE(1815), + [sym_generic_type_with_turbofish] = STATE(2969), + [sym__expression_except_range] = STATE(1694), + [sym__expression] = STATE(1889), + [sym_macro_invocation] = STATE(1832), + [sym_scoped_identifier] = STATE(1654), + [sym_scoped_type_identifier_in_expression_position] = STATE(3227), + [sym_range_expression] = STATE(1820), + [sym_unary_expression] = STATE(1815), + [sym_try_expression] = STATE(1815), + [sym_reference_expression] = STATE(1815), + [sym_binary_expression] = STATE(1815), + [sym_assignment_expression] = STATE(1815), + [sym_compound_assignment_expr] = STATE(1815), + [sym_type_cast_expression] = STATE(1815), + [sym_return_expression] = STATE(1815), + [sym_yield_expression] = STATE(1815), + [sym_call_expression] = STATE(1815), + [sym_array_expression] = STATE(1815), + [sym_parenthesized_expression] = STATE(1815), + [sym_tuple_expression] = STATE(1815), + [sym_unit_expression] = STATE(1815), + [sym_struct_expression] = STATE(1815), + [sym_if_expression] = STATE(1815), + [sym_match_expression] = STATE(1815), + [sym_while_expression] = STATE(1815), + [sym_loop_expression] = STATE(1815), + [sym_for_expression] = STATE(1815), + [sym_const_block] = STATE(1815), + [sym_closure_expression] = STATE(1815), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3807), + [sym_break_expression] = STATE(1815), + [sym_continue_expression] = STATE(1815), + [sym_index_expression] = STATE(1815), + [sym_await_expression] = STATE(1815), + [sym_field_expression] = STATE(1695), + [sym_unsafe_block] = STATE(1815), + [sym_async_block] = STATE(1815), + [sym_gen_block] = STATE(1815), + [sym_try_block] = STATE(1815), + [sym_block] = STATE(1815), + [sym__literal] = STATE(1815), + [sym_string_literal] = STATE(1733), + [sym_raw_string_literal] = STATE(1733), + [sym_boolean_literal] = STATE(1733), [sym_line_comment] = STATE(350), [sym_block_comment] = STATE(350), - [sym_identifier] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(907), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(907), - [anon_sym_BANG] = ACTIONS(907), - [anon_sym_AMP] = ACTIONS(909), + [sym_identifier] = ACTIONS(410), + [anon_sym_LPAREN] = ACTIONS(500), + [anon_sym_LBRACK] = ACTIONS(502), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_STAR] = ACTIONS(986), + [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(986), + [anon_sym_BANG] = ACTIONS(986), + [anon_sym_AMP] = ACTIONS(988), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(911), - [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(1204), + [anon_sym_COLON_COLON] = ACTIONS(420), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_default] = ACTIONS(489), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(491), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(493), - [anon_sym_static] = ACTIONS(495), - [anon_sym_union] = ACTIONS(489), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(497), - [anon_sym_move] = ACTIONS(499), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(501), - [sym_super] = ACTIONS(503), - [sym_crate] = ACTIONS(503), - [sym_metavariable] = ACTIONS(505), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [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(351)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1593), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3031), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1586), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1491), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), [sym_line_comment] = STATE(351), [sym_block_comment] = STATE(351), - [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), @@ -57407,207 +57564,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(1093), + [anon_sym_DOT_DOT] = ACTIONS(1236), [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(352)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3105), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1449), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1607), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(254), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3031), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1962), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1491), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), [sym_line_comment] = STATE(352), [sym_block_comment] = STATE(352), - [sym_identifier] = ACTIONS(475), + [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(907), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(907), - [anon_sym_BANG] = ACTIONS(907), - [anon_sym_AMP] = ACTIONS(909), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1079), - [anon_sym_COLON_COLON] = ACTIONS(481), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_default] = ACTIONS(489), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(491), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(493), - [anon_sym_static] = ACTIONS(495), - [anon_sym_union] = ACTIONS(489), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(497), - [anon_sym_move] = ACTIONS(499), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(501), - [sym_super] = ACTIONS(503), - [sym_crate] = ACTIONS(503), - [sym_metavariable] = ACTIONS(505), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [STATE(353)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1741), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(353), - [sym_block_comment] = STATE(353), - [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), @@ -57634,1212 +57679,1436 @@ 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(353)] = { + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3114), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1784), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1631), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(262), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), + [sym_line_comment] = STATE(353), + [sym_block_comment] = STATE(353), + [sym_identifier] = ACTIONS(470), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_STAR] = ACTIONS(1248), + [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(1248), + [anon_sym_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1250), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1252), + [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(478), + [anon_sym_break] = ACTIONS(480), + [anon_sym_const] = ACTIONS(358), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(482), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(484), + [anon_sym_if] = ACTIONS(366), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(486), + [anon_sym_static] = ACTIONS(488), + [anon_sym_union] = ACTIONS(482), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_yield] = ACTIONS(490), + [anon_sym_move] = ACTIONS(492), + [anon_sym_try] = ACTIONS(378), + [sym_integer_literal] = ACTIONS(99), + [aux_sym_string_literal_token1] = ACTIONS(101), + [sym_char_literal] = ACTIONS(99), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(494), + [sym_super] = ACTIONS(496), + [sym_crate] = ACTIONS(496), + [sym_metavariable] = ACTIONS(498), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), }, [STATE(354)] = { - [sym_bracketed_type] = STATE(3667), - [sym_generic_function] = STATE(1921), - [sym_generic_type_with_turbofish] = STATE(3104), - [sym__expression_except_range] = STATE(1706), - [sym__expression] = STATE(1952), - [sym_macro_invocation] = STATE(1722), - [sym_scoped_identifier] = STATE(1634), - [sym_scoped_type_identifier_in_expression_position] = STATE(3327), - [sym_range_expression] = STATE(1718), - [sym_unary_expression] = STATE(1921), - [sym_try_expression] = STATE(1921), - [sym_reference_expression] = STATE(1921), - [sym_binary_expression] = STATE(1921), - [sym_assignment_expression] = STATE(1921), - [sym_compound_assignment_expr] = STATE(1921), - [sym_type_cast_expression] = STATE(1921), - [sym_return_expression] = STATE(1921), - [sym_yield_expression] = STATE(1921), - [sym_call_expression] = STATE(1921), - [sym_array_expression] = STATE(1921), - [sym_parenthesized_expression] = STATE(1921), - [sym_tuple_expression] = STATE(1921), - [sym_unit_expression] = STATE(1921), - [sym_struct_expression] = STATE(1921), - [sym_if_expression] = STATE(1921), - [sym_match_expression] = STATE(1921), - [sym_while_expression] = STATE(1921), - [sym_loop_expression] = STATE(1921), - [sym_for_expression] = STATE(1921), - [sym_const_block] = STATE(1921), - [sym_closure_expression] = STATE(1921), - [sym_closure_parameters] = STATE(245), - [sym_label] = STATE(3773), - [sym_break_expression] = STATE(1921), - [sym_continue_expression] = STATE(1921), - [sym_index_expression] = STATE(1921), - [sym_await_expression] = STATE(1921), - [sym_field_expression] = STATE(1693), - [sym_unsafe_block] = STATE(1921), - [sym_async_block] = STATE(1921), - [sym_gen_block] = STATE(1921), - [sym_try_block] = STATE(1921), - [sym_block] = STATE(1921), - [sym__literal] = STATE(1921), - [sym_string_literal] = STATE(1852), - [sym_raw_string_literal] = STATE(1852), - [sym_boolean_literal] = STATE(1852), + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3114), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1521), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1631), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(262), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), [sym_line_comment] = STATE(354), [sym_block_comment] = STATE(354), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(989), - [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(989), - [anon_sym_BANG] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(991), + [sym_identifier] = ACTIONS(470), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_STAR] = ACTIONS(1248), + [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(1248), + [anon_sym_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1250), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(993), - [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym_DOT_DOT] = ACTIONS(1252), + [anon_sym_COLON_COLON] = ACTIONS(476), [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_async] = ACTIONS(478), + [anon_sym_break] = ACTIONS(480), + [anon_sym_const] = ACTIONS(358), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(482), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(484), + [anon_sym_if] = ACTIONS(366), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(486), + [anon_sym_static] = ACTIONS(488), + [anon_sym_union] = ACTIONS(482), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_yield] = ACTIONS(490), + [anon_sym_move] = ACTIONS(492), + [anon_sym_try] = ACTIONS(378), + [sym_integer_literal] = ACTIONS(99), + [aux_sym_string_literal_token1] = ACTIONS(101), + [sym_char_literal] = ACTIONS(99), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(494), + [sym_super] = ACTIONS(496), + [sym_crate] = ACTIONS(496), + [sym_metavariable] = ACTIONS(498), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), }, [STATE(355)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1962), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3114), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1737), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1631), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(262), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), [sym_line_comment] = STATE(355), [sym_block_comment] = STATE(355), - [sym_identifier] = ACTIONS(339), + [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(1248), + [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(1248), + [anon_sym_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1250), [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(1252), + [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_async] = ACTIONS(478), + [anon_sym_break] = ACTIONS(480), + [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_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_default] = ACTIONS(482), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(484), + [anon_sym_if] = ACTIONS(366), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(486), + [anon_sym_static] = ACTIONS(488), + [anon_sym_union] = ACTIONS(482), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_yield] = ACTIONS(490), + [anon_sym_move] = ACTIONS(492), + [anon_sym_try] = ACTIONS(378), + [sym_integer_literal] = ACTIONS(99), + [aux_sym_string_literal_token1] = ACTIONS(101), + [sym_char_literal] = ACTIONS(99), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(494), + [sym_super] = ACTIONS(496), + [sym_crate] = ACTIONS(496), + [sym_metavariable] = ACTIONS(498), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), }, [STATE(356)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1768), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3114), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1751), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1631), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(262), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), [sym_line_comment] = STATE(356), [sym_block_comment] = STATE(356), - [sym_identifier] = ACTIONS(339), + [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(1248), + [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(1248), + [anon_sym_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1250), [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(1252), + [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_async] = ACTIONS(478), + [anon_sym_break] = ACTIONS(480), + [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_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_default] = ACTIONS(482), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(484), + [anon_sym_if] = ACTIONS(366), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(486), + [anon_sym_static] = ACTIONS(488), + [anon_sym_union] = ACTIONS(482), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_yield] = ACTIONS(490), + [anon_sym_move] = ACTIONS(492), + [anon_sym_try] = ACTIONS(378), + [sym_integer_literal] = ACTIONS(99), + [aux_sym_string_literal_token1] = ACTIONS(101), + [sym_char_literal] = ACTIONS(99), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(494), + [sym_super] = ACTIONS(496), + [sym_crate] = ACTIONS(496), + [sym_metavariable] = ACTIONS(498), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), }, [STATE(357)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1769), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3114), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1789), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1631), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(262), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), [sym_line_comment] = STATE(357), [sym_block_comment] = STATE(357), - [sym_identifier] = ACTIONS(339), + [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(1248), + [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(1248), + [anon_sym_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1250), [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(1252), + [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_async] = ACTIONS(478), + [anon_sym_break] = ACTIONS(480), + [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_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_default] = ACTIONS(482), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(484), + [anon_sym_if] = ACTIONS(366), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(486), + [anon_sym_static] = ACTIONS(488), + [anon_sym_union] = ACTIONS(482), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_yield] = ACTIONS(490), + [anon_sym_move] = ACTIONS(492), + [anon_sym_try] = ACTIONS(378), + [sym_integer_literal] = ACTIONS(99), + [aux_sym_string_literal_token1] = ACTIONS(101), + [sym_char_literal] = ACTIONS(99), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(494), + [sym_super] = ACTIONS(496), + [sym_crate] = ACTIONS(496), + [sym_metavariable] = ACTIONS(498), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), }, [STATE(358)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3105), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1933), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1607), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(226), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3114), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1707), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1631), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(244), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), [sym_line_comment] = STATE(358), [sym_block_comment] = STATE(358), - [sym_identifier] = ACTIONS(475), + [sym_identifier] = ACTIONS(470), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1057), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(1057), - [anon_sym_BANG] = ACTIONS(1057), - [anon_sym_AMP] = ACTIONS(1059), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_STAR] = ACTIONS(910), + [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(910), + [anon_sym_BANG] = ACTIONS(910), + [anon_sym_AMP] = ACTIONS(912), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1381), - [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(1224), + [anon_sym_COLON_COLON] = ACTIONS(476), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(509), - [anon_sym_break] = ACTIONS(511), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(489), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(513), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(515), - [anon_sym_static] = ACTIONS(517), - [anon_sym_union] = ACTIONS(489), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(519), - [anon_sym_move] = ACTIONS(521), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(501), - [sym_super] = ACTIONS(503), - [sym_crate] = ACTIONS(503), - [sym_metavariable] = ACTIONS(505), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_async] = ACTIONS(512), + [anon_sym_break] = ACTIONS(514), + [anon_sym_const] = ACTIONS(358), + [anon_sym_continue] = ACTIONS(516), + [anon_sym_default] = ACTIONS(482), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(518), + [anon_sym_if] = ACTIONS(366), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(520), + [anon_sym_static] = ACTIONS(522), + [anon_sym_union] = ACTIONS(482), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_yield] = ACTIONS(524), + [anon_sym_move] = ACTIONS(526), + [anon_sym_try] = ACTIONS(378), + [sym_integer_literal] = ACTIONS(99), + [aux_sym_string_literal_token1] = ACTIONS(101), + [sym_char_literal] = ACTIONS(99), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(494), + [sym_super] = ACTIONS(496), + [sym_crate] = ACTIONS(496), + [sym_metavariable] = ACTIONS(498), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), }, [STATE(359)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1449), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3114), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1880), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1631), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(262), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), [sym_line_comment] = STATE(359), [sym_block_comment] = STATE(359), - [sym_identifier] = ACTIONS(339), + [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(1248), + [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(1248), + [anon_sym_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1250), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1093), - [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DOT_DOT] = ACTIONS(1252), + [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_async] = ACTIONS(478), + [anon_sym_break] = ACTIONS(480), + [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_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_default] = ACTIONS(482), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(484), + [anon_sym_if] = ACTIONS(366), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(486), + [anon_sym_static] = ACTIONS(488), + [anon_sym_union] = ACTIONS(482), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_yield] = ACTIONS(490), + [anon_sym_move] = ACTIONS(492), + [anon_sym_try] = ACTIONS(378), + [sym_integer_literal] = ACTIONS(99), + [aux_sym_string_literal_token1] = ACTIONS(101), + [sym_char_literal] = ACTIONS(99), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(494), + [sym_super] = ACTIONS(496), + [sym_crate] = ACTIONS(496), + [sym_metavariable] = ACTIONS(498), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), }, [STATE(360)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3105), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1502), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1607), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(226), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3114), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1916), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1631), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(262), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), [sym_line_comment] = STATE(360), [sym_block_comment] = STATE(360), - [sym_identifier] = ACTIONS(475), + [sym_identifier] = ACTIONS(470), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1057), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(1057), - [anon_sym_BANG] = ACTIONS(1057), - [anon_sym_AMP] = ACTIONS(1059), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_STAR] = ACTIONS(1248), + [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(1248), + [anon_sym_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1250), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1063), - [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(1252), + [anon_sym_COLON_COLON] = ACTIONS(476), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(509), - [anon_sym_break] = ACTIONS(511), - [anon_sym_const] = ACTIONS(353), + [anon_sym_async] = ACTIONS(478), + [anon_sym_break] = ACTIONS(480), + [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(489), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(513), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(515), - [anon_sym_static] = ACTIONS(517), - [anon_sym_union] = ACTIONS(489), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(519), - [anon_sym_move] = ACTIONS(521), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(501), - [sym_super] = ACTIONS(503), - [sym_crate] = ACTIONS(503), - [sym_metavariable] = ACTIONS(505), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_default] = ACTIONS(482), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(484), + [anon_sym_if] = ACTIONS(366), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(486), + [anon_sym_static] = ACTIONS(488), + [anon_sym_union] = ACTIONS(482), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_yield] = ACTIONS(490), + [anon_sym_move] = ACTIONS(492), + [anon_sym_try] = ACTIONS(378), + [sym_integer_literal] = ACTIONS(99), + [aux_sym_string_literal_token1] = ACTIONS(101), + [sym_char_literal] = ACTIONS(99), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(494), + [sym_super] = ACTIONS(496), + [sym_crate] = ACTIONS(496), + [sym_metavariable] = ACTIONS(498), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), }, [STATE(361)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3105), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1871), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1607), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(226), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3114), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1744), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1631), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(262), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), [sym_line_comment] = STATE(361), [sym_block_comment] = STATE(361), - [sym_identifier] = ACTIONS(475), + [sym_identifier] = ACTIONS(470), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1057), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(1057), - [anon_sym_BANG] = ACTIONS(1057), - [anon_sym_AMP] = ACTIONS(1059), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_STAR] = ACTIONS(1248), + [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(1248), + [anon_sym_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1250), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1381), - [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(1252), + [anon_sym_COLON_COLON] = ACTIONS(476), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(509), - [anon_sym_break] = ACTIONS(511), - [anon_sym_const] = ACTIONS(353), + [anon_sym_async] = ACTIONS(478), + [anon_sym_break] = ACTIONS(480), + [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(489), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(513), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(515), - [anon_sym_static] = ACTIONS(517), - [anon_sym_union] = ACTIONS(489), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(519), - [anon_sym_move] = ACTIONS(521), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(501), - [sym_super] = ACTIONS(503), - [sym_crate] = ACTIONS(503), - [sym_metavariable] = ACTIONS(505), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_default] = ACTIONS(482), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(484), + [anon_sym_if] = ACTIONS(366), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(486), + [anon_sym_static] = ACTIONS(488), + [anon_sym_union] = ACTIONS(482), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_yield] = ACTIONS(490), + [anon_sym_move] = ACTIONS(492), + [anon_sym_try] = ACTIONS(378), + [sym_integer_literal] = ACTIONS(99), + [aux_sym_string_literal_token1] = ACTIONS(101), + [sym_char_literal] = ACTIONS(99), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(494), + [sym_super] = ACTIONS(496), + [sym_crate] = ACTIONS(496), + [sym_metavariable] = ACTIONS(498), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), }, [STATE(362)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1954), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3114), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1758), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1631), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(262), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), [sym_line_comment] = STATE(362), [sym_block_comment] = STATE(362), - [sym_identifier] = ACTIONS(339), + [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(1248), + [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(1248), + [anon_sym_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1250), [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(1252), + [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_async] = ACTIONS(478), + [anon_sym_break] = ACTIONS(480), + [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_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_default] = ACTIONS(482), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(484), + [anon_sym_if] = ACTIONS(366), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(486), + [anon_sym_static] = ACTIONS(488), + [anon_sym_union] = ACTIONS(482), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_yield] = ACTIONS(490), + [anon_sym_move] = ACTIONS(492), + [anon_sym_try] = ACTIONS(378), + [sym_integer_literal] = ACTIONS(99), + [aux_sym_string_literal_token1] = ACTIONS(101), + [sym_char_literal] = ACTIONS(99), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(494), + [sym_super] = ACTIONS(496), + [sym_crate] = ACTIONS(496), + [sym_metavariable] = ACTIONS(498), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), }, [STATE(363)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3105), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1639), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1607), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(254), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3114), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1778), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1631), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(262), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), [sym_line_comment] = STATE(363), [sym_block_comment] = STATE(363), - [sym_identifier] = ACTIONS(475), + [sym_identifier] = ACTIONS(470), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(907), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(907), - [anon_sym_BANG] = ACTIONS(907), - [anon_sym_AMP] = ACTIONS(909), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_STAR] = ACTIONS(1248), + [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(1248), + [anon_sym_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1250), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(911), - [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(1436), + [anon_sym_COLON_COLON] = ACTIONS(476), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_default] = ACTIONS(489), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(491), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(493), - [anon_sym_static] = ACTIONS(495), - [anon_sym_union] = ACTIONS(489), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(497), - [anon_sym_move] = ACTIONS(499), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(501), - [sym_super] = ACTIONS(503), - [sym_crate] = ACTIONS(503), - [sym_metavariable] = ACTIONS(505), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_async] = ACTIONS(478), + [anon_sym_break] = ACTIONS(480), + [anon_sym_const] = ACTIONS(358), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(482), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(484), + [anon_sym_if] = ACTIONS(366), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(486), + [anon_sym_static] = ACTIONS(488), + [anon_sym_union] = ACTIONS(482), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_yield] = ACTIONS(490), + [anon_sym_move] = ACTIONS(492), + [anon_sym_try] = ACTIONS(378), + [sym_integer_literal] = ACTIONS(99), + [aux_sym_string_literal_token1] = ACTIONS(101), + [sym_char_literal] = ACTIONS(99), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(494), + [sym_super] = ACTIONS(496), + [sym_crate] = ACTIONS(496), + [sym_metavariable] = ACTIONS(498), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), }, [STATE(364)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1880), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3114), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1759), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1631), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(262), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), [sym_line_comment] = STATE(364), [sym_block_comment] = STATE(364), - [sym_identifier] = ACTIONS(339), + [sym_identifier] = ACTIONS(470), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_STAR] = ACTIONS(1248), + [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(1248), + [anon_sym_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1250), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1252), + [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(478), + [anon_sym_break] = ACTIONS(480), + [anon_sym_const] = ACTIONS(358), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(482), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(484), + [anon_sym_if] = ACTIONS(366), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(486), + [anon_sym_static] = ACTIONS(488), + [anon_sym_union] = ACTIONS(482), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_yield] = ACTIONS(490), + [anon_sym_move] = ACTIONS(492), + [anon_sym_try] = ACTIONS(378), + [sym_integer_literal] = ACTIONS(99), + [aux_sym_string_literal_token1] = ACTIONS(101), + [sym_char_literal] = ACTIONS(99), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(494), + [sym_super] = ACTIONS(496), + [sym_crate] = ACTIONS(496), + [sym_metavariable] = ACTIONS(498), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), + }, + [STATE(365)] = { + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3031), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1971), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1491), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), + [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(348), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -58866,316 +59135,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(365)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3105), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1770), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1607), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(226), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(365), - [sym_block_comment] = STATE(365), - [sym_identifier] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1057), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(1057), - [anon_sym_BANG] = ACTIONS(1057), - [anon_sym_AMP] = ACTIONS(1059), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1063), - [anon_sym_COLON_COLON] = ACTIONS(481), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(509), - [anon_sym_break] = ACTIONS(511), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(489), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(513), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(515), - [anon_sym_static] = ACTIONS(517), - [anon_sym_union] = ACTIONS(489), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(519), - [anon_sym_move] = ACTIONS(521), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(501), - [sym_super] = ACTIONS(503), - [sym_crate] = ACTIONS(503), - [sym_metavariable] = ACTIONS(505), - [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(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3105), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1455), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1607), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(226), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3031), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1974), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1491), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), [sym_line_comment] = STATE(366), [sym_block_comment] = STATE(366), - [sym_identifier] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1057), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(1057), - [anon_sym_BANG] = ACTIONS(1057), - [anon_sym_AMP] = ACTIONS(1059), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1063), - [anon_sym_COLON_COLON] = ACTIONS(481), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(509), - [anon_sym_break] = ACTIONS(511), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(489), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(513), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(515), - [anon_sym_static] = ACTIONS(517), - [anon_sym_union] = ACTIONS(489), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(519), - [anon_sym_move] = ACTIONS(521), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(501), - [sym_super] = ACTIONS(503), - [sym_crate] = ACTIONS(503), - [sym_metavariable] = ACTIONS(505), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [STATE(367)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1963), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(367), - [sym_block_comment] = STATE(367), - [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), @@ -59202,92 +59247,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(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1964), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(368), - [sym_block_comment] = STATE(368), - [sym_identifier] = ACTIONS(339), + [STATE(367)] = { + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3031), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1969), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1491), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), + [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), @@ -59314,92 +59359,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(368)] = { + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3114), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1643), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1631), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(244), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), + [sym_line_comment] = STATE(368), + [sym_block_comment] = STATE(368), + [sym_identifier] = ACTIONS(470), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_STAR] = ACTIONS(910), + [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(910), + [anon_sym_BANG] = ACTIONS(910), + [anon_sym_AMP] = ACTIONS(912), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(914), + [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(512), + [anon_sym_break] = ACTIONS(514), + [anon_sym_const] = ACTIONS(358), + [anon_sym_continue] = ACTIONS(516), + [anon_sym_default] = ACTIONS(482), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(518), + [anon_sym_if] = ACTIONS(366), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(520), + [anon_sym_static] = ACTIONS(522), + [anon_sym_union] = ACTIONS(482), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_yield] = ACTIONS(524), + [anon_sym_move] = ACTIONS(526), + [anon_sym_try] = ACTIONS(378), + [sym_integer_literal] = ACTIONS(99), + [aux_sym_string_literal_token1] = ACTIONS(101), + [sym_char_literal] = ACTIONS(99), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(494), + [sym_super] = ACTIONS(496), + [sym_crate] = ACTIONS(496), + [sym_metavariable] = ACTIONS(498), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), }, [STATE(369)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1883), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3031), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1791), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1491), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), [sym_line_comment] = STATE(369), [sym_block_comment] = STATE(369), - [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), @@ -59426,204 +59583,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(370)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1968), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3114), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1715), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1631), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(244), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), [sym_line_comment] = STATE(370), [sym_block_comment] = STATE(370), - [sym_identifier] = ACTIONS(339), + [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(910), + [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(910), + [anon_sym_BANG] = ACTIONS(910), + [anon_sym_AMP] = ACTIONS(912), [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(914), + [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(512), + [anon_sym_break] = ACTIONS(514), + [anon_sym_const] = ACTIONS(358), + [anon_sym_continue] = ACTIONS(516), + [anon_sym_default] = ACTIONS(482), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(518), + [anon_sym_if] = ACTIONS(366), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(520), + [anon_sym_static] = ACTIONS(522), + [anon_sym_union] = ACTIONS(482), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_yield] = ACTIONS(524), + [anon_sym_move] = ACTIONS(526), + [anon_sym_try] = ACTIONS(378), + [sym_integer_literal] = ACTIONS(99), + [aux_sym_string_literal_token1] = ACTIONS(101), + [sym_char_literal] = ACTIONS(99), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(494), + [sym_super] = ACTIONS(496), + [sym_crate] = ACTIONS(496), + [sym_metavariable] = ACTIONS(498), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), }, [STATE(371)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1886), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3031), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1888), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1491), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), [sym_line_comment] = STATE(371), [sym_block_comment] = STATE(371), - [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), @@ -59650,92 +59807,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(372)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1971), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3114), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1477), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1631), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(262), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), [sym_line_comment] = STATE(372), [sym_block_comment] = STATE(372), - [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(1248), + [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(1248), + [anon_sym_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1250), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1252), + [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(478), + [anon_sym_break] = ACTIONS(480), + [anon_sym_const] = ACTIONS(358), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(482), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(484), + [anon_sym_if] = ACTIONS(366), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(486), + [anon_sym_static] = ACTIONS(488), + [anon_sym_union] = ACTIONS(482), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_yield] = ACTIONS(490), + [anon_sym_move] = ACTIONS(492), + [anon_sym_try] = ACTIONS(378), + [sym_integer_literal] = ACTIONS(99), + [aux_sym_string_literal_token1] = ACTIONS(101), + [sym_char_literal] = ACTIONS(99), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(494), + [sym_super] = ACTIONS(496), + [sym_crate] = ACTIONS(496), + [sym_metavariable] = ACTIONS(498), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), + }, + [STATE(373)] = { + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3031), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1979), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1491), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), + [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), @@ -59762,204 +60031,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(373)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3105), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1640), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1607), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(254), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), - [sym_line_comment] = STATE(373), - [sym_block_comment] = STATE(373), - [sym_identifier] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(907), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(907), - [anon_sym_BANG] = ACTIONS(907), - [anon_sym_AMP] = ACTIONS(909), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(911), - [anon_sym_COLON_COLON] = ACTIONS(481), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_default] = ACTIONS(489), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(491), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(493), - [anon_sym_static] = ACTIONS(495), - [anon_sym_union] = ACTIONS(489), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(497), - [anon_sym_move] = ACTIONS(499), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(501), - [sym_super] = ACTIONS(503), - [sym_crate] = ACTIONS(503), - [sym_metavariable] = ACTIONS(505), - [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(374)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1889), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3031), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1981), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1491), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), [sym_line_comment] = STATE(374), [sym_block_comment] = STATE(374), - [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), @@ -59986,92 +60143,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(375)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1941), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3031), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1800), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1491), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), [sym_line_comment] = STATE(375), [sym_block_comment] = STATE(375), - [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), @@ -60098,92 +60255,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(376)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1942), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3031), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1949), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1491), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), [sym_line_comment] = STATE(376), [sym_block_comment] = STATE(376), - [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), @@ -60210,92 +60367,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(377)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1943), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3031), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1808), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1491), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), [sym_line_comment] = STATE(377), [sym_block_comment] = STATE(377), - [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), @@ -60322,92 +60479,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(378)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1944), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3031), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1987), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1491), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), [sym_line_comment] = STATE(378), [sym_block_comment] = STATE(378), - [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), @@ -60434,764 +60591,764 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(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(379)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3105), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1771), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1607), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(226), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3114), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1653), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1631), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(244), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), [sym_line_comment] = STATE(379), [sym_block_comment] = STATE(379), - [sym_identifier] = ACTIONS(475), + [sym_identifier] = ACTIONS(470), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1057), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(1057), - [anon_sym_BANG] = ACTIONS(1057), - [anon_sym_AMP] = ACTIONS(1059), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_STAR] = ACTIONS(910), + [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(910), + [anon_sym_BANG] = ACTIONS(910), + [anon_sym_AMP] = ACTIONS(912), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1063), - [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(914), + [anon_sym_COLON_COLON] = ACTIONS(476), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(509), - [anon_sym_break] = ACTIONS(511), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(489), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(513), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(515), - [anon_sym_static] = ACTIONS(517), - [anon_sym_union] = ACTIONS(489), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(519), - [anon_sym_move] = ACTIONS(521), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(501), - [sym_super] = ACTIONS(503), - [sym_crate] = ACTIONS(503), - [sym_metavariable] = ACTIONS(505), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_async] = ACTIONS(512), + [anon_sym_break] = ACTIONS(514), + [anon_sym_const] = ACTIONS(358), + [anon_sym_continue] = ACTIONS(516), + [anon_sym_default] = ACTIONS(482), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(518), + [anon_sym_if] = ACTIONS(366), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(520), + [anon_sym_static] = ACTIONS(522), + [anon_sym_union] = ACTIONS(482), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_yield] = ACTIONS(524), + [anon_sym_move] = ACTIONS(526), + [anon_sym_try] = ACTIONS(378), + [sym_integer_literal] = ACTIONS(99), + [aux_sym_string_literal_token1] = ACTIONS(101), + [sym_char_literal] = ACTIONS(99), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(494), + [sym_super] = ACTIONS(496), + [sym_crate] = ACTIONS(496), + [sym_metavariable] = ACTIONS(498), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), }, [STATE(380)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3105), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1893), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1607), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(226), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3031), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1814), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1491), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), [sym_line_comment] = STATE(380), [sym_block_comment] = STATE(380), - [sym_identifier] = ACTIONS(475), + [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1057), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(1057), - [anon_sym_BANG] = ACTIONS(1057), - [anon_sym_AMP] = ACTIONS(1059), + [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(1381), - [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(509), - [anon_sym_break] = ACTIONS(511), - [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(489), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(513), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(515), - [anon_sym_static] = ACTIONS(517), - [anon_sym_union] = ACTIONS(489), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(519), - [anon_sym_move] = ACTIONS(521), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(501), - [sym_super] = ACTIONS(503), - [sym_crate] = ACTIONS(503), - [sym_metavariable] = ACTIONS(505), - [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(381)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3105), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1772), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1607), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(226), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3031), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1950), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1491), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), [sym_line_comment] = STATE(381), [sym_block_comment] = STATE(381), - [sym_identifier] = ACTIONS(475), + [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1057), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(1057), - [anon_sym_BANG] = ACTIONS(1057), - [anon_sym_AMP] = ACTIONS(1059), + [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(1063), - [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(509), - [anon_sym_break] = ACTIONS(511), - [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(489), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(513), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(515), - [anon_sym_static] = ACTIONS(517), - [anon_sym_union] = ACTIONS(489), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(519), - [anon_sym_move] = ACTIONS(521), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(501), - [sym_super] = ACTIONS(503), - [sym_crate] = ACTIONS(503), - [sym_metavariable] = ACTIONS(505), - [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(382)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3105), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1773), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1607), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(226), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3031), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1951), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1491), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), [sym_line_comment] = STATE(382), [sym_block_comment] = STATE(382), - [sym_identifier] = ACTIONS(475), + [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1057), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(1057), - [anon_sym_BANG] = ACTIONS(1057), - [anon_sym_AMP] = ACTIONS(1059), + [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(1063), - [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(509), - [anon_sym_break] = ACTIONS(511), - [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(489), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(513), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(515), - [anon_sym_static] = ACTIONS(517), - [anon_sym_union] = ACTIONS(489), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(519), - [anon_sym_move] = ACTIONS(521), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(501), - [sym_super] = ACTIONS(503), - [sym_crate] = ACTIONS(503), - [sym_metavariable] = ACTIONS(505), - [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(383)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3105), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1641), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1607), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(254), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3031), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1952), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1491), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), [sym_line_comment] = STATE(383), [sym_block_comment] = STATE(383), - [sym_identifier] = ACTIONS(475), + [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(907), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(907), - [anon_sym_BANG] = ACTIONS(907), - [anon_sym_AMP] = ACTIONS(909), + [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(911), - [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_default] = ACTIONS(489), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(491), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(493), - [anon_sym_static] = ACTIONS(495), - [anon_sym_union] = ACTIONS(489), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(497), - [anon_sym_move] = ACTIONS(499), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(501), - [sym_super] = ACTIONS(503), - [sym_crate] = ACTIONS(503), - [sym_metavariable] = ACTIONS(505), - [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(384)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3105), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1678), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1607), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(254), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3031), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1953), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1491), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), [sym_line_comment] = STATE(384), [sym_block_comment] = STATE(384), - [sym_identifier] = ACTIONS(475), + [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(907), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(907), - [anon_sym_BANG] = ACTIONS(907), - [anon_sym_AMP] = ACTIONS(909), + [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(1079), - [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_default] = ACTIONS(489), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(491), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(493), - [anon_sym_static] = ACTIONS(495), - [anon_sym_union] = ACTIONS(489), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(497), - [anon_sym_move] = ACTIONS(499), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(501), - [sym_super] = ACTIONS(503), - [sym_crate] = ACTIONS(503), - [sym_metavariable] = ACTIONS(505), - [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(385)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1959), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3031), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1954), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1491), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), [sym_line_comment] = STATE(385), [sym_block_comment] = STATE(385), - [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), @@ -61218,876 +61375,876 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(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(386)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3105), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1642), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1607), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(254), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), [sym_line_comment] = STATE(386), [sym_block_comment] = STATE(386), - [sym_identifier] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(907), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(907), - [anon_sym_BANG] = ACTIONS(907), - [anon_sym_AMP] = ACTIONS(909), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(911), - [anon_sym_COLON_COLON] = ACTIONS(481), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_default] = ACTIONS(489), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(491), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(493), - [anon_sym_static] = ACTIONS(495), - [anon_sym_union] = ACTIONS(489), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(497), - [anon_sym_move] = ACTIONS(499), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(501), - [sym_super] = ACTIONS(503), - [sym_crate] = ACTIONS(503), - [sym_metavariable] = ACTIONS(505), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [ts_builtin_sym_end] = ACTIONS(1454), + [sym_identifier] = ACTIONS(1456), + [anon_sym_SEMI] = ACTIONS(1454), + [anon_sym_macro_rules_BANG] = ACTIONS(1454), + [anon_sym_LPAREN] = ACTIONS(1454), + [anon_sym_LBRACK] = ACTIONS(1454), + [anon_sym_LBRACE] = ACTIONS(1454), + [anon_sym_RBRACE] = ACTIONS(1454), + [anon_sym_PLUS] = ACTIONS(1456), + [anon_sym_STAR] = ACTIONS(1456), + [anon_sym_QMARK] = ACTIONS(1454), + [anon_sym_u8] = ACTIONS(1456), + [anon_sym_i8] = ACTIONS(1456), + [anon_sym_u16] = ACTIONS(1456), + [anon_sym_i16] = ACTIONS(1456), + [anon_sym_u32] = ACTIONS(1456), + [anon_sym_i32] = ACTIONS(1456), + [anon_sym_u64] = ACTIONS(1456), + [anon_sym_i64] = ACTIONS(1456), + [anon_sym_u128] = ACTIONS(1456), + [anon_sym_i128] = ACTIONS(1456), + [anon_sym_isize] = ACTIONS(1456), + [anon_sym_usize] = ACTIONS(1456), + [anon_sym_f32] = ACTIONS(1456), + [anon_sym_f64] = ACTIONS(1456), + [anon_sym_bool] = ACTIONS(1456), + [anon_sym_str] = ACTIONS(1456), + [anon_sym_char] = ACTIONS(1456), + [anon_sym_DASH] = ACTIONS(1456), + [anon_sym_SLASH] = ACTIONS(1456), + [anon_sym_PERCENT] = ACTIONS(1456), + [anon_sym_CARET] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1456), + [anon_sym_AMP] = ACTIONS(1456), + [anon_sym_PIPE] = ACTIONS(1456), + [anon_sym_AMP_AMP] = ACTIONS(1454), + [anon_sym_PIPE_PIPE] = ACTIONS(1454), + [anon_sym_LT_LT] = ACTIONS(1456), + [anon_sym_GT_GT] = ACTIONS(1456), + [anon_sym_PLUS_EQ] = ACTIONS(1454), + [anon_sym_DASH_EQ] = ACTIONS(1454), + [anon_sym_STAR_EQ] = ACTIONS(1454), + [anon_sym_SLASH_EQ] = ACTIONS(1454), + [anon_sym_PERCENT_EQ] = ACTIONS(1454), + [anon_sym_CARET_EQ] = ACTIONS(1454), + [anon_sym_AMP_EQ] = ACTIONS(1454), + [anon_sym_PIPE_EQ] = ACTIONS(1454), + [anon_sym_LT_LT_EQ] = ACTIONS(1454), + [anon_sym_GT_GT_EQ] = ACTIONS(1454), + [anon_sym_EQ] = ACTIONS(1456), + [anon_sym_EQ_EQ] = ACTIONS(1454), + [anon_sym_BANG_EQ] = ACTIONS(1454), + [anon_sym_GT] = ACTIONS(1456), + [anon_sym_LT] = ACTIONS(1456), + [anon_sym_GT_EQ] = ACTIONS(1454), + [anon_sym_LT_EQ] = ACTIONS(1454), + [anon_sym_DOT] = ACTIONS(1456), + [anon_sym_DOT_DOT] = ACTIONS(1456), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1454), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1454), + [anon_sym_COLON_COLON] = ACTIONS(1454), + [anon_sym_POUND] = ACTIONS(1454), + [anon_sym_SQUOTE] = ACTIONS(1456), + [anon_sym_as] = ACTIONS(1456), + [anon_sym_async] = ACTIONS(1456), + [anon_sym_break] = ACTIONS(1456), + [anon_sym_const] = ACTIONS(1456), + [anon_sym_continue] = ACTIONS(1456), + [anon_sym_default] = ACTIONS(1456), + [anon_sym_enum] = ACTIONS(1456), + [anon_sym_fn] = ACTIONS(1456), + [anon_sym_for] = ACTIONS(1456), + [anon_sym_gen] = ACTIONS(1456), + [anon_sym_if] = ACTIONS(1456), + [anon_sym_impl] = ACTIONS(1456), + [anon_sym_let] = ACTIONS(1456), + [anon_sym_loop] = ACTIONS(1456), + [anon_sym_match] = ACTIONS(1456), + [anon_sym_mod] = ACTIONS(1456), + [anon_sym_pub] = ACTIONS(1456), + [anon_sym_return] = ACTIONS(1456), + [anon_sym_static] = ACTIONS(1456), + [anon_sym_struct] = ACTIONS(1456), + [anon_sym_trait] = ACTIONS(1456), + [anon_sym_type] = ACTIONS(1456), + [anon_sym_union] = ACTIONS(1456), + [anon_sym_unsafe] = ACTIONS(1456), + [anon_sym_use] = ACTIONS(1456), + [anon_sym_while] = ACTIONS(1456), + [anon_sym_extern] = ACTIONS(1456), + [anon_sym_safe] = ACTIONS(1456), + [anon_sym_else] = ACTIONS(1456), + [anon_sym_yield] = ACTIONS(1456), + [anon_sym_move] = ACTIONS(1456), + [anon_sym_try] = ACTIONS(1456), + [sym_integer_literal] = ACTIONS(1454), + [aux_sym_string_literal_token1] = ACTIONS(1454), + [sym_char_literal] = ACTIONS(1454), + [anon_sym_true] = ACTIONS(1456), + [anon_sym_false] = ACTIONS(1456), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1456), + [sym_super] = ACTIONS(1456), + [sym_crate] = ACTIONS(1456), + [sym_metavariable] = ACTIONS(1454), + [sym__raw_string_literal_start] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1454), }, [STATE(387)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3105), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1775), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1607), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(226), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3114), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1823), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1631), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(262), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), [sym_line_comment] = STATE(387), [sym_block_comment] = STATE(387), - [sym_identifier] = ACTIONS(475), + [sym_identifier] = ACTIONS(470), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1057), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(1057), - [anon_sym_BANG] = ACTIONS(1057), - [anon_sym_AMP] = ACTIONS(1059), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_STAR] = ACTIONS(1248), + [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(1248), + [anon_sym_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1250), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1063), - [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(1436), + [anon_sym_COLON_COLON] = ACTIONS(476), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(509), - [anon_sym_break] = ACTIONS(511), - [anon_sym_const] = ACTIONS(353), + [anon_sym_async] = ACTIONS(478), + [anon_sym_break] = ACTIONS(480), + [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(489), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(513), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(515), - [anon_sym_static] = ACTIONS(517), - [anon_sym_union] = ACTIONS(489), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(519), - [anon_sym_move] = ACTIONS(521), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(501), - [sym_super] = ACTIONS(503), - [sym_crate] = ACTIONS(503), - [sym_metavariable] = ACTIONS(505), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_default] = ACTIONS(482), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(484), + [anon_sym_if] = ACTIONS(366), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(486), + [anon_sym_static] = ACTIONS(488), + [anon_sym_union] = ACTIONS(482), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_yield] = ACTIONS(490), + [anon_sym_move] = ACTIONS(492), + [anon_sym_try] = ACTIONS(378), + [sym_integer_literal] = ACTIONS(99), + [aux_sym_string_literal_token1] = ACTIONS(101), + [sym_char_literal] = ACTIONS(99), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(494), + [sym_super] = ACTIONS(496), + [sym_crate] = ACTIONS(496), + [sym_metavariable] = ACTIONS(498), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), }, [STATE(388)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3105), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1900), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1607), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(226), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3031), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1769), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1491), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), [sym_line_comment] = STATE(388), [sym_block_comment] = STATE(388), - [sym_identifier] = ACTIONS(475), + [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1057), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(1057), - [anon_sym_BANG] = ACTIONS(1057), - [anon_sym_AMP] = ACTIONS(1059), + [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(1381), - [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(509), - [anon_sym_break] = ACTIONS(511), - [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(489), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(513), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(515), - [anon_sym_static] = ACTIONS(517), - [anon_sym_union] = ACTIONS(489), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(519), - [anon_sym_move] = ACTIONS(521), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(501), - [sym_super] = ACTIONS(503), - [sym_crate] = ACTIONS(503), - [sym_metavariable] = ACTIONS(505), - [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(389)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3105), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1776), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1607), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(226), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3114), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1663), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1631), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(244), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), [sym_line_comment] = STATE(389), [sym_block_comment] = STATE(389), - [sym_identifier] = ACTIONS(475), + [sym_identifier] = ACTIONS(470), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1057), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(1057), - [anon_sym_BANG] = ACTIONS(1057), - [anon_sym_AMP] = ACTIONS(1059), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_STAR] = ACTIONS(910), + [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(910), + [anon_sym_BANG] = ACTIONS(910), + [anon_sym_AMP] = ACTIONS(912), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1063), - [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(914), + [anon_sym_COLON_COLON] = ACTIONS(476), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(509), - [anon_sym_break] = ACTIONS(511), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(489), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(513), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(515), - [anon_sym_static] = ACTIONS(517), - [anon_sym_union] = ACTIONS(489), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(519), - [anon_sym_move] = ACTIONS(521), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(501), - [sym_super] = ACTIONS(503), - [sym_crate] = ACTIONS(503), - [sym_metavariable] = ACTIONS(505), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_async] = ACTIONS(512), + [anon_sym_break] = ACTIONS(514), + [anon_sym_const] = ACTIONS(358), + [anon_sym_continue] = ACTIONS(516), + [anon_sym_default] = ACTIONS(482), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(518), + [anon_sym_if] = ACTIONS(366), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(520), + [anon_sym_static] = ACTIONS(522), + [anon_sym_union] = ACTIONS(482), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_yield] = ACTIONS(524), + [anon_sym_move] = ACTIONS(526), + [anon_sym_try] = ACTIONS(378), + [sym_integer_literal] = ACTIONS(99), + [aux_sym_string_literal_token1] = ACTIONS(101), + [sym_char_literal] = ACTIONS(99), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(494), + [sym_super] = ACTIONS(496), + [sym_crate] = ACTIONS(496), + [sym_metavariable] = ACTIONS(498), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), }, [STATE(390)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3105), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1643), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1607), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(254), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3031), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1964), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1491), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), [sym_line_comment] = STATE(390), [sym_block_comment] = STATE(390), - [sym_identifier] = ACTIONS(475), + [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(907), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(907), - [anon_sym_BANG] = ACTIONS(907), - [anon_sym_AMP] = ACTIONS(909), + [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(911), - [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_default] = ACTIONS(489), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(491), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(493), - [anon_sym_static] = ACTIONS(495), - [anon_sym_union] = ACTIONS(489), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(497), - [anon_sym_move] = ACTIONS(499), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(501), - [sym_super] = ACTIONS(503), - [sym_crate] = ACTIONS(503), - [sym_metavariable] = ACTIONS(505), - [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(391)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3105), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1777), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1607), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(226), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3031), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1961), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1491), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), [sym_line_comment] = STATE(391), [sym_block_comment] = STATE(391), - [sym_identifier] = ACTIONS(475), + [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1057), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(1057), - [anon_sym_BANG] = ACTIONS(1057), - [anon_sym_AMP] = ACTIONS(1059), + [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(1063), - [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(509), - [anon_sym_break] = ACTIONS(511), - [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(489), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(513), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(515), - [anon_sym_static] = ACTIONS(517), - [anon_sym_union] = ACTIONS(489), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(519), - [anon_sym_move] = ACTIONS(521), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(501), - [sym_super] = ACTIONS(503), - [sym_crate] = ACTIONS(503), - [sym_metavariable] = ACTIONS(505), - [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(392)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3105), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1644), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1607), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(1453), - [sym_match_expression] = STATE(1453), - [sym_while_expression] = STATE(1453), - [sym_loop_expression] = STATE(1453), - [sym_for_expression] = STATE(1453), - [sym_const_block] = STATE(1453), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(254), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(1453), - [sym_async_block] = STATE(1453), - [sym_gen_block] = STATE(1453), - [sym_try_block] = STATE(1453), - [sym_block] = STATE(1453), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3114), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1635), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1631), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(244), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), [sym_line_comment] = STATE(392), [sym_block_comment] = STATE(392), - [sym_identifier] = ACTIONS(475), + [sym_identifier] = ACTIONS(470), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(907), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(907), - [anon_sym_BANG] = ACTIONS(907), - [anon_sym_AMP] = ACTIONS(909), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_STAR] = ACTIONS(910), + [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(910), + [anon_sym_BANG] = ACTIONS(910), + [anon_sym_AMP] = ACTIONS(912), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(911), - [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(914), + [anon_sym_COLON_COLON] = ACTIONS(476), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_default] = ACTIONS(489), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(491), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(493), - [anon_sym_static] = ACTIONS(495), - [anon_sym_union] = ACTIONS(489), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(497), - [anon_sym_move] = ACTIONS(499), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(501), - [sym_super] = ACTIONS(503), - [sym_crate] = ACTIONS(503), - [sym_metavariable] = ACTIONS(505), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_async] = ACTIONS(512), + [anon_sym_break] = ACTIONS(514), + [anon_sym_const] = ACTIONS(358), + [anon_sym_continue] = ACTIONS(516), + [anon_sym_default] = ACTIONS(482), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(518), + [anon_sym_if] = ACTIONS(366), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(520), + [anon_sym_static] = ACTIONS(522), + [anon_sym_union] = ACTIONS(482), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_yield] = ACTIONS(524), + [anon_sym_move] = ACTIONS(526), + [anon_sym_try] = ACTIONS(378), + [sym_integer_literal] = ACTIONS(99), + [aux_sym_string_literal_token1] = ACTIONS(101), + [sym_char_literal] = ACTIONS(99), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(494), + [sym_super] = ACTIONS(496), + [sym_crate] = ACTIONS(496), + [sym_metavariable] = ACTIONS(498), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), }, [STATE(393)] = { - [sym_bracketed_type] = STATE(3666), - [sym_generic_function] = STATE(1453), - [sym_generic_type_with_turbofish] = STATE(3038), - [sym__expression_except_range] = STATE(1267), - [sym__expression] = STATE(1951), - [sym_macro_invocation] = STATE(1531), - [sym_scoped_identifier] = STATE(1445), - [sym_scoped_type_identifier_in_expression_position] = STATE(3222), - [sym_range_expression] = STATE(1485), - [sym_unary_expression] = STATE(1453), - [sym_try_expression] = STATE(1453), - [sym_reference_expression] = STATE(1453), - [sym_binary_expression] = STATE(1453), - [sym_assignment_expression] = STATE(1453), - [sym_compound_assignment_expr] = STATE(1453), - [sym_type_cast_expression] = STATE(1453), - [sym_return_expression] = STATE(1453), - [sym_yield_expression] = STATE(1453), - [sym_call_expression] = STATE(1453), - [sym_array_expression] = STATE(1453), - [sym_parenthesized_expression] = STATE(1453), - [sym_tuple_expression] = STATE(1453), - [sym_unit_expression] = STATE(1453), - [sym_struct_expression] = STATE(1453), - [sym_if_expression] = STATE(479), - [sym_match_expression] = STATE(479), - [sym_while_expression] = STATE(479), - [sym_loop_expression] = STATE(479), - [sym_for_expression] = STATE(479), - [sym_const_block] = STATE(479), - [sym_closure_expression] = STATE(1453), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3767), - [sym_break_expression] = STATE(1453), - [sym_continue_expression] = STATE(1453), - [sym_index_expression] = STATE(1453), - [sym_await_expression] = STATE(1453), - [sym_field_expression] = STATE(1156), - [sym_unsafe_block] = STATE(479), - [sym_async_block] = STATE(479), - [sym_gen_block] = STATE(479), - [sym_try_block] = STATE(479), - [sym_block] = STATE(479), - [sym__literal] = STATE(1453), - [sym_string_literal] = STATE(1545), - [sym_raw_string_literal] = STATE(1545), - [sym_boolean_literal] = STATE(1545), + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3031), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1786), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1491), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), [sym_line_comment] = STATE(393), [sym_block_comment] = STATE(393), - [sym_identifier] = ACTIONS(339), + [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(1383), + [anon_sym_LBRACE] = ACTIONS(348), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -62114,12760 +62271,13051 @@ 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(1385), + [anon_sym_async] = ACTIONS(356), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(1387), + [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(1389), - [anon_sym_gen] = ACTIONS(1391), - [anon_sym_if] = ACTIONS(1393), - [anon_sym_loop] = ACTIONS(1395), - [anon_sym_match] = ACTIONS(1397), + [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(1399), - [anon_sym_while] = ACTIONS(1401), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(1403), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(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(394)] = { + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3114), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1848), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1631), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(262), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), [sym_line_comment] = STATE(394), [sym_block_comment] = STATE(394), - [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_else] = 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), + [sym_identifier] = ACTIONS(470), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_STAR] = ACTIONS(1248), + [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(1248), + [anon_sym_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1250), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1436), + [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(478), + [anon_sym_break] = ACTIONS(480), + [anon_sym_const] = ACTIONS(358), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(482), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(484), + [anon_sym_if] = ACTIONS(366), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(486), + [anon_sym_static] = ACTIONS(488), + [anon_sym_union] = ACTIONS(482), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_yield] = ACTIONS(490), + [anon_sym_move] = ACTIONS(492), + [anon_sym_try] = ACTIONS(378), + [sym_integer_literal] = ACTIONS(99), + [aux_sym_string_literal_token1] = ACTIONS(101), + [sym_char_literal] = ACTIONS(99), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(494), + [sym_super] = ACTIONS(496), + [sym_crate] = ACTIONS(496), + [sym_metavariable] = ACTIONS(498), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), }, [STATE(395)] = { + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3031), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1788), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1491), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(489), + [sym_match_expression] = STATE(489), + [sym_while_expression] = STATE(489), + [sym_loop_expression] = STATE(489), + [sym_for_expression] = STATE(489), + [sym_const_block] = STATE(489), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3802), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(489), + [sym_async_block] = STATE(489), + [sym_gen_block] = STATE(489), + [sym_try_block] = STATE(489), + [sym_block] = STATE(489), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), [sym_line_comment] = STATE(395), [sym_block_comment] = STATE(395), - [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_else] = 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), + [sym_identifier] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(1414), + [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(1416), + [anon_sym_break] = ACTIONS(41), + [anon_sym_const] = ACTIONS(1418), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(360), + [anon_sym_for] = ACTIONS(1420), + [anon_sym_gen] = ACTIONS(1422), + [anon_sym_if] = ACTIONS(1424), + [anon_sym_loop] = ACTIONS(1426), + [anon_sym_match] = ACTIONS(1428), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(372), + [anon_sym_union] = ACTIONS(360), + [anon_sym_unsafe] = ACTIONS(1430), + [anon_sym_while] = ACTIONS(1432), + [anon_sym_yield] = ACTIONS(93), + [anon_sym_move] = ACTIONS(95), + [anon_sym_try] = ACTIONS(1434), + [sym_integer_literal] = ACTIONS(99), + [aux_sym_string_literal_token1] = ACTIONS(101), + [sym_char_literal] = ACTIONS(99), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(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(396)] = { + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3114), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1638), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1631), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(244), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), [sym_line_comment] = STATE(396), [sym_block_comment] = STATE(396), - [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_else] = 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), + [sym_identifier] = ACTIONS(470), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_STAR] = ACTIONS(910), + [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(910), + [anon_sym_BANG] = ACTIONS(910), + [anon_sym_AMP] = ACTIONS(912), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(914), + [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(512), + [anon_sym_break] = ACTIONS(514), + [anon_sym_const] = ACTIONS(358), + [anon_sym_continue] = ACTIONS(516), + [anon_sym_default] = ACTIONS(482), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(518), + [anon_sym_if] = ACTIONS(366), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(520), + [anon_sym_static] = ACTIONS(522), + [anon_sym_union] = ACTIONS(482), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_yield] = ACTIONS(524), + [anon_sym_move] = ACTIONS(526), + [anon_sym_try] = ACTIONS(378), + [sym_integer_literal] = ACTIONS(99), + [aux_sym_string_literal_token1] = ACTIONS(101), + [sym_char_literal] = ACTIONS(99), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(494), + [sym_super] = ACTIONS(496), + [sym_crate] = ACTIONS(496), + [sym_metavariable] = ACTIONS(498), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), }, [STATE(397)] = { + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3031), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1939), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1491), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), [sym_line_comment] = STATE(397), [sym_block_comment] = STATE(397), - [ts_builtin_sym_end] = ACTIONS(1445), - [sym_identifier] = ACTIONS(1447), - [anon_sym_SEMI] = ACTIONS(1445), - [anon_sym_macro_rules_BANG] = ACTIONS(1445), - [anon_sym_LPAREN] = ACTIONS(1445), - [anon_sym_LBRACK] = ACTIONS(1445), - [anon_sym_LBRACE] = ACTIONS(1445), - [anon_sym_RBRACE] = ACTIONS(1445), - [anon_sym_PLUS] = ACTIONS(1447), - [anon_sym_STAR] = ACTIONS(1447), - [anon_sym_QMARK] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1447), - [anon_sym_i8] = ACTIONS(1447), - [anon_sym_u16] = ACTIONS(1447), - [anon_sym_i16] = ACTIONS(1447), - [anon_sym_u32] = ACTIONS(1447), - [anon_sym_i32] = ACTIONS(1447), - [anon_sym_u64] = ACTIONS(1447), - [anon_sym_i64] = ACTIONS(1447), - [anon_sym_u128] = ACTIONS(1447), - [anon_sym_i128] = ACTIONS(1447), - [anon_sym_isize] = ACTIONS(1447), - [anon_sym_usize] = ACTIONS(1447), - [anon_sym_f32] = ACTIONS(1447), - [anon_sym_f64] = ACTIONS(1447), - [anon_sym_bool] = ACTIONS(1447), - [anon_sym_str] = ACTIONS(1447), - [anon_sym_char] = ACTIONS(1447), - [anon_sym_DASH] = ACTIONS(1447), - [anon_sym_SLASH] = ACTIONS(1447), - [anon_sym_PERCENT] = ACTIONS(1447), - [anon_sym_CARET] = ACTIONS(1447), - [anon_sym_BANG] = ACTIONS(1447), - [anon_sym_AMP] = ACTIONS(1447), - [anon_sym_PIPE] = ACTIONS(1447), - [anon_sym_AMP_AMP] = ACTIONS(1445), - [anon_sym_PIPE_PIPE] = ACTIONS(1445), - [anon_sym_LT_LT] = ACTIONS(1447), - [anon_sym_GT_GT] = ACTIONS(1447), - [anon_sym_PLUS_EQ] = ACTIONS(1445), - [anon_sym_DASH_EQ] = ACTIONS(1445), - [anon_sym_STAR_EQ] = ACTIONS(1445), - [anon_sym_SLASH_EQ] = ACTIONS(1445), - [anon_sym_PERCENT_EQ] = ACTIONS(1445), - [anon_sym_CARET_EQ] = ACTIONS(1445), - [anon_sym_AMP_EQ] = ACTIONS(1445), - [anon_sym_PIPE_EQ] = ACTIONS(1445), - [anon_sym_LT_LT_EQ] = ACTIONS(1445), - [anon_sym_GT_GT_EQ] = ACTIONS(1445), - [anon_sym_EQ] = ACTIONS(1447), - [anon_sym_EQ_EQ] = ACTIONS(1445), - [anon_sym_BANG_EQ] = ACTIONS(1445), - [anon_sym_GT] = ACTIONS(1447), - [anon_sym_LT] = ACTIONS(1447), - [anon_sym_GT_EQ] = ACTIONS(1445), - [anon_sym_LT_EQ] = ACTIONS(1445), - [anon_sym_DOT] = ACTIONS(1447), - [anon_sym_DOT_DOT] = ACTIONS(1447), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1445), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1445), - [anon_sym_COLON_COLON] = ACTIONS(1445), - [anon_sym_POUND] = ACTIONS(1445), - [anon_sym_SQUOTE] = ACTIONS(1447), - [anon_sym_as] = ACTIONS(1447), - [anon_sym_async] = ACTIONS(1447), - [anon_sym_break] = ACTIONS(1447), - [anon_sym_const] = ACTIONS(1447), - [anon_sym_continue] = ACTIONS(1447), - [anon_sym_default] = ACTIONS(1447), - [anon_sym_enum] = ACTIONS(1447), - [anon_sym_fn] = ACTIONS(1447), - [anon_sym_for] = ACTIONS(1447), - [anon_sym_gen] = ACTIONS(1447), - [anon_sym_if] = ACTIONS(1447), - [anon_sym_impl] = ACTIONS(1447), - [anon_sym_let] = ACTIONS(1447), - [anon_sym_loop] = ACTIONS(1447), - [anon_sym_match] = ACTIONS(1447), - [anon_sym_mod] = ACTIONS(1447), - [anon_sym_pub] = ACTIONS(1447), - [anon_sym_return] = ACTIONS(1447), - [anon_sym_static] = ACTIONS(1447), - [anon_sym_struct] = ACTIONS(1447), - [anon_sym_trait] = ACTIONS(1447), - [anon_sym_type] = ACTIONS(1447), - [anon_sym_union] = ACTIONS(1447), - [anon_sym_unsafe] = ACTIONS(1447), - [anon_sym_use] = ACTIONS(1447), - [anon_sym_while] = ACTIONS(1447), - [anon_sym_extern] = ACTIONS(1447), - [anon_sym_else] = ACTIONS(1447), - [anon_sym_yield] = ACTIONS(1447), - [anon_sym_move] = ACTIONS(1447), - [anon_sym_try] = ACTIONS(1447), - [sym_integer_literal] = ACTIONS(1445), - [aux_sym_string_literal_token1] = ACTIONS(1445), - [sym_char_literal] = ACTIONS(1445), - [anon_sym_true] = ACTIONS(1447), - [anon_sym_false] = ACTIONS(1447), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1447), - [sym_super] = ACTIONS(1447), - [sym_crate] = ACTIONS(1447), - [sym_metavariable] = ACTIONS(1445), - [sym__raw_string_literal_start] = ACTIONS(1445), - [sym_float_literal] = ACTIONS(1445), + [sym_identifier] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_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(398)] = { + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3114), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1639), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1631), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(244), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), [sym_line_comment] = STATE(398), [sym_block_comment] = STATE(398), - [ts_builtin_sym_end] = ACTIONS(1449), - [sym_identifier] = ACTIONS(1451), - [anon_sym_SEMI] = ACTIONS(1449), - [anon_sym_macro_rules_BANG] = ACTIONS(1449), - [anon_sym_LPAREN] = ACTIONS(1449), - [anon_sym_LBRACK] = ACTIONS(1449), - [anon_sym_LBRACE] = ACTIONS(1449), - [anon_sym_RBRACE] = ACTIONS(1449), - [anon_sym_PLUS] = ACTIONS(1451), - [anon_sym_STAR] = ACTIONS(1451), - [anon_sym_QMARK] = ACTIONS(1449), - [anon_sym_u8] = ACTIONS(1451), - [anon_sym_i8] = ACTIONS(1451), - [anon_sym_u16] = ACTIONS(1451), - [anon_sym_i16] = ACTIONS(1451), - [anon_sym_u32] = ACTIONS(1451), - [anon_sym_i32] = ACTIONS(1451), - [anon_sym_u64] = ACTIONS(1451), - [anon_sym_i64] = ACTIONS(1451), - [anon_sym_u128] = ACTIONS(1451), - [anon_sym_i128] = ACTIONS(1451), - [anon_sym_isize] = ACTIONS(1451), - [anon_sym_usize] = ACTIONS(1451), - [anon_sym_f32] = ACTIONS(1451), - [anon_sym_f64] = ACTIONS(1451), - [anon_sym_bool] = ACTIONS(1451), - [anon_sym_str] = ACTIONS(1451), - [anon_sym_char] = ACTIONS(1451), - [anon_sym_DASH] = ACTIONS(1451), - [anon_sym_SLASH] = ACTIONS(1451), - [anon_sym_PERCENT] = ACTIONS(1451), - [anon_sym_CARET] = ACTIONS(1451), - [anon_sym_BANG] = ACTIONS(1451), - [anon_sym_AMP] = ACTIONS(1451), - [anon_sym_PIPE] = ACTIONS(1451), - [anon_sym_AMP_AMP] = ACTIONS(1449), - [anon_sym_PIPE_PIPE] = ACTIONS(1449), - [anon_sym_LT_LT] = ACTIONS(1451), - [anon_sym_GT_GT] = ACTIONS(1451), - [anon_sym_PLUS_EQ] = ACTIONS(1449), - [anon_sym_DASH_EQ] = ACTIONS(1449), - [anon_sym_STAR_EQ] = ACTIONS(1449), - [anon_sym_SLASH_EQ] = ACTIONS(1449), - [anon_sym_PERCENT_EQ] = ACTIONS(1449), - [anon_sym_CARET_EQ] = ACTIONS(1449), - [anon_sym_AMP_EQ] = ACTIONS(1449), - [anon_sym_PIPE_EQ] = ACTIONS(1449), - [anon_sym_LT_LT_EQ] = ACTIONS(1449), - [anon_sym_GT_GT_EQ] = ACTIONS(1449), - [anon_sym_EQ] = ACTIONS(1451), - [anon_sym_EQ_EQ] = ACTIONS(1449), - [anon_sym_BANG_EQ] = ACTIONS(1449), - [anon_sym_GT] = ACTIONS(1451), - [anon_sym_LT] = ACTIONS(1451), - [anon_sym_GT_EQ] = ACTIONS(1449), - [anon_sym_LT_EQ] = ACTIONS(1449), - [anon_sym_DOT] = ACTIONS(1451), - [anon_sym_DOT_DOT] = ACTIONS(1451), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1449), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1449), - [anon_sym_COLON_COLON] = ACTIONS(1449), - [anon_sym_POUND] = ACTIONS(1449), - [anon_sym_SQUOTE] = ACTIONS(1451), - [anon_sym_as] = ACTIONS(1451), - [anon_sym_async] = ACTIONS(1451), - [anon_sym_break] = ACTIONS(1451), - [anon_sym_const] = ACTIONS(1451), - [anon_sym_continue] = ACTIONS(1451), - [anon_sym_default] = ACTIONS(1451), - [anon_sym_enum] = ACTIONS(1451), - [anon_sym_fn] = ACTIONS(1451), - [anon_sym_for] = ACTIONS(1451), - [anon_sym_gen] = ACTIONS(1451), - [anon_sym_if] = ACTIONS(1451), - [anon_sym_impl] = ACTIONS(1451), - [anon_sym_let] = ACTIONS(1451), - [anon_sym_loop] = ACTIONS(1451), - [anon_sym_match] = ACTIONS(1451), - [anon_sym_mod] = ACTIONS(1451), - [anon_sym_pub] = ACTIONS(1451), - [anon_sym_return] = ACTIONS(1451), - [anon_sym_static] = ACTIONS(1451), - [anon_sym_struct] = ACTIONS(1451), - [anon_sym_trait] = ACTIONS(1451), - [anon_sym_type] = ACTIONS(1451), - [anon_sym_union] = ACTIONS(1451), - [anon_sym_unsafe] = ACTIONS(1451), - [anon_sym_use] = ACTIONS(1451), - [anon_sym_while] = ACTIONS(1451), - [anon_sym_extern] = ACTIONS(1451), - [anon_sym_else] = ACTIONS(1451), - [anon_sym_yield] = ACTIONS(1451), - [anon_sym_move] = ACTIONS(1451), - [anon_sym_try] = ACTIONS(1451), - [sym_integer_literal] = ACTIONS(1449), - [aux_sym_string_literal_token1] = ACTIONS(1449), - [sym_char_literal] = ACTIONS(1449), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1451), - [sym_super] = ACTIONS(1451), - [sym_crate] = ACTIONS(1451), - [sym_metavariable] = ACTIONS(1449), - [sym__raw_string_literal_start] = ACTIONS(1449), - [sym_float_literal] = ACTIONS(1449), + [sym_identifier] = ACTIONS(470), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_STAR] = ACTIONS(910), + [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(910), + [anon_sym_BANG] = ACTIONS(910), + [anon_sym_AMP] = ACTIONS(912), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(914), + [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(512), + [anon_sym_break] = ACTIONS(514), + [anon_sym_const] = ACTIONS(358), + [anon_sym_continue] = ACTIONS(516), + [anon_sym_default] = ACTIONS(482), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(518), + [anon_sym_if] = ACTIONS(366), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(520), + [anon_sym_static] = ACTIONS(522), + [anon_sym_union] = ACTIONS(482), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_yield] = ACTIONS(524), + [anon_sym_move] = ACTIONS(526), + [anon_sym_try] = ACTIONS(378), + [sym_integer_literal] = ACTIONS(99), + [aux_sym_string_literal_token1] = ACTIONS(101), + [sym_char_literal] = ACTIONS(99), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(494), + [sym_super] = ACTIONS(496), + [sym_crate] = ACTIONS(496), + [sym_metavariable] = ACTIONS(498), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), }, [STATE(399)] = { + [sym_bracketed_type] = STATE(3607), + [sym_generic_function] = STATE(1471), + [sym_generic_type_with_turbofish] = STATE(3031), + [sym__expression_except_range] = STATE(1441), + [sym__expression] = STATE(1977), + [sym_macro_invocation] = STATE(1526), + [sym_scoped_identifier] = STATE(1491), + [sym_scoped_type_identifier_in_expression_position] = STATE(3280), + [sym_range_expression] = STATE(1493), + [sym_unary_expression] = STATE(1471), + [sym_try_expression] = STATE(1471), + [sym_reference_expression] = STATE(1471), + [sym_binary_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1471), + [sym_compound_assignment_expr] = STATE(1471), + [sym_type_cast_expression] = STATE(1471), + [sym_return_expression] = STATE(1471), + [sym_yield_expression] = STATE(1471), + [sym_call_expression] = STATE(1471), + [sym_array_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_tuple_expression] = STATE(1471), + [sym_unit_expression] = STATE(1471), + [sym_struct_expression] = STATE(1471), + [sym_if_expression] = STATE(1471), + [sym_match_expression] = STATE(1471), + [sym_while_expression] = STATE(1471), + [sym_loop_expression] = STATE(1471), + [sym_for_expression] = STATE(1471), + [sym_const_block] = STATE(1471), + [sym_closure_expression] = STATE(1471), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1471), + [sym_continue_expression] = STATE(1471), + [sym_index_expression] = STATE(1471), + [sym_await_expression] = STATE(1471), + [sym_field_expression] = STATE(1438), + [sym_unsafe_block] = STATE(1471), + [sym_async_block] = STATE(1471), + [sym_gen_block] = STATE(1471), + [sym_try_block] = STATE(1471), + [sym_block] = STATE(1471), + [sym__literal] = STATE(1471), + [sym_string_literal] = STATE(1447), + [sym_raw_string_literal] = STATE(1447), + [sym_boolean_literal] = STATE(1447), [sym_line_comment] = STATE(399), [sym_block_comment] = STATE(399), - [ts_builtin_sym_end] = ACTIONS(1453), - [sym_identifier] = ACTIONS(1455), - [anon_sym_SEMI] = ACTIONS(1457), - [anon_sym_macro_rules_BANG] = ACTIONS(1453), - [anon_sym_LPAREN] = ACTIONS(1457), - [anon_sym_LBRACK] = ACTIONS(1457), - [anon_sym_LBRACE] = ACTIONS(1453), - [anon_sym_RBRACE] = ACTIONS(1457), - [anon_sym_PLUS] = ACTIONS(1459), - [anon_sym_STAR] = ACTIONS(1459), - [anon_sym_QMARK] = ACTIONS(1457), - [anon_sym_u8] = ACTIONS(1455), - [anon_sym_i8] = ACTIONS(1455), - [anon_sym_u16] = ACTIONS(1455), - [anon_sym_i16] = ACTIONS(1455), - [anon_sym_u32] = ACTIONS(1455), - [anon_sym_i32] = ACTIONS(1455), - [anon_sym_u64] = ACTIONS(1455), - [anon_sym_i64] = ACTIONS(1455), - [anon_sym_u128] = ACTIONS(1455), - [anon_sym_i128] = ACTIONS(1455), - [anon_sym_isize] = ACTIONS(1455), - [anon_sym_usize] = ACTIONS(1455), - [anon_sym_f32] = ACTIONS(1455), - [anon_sym_f64] = ACTIONS(1455), - [anon_sym_bool] = ACTIONS(1455), - [anon_sym_str] = ACTIONS(1455), - [anon_sym_char] = ACTIONS(1455), - [anon_sym_DASH] = ACTIONS(1459), - [anon_sym_SLASH] = ACTIONS(1459), - [anon_sym_PERCENT] = ACTIONS(1459), - [anon_sym_CARET] = ACTIONS(1459), - [anon_sym_BANG] = ACTIONS(1455), - [anon_sym_AMP] = ACTIONS(1459), - [anon_sym_PIPE] = ACTIONS(1459), - [anon_sym_AMP_AMP] = ACTIONS(1457), - [anon_sym_PIPE_PIPE] = ACTIONS(1457), - [anon_sym_LT_LT] = ACTIONS(1459), - [anon_sym_GT_GT] = ACTIONS(1459), - [anon_sym_PLUS_EQ] = ACTIONS(1457), - [anon_sym_DASH_EQ] = ACTIONS(1457), - [anon_sym_STAR_EQ] = ACTIONS(1457), - [anon_sym_SLASH_EQ] = ACTIONS(1457), - [anon_sym_PERCENT_EQ] = ACTIONS(1457), - [anon_sym_CARET_EQ] = ACTIONS(1457), - [anon_sym_AMP_EQ] = ACTIONS(1457), - [anon_sym_PIPE_EQ] = ACTIONS(1457), - [anon_sym_LT_LT_EQ] = ACTIONS(1457), - [anon_sym_GT_GT_EQ] = ACTIONS(1457), - [anon_sym_EQ] = ACTIONS(1459), - [anon_sym_EQ_EQ] = ACTIONS(1457), - [anon_sym_BANG_EQ] = ACTIONS(1457), - [anon_sym_GT] = ACTIONS(1459), - [anon_sym_LT] = ACTIONS(1459), - [anon_sym_GT_EQ] = ACTIONS(1457), - [anon_sym_LT_EQ] = ACTIONS(1457), - [anon_sym_DOT] = ACTIONS(1459), - [anon_sym_DOT_DOT] = ACTIONS(1459), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1457), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1457), - [anon_sym_COLON_COLON] = ACTIONS(1453), - [anon_sym_POUND] = ACTIONS(1453), - [anon_sym_SQUOTE] = ACTIONS(1455), - [anon_sym_as] = ACTIONS(1459), - [anon_sym_async] = ACTIONS(1455), - [anon_sym_break] = ACTIONS(1455), - [anon_sym_const] = ACTIONS(1455), - [anon_sym_continue] = ACTIONS(1455), - [anon_sym_default] = ACTIONS(1455), - [anon_sym_enum] = ACTIONS(1455), - [anon_sym_fn] = ACTIONS(1455), - [anon_sym_for] = ACTIONS(1455), - [anon_sym_gen] = ACTIONS(1455), - [anon_sym_if] = ACTIONS(1455), - [anon_sym_impl] = ACTIONS(1455), - [anon_sym_let] = ACTIONS(1455), - [anon_sym_loop] = ACTIONS(1455), - [anon_sym_match] = ACTIONS(1455), - [anon_sym_mod] = ACTIONS(1455), - [anon_sym_pub] = ACTIONS(1455), - [anon_sym_return] = ACTIONS(1455), - [anon_sym_static] = ACTIONS(1455), - [anon_sym_struct] = ACTIONS(1455), - [anon_sym_trait] = ACTIONS(1455), - [anon_sym_type] = ACTIONS(1455), - [anon_sym_union] = ACTIONS(1455), - [anon_sym_unsafe] = ACTIONS(1455), - [anon_sym_use] = ACTIONS(1455), - [anon_sym_while] = ACTIONS(1455), - [anon_sym_extern] = ACTIONS(1455), - [anon_sym_yield] = ACTIONS(1455), - [anon_sym_move] = ACTIONS(1455), - [anon_sym_try] = ACTIONS(1455), - [sym_integer_literal] = ACTIONS(1453), - [aux_sym_string_literal_token1] = ACTIONS(1453), - [sym_char_literal] = ACTIONS(1453), - [anon_sym_true] = ACTIONS(1455), - [anon_sym_false] = ACTIONS(1455), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1455), - [sym_super] = ACTIONS(1455), - [sym_crate] = ACTIONS(1455), - [sym_metavariable] = ACTIONS(1453), - [sym__raw_string_literal_start] = ACTIONS(1453), - [sym_float_literal] = ACTIONS(1453), + [sym_identifier] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_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(400)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_self_parameter] = STATE(3009), - [sym_variadic_parameter] = STATE(3009), - [sym_parameter] = STATE(3009), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2695), - [sym_bracketed_type] = STATE(3691), - [sym_lifetime] = STATE(3008), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3333), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(2540), - [sym_scoped_identifier] = STATE(2311), - [sym_scoped_type_identifier] = STATE(2186), - [sym_const_block] = STATE(2221), - [sym__pattern] = STATE(3210), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), + [sym_bracketed_type] = STATE(3702), + [sym_generic_function] = STATE(1815), + [sym_generic_type_with_turbofish] = STATE(2969), + [sym__expression_except_range] = STATE(1694), + [sym__expression] = STATE(1886), + [sym_macro_invocation] = STATE(1832), + [sym_scoped_identifier] = STATE(1654), + [sym_scoped_type_identifier_in_expression_position] = STATE(3227), + [sym_range_expression] = STATE(1820), + [sym_unary_expression] = STATE(1815), + [sym_try_expression] = STATE(1815), + [sym_reference_expression] = STATE(1815), + [sym_binary_expression] = STATE(1815), + [sym_assignment_expression] = STATE(1815), + [sym_compound_assignment_expr] = STATE(1815), + [sym_type_cast_expression] = STATE(1815), + [sym_return_expression] = STATE(1815), + [sym_yield_expression] = STATE(1815), + [sym_call_expression] = STATE(1815), + [sym_array_expression] = STATE(1815), + [sym_parenthesized_expression] = STATE(1815), + [sym_tuple_expression] = STATE(1815), + [sym_unit_expression] = STATE(1815), + [sym_struct_expression] = STATE(1815), + [sym_if_expression] = STATE(1815), + [sym_match_expression] = STATE(1815), + [sym_while_expression] = STATE(1815), + [sym_loop_expression] = STATE(1815), + [sym_for_expression] = STATE(1815), + [sym_const_block] = STATE(1815), + [sym_closure_expression] = STATE(1815), + [sym_closure_parameters] = STATE(226), + [sym_label] = STATE(3807), + [sym_break_expression] = STATE(1815), + [sym_continue_expression] = STATE(1815), + [sym_index_expression] = STATE(1815), + [sym_await_expression] = STATE(1815), + [sym_field_expression] = STATE(1695), + [sym_unsafe_block] = STATE(1815), + [sym_async_block] = STATE(1815), + [sym_gen_block] = STATE(1815), + [sym_try_block] = STATE(1815), + [sym_block] = STATE(1815), + [sym__literal] = STATE(1815), + [sym_string_literal] = STATE(1733), + [sym_raw_string_literal] = STATE(1733), + [sym_boolean_literal] = STATE(1733), [sym_line_comment] = STATE(400), [sym_block_comment] = STATE(400), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(1181), - [anon_sym_LPAREN] = ACTIONS(1183), - [anon_sym_LBRACK] = ACTIONS(1109), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1187), - [anon_sym_i8] = ACTIONS(1187), - [anon_sym_u16] = ACTIONS(1187), - [anon_sym_i16] = ACTIONS(1187), - [anon_sym_u32] = ACTIONS(1187), - [anon_sym_i32] = ACTIONS(1187), - [anon_sym_u64] = ACTIONS(1187), - [anon_sym_i64] = ACTIONS(1187), - [anon_sym_u128] = ACTIONS(1187), - [anon_sym_i128] = ACTIONS(1187), - [anon_sym_isize] = ACTIONS(1187), - [anon_sym_usize] = ACTIONS(1187), - [anon_sym_f32] = ACTIONS(1187), - [anon_sym_f64] = ACTIONS(1187), - [anon_sym_bool] = ACTIONS(1187), - [anon_sym_str] = ACTIONS(1187), - [anon_sym_char] = ACTIONS(1187), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(1189), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1461), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1129), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COLON_COLON] = ACTIONS(1195), - [anon_sym_SQUOTE] = ACTIONS(1139), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1143), - [anon_sym_default] = ACTIONS(1197), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1199), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1199), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_ref] = ACTIONS(1159), - [anon_sym_dyn] = ACTIONS(1161), - [sym_mutable_specifier] = ACTIONS(1163), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1201), - [sym_super] = ACTIONS(1203), - [sym_crate] = ACTIONS(1203), - [sym_metavariable] = ACTIONS(1205), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), + [sym_identifier] = ACTIONS(410), + [anon_sym_LPAREN] = ACTIONS(500), + [anon_sym_LBRACK] = ACTIONS(502), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_STAR] = ACTIONS(986), + [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(986), + [anon_sym_BANG] = ACTIONS(986), + [anon_sym_AMP] = ACTIONS(988), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1204), + [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(401)] = { [sym_line_comment] = STATE(401), [sym_block_comment] = STATE(401), - [ts_builtin_sym_end] = ACTIONS(1463), - [sym_identifier] = ACTIONS(1465), - [anon_sym_SEMI] = ACTIONS(1463), - [anon_sym_macro_rules_BANG] = ACTIONS(1463), - [anon_sym_LPAREN] = ACTIONS(1463), - [anon_sym_LBRACK] = ACTIONS(1463), - [anon_sym_LBRACE] = ACTIONS(1463), - [anon_sym_RBRACE] = ACTIONS(1463), - [anon_sym_PLUS] = ACTIONS(1465), - [anon_sym_STAR] = ACTIONS(1465), - [anon_sym_QMARK] = ACTIONS(1463), - [anon_sym_u8] = ACTIONS(1465), - [anon_sym_i8] = ACTIONS(1465), - [anon_sym_u16] = ACTIONS(1465), - [anon_sym_i16] = ACTIONS(1465), - [anon_sym_u32] = ACTIONS(1465), - [anon_sym_i32] = ACTIONS(1465), - [anon_sym_u64] = ACTIONS(1465), - [anon_sym_i64] = ACTIONS(1465), - [anon_sym_u128] = ACTIONS(1465), - [anon_sym_i128] = ACTIONS(1465), - [anon_sym_isize] = ACTIONS(1465), - [anon_sym_usize] = ACTIONS(1465), - [anon_sym_f32] = ACTIONS(1465), - [anon_sym_f64] = ACTIONS(1465), - [anon_sym_bool] = ACTIONS(1465), - [anon_sym_str] = ACTIONS(1465), - [anon_sym_char] = ACTIONS(1465), - [anon_sym_DASH] = ACTIONS(1465), - [anon_sym_SLASH] = ACTIONS(1465), - [anon_sym_PERCENT] = ACTIONS(1465), - [anon_sym_CARET] = ACTIONS(1465), - [anon_sym_BANG] = ACTIONS(1465), - [anon_sym_AMP] = ACTIONS(1465), - [anon_sym_PIPE] = ACTIONS(1465), - [anon_sym_AMP_AMP] = ACTIONS(1463), - [anon_sym_PIPE_PIPE] = ACTIONS(1463), - [anon_sym_LT_LT] = ACTIONS(1465), - [anon_sym_GT_GT] = ACTIONS(1465), - [anon_sym_PLUS_EQ] = ACTIONS(1463), - [anon_sym_DASH_EQ] = ACTIONS(1463), - [anon_sym_STAR_EQ] = ACTIONS(1463), - [anon_sym_SLASH_EQ] = ACTIONS(1463), - [anon_sym_PERCENT_EQ] = ACTIONS(1463), - [anon_sym_CARET_EQ] = ACTIONS(1463), - [anon_sym_AMP_EQ] = ACTIONS(1463), - [anon_sym_PIPE_EQ] = ACTIONS(1463), - [anon_sym_LT_LT_EQ] = ACTIONS(1463), - [anon_sym_GT_GT_EQ] = ACTIONS(1463), - [anon_sym_EQ] = ACTIONS(1465), - [anon_sym_EQ_EQ] = ACTIONS(1463), - [anon_sym_BANG_EQ] = ACTIONS(1463), - [anon_sym_GT] = ACTIONS(1465), - [anon_sym_LT] = ACTIONS(1465), - [anon_sym_GT_EQ] = ACTIONS(1463), - [anon_sym_LT_EQ] = ACTIONS(1463), - [anon_sym_DOT] = ACTIONS(1465), - [anon_sym_DOT_DOT] = ACTIONS(1465), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1463), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1463), - [anon_sym_COLON_COLON] = ACTIONS(1463), - [anon_sym_POUND] = ACTIONS(1463), - [anon_sym_SQUOTE] = ACTIONS(1465), - [anon_sym_as] = ACTIONS(1465), - [anon_sym_async] = ACTIONS(1465), - [anon_sym_break] = ACTIONS(1465), - [anon_sym_const] = ACTIONS(1465), - [anon_sym_continue] = ACTIONS(1465), - [anon_sym_default] = ACTIONS(1465), - [anon_sym_enum] = ACTIONS(1465), - [anon_sym_fn] = ACTIONS(1465), - [anon_sym_for] = ACTIONS(1465), - [anon_sym_gen] = ACTIONS(1465), - [anon_sym_if] = ACTIONS(1465), - [anon_sym_impl] = ACTIONS(1465), - [anon_sym_let] = ACTIONS(1465), - [anon_sym_loop] = ACTIONS(1465), - [anon_sym_match] = ACTIONS(1465), - [anon_sym_mod] = ACTIONS(1465), - [anon_sym_pub] = ACTIONS(1465), - [anon_sym_return] = ACTIONS(1465), - [anon_sym_static] = ACTIONS(1465), - [anon_sym_struct] = ACTIONS(1465), - [anon_sym_trait] = ACTIONS(1465), - [anon_sym_type] = ACTIONS(1465), - [anon_sym_union] = ACTIONS(1465), - [anon_sym_unsafe] = ACTIONS(1465), - [anon_sym_use] = ACTIONS(1465), - [anon_sym_while] = ACTIONS(1465), - [anon_sym_extern] = ACTIONS(1465), - [anon_sym_yield] = ACTIONS(1465), - [anon_sym_move] = ACTIONS(1465), - [anon_sym_try] = ACTIONS(1465), - [sym_integer_literal] = ACTIONS(1463), - [aux_sym_string_literal_token1] = ACTIONS(1463), - [sym_char_literal] = ACTIONS(1463), - [anon_sym_true] = ACTIONS(1465), - [anon_sym_false] = ACTIONS(1465), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1465), - [sym_super] = ACTIONS(1465), - [sym_crate] = ACTIONS(1465), - [sym_metavariable] = ACTIONS(1463), - [sym__raw_string_literal_start] = ACTIONS(1463), - [sym_float_literal] = ACTIONS(1463), + [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(402)] = { + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_self_parameter] = STATE(3058), + [sym_variadic_parameter] = STATE(3058), + [sym_parameter] = STATE(3058), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(2902), + [sym_bracketed_type] = STATE(3726), + [sym_lifetime] = STATE(3173), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3316), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2601), + [sym_scoped_identifier] = STATE(2336), + [sym_scoped_type_identifier] = STATE(2238), + [sym_const_block] = STATE(2197), + [sym__pattern] = STATE(3441), + [sym_generic_pattern] = STATE(2197), + [sym_tuple_pattern] = STATE(2197), + [sym_slice_pattern] = STATE(2197), + [sym_tuple_struct_pattern] = STATE(2197), + [sym_struct_pattern] = STATE(2197), + [sym_remaining_field_pattern] = STATE(2197), + [sym_mut_pattern] = STATE(2197), + [sym_range_pattern] = STATE(2197), + [sym_ref_pattern] = STATE(2197), + [sym_captured_pattern] = STATE(2197), + [sym_reference_pattern] = STATE(2197), + [sym_or_pattern] = STATE(2197), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2129), + [sym_string_literal] = STATE(2129), + [sym_raw_string_literal] = STATE(2129), + [sym_boolean_literal] = STATE(2129), [sym_line_comment] = STATE(402), [sym_block_comment] = STATE(402), - [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), + [sym_identifier] = ACTIONS(1130), + [anon_sym_LPAREN] = ACTIONS(1132), + [anon_sym_LBRACK] = ACTIONS(1056), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1136), + [anon_sym_i8] = ACTIONS(1136), + [anon_sym_u16] = ACTIONS(1136), + [anon_sym_i16] = ACTIONS(1136), + [anon_sym_u32] = ACTIONS(1136), + [anon_sym_i32] = ACTIONS(1136), + [anon_sym_u64] = ACTIONS(1136), + [anon_sym_i64] = ACTIONS(1136), + [anon_sym_u128] = ACTIONS(1136), + [anon_sym_i128] = ACTIONS(1136), + [anon_sym_isize] = ACTIONS(1136), + [anon_sym_usize] = ACTIONS(1136), + [anon_sym_f32] = ACTIONS(1136), + [anon_sym_f64] = ACTIONS(1136), + [anon_sym_bool] = ACTIONS(1136), + [anon_sym_str] = ACTIONS(1136), + [anon_sym_char] = ACTIONS(1136), + [anon_sym_DASH] = ACTIONS(1064), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1138), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1462), + [anon_sym_DOT_DOT] = ACTIONS(1074), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1076), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1078), + [anon_sym_COLON_COLON] = ACTIONS(1144), + [anon_sym_SQUOTE] = ACTIONS(1086), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1146), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1148), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1148), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_ref] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1108), + [sym_mutable_specifier] = ACTIONS(1110), + [sym_integer_literal] = ACTIONS(1112), + [aux_sym_string_literal_token1] = ACTIONS(1114), + [sym_char_literal] = ACTIONS(1112), + [anon_sym_true] = ACTIONS(1116), + [anon_sym_false] = ACTIONS(1116), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1150), + [sym_super] = ACTIONS(1152), + [sym_crate] = ACTIONS(1152), + [sym_metavariable] = ACTIONS(1154), + [sym__raw_string_literal_start] = ACTIONS(1124), + [sym_float_literal] = ACTIONS(1112), }, [STATE(403)] = { [sym_line_comment] = STATE(403), [sym_block_comment] = STATE(403), - [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(1464), + [sym_identifier] = ACTIONS(1466), + [anon_sym_SEMI] = ACTIONS(1464), + [anon_sym_macro_rules_BANG] = ACTIONS(1464), + [anon_sym_LPAREN] = ACTIONS(1464), + [anon_sym_LBRACK] = ACTIONS(1464), + [anon_sym_LBRACE] = ACTIONS(1464), + [anon_sym_RBRACE] = ACTIONS(1464), + [anon_sym_PLUS] = ACTIONS(1466), + [anon_sym_STAR] = ACTIONS(1466), + [anon_sym_QMARK] = ACTIONS(1464), + [anon_sym_u8] = ACTIONS(1466), + [anon_sym_i8] = ACTIONS(1466), + [anon_sym_u16] = ACTIONS(1466), + [anon_sym_i16] = ACTIONS(1466), + [anon_sym_u32] = ACTIONS(1466), + [anon_sym_i32] = ACTIONS(1466), + [anon_sym_u64] = ACTIONS(1466), + [anon_sym_i64] = ACTIONS(1466), + [anon_sym_u128] = ACTIONS(1466), + [anon_sym_i128] = ACTIONS(1466), + [anon_sym_isize] = ACTIONS(1466), + [anon_sym_usize] = ACTIONS(1466), + [anon_sym_f32] = ACTIONS(1466), + [anon_sym_f64] = ACTIONS(1466), + [anon_sym_bool] = ACTIONS(1466), + [anon_sym_str] = ACTIONS(1466), + [anon_sym_char] = ACTIONS(1466), + [anon_sym_DASH] = ACTIONS(1466), + [anon_sym_SLASH] = ACTIONS(1466), + [anon_sym_PERCENT] = ACTIONS(1466), + [anon_sym_CARET] = ACTIONS(1466), + [anon_sym_BANG] = ACTIONS(1466), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_PIPE] = ACTIONS(1466), + [anon_sym_AMP_AMP] = ACTIONS(1464), + [anon_sym_PIPE_PIPE] = ACTIONS(1464), + [anon_sym_LT_LT] = ACTIONS(1466), + [anon_sym_GT_GT] = ACTIONS(1466), + [anon_sym_PLUS_EQ] = ACTIONS(1464), + [anon_sym_DASH_EQ] = ACTIONS(1464), + [anon_sym_STAR_EQ] = ACTIONS(1464), + [anon_sym_SLASH_EQ] = ACTIONS(1464), + [anon_sym_PERCENT_EQ] = ACTIONS(1464), + [anon_sym_CARET_EQ] = ACTIONS(1464), + [anon_sym_AMP_EQ] = ACTIONS(1464), + [anon_sym_PIPE_EQ] = ACTIONS(1464), + [anon_sym_LT_LT_EQ] = ACTIONS(1464), + [anon_sym_GT_GT_EQ] = ACTIONS(1464), + [anon_sym_EQ] = ACTIONS(1466), + [anon_sym_EQ_EQ] = ACTIONS(1464), + [anon_sym_BANG_EQ] = ACTIONS(1464), + [anon_sym_GT] = ACTIONS(1466), + [anon_sym_LT] = ACTIONS(1466), + [anon_sym_GT_EQ] = ACTIONS(1464), + [anon_sym_LT_EQ] = ACTIONS(1464), + [anon_sym_DOT] = ACTIONS(1466), + [anon_sym_DOT_DOT] = ACTIONS(1466), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1464), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1464), + [anon_sym_COLON_COLON] = ACTIONS(1464), + [anon_sym_POUND] = ACTIONS(1464), + [anon_sym_SQUOTE] = ACTIONS(1466), + [anon_sym_as] = ACTIONS(1466), + [anon_sym_async] = ACTIONS(1466), + [anon_sym_break] = ACTIONS(1466), + [anon_sym_const] = ACTIONS(1466), + [anon_sym_continue] = ACTIONS(1466), + [anon_sym_default] = ACTIONS(1466), + [anon_sym_enum] = ACTIONS(1466), + [anon_sym_fn] = ACTIONS(1466), + [anon_sym_for] = ACTIONS(1466), + [anon_sym_gen] = ACTIONS(1466), + [anon_sym_if] = ACTIONS(1466), + [anon_sym_impl] = ACTIONS(1466), + [anon_sym_let] = ACTIONS(1466), + [anon_sym_loop] = ACTIONS(1466), + [anon_sym_match] = ACTIONS(1466), + [anon_sym_mod] = ACTIONS(1466), + [anon_sym_pub] = ACTIONS(1466), + [anon_sym_return] = ACTIONS(1466), + [anon_sym_static] = ACTIONS(1466), + [anon_sym_struct] = ACTIONS(1466), + [anon_sym_trait] = ACTIONS(1466), + [anon_sym_type] = ACTIONS(1466), + [anon_sym_union] = ACTIONS(1466), + [anon_sym_unsafe] = ACTIONS(1466), + [anon_sym_use] = ACTIONS(1466), + [anon_sym_while] = ACTIONS(1466), + [anon_sym_extern] = ACTIONS(1466), + [anon_sym_safe] = ACTIONS(1466), + [anon_sym_yield] = ACTIONS(1466), + [anon_sym_move] = ACTIONS(1466), + [anon_sym_try] = ACTIONS(1466), + [sym_integer_literal] = ACTIONS(1464), + [aux_sym_string_literal_token1] = ACTIONS(1464), + [sym_char_literal] = ACTIONS(1464), + [anon_sym_true] = ACTIONS(1466), + [anon_sym_false] = ACTIONS(1466), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1466), + [sym_super] = ACTIONS(1466), + [sym_crate] = ACTIONS(1466), + [sym_metavariable] = ACTIONS(1464), + [sym__raw_string_literal_start] = ACTIONS(1464), + [sym_float_literal] = ACTIONS(1464), }, [STATE(404)] = { [sym_line_comment] = STATE(404), [sym_block_comment] = STATE(404), - [ts_builtin_sym_end] = ACTIONS(1475), - [sym_identifier] = ACTIONS(1477), - [anon_sym_SEMI] = ACTIONS(1475), - [anon_sym_macro_rules_BANG] = ACTIONS(1475), - [anon_sym_LPAREN] = ACTIONS(1475), - [anon_sym_LBRACK] = ACTIONS(1475), - [anon_sym_LBRACE] = ACTIONS(1475), - [anon_sym_RBRACE] = ACTIONS(1475), - [anon_sym_PLUS] = ACTIONS(1477), - [anon_sym_STAR] = ACTIONS(1477), - [anon_sym_QMARK] = ACTIONS(1475), - [anon_sym_u8] = ACTIONS(1477), - [anon_sym_i8] = ACTIONS(1477), - [anon_sym_u16] = ACTIONS(1477), - [anon_sym_i16] = ACTIONS(1477), - [anon_sym_u32] = ACTIONS(1477), - [anon_sym_i32] = ACTIONS(1477), - [anon_sym_u64] = ACTIONS(1477), - [anon_sym_i64] = ACTIONS(1477), - [anon_sym_u128] = ACTIONS(1477), - [anon_sym_i128] = ACTIONS(1477), - [anon_sym_isize] = ACTIONS(1477), - [anon_sym_usize] = ACTIONS(1477), - [anon_sym_f32] = ACTIONS(1477), - [anon_sym_f64] = ACTIONS(1477), - [anon_sym_bool] = ACTIONS(1477), - [anon_sym_str] = ACTIONS(1477), - [anon_sym_char] = ACTIONS(1477), - [anon_sym_DASH] = ACTIONS(1477), - [anon_sym_SLASH] = ACTIONS(1477), - [anon_sym_PERCENT] = ACTIONS(1477), - [anon_sym_CARET] = ACTIONS(1477), - [anon_sym_BANG] = ACTIONS(1477), - [anon_sym_AMP] = ACTIONS(1477), - [anon_sym_PIPE] = ACTIONS(1477), - [anon_sym_AMP_AMP] = ACTIONS(1475), - [anon_sym_PIPE_PIPE] = ACTIONS(1475), - [anon_sym_LT_LT] = ACTIONS(1477), - [anon_sym_GT_GT] = ACTIONS(1477), - [anon_sym_PLUS_EQ] = ACTIONS(1475), - [anon_sym_DASH_EQ] = ACTIONS(1475), - [anon_sym_STAR_EQ] = ACTIONS(1475), - [anon_sym_SLASH_EQ] = ACTIONS(1475), - [anon_sym_PERCENT_EQ] = ACTIONS(1475), - [anon_sym_CARET_EQ] = ACTIONS(1475), - [anon_sym_AMP_EQ] = ACTIONS(1475), - [anon_sym_PIPE_EQ] = ACTIONS(1475), - [anon_sym_LT_LT_EQ] = ACTIONS(1475), - [anon_sym_GT_GT_EQ] = ACTIONS(1475), - [anon_sym_EQ] = ACTIONS(1477), - [anon_sym_EQ_EQ] = ACTIONS(1475), - [anon_sym_BANG_EQ] = ACTIONS(1475), - [anon_sym_GT] = ACTIONS(1477), - [anon_sym_LT] = ACTIONS(1477), - [anon_sym_GT_EQ] = ACTIONS(1475), - [anon_sym_LT_EQ] = ACTIONS(1475), - [anon_sym_DOT] = ACTIONS(1477), - [anon_sym_DOT_DOT] = ACTIONS(1477), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1475), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1475), - [anon_sym_COLON_COLON] = ACTIONS(1475), - [anon_sym_POUND] = ACTIONS(1475), - [anon_sym_SQUOTE] = ACTIONS(1477), - [anon_sym_as] = ACTIONS(1477), - [anon_sym_async] = ACTIONS(1477), - [anon_sym_break] = ACTIONS(1477), - [anon_sym_const] = ACTIONS(1477), - [anon_sym_continue] = ACTIONS(1477), - [anon_sym_default] = ACTIONS(1477), - [anon_sym_enum] = ACTIONS(1477), - [anon_sym_fn] = ACTIONS(1477), - [anon_sym_for] = ACTIONS(1477), - [anon_sym_gen] = ACTIONS(1477), - [anon_sym_if] = ACTIONS(1477), - [anon_sym_impl] = ACTIONS(1477), - [anon_sym_let] = ACTIONS(1477), - [anon_sym_loop] = ACTIONS(1477), - [anon_sym_match] = ACTIONS(1477), - [anon_sym_mod] = ACTIONS(1477), - [anon_sym_pub] = ACTIONS(1477), - [anon_sym_return] = ACTIONS(1477), - [anon_sym_static] = ACTIONS(1477), - [anon_sym_struct] = ACTIONS(1477), - [anon_sym_trait] = ACTIONS(1477), - [anon_sym_type] = ACTIONS(1477), - [anon_sym_union] = ACTIONS(1477), - [anon_sym_unsafe] = ACTIONS(1477), - [anon_sym_use] = ACTIONS(1477), - [anon_sym_while] = ACTIONS(1477), - [anon_sym_extern] = ACTIONS(1477), - [anon_sym_yield] = ACTIONS(1477), - [anon_sym_move] = ACTIONS(1477), - [anon_sym_try] = ACTIONS(1477), - [sym_integer_literal] = ACTIONS(1475), - [aux_sym_string_literal_token1] = ACTIONS(1475), - [sym_char_literal] = ACTIONS(1475), - [anon_sym_true] = ACTIONS(1477), - [anon_sym_false] = ACTIONS(1477), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1477), - [sym_super] = ACTIONS(1477), - [sym_crate] = ACTIONS(1477), - [sym_metavariable] = ACTIONS(1475), - [sym__raw_string_literal_start] = ACTIONS(1475), - [sym_float_literal] = ACTIONS(1475), + [ts_builtin_sym_end] = ACTIONS(1468), + [sym_identifier] = ACTIONS(1470), + [anon_sym_SEMI] = ACTIONS(1468), + [anon_sym_macro_rules_BANG] = ACTIONS(1468), + [anon_sym_LPAREN] = ACTIONS(1468), + [anon_sym_LBRACK] = ACTIONS(1468), + [anon_sym_LBRACE] = ACTIONS(1468), + [anon_sym_RBRACE] = ACTIONS(1468), + [anon_sym_PLUS] = ACTIONS(1470), + [anon_sym_STAR] = ACTIONS(1470), + [anon_sym_QMARK] = ACTIONS(1468), + [anon_sym_u8] = ACTIONS(1470), + [anon_sym_i8] = ACTIONS(1470), + [anon_sym_u16] = ACTIONS(1470), + [anon_sym_i16] = ACTIONS(1470), + [anon_sym_u32] = ACTIONS(1470), + [anon_sym_i32] = ACTIONS(1470), + [anon_sym_u64] = ACTIONS(1470), + [anon_sym_i64] = ACTIONS(1470), + [anon_sym_u128] = ACTIONS(1470), + [anon_sym_i128] = ACTIONS(1470), + [anon_sym_isize] = ACTIONS(1470), + [anon_sym_usize] = ACTIONS(1470), + [anon_sym_f32] = ACTIONS(1470), + [anon_sym_f64] = ACTIONS(1470), + [anon_sym_bool] = ACTIONS(1470), + [anon_sym_str] = ACTIONS(1470), + [anon_sym_char] = ACTIONS(1470), + [anon_sym_DASH] = ACTIONS(1470), + [anon_sym_SLASH] = ACTIONS(1470), + [anon_sym_PERCENT] = ACTIONS(1470), + [anon_sym_CARET] = ACTIONS(1470), + [anon_sym_BANG] = ACTIONS(1470), + [anon_sym_AMP] = ACTIONS(1470), + [anon_sym_PIPE] = ACTIONS(1470), + [anon_sym_AMP_AMP] = ACTIONS(1468), + [anon_sym_PIPE_PIPE] = ACTIONS(1468), + [anon_sym_LT_LT] = ACTIONS(1470), + [anon_sym_GT_GT] = ACTIONS(1470), + [anon_sym_PLUS_EQ] = ACTIONS(1468), + [anon_sym_DASH_EQ] = ACTIONS(1468), + [anon_sym_STAR_EQ] = ACTIONS(1468), + [anon_sym_SLASH_EQ] = ACTIONS(1468), + [anon_sym_PERCENT_EQ] = ACTIONS(1468), + [anon_sym_CARET_EQ] = ACTIONS(1468), + [anon_sym_AMP_EQ] = ACTIONS(1468), + [anon_sym_PIPE_EQ] = ACTIONS(1468), + [anon_sym_LT_LT_EQ] = ACTIONS(1468), + [anon_sym_GT_GT_EQ] = ACTIONS(1468), + [anon_sym_EQ] = ACTIONS(1470), + [anon_sym_EQ_EQ] = ACTIONS(1468), + [anon_sym_BANG_EQ] = ACTIONS(1468), + [anon_sym_GT] = ACTIONS(1470), + [anon_sym_LT] = ACTIONS(1470), + [anon_sym_GT_EQ] = ACTIONS(1468), + [anon_sym_LT_EQ] = ACTIONS(1468), + [anon_sym_DOT] = ACTIONS(1470), + [anon_sym_DOT_DOT] = ACTIONS(1470), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1468), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1468), + [anon_sym_COLON_COLON] = ACTIONS(1468), + [anon_sym_POUND] = ACTIONS(1468), + [anon_sym_SQUOTE] = ACTIONS(1470), + [anon_sym_as] = ACTIONS(1470), + [anon_sym_async] = ACTIONS(1470), + [anon_sym_break] = ACTIONS(1470), + [anon_sym_const] = ACTIONS(1470), + [anon_sym_continue] = ACTIONS(1470), + [anon_sym_default] = ACTIONS(1470), + [anon_sym_enum] = ACTIONS(1470), + [anon_sym_fn] = ACTIONS(1470), + [anon_sym_for] = ACTIONS(1470), + [anon_sym_gen] = ACTIONS(1470), + [anon_sym_if] = ACTIONS(1470), + [anon_sym_impl] = ACTIONS(1470), + [anon_sym_let] = ACTIONS(1470), + [anon_sym_loop] = ACTIONS(1470), + [anon_sym_match] = ACTIONS(1470), + [anon_sym_mod] = ACTIONS(1470), + [anon_sym_pub] = ACTIONS(1470), + [anon_sym_return] = ACTIONS(1470), + [anon_sym_static] = ACTIONS(1470), + [anon_sym_struct] = ACTIONS(1470), + [anon_sym_trait] = ACTIONS(1470), + [anon_sym_type] = ACTIONS(1470), + [anon_sym_union] = ACTIONS(1470), + [anon_sym_unsafe] = ACTIONS(1470), + [anon_sym_use] = ACTIONS(1470), + [anon_sym_while] = ACTIONS(1470), + [anon_sym_extern] = ACTIONS(1470), + [anon_sym_safe] = ACTIONS(1470), + [anon_sym_yield] = ACTIONS(1470), + [anon_sym_move] = ACTIONS(1470), + [anon_sym_try] = ACTIONS(1470), + [sym_integer_literal] = ACTIONS(1468), + [aux_sym_string_literal_token1] = ACTIONS(1468), + [sym_char_literal] = ACTIONS(1468), + [anon_sym_true] = ACTIONS(1470), + [anon_sym_false] = ACTIONS(1470), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1470), + [sym_super] = ACTIONS(1470), + [sym_crate] = ACTIONS(1470), + [sym_metavariable] = ACTIONS(1468), + [sym__raw_string_literal_start] = ACTIONS(1468), + [sym_float_literal] = ACTIONS(1468), }, [STATE(405)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_self_parameter] = STATE(3392), - [sym_variadic_parameter] = STATE(3392), - [sym_parameter] = STATE(3392), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(3141), - [sym_bracketed_type] = STATE(3691), - [sym_lifetime] = STATE(3008), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3333), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(2540), - [sym_scoped_identifier] = STATE(2311), - [sym_scoped_type_identifier] = STATE(2186), - [sym_const_block] = STATE(2221), - [sym__pattern] = STATE(3210), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_self_parameter] = STATE(3108), + [sym_variadic_parameter] = STATE(3108), + [sym_parameter] = STATE(3108), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(2638), + [sym_bracketed_type] = STATE(3726), + [sym_lifetime] = STATE(3173), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3316), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2601), + [sym_scoped_identifier] = STATE(2336), + [sym_scoped_type_identifier] = STATE(2238), + [sym_const_block] = STATE(2197), + [sym__pattern] = STATE(3441), + [sym_generic_pattern] = STATE(2197), + [sym_tuple_pattern] = STATE(2197), + [sym_slice_pattern] = STATE(2197), + [sym_tuple_struct_pattern] = STATE(2197), + [sym_struct_pattern] = STATE(2197), + [sym_remaining_field_pattern] = STATE(2197), + [sym_mut_pattern] = STATE(2197), + [sym_range_pattern] = STATE(2197), + [sym_ref_pattern] = STATE(2197), + [sym_captured_pattern] = STATE(2197), + [sym_reference_pattern] = STATE(2197), + [sym_or_pattern] = STATE(2197), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2129), + [sym_string_literal] = STATE(2129), + [sym_raw_string_literal] = STATE(2129), + [sym_boolean_literal] = STATE(2129), [sym_line_comment] = STATE(405), [sym_block_comment] = STATE(405), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(1181), - [anon_sym_LPAREN] = ACTIONS(1183), - [anon_sym_LBRACK] = ACTIONS(1109), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1187), - [anon_sym_i8] = ACTIONS(1187), - [anon_sym_u16] = ACTIONS(1187), - [anon_sym_i16] = ACTIONS(1187), - [anon_sym_u32] = ACTIONS(1187), - [anon_sym_i32] = ACTIONS(1187), - [anon_sym_u64] = ACTIONS(1187), - [anon_sym_i64] = ACTIONS(1187), - [anon_sym_u128] = ACTIONS(1187), - [anon_sym_i128] = ACTIONS(1187), - [anon_sym_isize] = ACTIONS(1187), - [anon_sym_usize] = ACTIONS(1187), - [anon_sym_f32] = ACTIONS(1187), - [anon_sym_f64] = ACTIONS(1187), - [anon_sym_bool] = ACTIONS(1187), - [anon_sym_str] = ACTIONS(1187), - [anon_sym_char] = ACTIONS(1187), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(1189), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1479), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1129), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COLON_COLON] = ACTIONS(1195), - [anon_sym_SQUOTE] = ACTIONS(1139), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1143), - [anon_sym_default] = ACTIONS(1197), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1199), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1199), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_ref] = ACTIONS(1159), - [anon_sym_dyn] = ACTIONS(1161), - [sym_mutable_specifier] = ACTIONS(1163), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1201), - [sym_super] = ACTIONS(1203), - [sym_crate] = ACTIONS(1203), - [sym_metavariable] = ACTIONS(1205), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), + [sym_identifier] = ACTIONS(1130), + [anon_sym_LPAREN] = ACTIONS(1132), + [anon_sym_LBRACK] = ACTIONS(1056), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1136), + [anon_sym_i8] = ACTIONS(1136), + [anon_sym_u16] = ACTIONS(1136), + [anon_sym_i16] = ACTIONS(1136), + [anon_sym_u32] = ACTIONS(1136), + [anon_sym_i32] = ACTIONS(1136), + [anon_sym_u64] = ACTIONS(1136), + [anon_sym_i64] = ACTIONS(1136), + [anon_sym_u128] = ACTIONS(1136), + [anon_sym_i128] = ACTIONS(1136), + [anon_sym_isize] = ACTIONS(1136), + [anon_sym_usize] = ACTIONS(1136), + [anon_sym_f32] = ACTIONS(1136), + [anon_sym_f64] = ACTIONS(1136), + [anon_sym_bool] = ACTIONS(1136), + [anon_sym_str] = ACTIONS(1136), + [anon_sym_char] = ACTIONS(1136), + [anon_sym_DASH] = ACTIONS(1064), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1138), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1472), + [anon_sym_DOT_DOT] = ACTIONS(1074), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1076), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1078), + [anon_sym_COLON_COLON] = ACTIONS(1144), + [anon_sym_SQUOTE] = ACTIONS(1086), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1146), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1148), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1148), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_ref] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1108), + [sym_mutable_specifier] = ACTIONS(1110), + [sym_integer_literal] = ACTIONS(1112), + [aux_sym_string_literal_token1] = ACTIONS(1114), + [sym_char_literal] = ACTIONS(1112), + [anon_sym_true] = ACTIONS(1116), + [anon_sym_false] = ACTIONS(1116), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1150), + [sym_super] = ACTIONS(1152), + [sym_crate] = ACTIONS(1152), + [sym_metavariable] = ACTIONS(1154), + [sym__raw_string_literal_start] = ACTIONS(1124), + [sym_float_literal] = ACTIONS(1112), }, [STATE(406)] = { [sym_line_comment] = STATE(406), [sym_block_comment] = STATE(406), - [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(1474), + [sym_identifier] = ACTIONS(1476), + [anon_sym_SEMI] = ACTIONS(1478), + [anon_sym_macro_rules_BANG] = ACTIONS(1474), + [anon_sym_LPAREN] = ACTIONS(1478), + [anon_sym_LBRACK] = ACTIONS(1478), + [anon_sym_LBRACE] = ACTIONS(1474), + [anon_sym_RBRACE] = ACTIONS(1478), + [anon_sym_PLUS] = ACTIONS(1480), + [anon_sym_STAR] = ACTIONS(1480), + [anon_sym_QMARK] = ACTIONS(1478), + [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(1480), + [anon_sym_SLASH] = ACTIONS(1480), + [anon_sym_PERCENT] = ACTIONS(1480), + [anon_sym_CARET] = ACTIONS(1480), + [anon_sym_BANG] = ACTIONS(1476), + [anon_sym_AMP] = ACTIONS(1480), + [anon_sym_PIPE] = ACTIONS(1480), + [anon_sym_AMP_AMP] = ACTIONS(1478), + [anon_sym_PIPE_PIPE] = ACTIONS(1478), + [anon_sym_LT_LT] = ACTIONS(1480), + [anon_sym_GT_GT] = ACTIONS(1480), + [anon_sym_PLUS_EQ] = ACTIONS(1478), + [anon_sym_DASH_EQ] = ACTIONS(1478), + [anon_sym_STAR_EQ] = ACTIONS(1478), + [anon_sym_SLASH_EQ] = ACTIONS(1478), + [anon_sym_PERCENT_EQ] = ACTIONS(1478), + [anon_sym_CARET_EQ] = ACTIONS(1478), + [anon_sym_AMP_EQ] = ACTIONS(1478), + [anon_sym_PIPE_EQ] = ACTIONS(1478), + [anon_sym_LT_LT_EQ] = ACTIONS(1478), + [anon_sym_GT_GT_EQ] = ACTIONS(1478), + [anon_sym_EQ] = ACTIONS(1480), + [anon_sym_EQ_EQ] = ACTIONS(1478), + [anon_sym_BANG_EQ] = ACTIONS(1478), + [anon_sym_GT] = ACTIONS(1480), + [anon_sym_LT] = ACTIONS(1480), + [anon_sym_GT_EQ] = ACTIONS(1478), + [anon_sym_LT_EQ] = ACTIONS(1478), + [anon_sym_DOT] = ACTIONS(1480), + [anon_sym_DOT_DOT] = ACTIONS(1480), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1478), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1478), + [anon_sym_COLON_COLON] = ACTIONS(1474), + [anon_sym_POUND] = ACTIONS(1474), + [anon_sym_SQUOTE] = ACTIONS(1476), + [anon_sym_as] = ACTIONS(1480), + [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(407)] = { [sym_line_comment] = STATE(407), [sym_block_comment] = STATE(407), - [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(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(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(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(1480), + [anon_sym_STAR] = ACTIONS(1488), + [anon_sym_QMARK] = ACTIONS(1478), + [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(1480), + [anon_sym_PERCENT] = ACTIONS(1480), + [anon_sym_CARET] = ACTIONS(1480), + [anon_sym_BANG] = ACTIONS(1488), + [anon_sym_AMP] = ACTIONS(1488), + [anon_sym_PIPE] = ACTIONS(1488), + [anon_sym_AMP_AMP] = ACTIONS(1478), + [anon_sym_PIPE_PIPE] = ACTIONS(1478), + [anon_sym_LT_LT] = ACTIONS(1480), + [anon_sym_GT_GT] = ACTIONS(1480), + [anon_sym_PLUS_EQ] = ACTIONS(1478), + [anon_sym_DASH_EQ] = ACTIONS(1478), + [anon_sym_STAR_EQ] = ACTIONS(1478), + [anon_sym_SLASH_EQ] = ACTIONS(1478), + [anon_sym_PERCENT_EQ] = ACTIONS(1478), + [anon_sym_CARET_EQ] = ACTIONS(1478), + [anon_sym_AMP_EQ] = ACTIONS(1478), + [anon_sym_PIPE_EQ] = ACTIONS(1478), + [anon_sym_LT_LT_EQ] = ACTIONS(1478), + [anon_sym_GT_GT_EQ] = ACTIONS(1478), + [anon_sym_EQ] = ACTIONS(1480), + [anon_sym_EQ_EQ] = ACTIONS(1478), + [anon_sym_BANG_EQ] = ACTIONS(1478), + [anon_sym_GT] = ACTIONS(1480), + [anon_sym_LT] = ACTIONS(1488), + [anon_sym_GT_EQ] = ACTIONS(1478), + [anon_sym_LT_EQ] = ACTIONS(1478), + [anon_sym_DOT] = ACTIONS(1480), + [anon_sym_DOT_DOT] = ACTIONS(1488), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1478), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1478), + [anon_sym_COLON_COLON] = ACTIONS(1486), + [anon_sym_POUND] = ACTIONS(1486), + [anon_sym_SQUOTE] = ACTIONS(1488), + [anon_sym_as] = ACTIONS(1480), + [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(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(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(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(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(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(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_PLUS] = ACTIONS(1503), - [anon_sym_STAR] = ACTIONS(1503), - [anon_sym_QMARK] = 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(1503), - [anon_sym_SLASH] = ACTIONS(1503), - [anon_sym_PERCENT] = ACTIONS(1503), - [anon_sym_CARET] = ACTIONS(1503), - [anon_sym_BANG] = ACTIONS(1503), - [anon_sym_AMP] = ACTIONS(1503), - [anon_sym_PIPE] = ACTIONS(1503), - [anon_sym_AMP_AMP] = ACTIONS(1501), - [anon_sym_PIPE_PIPE] = ACTIONS(1501), - [anon_sym_LT_LT] = ACTIONS(1503), - [anon_sym_GT_GT] = ACTIONS(1503), - [anon_sym_PLUS_EQ] = ACTIONS(1501), - [anon_sym_DASH_EQ] = ACTIONS(1501), - [anon_sym_STAR_EQ] = ACTIONS(1501), - [anon_sym_SLASH_EQ] = ACTIONS(1501), - [anon_sym_PERCENT_EQ] = ACTIONS(1501), - [anon_sym_CARET_EQ] = ACTIONS(1501), - [anon_sym_AMP_EQ] = ACTIONS(1501), - [anon_sym_PIPE_EQ] = ACTIONS(1501), - [anon_sym_LT_LT_EQ] = ACTIONS(1501), - [anon_sym_GT_GT_EQ] = ACTIONS(1501), - [anon_sym_EQ] = ACTIONS(1503), - [anon_sym_EQ_EQ] = ACTIONS(1501), - [anon_sym_BANG_EQ] = ACTIONS(1501), - [anon_sym_GT] = ACTIONS(1503), - [anon_sym_LT] = ACTIONS(1503), - [anon_sym_GT_EQ] = ACTIONS(1501), - [anon_sym_LT_EQ] = ACTIONS(1501), - [anon_sym_DOT] = ACTIONS(1503), - [anon_sym_DOT_DOT] = ACTIONS(1503), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1501), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1501), - [anon_sym_COLON_COLON] = ACTIONS(1501), - [anon_sym_POUND] = ACTIONS(1501), - [anon_sym_SQUOTE] = ACTIONS(1503), - [anon_sym_as] = 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(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(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(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(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(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(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(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(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(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(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(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(417)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_self_parameter] = STATE(2920), - [sym_variadic_parameter] = STATE(2920), - [sym_parameter] = STATE(2920), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2792), - [sym_bracketed_type] = STATE(3691), - [sym_lifetime] = STATE(3008), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3333), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(2540), - [sym_scoped_identifier] = STATE(2311), - [sym_scoped_type_identifier] = STATE(2186), - [sym_const_block] = STATE(2221), - [sym__pattern] = STATE(3210), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), [sym_line_comment] = STATE(417), [sym_block_comment] = STATE(417), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(1181), - [anon_sym_LPAREN] = ACTIONS(1183), - [anon_sym_LBRACK] = ACTIONS(1109), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1187), - [anon_sym_i8] = ACTIONS(1187), - [anon_sym_u16] = ACTIONS(1187), - [anon_sym_i16] = ACTIONS(1187), - [anon_sym_u32] = ACTIONS(1187), - [anon_sym_i32] = ACTIONS(1187), - [anon_sym_u64] = ACTIONS(1187), - [anon_sym_i64] = ACTIONS(1187), - [anon_sym_u128] = ACTIONS(1187), - [anon_sym_i128] = ACTIONS(1187), - [anon_sym_isize] = ACTIONS(1187), - [anon_sym_usize] = ACTIONS(1187), - [anon_sym_f32] = ACTIONS(1187), - [anon_sym_f64] = ACTIONS(1187), - [anon_sym_bool] = ACTIONS(1187), - [anon_sym_str] = ACTIONS(1187), - [anon_sym_char] = ACTIONS(1187), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(1189), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1525), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1129), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COLON_COLON] = ACTIONS(1195), - [anon_sym_SQUOTE] = ACTIONS(1139), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1143), - [anon_sym_default] = ACTIONS(1197), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1199), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1199), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_ref] = ACTIONS(1159), - [anon_sym_dyn] = ACTIONS(1161), - [sym_mutable_specifier] = ACTIONS(1163), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1201), - [sym_super] = ACTIONS(1203), - [sym_crate] = ACTIONS(1203), - [sym_metavariable] = ACTIONS(1205), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), + [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(418)] = { [sym_line_comment] = STATE(418), [sym_block_comment] = STATE(418), - [ts_builtin_sym_end] = ACTIONS(1527), - [sym_identifier] = ACTIONS(1529), - [anon_sym_SEMI] = ACTIONS(1527), - [anon_sym_macro_rules_BANG] = ACTIONS(1527), - [anon_sym_LPAREN] = ACTIONS(1527), - [anon_sym_LBRACK] = ACTIONS(1527), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_RBRACE] = ACTIONS(1527), - [anon_sym_PLUS] = ACTIONS(1529), - [anon_sym_STAR] = ACTIONS(1529), - [anon_sym_QMARK] = ACTIONS(1527), - [anon_sym_u8] = ACTIONS(1529), - [anon_sym_i8] = ACTIONS(1529), - [anon_sym_u16] = ACTIONS(1529), - [anon_sym_i16] = ACTIONS(1529), - [anon_sym_u32] = ACTIONS(1529), - [anon_sym_i32] = ACTIONS(1529), - [anon_sym_u64] = ACTIONS(1529), - [anon_sym_i64] = ACTIONS(1529), - [anon_sym_u128] = ACTIONS(1529), - [anon_sym_i128] = ACTIONS(1529), - [anon_sym_isize] = ACTIONS(1529), - [anon_sym_usize] = ACTIONS(1529), - [anon_sym_f32] = ACTIONS(1529), - [anon_sym_f64] = ACTIONS(1529), - [anon_sym_bool] = ACTIONS(1529), - [anon_sym_str] = ACTIONS(1529), - [anon_sym_char] = ACTIONS(1529), - [anon_sym_DASH] = ACTIONS(1529), - [anon_sym_SLASH] = ACTIONS(1529), - [anon_sym_PERCENT] = ACTIONS(1529), - [anon_sym_CARET] = ACTIONS(1529), - [anon_sym_BANG] = ACTIONS(1529), - [anon_sym_AMP] = ACTIONS(1529), - [anon_sym_PIPE] = ACTIONS(1529), - [anon_sym_AMP_AMP] = ACTIONS(1527), - [anon_sym_PIPE_PIPE] = ACTIONS(1527), - [anon_sym_LT_LT] = ACTIONS(1529), - [anon_sym_GT_GT] = ACTIONS(1529), - [anon_sym_PLUS_EQ] = ACTIONS(1527), - [anon_sym_DASH_EQ] = ACTIONS(1527), - [anon_sym_STAR_EQ] = ACTIONS(1527), - [anon_sym_SLASH_EQ] = ACTIONS(1527), - [anon_sym_PERCENT_EQ] = ACTIONS(1527), - [anon_sym_CARET_EQ] = ACTIONS(1527), - [anon_sym_AMP_EQ] = ACTIONS(1527), - [anon_sym_PIPE_EQ] = ACTIONS(1527), - [anon_sym_LT_LT_EQ] = ACTIONS(1527), - [anon_sym_GT_GT_EQ] = ACTIONS(1527), - [anon_sym_EQ] = ACTIONS(1529), - [anon_sym_EQ_EQ] = ACTIONS(1527), - [anon_sym_BANG_EQ] = ACTIONS(1527), - [anon_sym_GT] = ACTIONS(1529), - [anon_sym_LT] = ACTIONS(1529), - [anon_sym_GT_EQ] = ACTIONS(1527), - [anon_sym_LT_EQ] = ACTIONS(1527), - [anon_sym_DOT] = ACTIONS(1529), - [anon_sym_DOT_DOT] = ACTIONS(1529), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1527), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1527), - [anon_sym_COLON_COLON] = ACTIONS(1527), - [anon_sym_POUND] = ACTIONS(1527), - [anon_sym_SQUOTE] = ACTIONS(1529), - [anon_sym_as] = ACTIONS(1529), - [anon_sym_async] = ACTIONS(1529), - [anon_sym_break] = ACTIONS(1529), - [anon_sym_const] = ACTIONS(1529), - [anon_sym_continue] = ACTIONS(1529), - [anon_sym_default] = ACTIONS(1529), - [anon_sym_enum] = ACTIONS(1529), - [anon_sym_fn] = ACTIONS(1529), - [anon_sym_for] = ACTIONS(1529), - [anon_sym_gen] = ACTIONS(1529), - [anon_sym_if] = ACTIONS(1529), - [anon_sym_impl] = ACTIONS(1529), - [anon_sym_let] = ACTIONS(1529), - [anon_sym_loop] = ACTIONS(1529), - [anon_sym_match] = ACTIONS(1529), - [anon_sym_mod] = ACTIONS(1529), - [anon_sym_pub] = ACTIONS(1529), - [anon_sym_return] = ACTIONS(1529), - [anon_sym_static] = ACTIONS(1529), - [anon_sym_struct] = ACTIONS(1529), - [anon_sym_trait] = ACTIONS(1529), - [anon_sym_type] = ACTIONS(1529), - [anon_sym_union] = ACTIONS(1529), - [anon_sym_unsafe] = ACTIONS(1529), - [anon_sym_use] = ACTIONS(1529), - [anon_sym_while] = ACTIONS(1529), - [anon_sym_extern] = ACTIONS(1529), - [anon_sym_yield] = ACTIONS(1529), - [anon_sym_move] = ACTIONS(1529), - [anon_sym_try] = ACTIONS(1529), - [sym_integer_literal] = ACTIONS(1527), - [aux_sym_string_literal_token1] = ACTIONS(1527), - [sym_char_literal] = ACTIONS(1527), - [anon_sym_true] = ACTIONS(1529), - [anon_sym_false] = ACTIONS(1529), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1529), - [sym_super] = ACTIONS(1529), - [sym_crate] = ACTIONS(1529), - [sym_metavariable] = ACTIONS(1527), - [sym__raw_string_literal_start] = ACTIONS(1527), - [sym_float_literal] = ACTIONS(1527), + [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(419)] = { [sym_line_comment] = STATE(419), [sym_block_comment] = STATE(419), - [ts_builtin_sym_end] = ACTIONS(1531), - [sym_identifier] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1531), - [anon_sym_macro_rules_BANG] = ACTIONS(1531), - [anon_sym_LPAREN] = ACTIONS(1531), - [anon_sym_LBRACK] = ACTIONS(1531), - [anon_sym_LBRACE] = ACTIONS(1531), - [anon_sym_RBRACE] = ACTIONS(1531), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1533), - [anon_sym_QMARK] = ACTIONS(1531), - [anon_sym_u8] = ACTIONS(1533), - [anon_sym_i8] = ACTIONS(1533), - [anon_sym_u16] = ACTIONS(1533), - [anon_sym_i16] = ACTIONS(1533), - [anon_sym_u32] = ACTIONS(1533), - [anon_sym_i32] = ACTIONS(1533), - [anon_sym_u64] = ACTIONS(1533), - [anon_sym_i64] = ACTIONS(1533), - [anon_sym_u128] = ACTIONS(1533), - [anon_sym_i128] = ACTIONS(1533), - [anon_sym_isize] = ACTIONS(1533), - [anon_sym_usize] = ACTIONS(1533), - [anon_sym_f32] = ACTIONS(1533), - [anon_sym_f64] = ACTIONS(1533), - [anon_sym_bool] = ACTIONS(1533), - [anon_sym_str] = ACTIONS(1533), - [anon_sym_char] = ACTIONS(1533), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_SLASH] = ACTIONS(1533), - [anon_sym_PERCENT] = ACTIONS(1533), - [anon_sym_CARET] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1533), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_PIPE] = ACTIONS(1533), - [anon_sym_AMP_AMP] = ACTIONS(1531), - [anon_sym_PIPE_PIPE] = ACTIONS(1531), - [anon_sym_LT_LT] = ACTIONS(1533), - [anon_sym_GT_GT] = ACTIONS(1533), - [anon_sym_PLUS_EQ] = ACTIONS(1531), - [anon_sym_DASH_EQ] = ACTIONS(1531), - [anon_sym_STAR_EQ] = ACTIONS(1531), - [anon_sym_SLASH_EQ] = ACTIONS(1531), - [anon_sym_PERCENT_EQ] = ACTIONS(1531), - [anon_sym_CARET_EQ] = ACTIONS(1531), - [anon_sym_AMP_EQ] = ACTIONS(1531), - [anon_sym_PIPE_EQ] = ACTIONS(1531), - [anon_sym_LT_LT_EQ] = ACTIONS(1531), - [anon_sym_GT_GT_EQ] = ACTIONS(1531), - [anon_sym_EQ] = ACTIONS(1533), - [anon_sym_EQ_EQ] = ACTIONS(1531), - [anon_sym_BANG_EQ] = ACTIONS(1531), - [anon_sym_GT] = ACTIONS(1533), - [anon_sym_LT] = ACTIONS(1533), - [anon_sym_GT_EQ] = ACTIONS(1531), - [anon_sym_LT_EQ] = ACTIONS(1531), - [anon_sym_DOT] = ACTIONS(1533), - [anon_sym_DOT_DOT] = ACTIONS(1533), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1531), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1531), - [anon_sym_COLON_COLON] = ACTIONS(1531), - [anon_sym_POUND] = ACTIONS(1531), - [anon_sym_SQUOTE] = ACTIONS(1533), - [anon_sym_as] = ACTIONS(1533), - [anon_sym_async] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_default] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_fn] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_gen] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_impl] = ACTIONS(1533), - [anon_sym_let] = ACTIONS(1533), - [anon_sym_loop] = ACTIONS(1533), - [anon_sym_match] = ACTIONS(1533), - [anon_sym_mod] = ACTIONS(1533), - [anon_sym_pub] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_trait] = ACTIONS(1533), - [anon_sym_type] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_unsafe] = ACTIONS(1533), - [anon_sym_use] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym_yield] = ACTIONS(1533), - [anon_sym_move] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [sym_integer_literal] = ACTIONS(1531), - [aux_sym_string_literal_token1] = ACTIONS(1531), - [sym_char_literal] = ACTIONS(1531), - [anon_sym_true] = ACTIONS(1533), - [anon_sym_false] = ACTIONS(1533), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1533), - [sym_super] = ACTIONS(1533), - [sym_crate] = ACTIONS(1533), - [sym_metavariable] = ACTIONS(1531), - [sym__raw_string_literal_start] = ACTIONS(1531), - [sym_float_literal] = ACTIONS(1531), + [ts_builtin_sym_end] = ACTIONS(1178), + [sym_identifier] = ACTIONS(1176), + [anon_sym_SEMI] = ACTIONS(1178), + [anon_sym_macro_rules_BANG] = ACTIONS(1178), + [anon_sym_LPAREN] = ACTIONS(1178), + [anon_sym_LBRACK] = ACTIONS(1178), + [anon_sym_LBRACE] = ACTIONS(1178), + [anon_sym_RBRACE] = ACTIONS(1178), + [anon_sym_PLUS] = ACTIONS(1176), + [anon_sym_STAR] = ACTIONS(1176), + [anon_sym_QMARK] = ACTIONS(1178), + [anon_sym_u8] = ACTIONS(1176), + [anon_sym_i8] = ACTIONS(1176), + [anon_sym_u16] = ACTIONS(1176), + [anon_sym_i16] = ACTIONS(1176), + [anon_sym_u32] = ACTIONS(1176), + [anon_sym_i32] = ACTIONS(1176), + [anon_sym_u64] = ACTIONS(1176), + [anon_sym_i64] = ACTIONS(1176), + [anon_sym_u128] = ACTIONS(1176), + [anon_sym_i128] = ACTIONS(1176), + [anon_sym_isize] = ACTIONS(1176), + [anon_sym_usize] = ACTIONS(1176), + [anon_sym_f32] = ACTIONS(1176), + [anon_sym_f64] = ACTIONS(1176), + [anon_sym_bool] = ACTIONS(1176), + [anon_sym_str] = ACTIONS(1176), + [anon_sym_char] = ACTIONS(1176), + [anon_sym_DASH] = ACTIONS(1176), + [anon_sym_SLASH] = ACTIONS(1176), + [anon_sym_PERCENT] = ACTIONS(1176), + [anon_sym_CARET] = ACTIONS(1176), + [anon_sym_BANG] = ACTIONS(1176), + [anon_sym_AMP] = ACTIONS(1176), + [anon_sym_PIPE] = ACTIONS(1176), + [anon_sym_AMP_AMP] = ACTIONS(1178), + [anon_sym_PIPE_PIPE] = ACTIONS(1178), + [anon_sym_LT_LT] = ACTIONS(1176), + [anon_sym_GT_GT] = ACTIONS(1176), + [anon_sym_PLUS_EQ] = ACTIONS(1178), + [anon_sym_DASH_EQ] = ACTIONS(1178), + [anon_sym_STAR_EQ] = ACTIONS(1178), + [anon_sym_SLASH_EQ] = ACTIONS(1178), + [anon_sym_PERCENT_EQ] = ACTIONS(1178), + [anon_sym_CARET_EQ] = ACTIONS(1178), + [anon_sym_AMP_EQ] = ACTIONS(1178), + [anon_sym_PIPE_EQ] = ACTIONS(1178), + [anon_sym_LT_LT_EQ] = ACTIONS(1178), + [anon_sym_GT_GT_EQ] = ACTIONS(1178), + [anon_sym_EQ] = ACTIONS(1176), + [anon_sym_EQ_EQ] = ACTIONS(1178), + [anon_sym_BANG_EQ] = ACTIONS(1178), + [anon_sym_GT] = ACTIONS(1176), + [anon_sym_LT] = ACTIONS(1176), + [anon_sym_GT_EQ] = ACTIONS(1178), + [anon_sym_LT_EQ] = ACTIONS(1178), + [anon_sym_DOT] = ACTIONS(1176), + [anon_sym_DOT_DOT] = ACTIONS(1176), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1178), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1178), + [anon_sym_COLON_COLON] = ACTIONS(1178), + [anon_sym_POUND] = ACTIONS(1178), + [anon_sym_SQUOTE] = ACTIONS(1176), + [anon_sym_as] = ACTIONS(1176), + [anon_sym_async] = ACTIONS(1176), + [anon_sym_break] = ACTIONS(1176), + [anon_sym_const] = ACTIONS(1176), + [anon_sym_continue] = ACTIONS(1176), + [anon_sym_default] = ACTIONS(1176), + [anon_sym_enum] = ACTIONS(1176), + [anon_sym_fn] = ACTIONS(1176), + [anon_sym_for] = ACTIONS(1176), + [anon_sym_gen] = ACTIONS(1176), + [anon_sym_if] = ACTIONS(1176), + [anon_sym_impl] = ACTIONS(1176), + [anon_sym_let] = ACTIONS(1176), + [anon_sym_loop] = ACTIONS(1176), + [anon_sym_match] = ACTIONS(1176), + [anon_sym_mod] = ACTIONS(1176), + [anon_sym_pub] = ACTIONS(1176), + [anon_sym_return] = ACTIONS(1176), + [anon_sym_static] = ACTIONS(1176), + [anon_sym_struct] = ACTIONS(1176), + [anon_sym_trait] = ACTIONS(1176), + [anon_sym_type] = ACTIONS(1176), + [anon_sym_union] = ACTIONS(1176), + [anon_sym_unsafe] = ACTIONS(1176), + [anon_sym_use] = ACTIONS(1176), + [anon_sym_while] = ACTIONS(1176), + [anon_sym_extern] = ACTIONS(1176), + [anon_sym_safe] = ACTIONS(1176), + [anon_sym_yield] = ACTIONS(1176), + [anon_sym_move] = ACTIONS(1176), + [anon_sym_try] = ACTIONS(1176), + [sym_integer_literal] = ACTIONS(1178), + [aux_sym_string_literal_token1] = ACTIONS(1178), + [sym_char_literal] = ACTIONS(1178), + [anon_sym_true] = ACTIONS(1176), + [anon_sym_false] = ACTIONS(1176), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1176), + [sym_super] = ACTIONS(1176), + [sym_crate] = ACTIONS(1176), + [sym_metavariable] = ACTIONS(1178), + [sym__raw_string_literal_start] = ACTIONS(1178), + [sym_float_literal] = ACTIONS(1178), }, [STATE(420)] = { [sym_line_comment] = STATE(420), [sym_block_comment] = STATE(420), - [ts_builtin_sym_end] = ACTIONS(1535), - [sym_identifier] = ACTIONS(1537), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_macro_rules_BANG] = ACTIONS(1535), - [anon_sym_LPAREN] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1535), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_RBRACE] = ACTIONS(1535), - [anon_sym_PLUS] = ACTIONS(1459), - [anon_sym_STAR] = ACTIONS(1537), - [anon_sym_QMARK] = ACTIONS(1457), - [anon_sym_u8] = ACTIONS(1537), - [anon_sym_i8] = ACTIONS(1537), - [anon_sym_u16] = ACTIONS(1537), - [anon_sym_i16] = ACTIONS(1537), - [anon_sym_u32] = ACTIONS(1537), - [anon_sym_i32] = ACTIONS(1537), - [anon_sym_u64] = ACTIONS(1537), - [anon_sym_i64] = ACTIONS(1537), - [anon_sym_u128] = ACTIONS(1537), - [anon_sym_i128] = ACTIONS(1537), - [anon_sym_isize] = ACTIONS(1537), - [anon_sym_usize] = ACTIONS(1537), - [anon_sym_f32] = ACTIONS(1537), - [anon_sym_f64] = ACTIONS(1537), - [anon_sym_bool] = ACTIONS(1537), - [anon_sym_str] = ACTIONS(1537), - [anon_sym_char] = ACTIONS(1537), - [anon_sym_DASH] = ACTIONS(1537), - [anon_sym_SLASH] = ACTIONS(1459), - [anon_sym_PERCENT] = ACTIONS(1459), - [anon_sym_CARET] = ACTIONS(1459), - [anon_sym_BANG] = ACTIONS(1537), - [anon_sym_AMP] = ACTIONS(1537), - [anon_sym_PIPE] = ACTIONS(1537), - [anon_sym_AMP_AMP] = ACTIONS(1457), - [anon_sym_PIPE_PIPE] = ACTIONS(1457), - [anon_sym_LT_LT] = ACTIONS(1459), - [anon_sym_GT_GT] = ACTIONS(1459), - [anon_sym_PLUS_EQ] = ACTIONS(1457), - [anon_sym_DASH_EQ] = ACTIONS(1457), - [anon_sym_STAR_EQ] = ACTIONS(1457), - [anon_sym_SLASH_EQ] = ACTIONS(1457), - [anon_sym_PERCENT_EQ] = ACTIONS(1457), - [anon_sym_CARET_EQ] = ACTIONS(1457), - [anon_sym_AMP_EQ] = ACTIONS(1457), - [anon_sym_PIPE_EQ] = ACTIONS(1457), - [anon_sym_LT_LT_EQ] = ACTIONS(1457), - [anon_sym_GT_GT_EQ] = ACTIONS(1457), - [anon_sym_EQ] = ACTIONS(1459), - [anon_sym_EQ_EQ] = ACTIONS(1457), - [anon_sym_BANG_EQ] = ACTIONS(1457), - [anon_sym_GT] = ACTIONS(1459), - [anon_sym_LT] = ACTIONS(1537), - [anon_sym_GT_EQ] = ACTIONS(1457), - [anon_sym_LT_EQ] = ACTIONS(1457), - [anon_sym_DOT] = ACTIONS(1459), - [anon_sym_DOT_DOT] = ACTIONS(1537), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1457), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1457), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_POUND] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1537), - [anon_sym_as] = ACTIONS(1459), - [anon_sym_async] = ACTIONS(1537), - [anon_sym_break] = ACTIONS(1537), - [anon_sym_const] = ACTIONS(1537), - [anon_sym_continue] = ACTIONS(1537), - [anon_sym_default] = ACTIONS(1537), - [anon_sym_enum] = ACTIONS(1537), - [anon_sym_fn] = ACTIONS(1537), - [anon_sym_for] = ACTIONS(1537), - [anon_sym_gen] = ACTIONS(1537), - [anon_sym_if] = ACTIONS(1537), - [anon_sym_impl] = ACTIONS(1537), - [anon_sym_let] = ACTIONS(1537), - [anon_sym_loop] = ACTIONS(1537), - [anon_sym_match] = ACTIONS(1537), - [anon_sym_mod] = ACTIONS(1537), - [anon_sym_pub] = ACTIONS(1537), - [anon_sym_return] = ACTIONS(1537), - [anon_sym_static] = ACTIONS(1537), - [anon_sym_struct] = ACTIONS(1537), - [anon_sym_trait] = ACTIONS(1537), - [anon_sym_type] = ACTIONS(1537), - [anon_sym_union] = ACTIONS(1537), - [anon_sym_unsafe] = ACTIONS(1537), - [anon_sym_use] = ACTIONS(1537), - [anon_sym_while] = ACTIONS(1537), - [anon_sym_extern] = ACTIONS(1537), - [anon_sym_yield] = ACTIONS(1537), - [anon_sym_move] = ACTIONS(1537), - [anon_sym_try] = ACTIONS(1537), - [sym_integer_literal] = ACTIONS(1535), - [aux_sym_string_literal_token1] = ACTIONS(1535), - [sym_char_literal] = ACTIONS(1535), - [anon_sym_true] = ACTIONS(1537), - [anon_sym_false] = ACTIONS(1537), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1537), - [sym_super] = ACTIONS(1537), - [sym_crate] = ACTIONS(1537), - [sym_metavariable] = ACTIONS(1535), - [sym__raw_string_literal_start] = ACTIONS(1535), - [sym_float_literal] = ACTIONS(1535), + [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(421)] = { [sym_line_comment] = STATE(421), [sym_block_comment] = STATE(421), - [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), + [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(422)] = { [sym_line_comment] = STATE(422), [sym_block_comment] = STATE(422), - [ts_builtin_sym_end] = ACTIONS(1539), - [sym_identifier] = ACTIONS(1541), - [anon_sym_SEMI] = ACTIONS(1539), - [anon_sym_macro_rules_BANG] = ACTIONS(1539), - [anon_sym_LPAREN] = ACTIONS(1539), - [anon_sym_LBRACK] = ACTIONS(1539), - [anon_sym_LBRACE] = ACTIONS(1539), - [anon_sym_RBRACE] = ACTIONS(1539), - [anon_sym_PLUS] = ACTIONS(1541), - [anon_sym_STAR] = ACTIONS(1541), - [anon_sym_QMARK] = ACTIONS(1539), - [anon_sym_u8] = ACTIONS(1541), - [anon_sym_i8] = ACTIONS(1541), - [anon_sym_u16] = ACTIONS(1541), - [anon_sym_i16] = ACTIONS(1541), - [anon_sym_u32] = ACTIONS(1541), - [anon_sym_i32] = ACTIONS(1541), - [anon_sym_u64] = ACTIONS(1541), - [anon_sym_i64] = ACTIONS(1541), - [anon_sym_u128] = ACTIONS(1541), - [anon_sym_i128] = ACTIONS(1541), - [anon_sym_isize] = ACTIONS(1541), - [anon_sym_usize] = ACTIONS(1541), - [anon_sym_f32] = ACTIONS(1541), - [anon_sym_f64] = ACTIONS(1541), - [anon_sym_bool] = ACTIONS(1541), - [anon_sym_str] = ACTIONS(1541), - [anon_sym_char] = ACTIONS(1541), - [anon_sym_DASH] = ACTIONS(1541), - [anon_sym_SLASH] = ACTIONS(1541), - [anon_sym_PERCENT] = ACTIONS(1541), - [anon_sym_CARET] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1541), - [anon_sym_AMP] = ACTIONS(1541), - [anon_sym_PIPE] = ACTIONS(1541), - [anon_sym_AMP_AMP] = ACTIONS(1539), - [anon_sym_PIPE_PIPE] = ACTIONS(1539), - [anon_sym_LT_LT] = ACTIONS(1541), - [anon_sym_GT_GT] = ACTIONS(1541), - [anon_sym_PLUS_EQ] = ACTIONS(1539), - [anon_sym_DASH_EQ] = ACTIONS(1539), - [anon_sym_STAR_EQ] = ACTIONS(1539), - [anon_sym_SLASH_EQ] = ACTIONS(1539), - [anon_sym_PERCENT_EQ] = ACTIONS(1539), - [anon_sym_CARET_EQ] = ACTIONS(1539), - [anon_sym_AMP_EQ] = ACTIONS(1539), - [anon_sym_PIPE_EQ] = ACTIONS(1539), - [anon_sym_LT_LT_EQ] = ACTIONS(1539), - [anon_sym_GT_GT_EQ] = ACTIONS(1539), - [anon_sym_EQ] = ACTIONS(1541), - [anon_sym_EQ_EQ] = ACTIONS(1539), - [anon_sym_BANG_EQ] = ACTIONS(1539), - [anon_sym_GT] = ACTIONS(1541), - [anon_sym_LT] = ACTIONS(1541), - [anon_sym_GT_EQ] = ACTIONS(1539), - [anon_sym_LT_EQ] = ACTIONS(1539), - [anon_sym_DOT] = ACTIONS(1541), - [anon_sym_DOT_DOT] = ACTIONS(1541), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1539), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1539), - [anon_sym_COLON_COLON] = ACTIONS(1539), - [anon_sym_POUND] = ACTIONS(1539), - [anon_sym_SQUOTE] = ACTIONS(1541), - [anon_sym_as] = ACTIONS(1541), - [anon_sym_async] = ACTIONS(1541), - [anon_sym_break] = ACTIONS(1541), - [anon_sym_const] = ACTIONS(1541), - [anon_sym_continue] = ACTIONS(1541), - [anon_sym_default] = ACTIONS(1541), - [anon_sym_enum] = ACTIONS(1541), - [anon_sym_fn] = ACTIONS(1541), - [anon_sym_for] = ACTIONS(1541), - [anon_sym_gen] = ACTIONS(1541), - [anon_sym_if] = ACTIONS(1541), - [anon_sym_impl] = ACTIONS(1541), - [anon_sym_let] = ACTIONS(1541), - [anon_sym_loop] = ACTIONS(1541), - [anon_sym_match] = ACTIONS(1541), - [anon_sym_mod] = ACTIONS(1541), - [anon_sym_pub] = ACTIONS(1541), - [anon_sym_return] = ACTIONS(1541), - [anon_sym_static] = ACTIONS(1541), - [anon_sym_struct] = ACTIONS(1541), - [anon_sym_trait] = ACTIONS(1541), - [anon_sym_type] = ACTIONS(1541), - [anon_sym_union] = ACTIONS(1541), - [anon_sym_unsafe] = ACTIONS(1541), - [anon_sym_use] = ACTIONS(1541), - [anon_sym_while] = ACTIONS(1541), - [anon_sym_extern] = ACTIONS(1541), - [anon_sym_yield] = ACTIONS(1541), - [anon_sym_move] = ACTIONS(1541), - [anon_sym_try] = ACTIONS(1541), - [sym_integer_literal] = ACTIONS(1539), - [aux_sym_string_literal_token1] = ACTIONS(1539), - [sym_char_literal] = ACTIONS(1539), - [anon_sym_true] = ACTIONS(1541), - [anon_sym_false] = ACTIONS(1541), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1541), - [sym_super] = ACTIONS(1541), - [sym_crate] = ACTIONS(1541), - [sym_metavariable] = ACTIONS(1539), - [sym__raw_string_literal_start] = ACTIONS(1539), - [sym_float_literal] = ACTIONS(1539), + [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(423)] = { [sym_line_comment] = STATE(423), [sym_block_comment] = STATE(423), - [ts_builtin_sym_end] = ACTIONS(1543), - [sym_identifier] = ACTIONS(1545), - [anon_sym_SEMI] = ACTIONS(1543), - [anon_sym_macro_rules_BANG] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(1543), - [anon_sym_LBRACK] = ACTIONS(1543), - [anon_sym_LBRACE] = ACTIONS(1543), - [anon_sym_RBRACE] = ACTIONS(1543), - [anon_sym_PLUS] = ACTIONS(1545), - [anon_sym_STAR] = ACTIONS(1545), - [anon_sym_QMARK] = ACTIONS(1543), - [anon_sym_u8] = ACTIONS(1545), - [anon_sym_i8] = ACTIONS(1545), - [anon_sym_u16] = ACTIONS(1545), - [anon_sym_i16] = ACTIONS(1545), - [anon_sym_u32] = ACTIONS(1545), - [anon_sym_i32] = ACTIONS(1545), - [anon_sym_u64] = ACTIONS(1545), - [anon_sym_i64] = ACTIONS(1545), - [anon_sym_u128] = ACTIONS(1545), - [anon_sym_i128] = ACTIONS(1545), - [anon_sym_isize] = ACTIONS(1545), - [anon_sym_usize] = ACTIONS(1545), - [anon_sym_f32] = ACTIONS(1545), - [anon_sym_f64] = ACTIONS(1545), - [anon_sym_bool] = ACTIONS(1545), - [anon_sym_str] = ACTIONS(1545), - [anon_sym_char] = ACTIONS(1545), - [anon_sym_DASH] = ACTIONS(1545), - [anon_sym_SLASH] = ACTIONS(1545), - [anon_sym_PERCENT] = ACTIONS(1545), - [anon_sym_CARET] = ACTIONS(1545), - [anon_sym_BANG] = ACTIONS(1545), - [anon_sym_AMP] = ACTIONS(1545), - [anon_sym_PIPE] = ACTIONS(1545), - [anon_sym_AMP_AMP] = ACTIONS(1543), - [anon_sym_PIPE_PIPE] = ACTIONS(1543), - [anon_sym_LT_LT] = ACTIONS(1545), - [anon_sym_GT_GT] = ACTIONS(1545), - [anon_sym_PLUS_EQ] = ACTIONS(1543), - [anon_sym_DASH_EQ] = ACTIONS(1543), - [anon_sym_STAR_EQ] = ACTIONS(1543), - [anon_sym_SLASH_EQ] = ACTIONS(1543), - [anon_sym_PERCENT_EQ] = ACTIONS(1543), - [anon_sym_CARET_EQ] = ACTIONS(1543), - [anon_sym_AMP_EQ] = ACTIONS(1543), - [anon_sym_PIPE_EQ] = ACTIONS(1543), - [anon_sym_LT_LT_EQ] = ACTIONS(1543), - [anon_sym_GT_GT_EQ] = ACTIONS(1543), - [anon_sym_EQ] = ACTIONS(1545), - [anon_sym_EQ_EQ] = ACTIONS(1543), - [anon_sym_BANG_EQ] = ACTIONS(1543), - [anon_sym_GT] = ACTIONS(1545), - [anon_sym_LT] = ACTIONS(1545), - [anon_sym_GT_EQ] = ACTIONS(1543), - [anon_sym_LT_EQ] = ACTIONS(1543), - [anon_sym_DOT] = ACTIONS(1545), - [anon_sym_DOT_DOT] = ACTIONS(1545), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1543), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1543), - [anon_sym_COLON_COLON] = ACTIONS(1543), - [anon_sym_POUND] = ACTIONS(1543), - [anon_sym_SQUOTE] = ACTIONS(1545), - [anon_sym_as] = ACTIONS(1545), - [anon_sym_async] = ACTIONS(1545), - [anon_sym_break] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(1545), - [anon_sym_continue] = ACTIONS(1545), - [anon_sym_default] = ACTIONS(1545), - [anon_sym_enum] = ACTIONS(1545), - [anon_sym_fn] = ACTIONS(1545), - [anon_sym_for] = ACTIONS(1545), - [anon_sym_gen] = ACTIONS(1545), - [anon_sym_if] = ACTIONS(1545), - [anon_sym_impl] = ACTIONS(1545), - [anon_sym_let] = ACTIONS(1545), - [anon_sym_loop] = ACTIONS(1545), - [anon_sym_match] = ACTIONS(1545), - [anon_sym_mod] = ACTIONS(1545), - [anon_sym_pub] = ACTIONS(1545), - [anon_sym_return] = ACTIONS(1545), - [anon_sym_static] = ACTIONS(1545), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_trait] = ACTIONS(1545), - [anon_sym_type] = ACTIONS(1545), - [anon_sym_union] = ACTIONS(1545), - [anon_sym_unsafe] = ACTIONS(1545), - [anon_sym_use] = ACTIONS(1545), - [anon_sym_while] = ACTIONS(1545), - [anon_sym_extern] = ACTIONS(1545), - [anon_sym_yield] = ACTIONS(1545), - [anon_sym_move] = ACTIONS(1545), - [anon_sym_try] = ACTIONS(1545), - [sym_integer_literal] = ACTIONS(1543), - [aux_sym_string_literal_token1] = ACTIONS(1543), - [sym_char_literal] = ACTIONS(1543), - [anon_sym_true] = ACTIONS(1545), - [anon_sym_false] = ACTIONS(1545), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1545), - [sym_super] = ACTIONS(1545), - [sym_crate] = ACTIONS(1545), - [sym_metavariable] = ACTIONS(1543), - [sym__raw_string_literal_start] = ACTIONS(1543), - [sym_float_literal] = ACTIONS(1543), + [ts_builtin_sym_end] = ACTIONS(1538), + [sym_identifier] = ACTIONS(1540), + [anon_sym_SEMI] = ACTIONS(1538), + [anon_sym_macro_rules_BANG] = ACTIONS(1538), + [anon_sym_LPAREN] = ACTIONS(1538), + [anon_sym_LBRACK] = ACTIONS(1538), + [anon_sym_LBRACE] = ACTIONS(1538), + [anon_sym_RBRACE] = ACTIONS(1538), + [anon_sym_PLUS] = ACTIONS(1540), + [anon_sym_STAR] = ACTIONS(1540), + [anon_sym_QMARK] = ACTIONS(1538), + [anon_sym_u8] = ACTIONS(1540), + [anon_sym_i8] = ACTIONS(1540), + [anon_sym_u16] = ACTIONS(1540), + [anon_sym_i16] = ACTIONS(1540), + [anon_sym_u32] = ACTIONS(1540), + [anon_sym_i32] = ACTIONS(1540), + [anon_sym_u64] = ACTIONS(1540), + [anon_sym_i64] = ACTIONS(1540), + [anon_sym_u128] = ACTIONS(1540), + [anon_sym_i128] = ACTIONS(1540), + [anon_sym_isize] = ACTIONS(1540), + [anon_sym_usize] = ACTIONS(1540), + [anon_sym_f32] = ACTIONS(1540), + [anon_sym_f64] = ACTIONS(1540), + [anon_sym_bool] = ACTIONS(1540), + [anon_sym_str] = ACTIONS(1540), + [anon_sym_char] = ACTIONS(1540), + [anon_sym_DASH] = ACTIONS(1540), + [anon_sym_SLASH] = ACTIONS(1540), + [anon_sym_PERCENT] = ACTIONS(1540), + [anon_sym_CARET] = ACTIONS(1540), + [anon_sym_BANG] = ACTIONS(1540), + [anon_sym_AMP] = ACTIONS(1540), + [anon_sym_PIPE] = ACTIONS(1540), + [anon_sym_AMP_AMP] = ACTIONS(1538), + [anon_sym_PIPE_PIPE] = ACTIONS(1538), + [anon_sym_LT_LT] = ACTIONS(1540), + [anon_sym_GT_GT] = ACTIONS(1540), + [anon_sym_PLUS_EQ] = ACTIONS(1538), + [anon_sym_DASH_EQ] = ACTIONS(1538), + [anon_sym_STAR_EQ] = ACTIONS(1538), + [anon_sym_SLASH_EQ] = ACTIONS(1538), + [anon_sym_PERCENT_EQ] = ACTIONS(1538), + [anon_sym_CARET_EQ] = ACTIONS(1538), + [anon_sym_AMP_EQ] = ACTIONS(1538), + [anon_sym_PIPE_EQ] = ACTIONS(1538), + [anon_sym_LT_LT_EQ] = ACTIONS(1538), + [anon_sym_GT_GT_EQ] = ACTIONS(1538), + [anon_sym_EQ] = ACTIONS(1540), + [anon_sym_EQ_EQ] = ACTIONS(1538), + [anon_sym_BANG_EQ] = ACTIONS(1538), + [anon_sym_GT] = ACTIONS(1540), + [anon_sym_LT] = ACTIONS(1540), + [anon_sym_GT_EQ] = ACTIONS(1538), + [anon_sym_LT_EQ] = ACTIONS(1538), + [anon_sym_DOT] = ACTIONS(1540), + [anon_sym_DOT_DOT] = ACTIONS(1540), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1538), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1538), + [anon_sym_COLON_COLON] = ACTIONS(1538), + [anon_sym_POUND] = ACTIONS(1538), + [anon_sym_SQUOTE] = ACTIONS(1540), + [anon_sym_as] = ACTIONS(1540), + [anon_sym_async] = ACTIONS(1540), + [anon_sym_break] = ACTIONS(1540), + [anon_sym_const] = ACTIONS(1540), + [anon_sym_continue] = ACTIONS(1540), + [anon_sym_default] = ACTIONS(1540), + [anon_sym_enum] = ACTIONS(1540), + [anon_sym_fn] = ACTIONS(1540), + [anon_sym_for] = ACTIONS(1540), + [anon_sym_gen] = ACTIONS(1540), + [anon_sym_if] = ACTIONS(1540), + [anon_sym_impl] = ACTIONS(1540), + [anon_sym_let] = ACTIONS(1540), + [anon_sym_loop] = ACTIONS(1540), + [anon_sym_match] = ACTIONS(1540), + [anon_sym_mod] = ACTIONS(1540), + [anon_sym_pub] = ACTIONS(1540), + [anon_sym_return] = ACTIONS(1540), + [anon_sym_static] = ACTIONS(1540), + [anon_sym_struct] = ACTIONS(1540), + [anon_sym_trait] = ACTIONS(1540), + [anon_sym_type] = ACTIONS(1540), + [anon_sym_union] = ACTIONS(1540), + [anon_sym_unsafe] = ACTIONS(1540), + [anon_sym_use] = ACTIONS(1540), + [anon_sym_while] = ACTIONS(1540), + [anon_sym_extern] = ACTIONS(1540), + [anon_sym_safe] = ACTIONS(1540), + [anon_sym_yield] = ACTIONS(1540), + [anon_sym_move] = ACTIONS(1540), + [anon_sym_try] = ACTIONS(1540), + [sym_integer_literal] = ACTIONS(1538), + [aux_sym_string_literal_token1] = ACTIONS(1538), + [sym_char_literal] = ACTIONS(1538), + [anon_sym_true] = ACTIONS(1540), + [anon_sym_false] = ACTIONS(1540), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1540), + [sym_super] = ACTIONS(1540), + [sym_crate] = ACTIONS(1540), + [sym_metavariable] = ACTIONS(1538), + [sym__raw_string_literal_start] = ACTIONS(1538), + [sym_float_literal] = ACTIONS(1538), }, [STATE(424)] = { [sym_line_comment] = STATE(424), [sym_block_comment] = STATE(424), - [ts_builtin_sym_end] = ACTIONS(1547), - [sym_identifier] = ACTIONS(1549), - [anon_sym_SEMI] = ACTIONS(1547), - [anon_sym_macro_rules_BANG] = ACTIONS(1547), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1547), - [anon_sym_LBRACE] = ACTIONS(1547), - [anon_sym_RBRACE] = ACTIONS(1547), - [anon_sym_PLUS] = ACTIONS(1549), - [anon_sym_STAR] = ACTIONS(1549), - [anon_sym_QMARK] = ACTIONS(1547), - [anon_sym_u8] = ACTIONS(1549), - [anon_sym_i8] = ACTIONS(1549), - [anon_sym_u16] = ACTIONS(1549), - [anon_sym_i16] = ACTIONS(1549), - [anon_sym_u32] = ACTIONS(1549), - [anon_sym_i32] = ACTIONS(1549), - [anon_sym_u64] = ACTIONS(1549), - [anon_sym_i64] = ACTIONS(1549), - [anon_sym_u128] = ACTIONS(1549), - [anon_sym_i128] = ACTIONS(1549), - [anon_sym_isize] = ACTIONS(1549), - [anon_sym_usize] = ACTIONS(1549), - [anon_sym_f32] = ACTIONS(1549), - [anon_sym_f64] = ACTIONS(1549), - [anon_sym_bool] = ACTIONS(1549), - [anon_sym_str] = ACTIONS(1549), - [anon_sym_char] = ACTIONS(1549), - [anon_sym_DASH] = ACTIONS(1549), - [anon_sym_SLASH] = ACTIONS(1549), - [anon_sym_PERCENT] = ACTIONS(1549), - [anon_sym_CARET] = ACTIONS(1549), - [anon_sym_BANG] = ACTIONS(1549), - [anon_sym_AMP] = ACTIONS(1549), - [anon_sym_PIPE] = ACTIONS(1549), - [anon_sym_AMP_AMP] = ACTIONS(1547), - [anon_sym_PIPE_PIPE] = ACTIONS(1547), - [anon_sym_LT_LT] = ACTIONS(1549), - [anon_sym_GT_GT] = ACTIONS(1549), - [anon_sym_PLUS_EQ] = ACTIONS(1547), - [anon_sym_DASH_EQ] = ACTIONS(1547), - [anon_sym_STAR_EQ] = ACTIONS(1547), - [anon_sym_SLASH_EQ] = ACTIONS(1547), - [anon_sym_PERCENT_EQ] = ACTIONS(1547), - [anon_sym_CARET_EQ] = ACTIONS(1547), - [anon_sym_AMP_EQ] = ACTIONS(1547), - [anon_sym_PIPE_EQ] = ACTIONS(1547), - [anon_sym_LT_LT_EQ] = ACTIONS(1547), - [anon_sym_GT_GT_EQ] = ACTIONS(1547), - [anon_sym_EQ] = ACTIONS(1549), - [anon_sym_EQ_EQ] = ACTIONS(1547), - [anon_sym_BANG_EQ] = ACTIONS(1547), - [anon_sym_GT] = ACTIONS(1549), - [anon_sym_LT] = ACTIONS(1549), - [anon_sym_GT_EQ] = ACTIONS(1547), - [anon_sym_LT_EQ] = ACTIONS(1547), - [anon_sym_DOT] = ACTIONS(1549), - [anon_sym_DOT_DOT] = ACTIONS(1549), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1547), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1547), - [anon_sym_COLON_COLON] = ACTIONS(1547), - [anon_sym_POUND] = ACTIONS(1547), - [anon_sym_SQUOTE] = ACTIONS(1549), - [anon_sym_as] = ACTIONS(1549), - [anon_sym_async] = ACTIONS(1549), - [anon_sym_break] = ACTIONS(1549), - [anon_sym_const] = ACTIONS(1549), - [anon_sym_continue] = ACTIONS(1549), - [anon_sym_default] = ACTIONS(1549), - [anon_sym_enum] = ACTIONS(1549), - [anon_sym_fn] = ACTIONS(1549), - [anon_sym_for] = ACTIONS(1549), - [anon_sym_gen] = ACTIONS(1549), - [anon_sym_if] = ACTIONS(1549), - [anon_sym_impl] = ACTIONS(1549), - [anon_sym_let] = ACTIONS(1549), - [anon_sym_loop] = ACTIONS(1549), - [anon_sym_match] = ACTIONS(1549), - [anon_sym_mod] = ACTIONS(1549), - [anon_sym_pub] = ACTIONS(1549), - [anon_sym_return] = ACTIONS(1549), - [anon_sym_static] = ACTIONS(1549), - [anon_sym_struct] = ACTIONS(1549), - [anon_sym_trait] = ACTIONS(1549), - [anon_sym_type] = ACTIONS(1549), - [anon_sym_union] = ACTIONS(1549), - [anon_sym_unsafe] = ACTIONS(1549), - [anon_sym_use] = ACTIONS(1549), - [anon_sym_while] = ACTIONS(1549), - [anon_sym_extern] = ACTIONS(1549), - [anon_sym_yield] = ACTIONS(1549), - [anon_sym_move] = ACTIONS(1549), - [anon_sym_try] = ACTIONS(1549), - [sym_integer_literal] = ACTIONS(1547), - [aux_sym_string_literal_token1] = ACTIONS(1547), - [sym_char_literal] = ACTIONS(1547), - [anon_sym_true] = ACTIONS(1549), - [anon_sym_false] = ACTIONS(1549), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1549), - [sym_super] = ACTIONS(1549), - [sym_crate] = ACTIONS(1549), - [sym_metavariable] = ACTIONS(1547), - [sym__raw_string_literal_start] = ACTIONS(1547), - [sym_float_literal] = ACTIONS(1547), + [ts_builtin_sym_end] = ACTIONS(1542), + [sym_identifier] = ACTIONS(1544), + [anon_sym_SEMI] = ACTIONS(1542), + [anon_sym_macro_rules_BANG] = ACTIONS(1542), + [anon_sym_LPAREN] = ACTIONS(1542), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_LBRACE] = ACTIONS(1542), + [anon_sym_RBRACE] = ACTIONS(1542), + [anon_sym_PLUS] = ACTIONS(1544), + [anon_sym_STAR] = ACTIONS(1544), + [anon_sym_QMARK] = ACTIONS(1542), + [anon_sym_u8] = ACTIONS(1544), + [anon_sym_i8] = ACTIONS(1544), + [anon_sym_u16] = ACTIONS(1544), + [anon_sym_i16] = ACTIONS(1544), + [anon_sym_u32] = ACTIONS(1544), + [anon_sym_i32] = ACTIONS(1544), + [anon_sym_u64] = ACTIONS(1544), + [anon_sym_i64] = ACTIONS(1544), + [anon_sym_u128] = ACTIONS(1544), + [anon_sym_i128] = ACTIONS(1544), + [anon_sym_isize] = ACTIONS(1544), + [anon_sym_usize] = ACTIONS(1544), + [anon_sym_f32] = ACTIONS(1544), + [anon_sym_f64] = ACTIONS(1544), + [anon_sym_bool] = ACTIONS(1544), + [anon_sym_str] = ACTIONS(1544), + [anon_sym_char] = ACTIONS(1544), + [anon_sym_DASH] = ACTIONS(1544), + [anon_sym_SLASH] = ACTIONS(1544), + [anon_sym_PERCENT] = ACTIONS(1544), + [anon_sym_CARET] = ACTIONS(1544), + [anon_sym_BANG] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(1544), + [anon_sym_PIPE] = ACTIONS(1544), + [anon_sym_AMP_AMP] = ACTIONS(1542), + [anon_sym_PIPE_PIPE] = ACTIONS(1542), + [anon_sym_LT_LT] = ACTIONS(1544), + [anon_sym_GT_GT] = ACTIONS(1544), + [anon_sym_PLUS_EQ] = ACTIONS(1542), + [anon_sym_DASH_EQ] = ACTIONS(1542), + [anon_sym_STAR_EQ] = ACTIONS(1542), + [anon_sym_SLASH_EQ] = ACTIONS(1542), + [anon_sym_PERCENT_EQ] = ACTIONS(1542), + [anon_sym_CARET_EQ] = ACTIONS(1542), + [anon_sym_AMP_EQ] = ACTIONS(1542), + [anon_sym_PIPE_EQ] = ACTIONS(1542), + [anon_sym_LT_LT_EQ] = ACTIONS(1542), + [anon_sym_GT_GT_EQ] = ACTIONS(1542), + [anon_sym_EQ] = ACTIONS(1544), + [anon_sym_EQ_EQ] = ACTIONS(1542), + [anon_sym_BANG_EQ] = ACTIONS(1542), + [anon_sym_GT] = ACTIONS(1544), + [anon_sym_LT] = ACTIONS(1544), + [anon_sym_GT_EQ] = ACTIONS(1542), + [anon_sym_LT_EQ] = ACTIONS(1542), + [anon_sym_DOT] = ACTIONS(1544), + [anon_sym_DOT_DOT] = ACTIONS(1544), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1542), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1542), + [anon_sym_COLON_COLON] = ACTIONS(1542), + [anon_sym_POUND] = ACTIONS(1542), + [anon_sym_SQUOTE] = ACTIONS(1544), + [anon_sym_as] = ACTIONS(1544), + [anon_sym_async] = ACTIONS(1544), + [anon_sym_break] = ACTIONS(1544), + [anon_sym_const] = ACTIONS(1544), + [anon_sym_continue] = ACTIONS(1544), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_enum] = ACTIONS(1544), + [anon_sym_fn] = ACTIONS(1544), + [anon_sym_for] = ACTIONS(1544), + [anon_sym_gen] = ACTIONS(1544), + [anon_sym_if] = ACTIONS(1544), + [anon_sym_impl] = ACTIONS(1544), + [anon_sym_let] = ACTIONS(1544), + [anon_sym_loop] = ACTIONS(1544), + [anon_sym_match] = ACTIONS(1544), + [anon_sym_mod] = ACTIONS(1544), + [anon_sym_pub] = ACTIONS(1544), + [anon_sym_return] = ACTIONS(1544), + [anon_sym_static] = ACTIONS(1544), + [anon_sym_struct] = ACTIONS(1544), + [anon_sym_trait] = ACTIONS(1544), + [anon_sym_type] = ACTIONS(1544), + [anon_sym_union] = ACTIONS(1544), + [anon_sym_unsafe] = ACTIONS(1544), + [anon_sym_use] = ACTIONS(1544), + [anon_sym_while] = ACTIONS(1544), + [anon_sym_extern] = ACTIONS(1544), + [anon_sym_safe] = ACTIONS(1544), + [anon_sym_yield] = ACTIONS(1544), + [anon_sym_move] = ACTIONS(1544), + [anon_sym_try] = ACTIONS(1544), + [sym_integer_literal] = ACTIONS(1542), + [aux_sym_string_literal_token1] = ACTIONS(1542), + [sym_char_literal] = ACTIONS(1542), + [anon_sym_true] = ACTIONS(1544), + [anon_sym_false] = ACTIONS(1544), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1544), + [sym_super] = ACTIONS(1544), + [sym_crate] = ACTIONS(1544), + [sym_metavariable] = ACTIONS(1542), + [sym__raw_string_literal_start] = ACTIONS(1542), + [sym_float_literal] = ACTIONS(1542), }, [STATE(425)] = { [sym_line_comment] = STATE(425), [sym_block_comment] = STATE(425), - [ts_builtin_sym_end] = ACTIONS(1551), - [sym_identifier] = ACTIONS(1553), - [anon_sym_SEMI] = ACTIONS(1551), - [anon_sym_macro_rules_BANG] = ACTIONS(1551), - [anon_sym_LPAREN] = ACTIONS(1551), - [anon_sym_LBRACK] = ACTIONS(1551), - [anon_sym_LBRACE] = ACTIONS(1551), - [anon_sym_RBRACE] = ACTIONS(1551), - [anon_sym_PLUS] = ACTIONS(1553), - [anon_sym_STAR] = ACTIONS(1553), - [anon_sym_QMARK] = ACTIONS(1551), - [anon_sym_u8] = ACTIONS(1553), - [anon_sym_i8] = ACTIONS(1553), - [anon_sym_u16] = ACTIONS(1553), - [anon_sym_i16] = ACTIONS(1553), - [anon_sym_u32] = ACTIONS(1553), - [anon_sym_i32] = ACTIONS(1553), - [anon_sym_u64] = ACTIONS(1553), - [anon_sym_i64] = ACTIONS(1553), - [anon_sym_u128] = ACTIONS(1553), - [anon_sym_i128] = ACTIONS(1553), - [anon_sym_isize] = ACTIONS(1553), - [anon_sym_usize] = ACTIONS(1553), - [anon_sym_f32] = ACTIONS(1553), - [anon_sym_f64] = ACTIONS(1553), - [anon_sym_bool] = ACTIONS(1553), - [anon_sym_str] = ACTIONS(1553), - [anon_sym_char] = ACTIONS(1553), - [anon_sym_DASH] = ACTIONS(1553), - [anon_sym_SLASH] = ACTIONS(1553), - [anon_sym_PERCENT] = ACTIONS(1553), - [anon_sym_CARET] = ACTIONS(1553), - [anon_sym_BANG] = ACTIONS(1553), - [anon_sym_AMP] = ACTIONS(1553), - [anon_sym_PIPE] = ACTIONS(1553), - [anon_sym_AMP_AMP] = ACTIONS(1551), - [anon_sym_PIPE_PIPE] = ACTIONS(1551), - [anon_sym_LT_LT] = ACTIONS(1553), - [anon_sym_GT_GT] = ACTIONS(1553), - [anon_sym_PLUS_EQ] = ACTIONS(1551), - [anon_sym_DASH_EQ] = ACTIONS(1551), - [anon_sym_STAR_EQ] = ACTIONS(1551), - [anon_sym_SLASH_EQ] = ACTIONS(1551), - [anon_sym_PERCENT_EQ] = ACTIONS(1551), - [anon_sym_CARET_EQ] = ACTIONS(1551), - [anon_sym_AMP_EQ] = ACTIONS(1551), - [anon_sym_PIPE_EQ] = ACTIONS(1551), - [anon_sym_LT_LT_EQ] = ACTIONS(1551), - [anon_sym_GT_GT_EQ] = ACTIONS(1551), - [anon_sym_EQ] = ACTIONS(1553), - [anon_sym_EQ_EQ] = ACTIONS(1551), - [anon_sym_BANG_EQ] = ACTIONS(1551), - [anon_sym_GT] = ACTIONS(1553), - [anon_sym_LT] = ACTIONS(1553), - [anon_sym_GT_EQ] = ACTIONS(1551), - [anon_sym_LT_EQ] = ACTIONS(1551), - [anon_sym_DOT] = ACTIONS(1553), - [anon_sym_DOT_DOT] = ACTIONS(1553), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1551), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1551), - [anon_sym_COLON_COLON] = ACTIONS(1551), - [anon_sym_POUND] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_as] = ACTIONS(1553), - [anon_sym_async] = ACTIONS(1553), - [anon_sym_break] = ACTIONS(1553), - [anon_sym_const] = ACTIONS(1553), - [anon_sym_continue] = ACTIONS(1553), - [anon_sym_default] = ACTIONS(1553), - [anon_sym_enum] = ACTIONS(1553), - [anon_sym_fn] = ACTIONS(1553), - [anon_sym_for] = ACTIONS(1553), - [anon_sym_gen] = ACTIONS(1553), - [anon_sym_if] = ACTIONS(1553), - [anon_sym_impl] = ACTIONS(1553), - [anon_sym_let] = ACTIONS(1553), - [anon_sym_loop] = ACTIONS(1553), - [anon_sym_match] = ACTIONS(1553), - [anon_sym_mod] = ACTIONS(1553), - [anon_sym_pub] = ACTIONS(1553), - [anon_sym_return] = ACTIONS(1553), - [anon_sym_static] = ACTIONS(1553), - [anon_sym_struct] = ACTIONS(1553), - [anon_sym_trait] = ACTIONS(1553), - [anon_sym_type] = ACTIONS(1553), - [anon_sym_union] = ACTIONS(1553), - [anon_sym_unsafe] = ACTIONS(1553), - [anon_sym_use] = ACTIONS(1553), - [anon_sym_while] = ACTIONS(1553), - [anon_sym_extern] = ACTIONS(1553), - [anon_sym_yield] = ACTIONS(1553), - [anon_sym_move] = ACTIONS(1553), - [anon_sym_try] = ACTIONS(1553), - [sym_integer_literal] = ACTIONS(1551), - [aux_sym_string_literal_token1] = ACTIONS(1551), - [sym_char_literal] = ACTIONS(1551), - [anon_sym_true] = ACTIONS(1553), - [anon_sym_false] = ACTIONS(1553), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1553), - [sym_super] = ACTIONS(1553), - [sym_crate] = ACTIONS(1553), - [sym_metavariable] = ACTIONS(1551), - [sym__raw_string_literal_start] = ACTIONS(1551), - [sym_float_literal] = ACTIONS(1551), + [ts_builtin_sym_end] = ACTIONS(1546), + [sym_identifier] = ACTIONS(1548), + [anon_sym_SEMI] = ACTIONS(1546), + [anon_sym_macro_rules_BANG] = ACTIONS(1546), + [anon_sym_LPAREN] = ACTIONS(1546), + [anon_sym_LBRACK] = ACTIONS(1546), + [anon_sym_LBRACE] = ACTIONS(1546), + [anon_sym_RBRACE] = ACTIONS(1546), + [anon_sym_PLUS] = ACTIONS(1548), + [anon_sym_STAR] = ACTIONS(1548), + [anon_sym_QMARK] = ACTIONS(1546), + [anon_sym_u8] = ACTIONS(1548), + [anon_sym_i8] = ACTIONS(1548), + [anon_sym_u16] = ACTIONS(1548), + [anon_sym_i16] = ACTIONS(1548), + [anon_sym_u32] = ACTIONS(1548), + [anon_sym_i32] = ACTIONS(1548), + [anon_sym_u64] = ACTIONS(1548), + [anon_sym_i64] = ACTIONS(1548), + [anon_sym_u128] = ACTIONS(1548), + [anon_sym_i128] = ACTIONS(1548), + [anon_sym_isize] = ACTIONS(1548), + [anon_sym_usize] = ACTIONS(1548), + [anon_sym_f32] = ACTIONS(1548), + [anon_sym_f64] = ACTIONS(1548), + [anon_sym_bool] = ACTIONS(1548), + [anon_sym_str] = ACTIONS(1548), + [anon_sym_char] = ACTIONS(1548), + [anon_sym_DASH] = ACTIONS(1548), + [anon_sym_SLASH] = ACTIONS(1548), + [anon_sym_PERCENT] = ACTIONS(1548), + [anon_sym_CARET] = ACTIONS(1548), + [anon_sym_BANG] = ACTIONS(1548), + [anon_sym_AMP] = ACTIONS(1548), + [anon_sym_PIPE] = ACTIONS(1548), + [anon_sym_AMP_AMP] = ACTIONS(1546), + [anon_sym_PIPE_PIPE] = ACTIONS(1546), + [anon_sym_LT_LT] = ACTIONS(1548), + [anon_sym_GT_GT] = ACTIONS(1548), + [anon_sym_PLUS_EQ] = ACTIONS(1546), + [anon_sym_DASH_EQ] = ACTIONS(1546), + [anon_sym_STAR_EQ] = ACTIONS(1546), + [anon_sym_SLASH_EQ] = ACTIONS(1546), + [anon_sym_PERCENT_EQ] = ACTIONS(1546), + [anon_sym_CARET_EQ] = ACTIONS(1546), + [anon_sym_AMP_EQ] = ACTIONS(1546), + [anon_sym_PIPE_EQ] = ACTIONS(1546), + [anon_sym_LT_LT_EQ] = ACTIONS(1546), + [anon_sym_GT_GT_EQ] = ACTIONS(1546), + [anon_sym_EQ] = ACTIONS(1548), + [anon_sym_EQ_EQ] = ACTIONS(1546), + [anon_sym_BANG_EQ] = ACTIONS(1546), + [anon_sym_GT] = ACTIONS(1548), + [anon_sym_LT] = ACTIONS(1548), + [anon_sym_GT_EQ] = ACTIONS(1546), + [anon_sym_LT_EQ] = ACTIONS(1546), + [anon_sym_DOT] = ACTIONS(1548), + [anon_sym_DOT_DOT] = ACTIONS(1548), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1546), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1546), + [anon_sym_COLON_COLON] = ACTIONS(1546), + [anon_sym_POUND] = ACTIONS(1546), + [anon_sym_SQUOTE] = ACTIONS(1548), + [anon_sym_as] = ACTIONS(1548), + [anon_sym_async] = ACTIONS(1548), + [anon_sym_break] = ACTIONS(1548), + [anon_sym_const] = ACTIONS(1548), + [anon_sym_continue] = ACTIONS(1548), + [anon_sym_default] = ACTIONS(1548), + [anon_sym_enum] = ACTIONS(1548), + [anon_sym_fn] = ACTIONS(1548), + [anon_sym_for] = ACTIONS(1548), + [anon_sym_gen] = ACTIONS(1548), + [anon_sym_if] = ACTIONS(1548), + [anon_sym_impl] = ACTIONS(1548), + [anon_sym_let] = ACTIONS(1548), + [anon_sym_loop] = ACTIONS(1548), + [anon_sym_match] = ACTIONS(1548), + [anon_sym_mod] = ACTIONS(1548), + [anon_sym_pub] = ACTIONS(1548), + [anon_sym_return] = ACTIONS(1548), + [anon_sym_static] = ACTIONS(1548), + [anon_sym_struct] = ACTIONS(1548), + [anon_sym_trait] = ACTIONS(1548), + [anon_sym_type] = ACTIONS(1548), + [anon_sym_union] = ACTIONS(1548), + [anon_sym_unsafe] = ACTIONS(1548), + [anon_sym_use] = ACTIONS(1548), + [anon_sym_while] = ACTIONS(1548), + [anon_sym_extern] = ACTIONS(1548), + [anon_sym_safe] = ACTIONS(1548), + [anon_sym_yield] = ACTIONS(1548), + [anon_sym_move] = ACTIONS(1548), + [anon_sym_try] = ACTIONS(1548), + [sym_integer_literal] = ACTIONS(1546), + [aux_sym_string_literal_token1] = ACTIONS(1546), + [sym_char_literal] = ACTIONS(1546), + [anon_sym_true] = ACTIONS(1548), + [anon_sym_false] = ACTIONS(1548), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1548), + [sym_super] = ACTIONS(1548), + [sym_crate] = ACTIONS(1548), + [sym_metavariable] = ACTIONS(1546), + [sym__raw_string_literal_start] = ACTIONS(1546), + [sym_float_literal] = ACTIONS(1546), }, [STATE(426)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_self_parameter] = STATE(3045), - [sym_variadic_parameter] = STATE(3045), - [sym_parameter] = STATE(3045), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2848), - [sym_bracketed_type] = STATE(3691), - [sym_lifetime] = STATE(3008), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3333), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(2540), - [sym_scoped_identifier] = STATE(2311), - [sym_scoped_type_identifier] = STATE(2186), - [sym_const_block] = STATE(2221), - [sym__pattern] = STATE(3210), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_self_parameter] = STATE(3368), + [sym_variadic_parameter] = STATE(3368), + [sym_parameter] = STATE(3368), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(3154), + [sym_bracketed_type] = STATE(3726), + [sym_lifetime] = STATE(3173), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3316), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2601), + [sym_scoped_identifier] = STATE(2336), + [sym_scoped_type_identifier] = STATE(2238), + [sym_const_block] = STATE(2197), + [sym__pattern] = STATE(3441), + [sym_generic_pattern] = STATE(2197), + [sym_tuple_pattern] = STATE(2197), + [sym_slice_pattern] = STATE(2197), + [sym_tuple_struct_pattern] = STATE(2197), + [sym_struct_pattern] = STATE(2197), + [sym_remaining_field_pattern] = STATE(2197), + [sym_mut_pattern] = STATE(2197), + [sym_range_pattern] = STATE(2197), + [sym_ref_pattern] = STATE(2197), + [sym_captured_pattern] = STATE(2197), + [sym_reference_pattern] = STATE(2197), + [sym_or_pattern] = STATE(2197), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2129), + [sym_string_literal] = STATE(2129), + [sym_raw_string_literal] = STATE(2129), + [sym_boolean_literal] = STATE(2129), [sym_line_comment] = STATE(426), [sym_block_comment] = STATE(426), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(1181), - [anon_sym_LPAREN] = ACTIONS(1183), - [anon_sym_LBRACK] = ACTIONS(1109), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1187), - [anon_sym_i8] = ACTIONS(1187), - [anon_sym_u16] = ACTIONS(1187), - [anon_sym_i16] = ACTIONS(1187), - [anon_sym_u32] = ACTIONS(1187), - [anon_sym_i32] = ACTIONS(1187), - [anon_sym_u64] = ACTIONS(1187), - [anon_sym_i64] = ACTIONS(1187), - [anon_sym_u128] = ACTIONS(1187), - [anon_sym_i128] = ACTIONS(1187), - [anon_sym_isize] = ACTIONS(1187), - [anon_sym_usize] = ACTIONS(1187), - [anon_sym_f32] = ACTIONS(1187), - [anon_sym_f64] = ACTIONS(1187), - [anon_sym_bool] = ACTIONS(1187), - [anon_sym_str] = ACTIONS(1187), - [anon_sym_char] = ACTIONS(1187), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(1189), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1555), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1129), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COLON_COLON] = ACTIONS(1195), - [anon_sym_SQUOTE] = ACTIONS(1139), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1143), - [anon_sym_default] = ACTIONS(1197), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1199), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1199), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_ref] = ACTIONS(1159), - [anon_sym_dyn] = ACTIONS(1161), - [sym_mutable_specifier] = ACTIONS(1163), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1201), - [sym_super] = ACTIONS(1203), - [sym_crate] = ACTIONS(1203), - [sym_metavariable] = ACTIONS(1205), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), + [sym_identifier] = ACTIONS(1130), + [anon_sym_LPAREN] = ACTIONS(1132), + [anon_sym_LBRACK] = ACTIONS(1056), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1136), + [anon_sym_i8] = ACTIONS(1136), + [anon_sym_u16] = ACTIONS(1136), + [anon_sym_i16] = ACTIONS(1136), + [anon_sym_u32] = ACTIONS(1136), + [anon_sym_i32] = ACTIONS(1136), + [anon_sym_u64] = ACTIONS(1136), + [anon_sym_i64] = ACTIONS(1136), + [anon_sym_u128] = ACTIONS(1136), + [anon_sym_i128] = ACTIONS(1136), + [anon_sym_isize] = ACTIONS(1136), + [anon_sym_usize] = ACTIONS(1136), + [anon_sym_f32] = ACTIONS(1136), + [anon_sym_f64] = ACTIONS(1136), + [anon_sym_bool] = ACTIONS(1136), + [anon_sym_str] = ACTIONS(1136), + [anon_sym_char] = ACTIONS(1136), + [anon_sym_DASH] = ACTIONS(1064), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1138), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1550), + [anon_sym_DOT_DOT] = ACTIONS(1074), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1076), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1078), + [anon_sym_COLON_COLON] = ACTIONS(1144), + [anon_sym_SQUOTE] = ACTIONS(1086), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1146), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1148), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1148), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_ref] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1108), + [sym_mutable_specifier] = ACTIONS(1110), + [sym_integer_literal] = ACTIONS(1112), + [aux_sym_string_literal_token1] = ACTIONS(1114), + [sym_char_literal] = ACTIONS(1112), + [anon_sym_true] = ACTIONS(1116), + [anon_sym_false] = ACTIONS(1116), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1150), + [sym_super] = ACTIONS(1152), + [sym_crate] = ACTIONS(1152), + [sym_metavariable] = ACTIONS(1154), + [sym__raw_string_literal_start] = ACTIONS(1124), + [sym_float_literal] = ACTIONS(1112), }, [STATE(427)] = { [sym_line_comment] = STATE(427), [sym_block_comment] = STATE(427), - [ts_builtin_sym_end] = ACTIONS(1055), - [sym_identifier] = ACTIONS(1053), - [anon_sym_SEMI] = ACTIONS(1055), - [anon_sym_macro_rules_BANG] = ACTIONS(1055), - [anon_sym_LPAREN] = ACTIONS(1055), - [anon_sym_LBRACK] = ACTIONS(1055), - [anon_sym_LBRACE] = ACTIONS(1055), - [anon_sym_RBRACE] = ACTIONS(1055), - [anon_sym_PLUS] = ACTIONS(1053), - [anon_sym_STAR] = ACTIONS(1053), - [anon_sym_QMARK] = ACTIONS(1055), - [anon_sym_u8] = ACTIONS(1053), - [anon_sym_i8] = ACTIONS(1053), - [anon_sym_u16] = ACTIONS(1053), - [anon_sym_i16] = ACTIONS(1053), - [anon_sym_u32] = ACTIONS(1053), - [anon_sym_i32] = ACTIONS(1053), - [anon_sym_u64] = ACTIONS(1053), - [anon_sym_i64] = ACTIONS(1053), - [anon_sym_u128] = ACTIONS(1053), - [anon_sym_i128] = ACTIONS(1053), - [anon_sym_isize] = ACTIONS(1053), - [anon_sym_usize] = ACTIONS(1053), - [anon_sym_f32] = ACTIONS(1053), - [anon_sym_f64] = ACTIONS(1053), - [anon_sym_bool] = ACTIONS(1053), - [anon_sym_str] = ACTIONS(1053), - [anon_sym_char] = ACTIONS(1053), - [anon_sym_DASH] = ACTIONS(1053), - [anon_sym_SLASH] = ACTIONS(1053), - [anon_sym_PERCENT] = ACTIONS(1053), - [anon_sym_CARET] = ACTIONS(1053), - [anon_sym_BANG] = ACTIONS(1053), - [anon_sym_AMP] = ACTIONS(1053), - [anon_sym_PIPE] = ACTIONS(1053), - [anon_sym_AMP_AMP] = ACTIONS(1055), - [anon_sym_PIPE_PIPE] = ACTIONS(1055), - [anon_sym_LT_LT] = ACTIONS(1053), - [anon_sym_GT_GT] = ACTIONS(1053), - [anon_sym_PLUS_EQ] = ACTIONS(1055), - [anon_sym_DASH_EQ] = ACTIONS(1055), - [anon_sym_STAR_EQ] = ACTIONS(1055), - [anon_sym_SLASH_EQ] = ACTIONS(1055), - [anon_sym_PERCENT_EQ] = ACTIONS(1055), - [anon_sym_CARET_EQ] = ACTIONS(1055), - [anon_sym_AMP_EQ] = ACTIONS(1055), - [anon_sym_PIPE_EQ] = ACTIONS(1055), - [anon_sym_LT_LT_EQ] = ACTIONS(1055), - [anon_sym_GT_GT_EQ] = ACTIONS(1055), - [anon_sym_EQ] = ACTIONS(1053), - [anon_sym_EQ_EQ] = ACTIONS(1055), - [anon_sym_BANG_EQ] = ACTIONS(1055), - [anon_sym_GT] = ACTIONS(1053), - [anon_sym_LT] = ACTIONS(1053), - [anon_sym_GT_EQ] = ACTIONS(1055), - [anon_sym_LT_EQ] = ACTIONS(1055), - [anon_sym_DOT] = ACTIONS(1053), - [anon_sym_DOT_DOT] = ACTIONS(1053), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1055), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1055), - [anon_sym_COLON_COLON] = ACTIONS(1055), - [anon_sym_POUND] = ACTIONS(1055), - [anon_sym_SQUOTE] = ACTIONS(1053), - [anon_sym_as] = ACTIONS(1053), - [anon_sym_async] = ACTIONS(1053), - [anon_sym_break] = ACTIONS(1053), - [anon_sym_const] = ACTIONS(1053), - [anon_sym_continue] = ACTIONS(1053), - [anon_sym_default] = ACTIONS(1053), - [anon_sym_enum] = ACTIONS(1053), - [anon_sym_fn] = ACTIONS(1053), - [anon_sym_for] = ACTIONS(1053), - [anon_sym_gen] = ACTIONS(1053), - [anon_sym_if] = ACTIONS(1053), - [anon_sym_impl] = ACTIONS(1053), - [anon_sym_let] = ACTIONS(1053), - [anon_sym_loop] = ACTIONS(1053), - [anon_sym_match] = ACTIONS(1053), - [anon_sym_mod] = ACTIONS(1053), - [anon_sym_pub] = ACTIONS(1053), - [anon_sym_return] = ACTIONS(1053), - [anon_sym_static] = ACTIONS(1053), - [anon_sym_struct] = ACTIONS(1053), - [anon_sym_trait] = ACTIONS(1053), - [anon_sym_type] = ACTIONS(1053), - [anon_sym_union] = ACTIONS(1053), - [anon_sym_unsafe] = ACTIONS(1053), - [anon_sym_use] = ACTIONS(1053), - [anon_sym_while] = ACTIONS(1053), - [anon_sym_extern] = ACTIONS(1053), - [anon_sym_yield] = ACTIONS(1053), - [anon_sym_move] = ACTIONS(1053), - [anon_sym_try] = ACTIONS(1053), - [sym_integer_literal] = ACTIONS(1055), - [aux_sym_string_literal_token1] = ACTIONS(1055), - [sym_char_literal] = ACTIONS(1055), - [anon_sym_true] = ACTIONS(1053), - [anon_sym_false] = ACTIONS(1053), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1053), - [sym_super] = ACTIONS(1053), - [sym_crate] = ACTIONS(1053), - [sym_metavariable] = ACTIONS(1055), - [sym__raw_string_literal_start] = ACTIONS(1055), - [sym_float_literal] = ACTIONS(1055), + [ts_builtin_sym_end] = ACTIONS(1552), + [sym_identifier] = ACTIONS(1554), + [anon_sym_SEMI] = ACTIONS(1552), + [anon_sym_macro_rules_BANG] = ACTIONS(1552), + [anon_sym_LPAREN] = ACTIONS(1552), + [anon_sym_LBRACK] = ACTIONS(1552), + [anon_sym_LBRACE] = ACTIONS(1552), + [anon_sym_RBRACE] = ACTIONS(1552), + [anon_sym_PLUS] = ACTIONS(1554), + [anon_sym_STAR] = ACTIONS(1554), + [anon_sym_QMARK] = ACTIONS(1552), + [anon_sym_u8] = ACTIONS(1554), + [anon_sym_i8] = ACTIONS(1554), + [anon_sym_u16] = ACTIONS(1554), + [anon_sym_i16] = ACTIONS(1554), + [anon_sym_u32] = ACTIONS(1554), + [anon_sym_i32] = ACTIONS(1554), + [anon_sym_u64] = ACTIONS(1554), + [anon_sym_i64] = ACTIONS(1554), + [anon_sym_u128] = ACTIONS(1554), + [anon_sym_i128] = ACTIONS(1554), + [anon_sym_isize] = ACTIONS(1554), + [anon_sym_usize] = ACTIONS(1554), + [anon_sym_f32] = ACTIONS(1554), + [anon_sym_f64] = ACTIONS(1554), + [anon_sym_bool] = ACTIONS(1554), + [anon_sym_str] = ACTIONS(1554), + [anon_sym_char] = ACTIONS(1554), + [anon_sym_DASH] = ACTIONS(1554), + [anon_sym_SLASH] = ACTIONS(1554), + [anon_sym_PERCENT] = ACTIONS(1554), + [anon_sym_CARET] = ACTIONS(1554), + [anon_sym_BANG] = ACTIONS(1554), + [anon_sym_AMP] = ACTIONS(1554), + [anon_sym_PIPE] = ACTIONS(1554), + [anon_sym_AMP_AMP] = ACTIONS(1552), + [anon_sym_PIPE_PIPE] = ACTIONS(1552), + [anon_sym_LT_LT] = ACTIONS(1554), + [anon_sym_GT_GT] = ACTIONS(1554), + [anon_sym_PLUS_EQ] = ACTIONS(1552), + [anon_sym_DASH_EQ] = ACTIONS(1552), + [anon_sym_STAR_EQ] = ACTIONS(1552), + [anon_sym_SLASH_EQ] = ACTIONS(1552), + [anon_sym_PERCENT_EQ] = ACTIONS(1552), + [anon_sym_CARET_EQ] = ACTIONS(1552), + [anon_sym_AMP_EQ] = ACTIONS(1552), + [anon_sym_PIPE_EQ] = ACTIONS(1552), + [anon_sym_LT_LT_EQ] = ACTIONS(1552), + [anon_sym_GT_GT_EQ] = ACTIONS(1552), + [anon_sym_EQ] = ACTIONS(1554), + [anon_sym_EQ_EQ] = ACTIONS(1552), + [anon_sym_BANG_EQ] = ACTIONS(1552), + [anon_sym_GT] = ACTIONS(1554), + [anon_sym_LT] = ACTIONS(1554), + [anon_sym_GT_EQ] = ACTIONS(1552), + [anon_sym_LT_EQ] = ACTIONS(1552), + [anon_sym_DOT] = ACTIONS(1554), + [anon_sym_DOT_DOT] = ACTIONS(1554), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1552), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1552), + [anon_sym_COLON_COLON] = ACTIONS(1552), + [anon_sym_POUND] = ACTIONS(1552), + [anon_sym_SQUOTE] = ACTIONS(1554), + [anon_sym_as] = ACTIONS(1554), + [anon_sym_async] = ACTIONS(1554), + [anon_sym_break] = ACTIONS(1554), + [anon_sym_const] = ACTIONS(1554), + [anon_sym_continue] = ACTIONS(1554), + [anon_sym_default] = ACTIONS(1554), + [anon_sym_enum] = ACTIONS(1554), + [anon_sym_fn] = ACTIONS(1554), + [anon_sym_for] = ACTIONS(1554), + [anon_sym_gen] = ACTIONS(1554), + [anon_sym_if] = ACTIONS(1554), + [anon_sym_impl] = ACTIONS(1554), + [anon_sym_let] = ACTIONS(1554), + [anon_sym_loop] = ACTIONS(1554), + [anon_sym_match] = ACTIONS(1554), + [anon_sym_mod] = ACTIONS(1554), + [anon_sym_pub] = ACTIONS(1554), + [anon_sym_return] = ACTIONS(1554), + [anon_sym_static] = ACTIONS(1554), + [anon_sym_struct] = ACTIONS(1554), + [anon_sym_trait] = ACTIONS(1554), + [anon_sym_type] = ACTIONS(1554), + [anon_sym_union] = ACTIONS(1554), + [anon_sym_unsafe] = ACTIONS(1554), + [anon_sym_use] = ACTIONS(1554), + [anon_sym_while] = ACTIONS(1554), + [anon_sym_extern] = ACTIONS(1554), + [anon_sym_safe] = ACTIONS(1554), + [anon_sym_yield] = ACTIONS(1554), + [anon_sym_move] = ACTIONS(1554), + [anon_sym_try] = ACTIONS(1554), + [sym_integer_literal] = ACTIONS(1552), + [aux_sym_string_literal_token1] = ACTIONS(1552), + [sym_char_literal] = ACTIONS(1552), + [anon_sym_true] = ACTIONS(1554), + [anon_sym_false] = ACTIONS(1554), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1554), + [sym_super] = ACTIONS(1554), + [sym_crate] = ACTIONS(1554), + [sym_metavariable] = ACTIONS(1552), + [sym__raw_string_literal_start] = ACTIONS(1552), + [sym_float_literal] = ACTIONS(1552), }, [STATE(428)] = { [sym_line_comment] = STATE(428), [sym_block_comment] = STATE(428), - [sym_identifier] = ACTIONS(1455), - [anon_sym_SEMI] = ACTIONS(1457), - [anon_sym_macro_rules_BANG] = ACTIONS(1453), - [anon_sym_LPAREN] = ACTIONS(1457), - [anon_sym_LBRACK] = ACTIONS(1457), - [anon_sym_LBRACE] = ACTIONS(1453), - [anon_sym_RBRACE] = ACTIONS(1453), - [anon_sym_PLUS] = ACTIONS(1459), - [anon_sym_STAR] = ACTIONS(1459), - [anon_sym_QMARK] = ACTIONS(1457), - [anon_sym_u8] = ACTIONS(1455), - [anon_sym_i8] = ACTIONS(1455), - [anon_sym_u16] = ACTIONS(1455), - [anon_sym_i16] = ACTIONS(1455), - [anon_sym_u32] = ACTIONS(1455), - [anon_sym_i32] = ACTIONS(1455), - [anon_sym_u64] = ACTIONS(1455), - [anon_sym_i64] = ACTIONS(1455), - [anon_sym_u128] = ACTIONS(1455), - [anon_sym_i128] = ACTIONS(1455), - [anon_sym_isize] = ACTIONS(1455), - [anon_sym_usize] = ACTIONS(1455), - [anon_sym_f32] = ACTIONS(1455), - [anon_sym_f64] = ACTIONS(1455), - [anon_sym_bool] = ACTIONS(1455), - [anon_sym_str] = ACTIONS(1455), - [anon_sym_char] = ACTIONS(1455), - [anon_sym_DASH] = ACTIONS(1459), - [anon_sym_SLASH] = ACTIONS(1459), - [anon_sym_PERCENT] = ACTIONS(1459), - [anon_sym_CARET] = ACTIONS(1459), - [anon_sym_BANG] = ACTIONS(1455), - [anon_sym_AMP] = ACTIONS(1459), - [anon_sym_PIPE] = ACTIONS(1459), - [anon_sym_AMP_AMP] = ACTIONS(1457), - [anon_sym_PIPE_PIPE] = ACTIONS(1457), - [anon_sym_LT_LT] = ACTIONS(1459), - [anon_sym_GT_GT] = ACTIONS(1459), - [anon_sym_PLUS_EQ] = ACTIONS(1457), - [anon_sym_DASH_EQ] = ACTIONS(1457), - [anon_sym_STAR_EQ] = ACTIONS(1457), - [anon_sym_SLASH_EQ] = ACTIONS(1457), - [anon_sym_PERCENT_EQ] = ACTIONS(1457), - [anon_sym_CARET_EQ] = ACTIONS(1457), - [anon_sym_AMP_EQ] = ACTIONS(1457), - [anon_sym_PIPE_EQ] = ACTIONS(1457), - [anon_sym_LT_LT_EQ] = ACTIONS(1457), - [anon_sym_GT_GT_EQ] = ACTIONS(1457), - [anon_sym_EQ] = ACTIONS(1459), - [anon_sym_EQ_EQ] = ACTIONS(1457), - [anon_sym_BANG_EQ] = ACTIONS(1457), - [anon_sym_GT] = ACTIONS(1459), - [anon_sym_LT] = ACTIONS(1459), - [anon_sym_GT_EQ] = ACTIONS(1457), - [anon_sym_LT_EQ] = ACTIONS(1457), - [anon_sym_DOT] = ACTIONS(1459), - [anon_sym_DOT_DOT] = ACTIONS(1459), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1457), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1457), - [anon_sym_COLON_COLON] = ACTIONS(1453), - [anon_sym_POUND] = ACTIONS(1453), - [anon_sym_SQUOTE] = ACTIONS(1455), - [anon_sym_as] = ACTIONS(1459), - [anon_sym_async] = ACTIONS(1455), - [anon_sym_break] = ACTIONS(1455), - [anon_sym_const] = ACTIONS(1455), - [anon_sym_continue] = ACTIONS(1455), - [anon_sym_default] = ACTIONS(1455), - [anon_sym_enum] = ACTIONS(1455), - [anon_sym_fn] = ACTIONS(1455), - [anon_sym_for] = ACTIONS(1455), - [anon_sym_gen] = ACTIONS(1455), - [anon_sym_if] = ACTIONS(1455), - [anon_sym_impl] = ACTIONS(1455), - [anon_sym_let] = ACTIONS(1455), - [anon_sym_loop] = ACTIONS(1455), - [anon_sym_match] = ACTIONS(1455), - [anon_sym_mod] = ACTIONS(1455), - [anon_sym_pub] = ACTIONS(1455), - [anon_sym_return] = ACTIONS(1455), - [anon_sym_static] = ACTIONS(1455), - [anon_sym_struct] = ACTIONS(1455), - [anon_sym_trait] = ACTIONS(1455), - [anon_sym_type] = ACTIONS(1455), - [anon_sym_union] = ACTIONS(1455), - [anon_sym_unsafe] = ACTIONS(1455), - [anon_sym_use] = ACTIONS(1455), - [anon_sym_while] = ACTIONS(1455), - [anon_sym_extern] = ACTIONS(1455), - [anon_sym_yield] = ACTIONS(1455), - [anon_sym_move] = ACTIONS(1455), - [anon_sym_try] = ACTIONS(1455), - [sym_integer_literal] = ACTIONS(1453), - [aux_sym_string_literal_token1] = ACTIONS(1453), - [sym_char_literal] = ACTIONS(1453), - [anon_sym_true] = ACTIONS(1455), - [anon_sym_false] = ACTIONS(1455), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1455), - [sym_super] = ACTIONS(1455), - [sym_crate] = ACTIONS(1455), - [sym_metavariable] = ACTIONS(1453), - [sym__raw_string_literal_start] = ACTIONS(1453), - [sym_float_literal] = ACTIONS(1453), + [ts_builtin_sym_end] = ACTIONS(1556), + [sym_identifier] = ACTIONS(1558), + [anon_sym_SEMI] = ACTIONS(1556), + [anon_sym_macro_rules_BANG] = ACTIONS(1556), + [anon_sym_LPAREN] = ACTIONS(1556), + [anon_sym_LBRACK] = ACTIONS(1556), + [anon_sym_LBRACE] = ACTIONS(1556), + [anon_sym_RBRACE] = ACTIONS(1556), + [anon_sym_PLUS] = ACTIONS(1558), + [anon_sym_STAR] = ACTIONS(1558), + [anon_sym_QMARK] = ACTIONS(1556), + [anon_sym_u8] = ACTIONS(1558), + [anon_sym_i8] = ACTIONS(1558), + [anon_sym_u16] = ACTIONS(1558), + [anon_sym_i16] = ACTIONS(1558), + [anon_sym_u32] = ACTIONS(1558), + [anon_sym_i32] = ACTIONS(1558), + [anon_sym_u64] = ACTIONS(1558), + [anon_sym_i64] = ACTIONS(1558), + [anon_sym_u128] = ACTIONS(1558), + [anon_sym_i128] = ACTIONS(1558), + [anon_sym_isize] = ACTIONS(1558), + [anon_sym_usize] = ACTIONS(1558), + [anon_sym_f32] = ACTIONS(1558), + [anon_sym_f64] = ACTIONS(1558), + [anon_sym_bool] = ACTIONS(1558), + [anon_sym_str] = ACTIONS(1558), + [anon_sym_char] = ACTIONS(1558), + [anon_sym_DASH] = ACTIONS(1558), + [anon_sym_SLASH] = ACTIONS(1558), + [anon_sym_PERCENT] = ACTIONS(1558), + [anon_sym_CARET] = ACTIONS(1558), + [anon_sym_BANG] = ACTIONS(1558), + [anon_sym_AMP] = ACTIONS(1558), + [anon_sym_PIPE] = ACTIONS(1558), + [anon_sym_AMP_AMP] = ACTIONS(1556), + [anon_sym_PIPE_PIPE] = ACTIONS(1556), + [anon_sym_LT_LT] = ACTIONS(1558), + [anon_sym_GT_GT] = ACTIONS(1558), + [anon_sym_PLUS_EQ] = ACTIONS(1556), + [anon_sym_DASH_EQ] = ACTIONS(1556), + [anon_sym_STAR_EQ] = ACTIONS(1556), + [anon_sym_SLASH_EQ] = ACTIONS(1556), + [anon_sym_PERCENT_EQ] = ACTIONS(1556), + [anon_sym_CARET_EQ] = ACTIONS(1556), + [anon_sym_AMP_EQ] = ACTIONS(1556), + [anon_sym_PIPE_EQ] = ACTIONS(1556), + [anon_sym_LT_LT_EQ] = ACTIONS(1556), + [anon_sym_GT_GT_EQ] = ACTIONS(1556), + [anon_sym_EQ] = ACTIONS(1558), + [anon_sym_EQ_EQ] = ACTIONS(1556), + [anon_sym_BANG_EQ] = ACTIONS(1556), + [anon_sym_GT] = ACTIONS(1558), + [anon_sym_LT] = ACTIONS(1558), + [anon_sym_GT_EQ] = ACTIONS(1556), + [anon_sym_LT_EQ] = ACTIONS(1556), + [anon_sym_DOT] = ACTIONS(1558), + [anon_sym_DOT_DOT] = ACTIONS(1558), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1556), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1556), + [anon_sym_COLON_COLON] = ACTIONS(1556), + [anon_sym_POUND] = ACTIONS(1556), + [anon_sym_SQUOTE] = ACTIONS(1558), + [anon_sym_as] = ACTIONS(1558), + [anon_sym_async] = ACTIONS(1558), + [anon_sym_break] = ACTIONS(1558), + [anon_sym_const] = ACTIONS(1558), + [anon_sym_continue] = ACTIONS(1558), + [anon_sym_default] = ACTIONS(1558), + [anon_sym_enum] = ACTIONS(1558), + [anon_sym_fn] = ACTIONS(1558), + [anon_sym_for] = ACTIONS(1558), + [anon_sym_gen] = ACTIONS(1558), + [anon_sym_if] = ACTIONS(1558), + [anon_sym_impl] = ACTIONS(1558), + [anon_sym_let] = ACTIONS(1558), + [anon_sym_loop] = ACTIONS(1558), + [anon_sym_match] = ACTIONS(1558), + [anon_sym_mod] = ACTIONS(1558), + [anon_sym_pub] = ACTIONS(1558), + [anon_sym_return] = ACTIONS(1558), + [anon_sym_static] = ACTIONS(1558), + [anon_sym_struct] = ACTIONS(1558), + [anon_sym_trait] = ACTIONS(1558), + [anon_sym_type] = ACTIONS(1558), + [anon_sym_union] = ACTIONS(1558), + [anon_sym_unsafe] = ACTIONS(1558), + [anon_sym_use] = ACTIONS(1558), + [anon_sym_while] = ACTIONS(1558), + [anon_sym_extern] = ACTIONS(1558), + [anon_sym_safe] = ACTIONS(1558), + [anon_sym_yield] = ACTIONS(1558), + [anon_sym_move] = ACTIONS(1558), + [anon_sym_try] = ACTIONS(1558), + [sym_integer_literal] = ACTIONS(1556), + [aux_sym_string_literal_token1] = ACTIONS(1556), + [sym_char_literal] = ACTIONS(1556), + [anon_sym_true] = ACTIONS(1558), + [anon_sym_false] = ACTIONS(1558), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1558), + [sym_super] = ACTIONS(1558), + [sym_crate] = ACTIONS(1558), + [sym_metavariable] = ACTIONS(1556), + [sym__raw_string_literal_start] = ACTIONS(1556), + [sym_float_literal] = ACTIONS(1556), }, [STATE(429)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(3066), - [sym_bracketed_type] = STATE(3700), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3439), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(2581), - [sym_scoped_identifier] = STATE(2275), - [sym_scoped_type_identifier] = STATE(2186), - [sym_const_block] = STATE(2221), - [sym__pattern] = STATE(2828), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_self_parameter] = STATE(2950), + [sym_variadic_parameter] = STATE(2950), + [sym_parameter] = STATE(2950), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(2714), + [sym_bracketed_type] = STATE(3726), + [sym_lifetime] = STATE(3173), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3316), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2601), + [sym_scoped_identifier] = STATE(2336), + [sym_scoped_type_identifier] = STATE(2238), + [sym_const_block] = STATE(2197), + [sym__pattern] = STATE(3441), + [sym_generic_pattern] = STATE(2197), + [sym_tuple_pattern] = STATE(2197), + [sym_slice_pattern] = STATE(2197), + [sym_tuple_struct_pattern] = STATE(2197), + [sym_struct_pattern] = STATE(2197), + [sym_remaining_field_pattern] = STATE(2197), + [sym_mut_pattern] = STATE(2197), + [sym_range_pattern] = STATE(2197), + [sym_ref_pattern] = STATE(2197), + [sym_captured_pattern] = STATE(2197), + [sym_reference_pattern] = STATE(2197), + [sym_or_pattern] = STATE(2197), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2129), + [sym_string_literal] = STATE(2129), + [sym_raw_string_literal] = STATE(2129), + [sym_boolean_literal] = STATE(2129), [sym_line_comment] = STATE(429), [sym_block_comment] = STATE(429), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(1557), - [anon_sym_LPAREN] = ACTIONS(1559), - [anon_sym_LBRACK] = ACTIONS(1109), - [anon_sym_RBRACK] = ACTIONS(1561), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1563), - [anon_sym_i8] = ACTIONS(1563), - [anon_sym_u16] = ACTIONS(1563), - [anon_sym_i16] = ACTIONS(1563), - [anon_sym_u32] = ACTIONS(1563), - [anon_sym_i32] = ACTIONS(1563), - [anon_sym_u64] = ACTIONS(1563), - [anon_sym_i64] = ACTIONS(1563), - [anon_sym_u128] = ACTIONS(1563), - [anon_sym_i128] = ACTIONS(1563), - [anon_sym_isize] = ACTIONS(1563), - [anon_sym_usize] = ACTIONS(1563), - [anon_sym_f32] = ACTIONS(1563), - [anon_sym_f64] = ACTIONS(1563), - [anon_sym_bool] = ACTIONS(1563), - [anon_sym_str] = ACTIONS(1563), - [anon_sym_char] = ACTIONS(1563), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(1565), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1417), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COMMA] = ACTIONS(1567), - [anon_sym_COLON_COLON] = ACTIONS(1569), - [anon_sym_SQUOTE] = ACTIONS(1139), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1143), - [anon_sym_default] = ACTIONS(1571), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1573), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1573), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_ref] = ACTIONS(1159), - [anon_sym_dyn] = ACTIONS(1161), - [sym_mutable_specifier] = ACTIONS(1425), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1575), - [sym_super] = ACTIONS(1575), - [sym_crate] = ACTIONS(1575), - [sym_metavariable] = ACTIONS(1577), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), + [sym_identifier] = ACTIONS(1130), + [anon_sym_LPAREN] = ACTIONS(1132), + [anon_sym_LBRACK] = ACTIONS(1056), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1136), + [anon_sym_i8] = ACTIONS(1136), + [anon_sym_u16] = ACTIONS(1136), + [anon_sym_i16] = ACTIONS(1136), + [anon_sym_u32] = ACTIONS(1136), + [anon_sym_i32] = ACTIONS(1136), + [anon_sym_u64] = ACTIONS(1136), + [anon_sym_i64] = ACTIONS(1136), + [anon_sym_u128] = ACTIONS(1136), + [anon_sym_i128] = ACTIONS(1136), + [anon_sym_isize] = ACTIONS(1136), + [anon_sym_usize] = ACTIONS(1136), + [anon_sym_f32] = ACTIONS(1136), + [anon_sym_f64] = ACTIONS(1136), + [anon_sym_bool] = ACTIONS(1136), + [anon_sym_str] = ACTIONS(1136), + [anon_sym_char] = ACTIONS(1136), + [anon_sym_DASH] = ACTIONS(1064), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1138), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1560), + [anon_sym_DOT_DOT] = ACTIONS(1074), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1076), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1078), + [anon_sym_COLON_COLON] = ACTIONS(1144), + [anon_sym_SQUOTE] = ACTIONS(1086), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1146), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1148), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1148), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_ref] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1108), + [sym_mutable_specifier] = ACTIONS(1110), + [sym_integer_literal] = ACTIONS(1112), + [aux_sym_string_literal_token1] = ACTIONS(1114), + [sym_char_literal] = ACTIONS(1112), + [anon_sym_true] = ACTIONS(1116), + [anon_sym_false] = ACTIONS(1116), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1150), + [sym_super] = ACTIONS(1152), + [sym_crate] = ACTIONS(1152), + [sym_metavariable] = ACTIONS(1154), + [sym__raw_string_literal_start] = ACTIONS(1124), + [sym_float_literal] = ACTIONS(1112), }, [STATE(430)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2056), - [sym_bracketed_type] = STATE(3699), - [sym_lifetime] = STATE(854), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3431), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(2528), - [sym_scoped_identifier] = STATE(2224), - [sym_scoped_type_identifier] = STATE(2186), - [sym_const_block] = STATE(2221), - [sym__pattern] = STATE(2229), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), [sym_line_comment] = STATE(430), [sym_block_comment] = STATE(430), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(1103), - [anon_sym_LPAREN] = ACTIONS(1105), - [anon_sym_LBRACK] = ACTIONS(1109), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1115), - [anon_sym_i8] = ACTIONS(1115), - [anon_sym_u16] = ACTIONS(1115), - [anon_sym_i16] = ACTIONS(1115), - [anon_sym_u32] = ACTIONS(1115), - [anon_sym_i32] = ACTIONS(1115), - [anon_sym_u64] = ACTIONS(1115), - [anon_sym_i64] = ACTIONS(1115), - [anon_sym_u128] = ACTIONS(1115), - [anon_sym_i128] = ACTIONS(1115), - [anon_sym_isize] = ACTIONS(1115), - [anon_sym_usize] = ACTIONS(1115), - [anon_sym_f32] = ACTIONS(1115), - [anon_sym_f64] = ACTIONS(1115), - [anon_sym_bool] = ACTIONS(1115), - [anon_sym_str] = ACTIONS(1115), - [anon_sym_char] = ACTIONS(1115), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(1413), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1417), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COLON_COLON] = ACTIONS(1135), - [anon_sym_SQUOTE] = ACTIONS(1139), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1143), - [anon_sym_default] = ACTIONS(1145), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1151), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1151), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_ref] = ACTIONS(1159), - [anon_sym_dyn] = ACTIONS(1161), - [sym_mutable_specifier] = ACTIONS(1579), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1581), - [sym_super] = ACTIONS(1173), - [sym_crate] = ACTIONS(1173), - [sym_metavariable] = ACTIONS(1175), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), + [sym_identifier] = ACTIONS(1476), + [anon_sym_SEMI] = ACTIONS(1478), + [anon_sym_macro_rules_BANG] = ACTIONS(1474), + [anon_sym_LPAREN] = ACTIONS(1478), + [anon_sym_LBRACK] = ACTIONS(1478), + [anon_sym_LBRACE] = ACTIONS(1474), + [anon_sym_RBRACE] = ACTIONS(1474), + [anon_sym_PLUS] = ACTIONS(1480), + [anon_sym_STAR] = ACTIONS(1480), + [anon_sym_QMARK] = ACTIONS(1478), + [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(1480), + [anon_sym_SLASH] = ACTIONS(1480), + [anon_sym_PERCENT] = ACTIONS(1480), + [anon_sym_CARET] = ACTIONS(1480), + [anon_sym_BANG] = ACTIONS(1476), + [anon_sym_AMP] = ACTIONS(1480), + [anon_sym_PIPE] = ACTIONS(1480), + [anon_sym_AMP_AMP] = ACTIONS(1478), + [anon_sym_PIPE_PIPE] = ACTIONS(1478), + [anon_sym_LT_LT] = ACTIONS(1480), + [anon_sym_GT_GT] = ACTIONS(1480), + [anon_sym_PLUS_EQ] = ACTIONS(1478), + [anon_sym_DASH_EQ] = ACTIONS(1478), + [anon_sym_STAR_EQ] = ACTIONS(1478), + [anon_sym_SLASH_EQ] = ACTIONS(1478), + [anon_sym_PERCENT_EQ] = ACTIONS(1478), + [anon_sym_CARET_EQ] = ACTIONS(1478), + [anon_sym_AMP_EQ] = ACTIONS(1478), + [anon_sym_PIPE_EQ] = ACTIONS(1478), + [anon_sym_LT_LT_EQ] = ACTIONS(1478), + [anon_sym_GT_GT_EQ] = ACTIONS(1478), + [anon_sym_EQ] = ACTIONS(1480), + [anon_sym_EQ_EQ] = ACTIONS(1478), + [anon_sym_BANG_EQ] = ACTIONS(1478), + [anon_sym_GT] = ACTIONS(1480), + [anon_sym_LT] = ACTIONS(1480), + [anon_sym_GT_EQ] = ACTIONS(1478), + [anon_sym_LT_EQ] = ACTIONS(1478), + [anon_sym_DOT] = ACTIONS(1480), + [anon_sym_DOT_DOT] = ACTIONS(1480), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1478), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1478), + [anon_sym_COLON_COLON] = ACTIONS(1474), + [anon_sym_POUND] = ACTIONS(1474), + [anon_sym_SQUOTE] = ACTIONS(1476), + [anon_sym_as] = ACTIONS(1480), + [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(431)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2061), - [sym_bracketed_type] = STATE(3691), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3333), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(2540), - [sym_scoped_identifier] = STATE(2311), - [sym_scoped_type_identifier] = STATE(2186), - [sym_const_block] = STATE(2221), - [sym__pattern] = STATE(2201), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(3176), + [sym_bracketed_type] = STATE(3735), + [sym_lifetime] = STATE(3823), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3452), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2593), + [sym_scoped_identifier] = STATE(2291), + [sym_scoped_type_identifier] = STATE(2238), + [sym_const_block] = STATE(2197), + [sym__pattern] = STATE(2822), + [sym_generic_pattern] = STATE(2197), + [sym_tuple_pattern] = STATE(2197), + [sym_slice_pattern] = STATE(2197), + [sym_tuple_struct_pattern] = STATE(2197), + [sym_struct_pattern] = STATE(2197), + [sym_remaining_field_pattern] = STATE(2197), + [sym_mut_pattern] = STATE(2197), + [sym_range_pattern] = STATE(2197), + [sym_ref_pattern] = STATE(2197), + [sym_captured_pattern] = STATE(2197), + [sym_reference_pattern] = STATE(2197), + [sym_or_pattern] = STATE(2197), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2129), + [sym_string_literal] = STATE(2129), + [sym_raw_string_literal] = STATE(2129), + [sym_boolean_literal] = STATE(2129), [sym_line_comment] = STATE(431), [sym_block_comment] = STATE(431), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(1181), - [anon_sym_LPAREN] = ACTIONS(1183), - [anon_sym_LBRACK] = ACTIONS(1109), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1187), - [anon_sym_i8] = ACTIONS(1187), - [anon_sym_u16] = ACTIONS(1187), - [anon_sym_i16] = ACTIONS(1187), - [anon_sym_u32] = ACTIONS(1187), - [anon_sym_i32] = ACTIONS(1187), - [anon_sym_u64] = ACTIONS(1187), - [anon_sym_i64] = ACTIONS(1187), - [anon_sym_u128] = ACTIONS(1187), - [anon_sym_i128] = ACTIONS(1187), - [anon_sym_isize] = ACTIONS(1187), - [anon_sym_usize] = ACTIONS(1187), - [anon_sym_f32] = ACTIONS(1187), - [anon_sym_f64] = ACTIONS(1187), - [anon_sym_bool] = ACTIONS(1187), - [anon_sym_str] = ACTIONS(1187), - [anon_sym_char] = ACTIONS(1187), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(1583), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1417), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COLON_COLON] = ACTIONS(1195), - [anon_sym_SQUOTE] = ACTIONS(1139), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1143), - [anon_sym_default] = ACTIONS(1197), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1199), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1199), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_ref] = ACTIONS(1159), - [anon_sym_dyn] = ACTIONS(1161), - [sym_mutable_specifier] = ACTIONS(1425), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1203), - [sym_super] = ACTIONS(1203), - [sym_crate] = ACTIONS(1203), - [sym_metavariable] = ACTIONS(1205), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), + [sym_identifier] = ACTIONS(1562), + [anon_sym_LPAREN] = ACTIONS(1564), + [anon_sym_LBRACK] = ACTIONS(1056), + [anon_sym_RBRACK] = ACTIONS(1566), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1568), + [anon_sym_i8] = ACTIONS(1568), + [anon_sym_u16] = ACTIONS(1568), + [anon_sym_i16] = ACTIONS(1568), + [anon_sym_u32] = ACTIONS(1568), + [anon_sym_i32] = ACTIONS(1568), + [anon_sym_u64] = ACTIONS(1568), + [anon_sym_i64] = ACTIONS(1568), + [anon_sym_u128] = ACTIONS(1568), + [anon_sym_i128] = ACTIONS(1568), + [anon_sym_isize] = ACTIONS(1568), + [anon_sym_usize] = ACTIONS(1568), + [anon_sym_f32] = ACTIONS(1568), + [anon_sym_f64] = ACTIONS(1568), + [anon_sym_bool] = ACTIONS(1568), + [anon_sym_str] = ACTIONS(1568), + [anon_sym_char] = ACTIONS(1568), + [anon_sym_DASH] = ACTIONS(1064), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1570), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1392), + [anon_sym_DOT_DOT] = ACTIONS(1074), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1078), + [anon_sym_COMMA] = ACTIONS(1572), + [anon_sym_COLON_COLON] = ACTIONS(1574), + [anon_sym_SQUOTE] = ACTIONS(1086), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1576), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1578), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1578), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_ref] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1108), + [sym_mutable_specifier] = ACTIONS(1400), + [sym_integer_literal] = ACTIONS(1112), + [aux_sym_string_literal_token1] = ACTIONS(1114), + [sym_char_literal] = ACTIONS(1112), + [anon_sym_true] = ACTIONS(1116), + [anon_sym_false] = ACTIONS(1116), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1580), + [sym_super] = ACTIONS(1580), + [sym_crate] = ACTIONS(1580), + [sym_metavariable] = ACTIONS(1582), + [sym__raw_string_literal_start] = ACTIONS(1124), + [sym_float_literal] = ACTIONS(1112), }, [STATE(432)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2056), - [sym_bracketed_type] = STATE(3691), - [sym_lifetime] = STATE(858), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3333), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(2540), - [sym_scoped_identifier] = STATE(2311), - [sym_scoped_type_identifier] = STATE(2186), - [sym_const_block] = STATE(2221), - [sym__pattern] = STATE(2229), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(2100), + [sym_bracketed_type] = STATE(3734), + [sym_lifetime] = STATE(834), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3444), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2525), + [sym_scoped_identifier] = STATE(2223), + [sym_scoped_type_identifier] = STATE(2238), + [sym_const_block] = STATE(2197), + [sym__pattern] = STATE(2218), + [sym_generic_pattern] = STATE(2197), + [sym_tuple_pattern] = STATE(2197), + [sym_slice_pattern] = STATE(2197), + [sym_tuple_struct_pattern] = STATE(2197), + [sym_struct_pattern] = STATE(2197), + [sym_remaining_field_pattern] = STATE(2197), + [sym_mut_pattern] = STATE(2197), + [sym_range_pattern] = STATE(2197), + [sym_ref_pattern] = STATE(2197), + [sym_captured_pattern] = STATE(2197), + [sym_reference_pattern] = STATE(2197), + [sym_or_pattern] = STATE(2197), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2129), + [sym_string_literal] = STATE(2129), + [sym_raw_string_literal] = STATE(2129), + [sym_boolean_literal] = STATE(2129), [sym_line_comment] = STATE(432), [sym_block_comment] = STATE(432), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(1181), - [anon_sym_LPAREN] = ACTIONS(1183), - [anon_sym_LBRACK] = ACTIONS(1109), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1187), - [anon_sym_i8] = ACTIONS(1187), - [anon_sym_u16] = ACTIONS(1187), - [anon_sym_i16] = ACTIONS(1187), - [anon_sym_u32] = ACTIONS(1187), - [anon_sym_i32] = ACTIONS(1187), - [anon_sym_u64] = ACTIONS(1187), - [anon_sym_i64] = ACTIONS(1187), - [anon_sym_u128] = ACTIONS(1187), - [anon_sym_i128] = ACTIONS(1187), - [anon_sym_isize] = ACTIONS(1187), - [anon_sym_usize] = ACTIONS(1187), - [anon_sym_f32] = ACTIONS(1187), - [anon_sym_f64] = ACTIONS(1187), - [anon_sym_bool] = ACTIONS(1187), - [anon_sym_str] = ACTIONS(1187), - [anon_sym_char] = ACTIONS(1187), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(1583), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1417), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COLON_COLON] = ACTIONS(1195), - [anon_sym_SQUOTE] = ACTIONS(1139), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1143), - [anon_sym_default] = ACTIONS(1197), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1199), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1199), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_ref] = ACTIONS(1159), - [anon_sym_dyn] = ACTIONS(1161), - [sym_mutable_specifier] = ACTIONS(1585), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1203), - [sym_super] = ACTIONS(1203), - [sym_crate] = ACTIONS(1203), - [sym_metavariable] = ACTIONS(1205), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), + [sym_identifier] = ACTIONS(1050), + [anon_sym_LPAREN] = ACTIONS(1052), + [anon_sym_LBRACK] = ACTIONS(1056), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1062), + [anon_sym_i8] = ACTIONS(1062), + [anon_sym_u16] = ACTIONS(1062), + [anon_sym_i16] = ACTIONS(1062), + [anon_sym_u32] = ACTIONS(1062), + [anon_sym_i32] = ACTIONS(1062), + [anon_sym_u64] = ACTIONS(1062), + [anon_sym_i64] = ACTIONS(1062), + [anon_sym_u128] = ACTIONS(1062), + [anon_sym_i128] = ACTIONS(1062), + [anon_sym_isize] = ACTIONS(1062), + [anon_sym_usize] = ACTIONS(1062), + [anon_sym_f32] = ACTIONS(1062), + [anon_sym_f64] = ACTIONS(1062), + [anon_sym_bool] = ACTIONS(1062), + [anon_sym_str] = ACTIONS(1062), + [anon_sym_char] = ACTIONS(1062), + [anon_sym_DASH] = ACTIONS(1064), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1388), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1392), + [anon_sym_DOT_DOT] = ACTIONS(1074), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1078), + [anon_sym_COLON_COLON] = ACTIONS(1082), + [anon_sym_SQUOTE] = ACTIONS(1086), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1092), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1098), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1098), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_ref] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1108), + [sym_mutable_specifier] = ACTIONS(1584), + [sym_integer_literal] = ACTIONS(1112), + [aux_sym_string_literal_token1] = ACTIONS(1114), + [sym_char_literal] = ACTIONS(1112), + [anon_sym_true] = ACTIONS(1116), + [anon_sym_false] = ACTIONS(1116), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1120), + [sym_super] = ACTIONS(1120), + [sym_crate] = ACTIONS(1120), + [sym_metavariable] = ACTIONS(1122), + [sym__raw_string_literal_start] = ACTIONS(1124), + [sym_float_literal] = ACTIONS(1112), }, [STATE(433)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2061), - [sym_bracketed_type] = STATE(3699), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3431), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(2528), - [sym_scoped_identifier] = STATE(2224), - [sym_scoped_type_identifier] = STATE(2186), - [sym_const_block] = STATE(2221), - [sym__pattern] = STATE(2201), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(2100), + [sym_bracketed_type] = STATE(3735), + [sym_lifetime] = STATE(834), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3452), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2593), + [sym_scoped_identifier] = STATE(2291), + [sym_scoped_type_identifier] = STATE(2238), + [sym_const_block] = STATE(2197), + [sym__pattern] = STATE(2218), + [sym_generic_pattern] = STATE(2197), + [sym_tuple_pattern] = STATE(2197), + [sym_slice_pattern] = STATE(2197), + [sym_tuple_struct_pattern] = STATE(2197), + [sym_struct_pattern] = STATE(2197), + [sym_remaining_field_pattern] = STATE(2197), + [sym_mut_pattern] = STATE(2197), + [sym_range_pattern] = STATE(2197), + [sym_ref_pattern] = STATE(2197), + [sym_captured_pattern] = STATE(2197), + [sym_reference_pattern] = STATE(2197), + [sym_or_pattern] = STATE(2197), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2129), + [sym_string_literal] = STATE(2129), + [sym_raw_string_literal] = STATE(2129), + [sym_boolean_literal] = STATE(2129), [sym_line_comment] = STATE(433), [sym_block_comment] = STATE(433), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(1103), - [anon_sym_LPAREN] = ACTIONS(1105), - [anon_sym_LBRACK] = ACTIONS(1109), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1115), - [anon_sym_i8] = ACTIONS(1115), - [anon_sym_u16] = ACTIONS(1115), - [anon_sym_i16] = ACTIONS(1115), - [anon_sym_u32] = ACTIONS(1115), - [anon_sym_i32] = ACTIONS(1115), - [anon_sym_u64] = ACTIONS(1115), - [anon_sym_i64] = ACTIONS(1115), - [anon_sym_u128] = ACTIONS(1115), - [anon_sym_i128] = ACTIONS(1115), - [anon_sym_isize] = ACTIONS(1115), - [anon_sym_usize] = ACTIONS(1115), - [anon_sym_f32] = ACTIONS(1115), - [anon_sym_f64] = ACTIONS(1115), - [anon_sym_bool] = ACTIONS(1115), - [anon_sym_str] = ACTIONS(1115), - [anon_sym_char] = ACTIONS(1115), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(1413), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1417), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COLON_COLON] = ACTIONS(1135), - [anon_sym_SQUOTE] = ACTIONS(1139), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1143), - [anon_sym_default] = ACTIONS(1145), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1151), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1151), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_ref] = ACTIONS(1159), - [anon_sym_dyn] = ACTIONS(1161), - [sym_mutable_specifier] = ACTIONS(1425), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1587), - [sym_super] = ACTIONS(1173), - [sym_crate] = ACTIONS(1173), - [sym_metavariable] = ACTIONS(1175), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), + [sym_identifier] = ACTIONS(1562), + [anon_sym_LPAREN] = ACTIONS(1564), + [anon_sym_LBRACK] = ACTIONS(1056), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1568), + [anon_sym_i8] = ACTIONS(1568), + [anon_sym_u16] = ACTIONS(1568), + [anon_sym_i16] = ACTIONS(1568), + [anon_sym_u32] = ACTIONS(1568), + [anon_sym_i32] = ACTIONS(1568), + [anon_sym_u64] = ACTIONS(1568), + [anon_sym_i64] = ACTIONS(1568), + [anon_sym_u128] = ACTIONS(1568), + [anon_sym_i128] = ACTIONS(1568), + [anon_sym_isize] = ACTIONS(1568), + [anon_sym_usize] = ACTIONS(1568), + [anon_sym_f32] = ACTIONS(1568), + [anon_sym_f64] = ACTIONS(1568), + [anon_sym_bool] = ACTIONS(1568), + [anon_sym_str] = ACTIONS(1568), + [anon_sym_char] = ACTIONS(1568), + [anon_sym_DASH] = ACTIONS(1064), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1570), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1392), + [anon_sym_DOT_DOT] = ACTIONS(1074), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1078), + [anon_sym_COLON_COLON] = ACTIONS(1574), + [anon_sym_SQUOTE] = ACTIONS(1086), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1576), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1578), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1578), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_ref] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1108), + [sym_mutable_specifier] = ACTIONS(1586), + [sym_integer_literal] = ACTIONS(1112), + [aux_sym_string_literal_token1] = ACTIONS(1114), + [sym_char_literal] = ACTIONS(1112), + [anon_sym_true] = ACTIONS(1116), + [anon_sym_false] = ACTIONS(1116), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1580), + [sym_super] = ACTIONS(1580), + [sym_crate] = ACTIONS(1580), + [sym_metavariable] = ACTIONS(1582), + [sym__raw_string_literal_start] = ACTIONS(1124), + [sym_float_literal] = ACTIONS(1112), }, [STATE(434)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2061), - [sym_bracketed_type] = STATE(3691), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3333), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(2540), - [sym_scoped_identifier] = STATE(2311), - [sym_scoped_type_identifier] = STATE(2186), - [sym_const_block] = STATE(2221), - [sym__pattern] = STATE(2201), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(2082), + [sym_bracketed_type] = STATE(3726), + [sym_lifetime] = STATE(3823), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3316), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2601), + [sym_scoped_identifier] = STATE(2336), + [sym_scoped_type_identifier] = STATE(2238), + [sym_const_block] = STATE(2197), + [sym__pattern] = STATE(2193), + [sym_generic_pattern] = STATE(2197), + [sym_tuple_pattern] = STATE(2197), + [sym_slice_pattern] = STATE(2197), + [sym_tuple_struct_pattern] = STATE(2197), + [sym_struct_pattern] = STATE(2197), + [sym_remaining_field_pattern] = STATE(2197), + [sym_mut_pattern] = STATE(2197), + [sym_range_pattern] = STATE(2197), + [sym_ref_pattern] = STATE(2197), + [sym_captured_pattern] = STATE(2197), + [sym_reference_pattern] = STATE(2197), + [sym_or_pattern] = STATE(2197), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2129), + [sym_string_literal] = STATE(2129), + [sym_raw_string_literal] = STATE(2129), + [sym_boolean_literal] = STATE(2129), [sym_line_comment] = STATE(434), [sym_block_comment] = STATE(434), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(1181), - [anon_sym_LPAREN] = ACTIONS(1183), - [anon_sym_LBRACK] = ACTIONS(1109), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1187), - [anon_sym_i8] = ACTIONS(1187), - [anon_sym_u16] = ACTIONS(1187), - [anon_sym_i16] = ACTIONS(1187), - [anon_sym_u32] = ACTIONS(1187), - [anon_sym_i32] = ACTIONS(1187), - [anon_sym_u64] = ACTIONS(1187), - [anon_sym_i64] = ACTIONS(1187), - [anon_sym_u128] = ACTIONS(1187), - [anon_sym_i128] = ACTIONS(1187), - [anon_sym_isize] = ACTIONS(1187), - [anon_sym_usize] = ACTIONS(1187), - [anon_sym_f32] = ACTIONS(1187), - [anon_sym_f64] = ACTIONS(1187), - [anon_sym_bool] = ACTIONS(1187), - [anon_sym_str] = ACTIONS(1187), - [anon_sym_char] = ACTIONS(1187), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(1583), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1417), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COLON_COLON] = ACTIONS(1195), - [anon_sym_SQUOTE] = ACTIONS(1139), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1143), - [anon_sym_default] = ACTIONS(1197), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1199), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1199), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_ref] = ACTIONS(1159), - [anon_sym_dyn] = ACTIONS(1161), - [sym_mutable_specifier] = ACTIONS(1425), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1589), - [sym_super] = ACTIONS(1203), - [sym_crate] = ACTIONS(1203), - [sym_metavariable] = ACTIONS(1205), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), + [sym_identifier] = ACTIONS(1130), + [anon_sym_LPAREN] = ACTIONS(1132), + [anon_sym_LBRACK] = ACTIONS(1056), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1136), + [anon_sym_i8] = ACTIONS(1136), + [anon_sym_u16] = ACTIONS(1136), + [anon_sym_i16] = ACTIONS(1136), + [anon_sym_u32] = ACTIONS(1136), + [anon_sym_i32] = ACTIONS(1136), + [anon_sym_u64] = ACTIONS(1136), + [anon_sym_i64] = ACTIONS(1136), + [anon_sym_u128] = ACTIONS(1136), + [anon_sym_i128] = ACTIONS(1136), + [anon_sym_isize] = ACTIONS(1136), + [anon_sym_usize] = ACTIONS(1136), + [anon_sym_f32] = ACTIONS(1136), + [anon_sym_f64] = ACTIONS(1136), + [anon_sym_bool] = ACTIONS(1136), + [anon_sym_str] = ACTIONS(1136), + [anon_sym_char] = ACTIONS(1136), + [anon_sym_DASH] = ACTIONS(1064), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1588), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1392), + [anon_sym_DOT_DOT] = ACTIONS(1074), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1078), + [anon_sym_COLON_COLON] = ACTIONS(1144), + [anon_sym_SQUOTE] = ACTIONS(1086), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1146), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1148), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1148), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_ref] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1108), + [sym_mutable_specifier] = ACTIONS(1400), + [sym_integer_literal] = ACTIONS(1112), + [aux_sym_string_literal_token1] = ACTIONS(1114), + [sym_char_literal] = ACTIONS(1112), + [anon_sym_true] = ACTIONS(1116), + [anon_sym_false] = ACTIONS(1116), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1590), + [sym_super] = ACTIONS(1152), + [sym_crate] = ACTIONS(1152), + [sym_metavariable] = ACTIONS(1154), + [sym__raw_string_literal_start] = ACTIONS(1124), + [sym_float_literal] = ACTIONS(1112), }, [STATE(435)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2061), - [sym_bracketed_type] = STATE(3699), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3431), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(2528), - [sym_scoped_identifier] = STATE(2224), - [sym_scoped_type_identifier] = STATE(2186), - [sym_const_block] = STATE(2221), - [sym__pattern] = STATE(2201), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(2100), + [sym_bracketed_type] = STATE(3726), + [sym_lifetime] = STATE(850), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3316), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2601), + [sym_scoped_identifier] = STATE(2336), + [sym_scoped_type_identifier] = STATE(2238), + [sym_const_block] = STATE(2197), + [sym__pattern] = STATE(2218), + [sym_generic_pattern] = STATE(2197), + [sym_tuple_pattern] = STATE(2197), + [sym_slice_pattern] = STATE(2197), + [sym_tuple_struct_pattern] = STATE(2197), + [sym_struct_pattern] = STATE(2197), + [sym_remaining_field_pattern] = STATE(2197), + [sym_mut_pattern] = STATE(2197), + [sym_range_pattern] = STATE(2197), + [sym_ref_pattern] = STATE(2197), + [sym_captured_pattern] = STATE(2197), + [sym_reference_pattern] = STATE(2197), + [sym_or_pattern] = STATE(2197), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2129), + [sym_string_literal] = STATE(2129), + [sym_raw_string_literal] = STATE(2129), + [sym_boolean_literal] = STATE(2129), [sym_line_comment] = STATE(435), [sym_block_comment] = STATE(435), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(1103), - [anon_sym_LPAREN] = ACTIONS(1105), - [anon_sym_LBRACK] = ACTIONS(1109), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1115), - [anon_sym_i8] = ACTIONS(1115), - [anon_sym_u16] = ACTIONS(1115), - [anon_sym_i16] = ACTIONS(1115), - [anon_sym_u32] = ACTIONS(1115), - [anon_sym_i32] = ACTIONS(1115), - [anon_sym_u64] = ACTIONS(1115), - [anon_sym_i64] = ACTIONS(1115), - [anon_sym_u128] = ACTIONS(1115), - [anon_sym_i128] = ACTIONS(1115), - [anon_sym_isize] = ACTIONS(1115), - [anon_sym_usize] = ACTIONS(1115), - [anon_sym_f32] = ACTIONS(1115), - [anon_sym_f64] = ACTIONS(1115), - [anon_sym_bool] = ACTIONS(1115), - [anon_sym_str] = ACTIONS(1115), - [anon_sym_char] = ACTIONS(1115), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(1413), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1417), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COLON_COLON] = ACTIONS(1135), - [anon_sym_SQUOTE] = ACTIONS(1139), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1143), - [anon_sym_default] = ACTIONS(1145), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1151), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1151), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_ref] = ACTIONS(1159), - [anon_sym_dyn] = ACTIONS(1161), - [sym_mutable_specifier] = ACTIONS(1425), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1173), - [sym_super] = ACTIONS(1173), - [sym_crate] = ACTIONS(1173), - [sym_metavariable] = ACTIONS(1175), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), + [sym_identifier] = ACTIONS(1130), + [anon_sym_LPAREN] = ACTIONS(1132), + [anon_sym_LBRACK] = ACTIONS(1056), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1136), + [anon_sym_i8] = ACTIONS(1136), + [anon_sym_u16] = ACTIONS(1136), + [anon_sym_i16] = ACTIONS(1136), + [anon_sym_u32] = ACTIONS(1136), + [anon_sym_i32] = ACTIONS(1136), + [anon_sym_u64] = ACTIONS(1136), + [anon_sym_i64] = ACTIONS(1136), + [anon_sym_u128] = ACTIONS(1136), + [anon_sym_i128] = ACTIONS(1136), + [anon_sym_isize] = ACTIONS(1136), + [anon_sym_usize] = ACTIONS(1136), + [anon_sym_f32] = ACTIONS(1136), + [anon_sym_f64] = ACTIONS(1136), + [anon_sym_bool] = ACTIONS(1136), + [anon_sym_str] = ACTIONS(1136), + [anon_sym_char] = ACTIONS(1136), + [anon_sym_DASH] = ACTIONS(1064), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1588), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1392), + [anon_sym_DOT_DOT] = ACTIONS(1074), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1078), + [anon_sym_COLON_COLON] = ACTIONS(1144), + [anon_sym_SQUOTE] = ACTIONS(1086), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1146), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1148), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1148), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_ref] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1108), + [sym_mutable_specifier] = ACTIONS(1592), + [sym_integer_literal] = ACTIONS(1112), + [aux_sym_string_literal_token1] = ACTIONS(1114), + [sym_char_literal] = ACTIONS(1112), + [anon_sym_true] = ACTIONS(1116), + [anon_sym_false] = ACTIONS(1116), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1594), + [sym_super] = ACTIONS(1152), + [sym_crate] = ACTIONS(1152), + [sym_metavariable] = ACTIONS(1154), + [sym__raw_string_literal_start] = ACTIONS(1124), + [sym_float_literal] = ACTIONS(1112), }, [STATE(436)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2056), - [sym_bracketed_type] = STATE(3699), - [sym_lifetime] = STATE(858), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3431), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(2528), - [sym_scoped_identifier] = STATE(2224), - [sym_scoped_type_identifier] = STATE(2186), - [sym_const_block] = STATE(2221), - [sym__pattern] = STATE(2229), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(2100), + [sym_bracketed_type] = STATE(3734), + [sym_lifetime] = STATE(850), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3444), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2525), + [sym_scoped_identifier] = STATE(2223), + [sym_scoped_type_identifier] = STATE(2238), + [sym_const_block] = STATE(2197), + [sym__pattern] = STATE(2218), + [sym_generic_pattern] = STATE(2197), + [sym_tuple_pattern] = STATE(2197), + [sym_slice_pattern] = STATE(2197), + [sym_tuple_struct_pattern] = STATE(2197), + [sym_struct_pattern] = STATE(2197), + [sym_remaining_field_pattern] = STATE(2197), + [sym_mut_pattern] = STATE(2197), + [sym_range_pattern] = STATE(2197), + [sym_ref_pattern] = STATE(2197), + [sym_captured_pattern] = STATE(2197), + [sym_reference_pattern] = STATE(2197), + [sym_or_pattern] = STATE(2197), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2129), + [sym_string_literal] = STATE(2129), + [sym_raw_string_literal] = STATE(2129), + [sym_boolean_literal] = STATE(2129), [sym_line_comment] = STATE(436), [sym_block_comment] = STATE(436), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(1103), - [anon_sym_LPAREN] = ACTIONS(1105), - [anon_sym_LBRACK] = ACTIONS(1109), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1115), - [anon_sym_i8] = ACTIONS(1115), - [anon_sym_u16] = ACTIONS(1115), - [anon_sym_i16] = ACTIONS(1115), - [anon_sym_u32] = ACTIONS(1115), - [anon_sym_i32] = ACTIONS(1115), - [anon_sym_u64] = ACTIONS(1115), - [anon_sym_i64] = ACTIONS(1115), - [anon_sym_u128] = ACTIONS(1115), - [anon_sym_i128] = ACTIONS(1115), - [anon_sym_isize] = ACTIONS(1115), - [anon_sym_usize] = ACTIONS(1115), - [anon_sym_f32] = ACTIONS(1115), - [anon_sym_f64] = ACTIONS(1115), - [anon_sym_bool] = ACTIONS(1115), - [anon_sym_str] = ACTIONS(1115), - [anon_sym_char] = ACTIONS(1115), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(1413), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1417), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COLON_COLON] = ACTIONS(1135), - [anon_sym_SQUOTE] = ACTIONS(1139), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1143), - [anon_sym_default] = ACTIONS(1145), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1151), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1151), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_ref] = ACTIONS(1159), - [anon_sym_dyn] = ACTIONS(1161), - [sym_mutable_specifier] = ACTIONS(1591), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1173), - [sym_super] = ACTIONS(1173), - [sym_crate] = ACTIONS(1173), - [sym_metavariable] = ACTIONS(1175), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), + [sym_identifier] = ACTIONS(1050), + [anon_sym_LPAREN] = ACTIONS(1052), + [anon_sym_LBRACK] = ACTIONS(1056), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1062), + [anon_sym_i8] = ACTIONS(1062), + [anon_sym_u16] = ACTIONS(1062), + [anon_sym_i16] = ACTIONS(1062), + [anon_sym_u32] = ACTIONS(1062), + [anon_sym_i32] = ACTIONS(1062), + [anon_sym_u64] = ACTIONS(1062), + [anon_sym_i64] = ACTIONS(1062), + [anon_sym_u128] = ACTIONS(1062), + [anon_sym_i128] = ACTIONS(1062), + [anon_sym_isize] = ACTIONS(1062), + [anon_sym_usize] = ACTIONS(1062), + [anon_sym_f32] = ACTIONS(1062), + [anon_sym_f64] = ACTIONS(1062), + [anon_sym_bool] = ACTIONS(1062), + [anon_sym_str] = ACTIONS(1062), + [anon_sym_char] = ACTIONS(1062), + [anon_sym_DASH] = ACTIONS(1064), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1388), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1392), + [anon_sym_DOT_DOT] = ACTIONS(1074), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1078), + [anon_sym_COLON_COLON] = ACTIONS(1082), + [anon_sym_SQUOTE] = ACTIONS(1086), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1092), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1098), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1098), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_ref] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1108), + [sym_mutable_specifier] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(1112), + [aux_sym_string_literal_token1] = ACTIONS(1114), + [sym_char_literal] = ACTIONS(1112), + [anon_sym_true] = ACTIONS(1116), + [anon_sym_false] = ACTIONS(1116), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1598), + [sym_super] = ACTIONS(1120), + [sym_crate] = ACTIONS(1120), + [sym_metavariable] = ACTIONS(1122), + [sym__raw_string_literal_start] = ACTIONS(1124), + [sym_float_literal] = ACTIONS(1112), }, [STATE(437)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2056), - [sym_bracketed_type] = STATE(3691), - [sym_lifetime] = STATE(854), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3333), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(2540), - [sym_scoped_identifier] = STATE(2311), - [sym_scoped_type_identifier] = STATE(2186), - [sym_const_block] = STATE(2221), - [sym__pattern] = STATE(2229), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(2100), + [sym_bracketed_type] = STATE(3726), + [sym_lifetime] = STATE(834), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3316), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2601), + [sym_scoped_identifier] = STATE(2336), + [sym_scoped_type_identifier] = STATE(2238), + [sym_const_block] = STATE(2197), + [sym__pattern] = STATE(2218), + [sym_generic_pattern] = STATE(2197), + [sym_tuple_pattern] = STATE(2197), + [sym_slice_pattern] = STATE(2197), + [sym_tuple_struct_pattern] = STATE(2197), + [sym_struct_pattern] = STATE(2197), + [sym_remaining_field_pattern] = STATE(2197), + [sym_mut_pattern] = STATE(2197), + [sym_range_pattern] = STATE(2197), + [sym_ref_pattern] = STATE(2197), + [sym_captured_pattern] = STATE(2197), + [sym_reference_pattern] = STATE(2197), + [sym_or_pattern] = STATE(2197), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2129), + [sym_string_literal] = STATE(2129), + [sym_raw_string_literal] = STATE(2129), + [sym_boolean_literal] = STATE(2129), [sym_line_comment] = STATE(437), [sym_block_comment] = STATE(437), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(1181), - [anon_sym_LPAREN] = ACTIONS(1183), - [anon_sym_LBRACK] = ACTIONS(1109), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1187), - [anon_sym_i8] = ACTIONS(1187), - [anon_sym_u16] = ACTIONS(1187), - [anon_sym_i16] = ACTIONS(1187), - [anon_sym_u32] = ACTIONS(1187), - [anon_sym_i32] = ACTIONS(1187), - [anon_sym_u64] = ACTIONS(1187), - [anon_sym_i64] = ACTIONS(1187), - [anon_sym_u128] = ACTIONS(1187), - [anon_sym_i128] = ACTIONS(1187), - [anon_sym_isize] = ACTIONS(1187), - [anon_sym_usize] = ACTIONS(1187), - [anon_sym_f32] = ACTIONS(1187), - [anon_sym_f64] = ACTIONS(1187), - [anon_sym_bool] = ACTIONS(1187), - [anon_sym_str] = ACTIONS(1187), - [anon_sym_char] = ACTIONS(1187), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(1583), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1417), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COLON_COLON] = ACTIONS(1195), - [anon_sym_SQUOTE] = ACTIONS(1139), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1143), - [anon_sym_default] = ACTIONS(1197), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1199), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1199), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_ref] = ACTIONS(1159), - [anon_sym_dyn] = ACTIONS(1161), - [sym_mutable_specifier] = ACTIONS(1593), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1595), - [sym_super] = ACTIONS(1203), - [sym_crate] = ACTIONS(1203), - [sym_metavariable] = ACTIONS(1205), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), + [sym_identifier] = ACTIONS(1130), + [anon_sym_LPAREN] = ACTIONS(1132), + [anon_sym_LBRACK] = ACTIONS(1056), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1136), + [anon_sym_i8] = ACTIONS(1136), + [anon_sym_u16] = ACTIONS(1136), + [anon_sym_i16] = ACTIONS(1136), + [anon_sym_u32] = ACTIONS(1136), + [anon_sym_i32] = ACTIONS(1136), + [anon_sym_u64] = ACTIONS(1136), + [anon_sym_i64] = ACTIONS(1136), + [anon_sym_u128] = ACTIONS(1136), + [anon_sym_i128] = ACTIONS(1136), + [anon_sym_isize] = ACTIONS(1136), + [anon_sym_usize] = ACTIONS(1136), + [anon_sym_f32] = ACTIONS(1136), + [anon_sym_f64] = ACTIONS(1136), + [anon_sym_bool] = ACTIONS(1136), + [anon_sym_str] = ACTIONS(1136), + [anon_sym_char] = ACTIONS(1136), + [anon_sym_DASH] = ACTIONS(1064), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1588), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1392), + [anon_sym_DOT_DOT] = ACTIONS(1074), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1078), + [anon_sym_COLON_COLON] = ACTIONS(1144), + [anon_sym_SQUOTE] = ACTIONS(1086), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1146), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1148), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1148), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_ref] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1108), + [sym_mutable_specifier] = ACTIONS(1600), + [sym_integer_literal] = ACTIONS(1112), + [aux_sym_string_literal_token1] = ACTIONS(1114), + [sym_char_literal] = ACTIONS(1112), + [anon_sym_true] = ACTIONS(1116), + [anon_sym_false] = ACTIONS(1116), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1152), + [sym_super] = ACTIONS(1152), + [sym_crate] = ACTIONS(1152), + [sym_metavariable] = ACTIONS(1154), + [sym__raw_string_literal_start] = ACTIONS(1124), + [sym_float_literal] = ACTIONS(1112), }, [STATE(438)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2056), - [sym_bracketed_type] = STATE(3700), - [sym_lifetime] = STATE(858), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3439), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(2581), - [sym_scoped_identifier] = STATE(2275), - [sym_scoped_type_identifier] = STATE(2186), - [sym_const_block] = STATE(2221), - [sym__pattern] = STATE(2229), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(2082), + [sym_bracketed_type] = STATE(3726), + [sym_lifetime] = STATE(3823), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3316), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2601), + [sym_scoped_identifier] = STATE(2336), + [sym_scoped_type_identifier] = STATE(2238), + [sym_const_block] = STATE(2197), + [sym__pattern] = STATE(2193), + [sym_generic_pattern] = STATE(2197), + [sym_tuple_pattern] = STATE(2197), + [sym_slice_pattern] = STATE(2197), + [sym_tuple_struct_pattern] = STATE(2197), + [sym_struct_pattern] = STATE(2197), + [sym_remaining_field_pattern] = STATE(2197), + [sym_mut_pattern] = STATE(2197), + [sym_range_pattern] = STATE(2197), + [sym_ref_pattern] = STATE(2197), + [sym_captured_pattern] = STATE(2197), + [sym_reference_pattern] = STATE(2197), + [sym_or_pattern] = STATE(2197), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2129), + [sym_string_literal] = STATE(2129), + [sym_raw_string_literal] = STATE(2129), + [sym_boolean_literal] = STATE(2129), [sym_line_comment] = STATE(438), [sym_block_comment] = STATE(438), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(1557), - [anon_sym_LPAREN] = ACTIONS(1559), - [anon_sym_LBRACK] = ACTIONS(1109), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1563), - [anon_sym_i8] = ACTIONS(1563), - [anon_sym_u16] = ACTIONS(1563), - [anon_sym_i16] = ACTIONS(1563), - [anon_sym_u32] = ACTIONS(1563), - [anon_sym_i32] = ACTIONS(1563), - [anon_sym_u64] = ACTIONS(1563), - [anon_sym_i64] = ACTIONS(1563), - [anon_sym_u128] = ACTIONS(1563), - [anon_sym_i128] = ACTIONS(1563), - [anon_sym_isize] = ACTIONS(1563), - [anon_sym_usize] = ACTIONS(1563), - [anon_sym_f32] = ACTIONS(1563), - [anon_sym_f64] = ACTIONS(1563), - [anon_sym_bool] = ACTIONS(1563), - [anon_sym_str] = ACTIONS(1563), - [anon_sym_char] = ACTIONS(1563), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(1565), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1417), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COLON_COLON] = ACTIONS(1569), - [anon_sym_SQUOTE] = ACTIONS(1139), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1143), - [anon_sym_default] = ACTIONS(1571), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1573), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1573), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_ref] = ACTIONS(1159), - [anon_sym_dyn] = ACTIONS(1161), - [sym_mutable_specifier] = ACTIONS(1597), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1575), - [sym_super] = ACTIONS(1575), - [sym_crate] = ACTIONS(1575), - [sym_metavariable] = ACTIONS(1577), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), + [sym_identifier] = ACTIONS(1130), + [anon_sym_LPAREN] = ACTIONS(1132), + [anon_sym_LBRACK] = ACTIONS(1056), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1136), + [anon_sym_i8] = ACTIONS(1136), + [anon_sym_u16] = ACTIONS(1136), + [anon_sym_i16] = ACTIONS(1136), + [anon_sym_u32] = ACTIONS(1136), + [anon_sym_i32] = ACTIONS(1136), + [anon_sym_u64] = ACTIONS(1136), + [anon_sym_i64] = ACTIONS(1136), + [anon_sym_u128] = ACTIONS(1136), + [anon_sym_i128] = ACTIONS(1136), + [anon_sym_isize] = ACTIONS(1136), + [anon_sym_usize] = ACTIONS(1136), + [anon_sym_f32] = ACTIONS(1136), + [anon_sym_f64] = ACTIONS(1136), + [anon_sym_bool] = ACTIONS(1136), + [anon_sym_str] = ACTIONS(1136), + [anon_sym_char] = ACTIONS(1136), + [anon_sym_DASH] = ACTIONS(1064), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1588), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1392), + [anon_sym_DOT_DOT] = ACTIONS(1074), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1078), + [anon_sym_COLON_COLON] = ACTIONS(1144), + [anon_sym_SQUOTE] = ACTIONS(1086), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1146), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1148), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1148), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_ref] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1108), + [sym_mutable_specifier] = ACTIONS(1400), + [sym_integer_literal] = ACTIONS(1112), + [aux_sym_string_literal_token1] = ACTIONS(1114), + [sym_char_literal] = ACTIONS(1112), + [anon_sym_true] = ACTIONS(1116), + [anon_sym_false] = ACTIONS(1116), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1152), + [sym_super] = ACTIONS(1152), + [sym_crate] = ACTIONS(1152), + [sym_metavariable] = ACTIONS(1154), + [sym__raw_string_literal_start] = ACTIONS(1124), + [sym_float_literal] = ACTIONS(1112), }, [STATE(439)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2061), - [sym_bracketed_type] = STATE(3700), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3439), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(2581), - [sym_scoped_identifier] = STATE(2275), - [sym_scoped_type_identifier] = STATE(2186), - [sym_const_block] = STATE(2221), - [sym__pattern] = STATE(2201), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(2082), + [sym_bracketed_type] = STATE(3734), + [sym_lifetime] = STATE(3823), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3444), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2525), + [sym_scoped_identifier] = STATE(2223), + [sym_scoped_type_identifier] = STATE(2238), + [sym_const_block] = STATE(2197), + [sym__pattern] = STATE(2193), + [sym_generic_pattern] = STATE(2197), + [sym_tuple_pattern] = STATE(2197), + [sym_slice_pattern] = STATE(2197), + [sym_tuple_struct_pattern] = STATE(2197), + [sym_struct_pattern] = STATE(2197), + [sym_remaining_field_pattern] = STATE(2197), + [sym_mut_pattern] = STATE(2197), + [sym_range_pattern] = STATE(2197), + [sym_ref_pattern] = STATE(2197), + [sym_captured_pattern] = STATE(2197), + [sym_reference_pattern] = STATE(2197), + [sym_or_pattern] = STATE(2197), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2129), + [sym_string_literal] = STATE(2129), + [sym_raw_string_literal] = STATE(2129), + [sym_boolean_literal] = STATE(2129), [sym_line_comment] = STATE(439), [sym_block_comment] = STATE(439), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(1557), - [anon_sym_LPAREN] = ACTIONS(1559), - [anon_sym_LBRACK] = ACTIONS(1109), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1563), - [anon_sym_i8] = ACTIONS(1563), - [anon_sym_u16] = ACTIONS(1563), - [anon_sym_i16] = ACTIONS(1563), - [anon_sym_u32] = ACTIONS(1563), - [anon_sym_i32] = ACTIONS(1563), - [anon_sym_u64] = ACTIONS(1563), - [anon_sym_i64] = ACTIONS(1563), - [anon_sym_u128] = ACTIONS(1563), - [anon_sym_i128] = ACTIONS(1563), - [anon_sym_isize] = ACTIONS(1563), - [anon_sym_usize] = ACTIONS(1563), - [anon_sym_f32] = ACTIONS(1563), - [anon_sym_f64] = ACTIONS(1563), - [anon_sym_bool] = ACTIONS(1563), - [anon_sym_str] = ACTIONS(1563), - [anon_sym_char] = ACTIONS(1563), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(1565), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1417), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COLON_COLON] = ACTIONS(1569), - [anon_sym_SQUOTE] = ACTIONS(1139), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1143), - [anon_sym_default] = ACTIONS(1571), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1573), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1573), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_ref] = ACTIONS(1159), - [anon_sym_dyn] = ACTIONS(1161), - [sym_mutable_specifier] = ACTIONS(1425), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1575), - [sym_super] = ACTIONS(1575), - [sym_crate] = ACTIONS(1575), - [sym_metavariable] = ACTIONS(1577), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), + [sym_identifier] = ACTIONS(1050), + [anon_sym_LPAREN] = ACTIONS(1052), + [anon_sym_LBRACK] = ACTIONS(1056), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1062), + [anon_sym_i8] = ACTIONS(1062), + [anon_sym_u16] = ACTIONS(1062), + [anon_sym_i16] = ACTIONS(1062), + [anon_sym_u32] = ACTIONS(1062), + [anon_sym_i32] = ACTIONS(1062), + [anon_sym_u64] = ACTIONS(1062), + [anon_sym_i64] = ACTIONS(1062), + [anon_sym_u128] = ACTIONS(1062), + [anon_sym_i128] = ACTIONS(1062), + [anon_sym_isize] = ACTIONS(1062), + [anon_sym_usize] = ACTIONS(1062), + [anon_sym_f32] = ACTIONS(1062), + [anon_sym_f64] = ACTIONS(1062), + [anon_sym_bool] = ACTIONS(1062), + [anon_sym_str] = ACTIONS(1062), + [anon_sym_char] = ACTIONS(1062), + [anon_sym_DASH] = ACTIONS(1064), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1388), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1392), + [anon_sym_DOT_DOT] = ACTIONS(1074), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1078), + [anon_sym_COLON_COLON] = ACTIONS(1082), + [anon_sym_SQUOTE] = ACTIONS(1086), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1092), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1098), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1098), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_ref] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1108), + [sym_mutable_specifier] = ACTIONS(1400), + [sym_integer_literal] = ACTIONS(1112), + [aux_sym_string_literal_token1] = ACTIONS(1114), + [sym_char_literal] = ACTIONS(1112), + [anon_sym_true] = ACTIONS(1116), + [anon_sym_false] = ACTIONS(1116), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1602), + [sym_super] = ACTIONS(1120), + [sym_crate] = ACTIONS(1120), + [sym_metavariable] = ACTIONS(1122), + [sym__raw_string_literal_start] = ACTIONS(1124), + [sym_float_literal] = ACTIONS(1112), }, [STATE(440)] = { + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(2082), + [sym_bracketed_type] = STATE(3735), + [sym_lifetime] = STATE(3823), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3452), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2593), + [sym_scoped_identifier] = STATE(2291), + [sym_scoped_type_identifier] = STATE(2238), + [sym_const_block] = STATE(2197), + [sym__pattern] = STATE(2193), + [sym_generic_pattern] = STATE(2197), + [sym_tuple_pattern] = STATE(2197), + [sym_slice_pattern] = STATE(2197), + [sym_tuple_struct_pattern] = STATE(2197), + [sym_struct_pattern] = STATE(2197), + [sym_remaining_field_pattern] = STATE(2197), + [sym_mut_pattern] = STATE(2197), + [sym_range_pattern] = STATE(2197), + [sym_ref_pattern] = STATE(2197), + [sym_captured_pattern] = STATE(2197), + [sym_reference_pattern] = STATE(2197), + [sym_or_pattern] = STATE(2197), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2129), + [sym_string_literal] = STATE(2129), + [sym_raw_string_literal] = STATE(2129), + [sym_boolean_literal] = STATE(2129), [sym_line_comment] = STATE(440), [sym_block_comment] = STATE(440), - [sym_identifier] = ACTIONS(1599), - [anon_sym_SEMI] = ACTIONS(1601), - [anon_sym_LPAREN] = ACTIONS(1601), - [anon_sym_RPAREN] = ACTIONS(1601), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_RBRACK] = ACTIONS(1601), - [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_RBRACE] = ACTIONS(1601), - [anon_sym_COLON] = ACTIONS(1599), - [anon_sym_PLUS] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1599), - [anon_sym_QMARK] = ACTIONS(1601), - [anon_sym_u8] = ACTIONS(1599), - [anon_sym_i8] = ACTIONS(1599), - [anon_sym_u16] = ACTIONS(1599), - [anon_sym_i16] = ACTIONS(1599), - [anon_sym_u32] = ACTIONS(1599), - [anon_sym_i32] = ACTIONS(1599), - [anon_sym_u64] = ACTIONS(1599), - [anon_sym_i64] = ACTIONS(1599), - [anon_sym_u128] = ACTIONS(1599), - [anon_sym_i128] = ACTIONS(1599), - [anon_sym_isize] = ACTIONS(1599), - [anon_sym_usize] = ACTIONS(1599), - [anon_sym_f32] = ACTIONS(1599), - [anon_sym_f64] = ACTIONS(1599), - [anon_sym_bool] = ACTIONS(1599), - [anon_sym_str] = ACTIONS(1599), - [anon_sym_char] = ACTIONS(1599), - [anon_sym_DASH] = ACTIONS(1599), - [anon_sym_SLASH] = ACTIONS(1599), - [anon_sym_PERCENT] = ACTIONS(1599), - [anon_sym_CARET] = ACTIONS(1599), - [anon_sym_BANG] = ACTIONS(1599), - [anon_sym_AMP] = ACTIONS(1599), - [anon_sym_PIPE] = ACTIONS(1599), - [anon_sym_AMP_AMP] = ACTIONS(1601), - [anon_sym_PIPE_PIPE] = ACTIONS(1601), - [anon_sym_LT_LT] = ACTIONS(1599), - [anon_sym_GT_GT] = ACTIONS(1599), - [anon_sym_PLUS_EQ] = ACTIONS(1601), - [anon_sym_DASH_EQ] = ACTIONS(1601), - [anon_sym_STAR_EQ] = ACTIONS(1601), - [anon_sym_SLASH_EQ] = ACTIONS(1601), - [anon_sym_PERCENT_EQ] = ACTIONS(1601), - [anon_sym_CARET_EQ] = ACTIONS(1601), - [anon_sym_AMP_EQ] = ACTIONS(1601), - [anon_sym_PIPE_EQ] = ACTIONS(1601), - [anon_sym_LT_LT_EQ] = ACTIONS(1601), - [anon_sym_GT_GT_EQ] = ACTIONS(1601), - [anon_sym_EQ] = ACTIONS(1599), - [anon_sym_EQ_EQ] = ACTIONS(1601), - [anon_sym_BANG_EQ] = ACTIONS(1601), - [anon_sym_GT] = ACTIONS(1599), - [anon_sym_LT] = ACTIONS(1599), - [anon_sym_GT_EQ] = ACTIONS(1601), - [anon_sym_LT_EQ] = ACTIONS(1601), - [anon_sym_DOT] = ACTIONS(1599), - [anon_sym_DOT_DOT] = ACTIONS(1599), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1601), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1601), - [anon_sym_COMMA] = ACTIONS(1601), - [anon_sym_COLON_COLON] = ACTIONS(1601), - [anon_sym_SQUOTE] = ACTIONS(1599), - [anon_sym_as] = ACTIONS(1599), - [anon_sym_async] = ACTIONS(1599), - [anon_sym_break] = ACTIONS(1599), - [anon_sym_const] = ACTIONS(1599), - [anon_sym_continue] = ACTIONS(1599), - [anon_sym_default] = ACTIONS(1599), - [anon_sym_for] = ACTIONS(1599), - [anon_sym_gen] = ACTIONS(1599), - [anon_sym_if] = ACTIONS(1599), - [anon_sym_loop] = ACTIONS(1599), - [anon_sym_match] = ACTIONS(1599), - [anon_sym_return] = ACTIONS(1599), - [anon_sym_static] = ACTIONS(1599), - [anon_sym_union] = ACTIONS(1599), - [anon_sym_unsafe] = ACTIONS(1599), - [anon_sym_while] = ACTIONS(1599), - [anon_sym_else] = ACTIONS(1599), - [anon_sym_yield] = ACTIONS(1599), - [anon_sym_move] = ACTIONS(1599), - [anon_sym_try] = ACTIONS(1599), - [sym_integer_literal] = ACTIONS(1601), - [aux_sym_string_literal_token1] = ACTIONS(1601), - [sym_char_literal] = ACTIONS(1601), - [anon_sym_true] = ACTIONS(1599), - [anon_sym_false] = ACTIONS(1599), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1599), - [sym_super] = ACTIONS(1599), - [sym_crate] = ACTIONS(1599), - [sym_metavariable] = ACTIONS(1601), - [sym__raw_string_literal_start] = ACTIONS(1601), - [sym_float_literal] = ACTIONS(1601), + [sym_identifier] = ACTIONS(1562), + [anon_sym_LPAREN] = ACTIONS(1564), + [anon_sym_LBRACK] = ACTIONS(1056), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1568), + [anon_sym_i8] = ACTIONS(1568), + [anon_sym_u16] = ACTIONS(1568), + [anon_sym_i16] = ACTIONS(1568), + [anon_sym_u32] = ACTIONS(1568), + [anon_sym_i32] = ACTIONS(1568), + [anon_sym_u64] = ACTIONS(1568), + [anon_sym_i64] = ACTIONS(1568), + [anon_sym_u128] = ACTIONS(1568), + [anon_sym_i128] = ACTIONS(1568), + [anon_sym_isize] = ACTIONS(1568), + [anon_sym_usize] = ACTIONS(1568), + [anon_sym_f32] = ACTIONS(1568), + [anon_sym_f64] = ACTIONS(1568), + [anon_sym_bool] = ACTIONS(1568), + [anon_sym_str] = ACTIONS(1568), + [anon_sym_char] = ACTIONS(1568), + [anon_sym_DASH] = ACTIONS(1064), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1570), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1392), + [anon_sym_DOT_DOT] = ACTIONS(1074), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1078), + [anon_sym_COLON_COLON] = ACTIONS(1574), + [anon_sym_SQUOTE] = ACTIONS(1086), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1576), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1578), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1578), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_ref] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1108), + [sym_mutable_specifier] = ACTIONS(1400), + [sym_integer_literal] = ACTIONS(1112), + [aux_sym_string_literal_token1] = ACTIONS(1114), + [sym_char_literal] = ACTIONS(1112), + [anon_sym_true] = ACTIONS(1116), + [anon_sym_false] = ACTIONS(1116), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1580), + [sym_super] = ACTIONS(1580), + [sym_crate] = ACTIONS(1580), + [sym_metavariable] = ACTIONS(1582), + [sym__raw_string_literal_start] = ACTIONS(1124), + [sym_float_literal] = ACTIONS(1112), }, [STATE(441)] = { + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(2082), + [sym_bracketed_type] = STATE(3734), + [sym_lifetime] = STATE(3823), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3444), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2525), + [sym_scoped_identifier] = STATE(2223), + [sym_scoped_type_identifier] = STATE(2238), + [sym_const_block] = STATE(2197), + [sym__pattern] = STATE(2193), + [sym_generic_pattern] = STATE(2197), + [sym_tuple_pattern] = STATE(2197), + [sym_slice_pattern] = STATE(2197), + [sym_tuple_struct_pattern] = STATE(2197), + [sym_struct_pattern] = STATE(2197), + [sym_remaining_field_pattern] = STATE(2197), + [sym_mut_pattern] = STATE(2197), + [sym_range_pattern] = STATE(2197), + [sym_ref_pattern] = STATE(2197), + [sym_captured_pattern] = STATE(2197), + [sym_reference_pattern] = STATE(2197), + [sym_or_pattern] = STATE(2197), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2129), + [sym_string_literal] = STATE(2129), + [sym_raw_string_literal] = STATE(2129), + [sym_boolean_literal] = STATE(2129), [sym_line_comment] = STATE(441), [sym_block_comment] = STATE(441), - [sym_identifier] = ACTIONS(1599), - [anon_sym_LPAREN] = ACTIONS(1601), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_EQ_GT] = ACTIONS(1601), - [anon_sym_COLON] = ACTIONS(1599), - [anon_sym_PLUS] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1599), - [anon_sym_QMARK] = ACTIONS(1601), - [anon_sym_u8] = ACTIONS(1599), - [anon_sym_i8] = ACTIONS(1599), - [anon_sym_u16] = ACTIONS(1599), - [anon_sym_i16] = ACTIONS(1599), - [anon_sym_u32] = ACTIONS(1599), - [anon_sym_i32] = ACTIONS(1599), - [anon_sym_u64] = ACTIONS(1599), - [anon_sym_i64] = ACTIONS(1599), - [anon_sym_u128] = ACTIONS(1599), - [anon_sym_i128] = ACTIONS(1599), - [anon_sym_isize] = ACTIONS(1599), - [anon_sym_usize] = ACTIONS(1599), - [anon_sym_f32] = ACTIONS(1599), - [anon_sym_f64] = ACTIONS(1599), - [anon_sym_bool] = ACTIONS(1599), - [anon_sym_str] = ACTIONS(1599), - [anon_sym_char] = ACTIONS(1599), - [anon_sym_DASH] = ACTIONS(1599), - [anon_sym_SLASH] = ACTIONS(1599), - [anon_sym_PERCENT] = ACTIONS(1599), - [anon_sym_CARET] = ACTIONS(1599), - [anon_sym_BANG] = ACTIONS(1599), - [anon_sym_AMP] = ACTIONS(1599), - [anon_sym_PIPE] = ACTIONS(1599), - [anon_sym_AMP_AMP] = ACTIONS(1601), - [anon_sym_PIPE_PIPE] = ACTIONS(1601), - [anon_sym_LT_LT] = ACTIONS(1599), - [anon_sym_GT_GT] = ACTIONS(1599), - [anon_sym_PLUS_EQ] = ACTIONS(1601), - [anon_sym_DASH_EQ] = ACTIONS(1601), - [anon_sym_STAR_EQ] = ACTIONS(1601), - [anon_sym_SLASH_EQ] = ACTIONS(1601), - [anon_sym_PERCENT_EQ] = ACTIONS(1601), - [anon_sym_CARET_EQ] = ACTIONS(1601), - [anon_sym_AMP_EQ] = ACTIONS(1601), - [anon_sym_PIPE_EQ] = ACTIONS(1601), - [anon_sym_LT_LT_EQ] = ACTIONS(1601), - [anon_sym_GT_GT_EQ] = ACTIONS(1601), - [anon_sym_EQ] = ACTIONS(1599), - [anon_sym_EQ_EQ] = ACTIONS(1601), - [anon_sym_BANG_EQ] = ACTIONS(1601), - [anon_sym_GT] = ACTIONS(1599), - [anon_sym_LT] = ACTIONS(1599), - [anon_sym_GT_EQ] = ACTIONS(1601), - [anon_sym_LT_EQ] = ACTIONS(1601), - [anon_sym_DOT] = ACTIONS(1599), - [anon_sym_DOT_DOT] = ACTIONS(1599), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1601), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1601), - [anon_sym_COLON_COLON] = ACTIONS(1601), - [anon_sym_SQUOTE] = ACTIONS(1599), - [anon_sym_as] = ACTIONS(1599), - [anon_sym_async] = ACTIONS(1599), - [anon_sym_break] = ACTIONS(1599), - [anon_sym_const] = ACTIONS(1599), - [anon_sym_continue] = ACTIONS(1599), - [anon_sym_default] = ACTIONS(1599), - [anon_sym_for] = ACTIONS(1599), - [anon_sym_gen] = ACTIONS(1599), - [anon_sym_if] = ACTIONS(1599), - [anon_sym_loop] = ACTIONS(1599), - [anon_sym_match] = ACTIONS(1599), - [anon_sym_return] = ACTIONS(1599), - [anon_sym_static] = ACTIONS(1599), - [anon_sym_union] = ACTIONS(1599), - [anon_sym_unsafe] = ACTIONS(1599), - [anon_sym_while] = ACTIONS(1599), - [anon_sym_yield] = ACTIONS(1599), - [anon_sym_move] = ACTIONS(1599), - [anon_sym_try] = ACTIONS(1599), - [sym_integer_literal] = ACTIONS(1601), - [aux_sym_string_literal_token1] = ACTIONS(1601), - [sym_char_literal] = ACTIONS(1601), - [anon_sym_true] = ACTIONS(1599), - [anon_sym_false] = ACTIONS(1599), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1599), - [sym_super] = ACTIONS(1599), - [sym_crate] = ACTIONS(1599), - [sym_metavariable] = ACTIONS(1601), - [sym__raw_string_literal_start] = ACTIONS(1601), - [sym_float_literal] = ACTIONS(1601), + [sym_identifier] = ACTIONS(1050), + [anon_sym_LPAREN] = ACTIONS(1052), + [anon_sym_LBRACK] = ACTIONS(1056), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1062), + [anon_sym_i8] = ACTIONS(1062), + [anon_sym_u16] = ACTIONS(1062), + [anon_sym_i16] = ACTIONS(1062), + [anon_sym_u32] = ACTIONS(1062), + [anon_sym_i32] = ACTIONS(1062), + [anon_sym_u64] = ACTIONS(1062), + [anon_sym_i64] = ACTIONS(1062), + [anon_sym_u128] = ACTIONS(1062), + [anon_sym_i128] = ACTIONS(1062), + [anon_sym_isize] = ACTIONS(1062), + [anon_sym_usize] = ACTIONS(1062), + [anon_sym_f32] = ACTIONS(1062), + [anon_sym_f64] = ACTIONS(1062), + [anon_sym_bool] = ACTIONS(1062), + [anon_sym_str] = ACTIONS(1062), + [anon_sym_char] = ACTIONS(1062), + [anon_sym_DASH] = ACTIONS(1064), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1388), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1392), + [anon_sym_DOT_DOT] = ACTIONS(1074), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1078), + [anon_sym_COLON_COLON] = ACTIONS(1082), + [anon_sym_SQUOTE] = ACTIONS(1086), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1092), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1098), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1098), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_ref] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1108), + [sym_mutable_specifier] = ACTIONS(1400), + [sym_integer_literal] = ACTIONS(1112), + [aux_sym_string_literal_token1] = ACTIONS(1114), + [sym_char_literal] = ACTIONS(1112), + [anon_sym_true] = ACTIONS(1116), + [anon_sym_false] = ACTIONS(1116), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1120), + [sym_super] = ACTIONS(1120), + [sym_crate] = ACTIONS(1120), + [sym_metavariable] = ACTIONS(1122), + [sym__raw_string_literal_start] = ACTIONS(1124), + [sym_float_literal] = ACTIONS(1112), }, [STATE(442)] = { - [sym_bracketed_type] = STATE(3674), - [sym_generic_type] = STATE(3711), - [sym_generic_type_with_turbofish] = STATE(3231), - [sym_macro_invocation] = STATE(2221), - [sym_scoped_identifier] = STATE(2035), - [sym_scoped_type_identifier] = STATE(3055), - [sym_const_block] = STATE(2221), - [sym__pattern] = STATE(2213), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), [sym_line_comment] = STATE(442), [sym_block_comment] = STATE(442), - [sym_identifier] = ACTIONS(1603), - [anon_sym_LPAREN] = ACTIONS(1605), - [anon_sym_LBRACK] = ACTIONS(1605), - [anon_sym_LBRACE] = ACTIONS(1605), - [anon_sym_STAR] = ACTIONS(1605), - [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_DASH] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1605), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_PIPE] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(1605), - [anon_sym__] = ACTIONS(1603), - [anon_sym_DOT_DOT] = ACTIONS(1603), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COLON_COLON] = ACTIONS(1605), - [anon_sym_DASH_GT] = ACTIONS(1605), - [anon_sym_SQUOTE] = ACTIONS(1603), - [anon_sym_async] = ACTIONS(1603), - [anon_sym_break] = ACTIONS(1603), - [anon_sym_const] = ACTIONS(1603), - [anon_sym_continue] = ACTIONS(1603), - [anon_sym_default] = ACTIONS(1603), - [anon_sym_for] = ACTIONS(1603), - [anon_sym_gen] = ACTIONS(1603), - [anon_sym_if] = ACTIONS(1603), - [anon_sym_loop] = ACTIONS(1603), - [anon_sym_match] = ACTIONS(1603), - [anon_sym_return] = ACTIONS(1603), - [anon_sym_static] = ACTIONS(1603), - [anon_sym_union] = ACTIONS(1603), - [anon_sym_unsafe] = ACTIONS(1603), - [anon_sym_while] = ACTIONS(1603), - [anon_sym_ref] = ACTIONS(1159), - [sym_mutable_specifier] = ACTIONS(1425), - [anon_sym_yield] = ACTIONS(1603), - [anon_sym_move] = ACTIONS(1603), - [anon_sym_try] = ACTIONS(1603), - [sym_integer_literal] = ACTIONS(1605), - [aux_sym_string_literal_token1] = ACTIONS(1605), - [sym_char_literal] = ACTIONS(1605), - [anon_sym_true] = ACTIONS(1603), - [anon_sym_false] = ACTIONS(1603), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1603), - [sym_super] = ACTIONS(1603), - [sym_crate] = ACTIONS(1603), - [sym_metavariable] = ACTIONS(1605), - [sym__raw_string_literal_start] = ACTIONS(1605), - [sym_float_literal] = ACTIONS(1605), + [sym_identifier] = ACTIONS(1604), + [anon_sym_SEMI] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(1606), + [anon_sym_RPAREN] = ACTIONS(1606), + [anon_sym_LBRACK] = ACTIONS(1606), + [anon_sym_RBRACK] = ACTIONS(1606), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(1606), + [anon_sym_COLON] = ACTIONS(1604), + [anon_sym_PLUS] = ACTIONS(1604), + [anon_sym_STAR] = ACTIONS(1604), + [anon_sym_QMARK] = ACTIONS(1606), + [anon_sym_u8] = ACTIONS(1604), + [anon_sym_i8] = ACTIONS(1604), + [anon_sym_u16] = ACTIONS(1604), + [anon_sym_i16] = ACTIONS(1604), + [anon_sym_u32] = ACTIONS(1604), + [anon_sym_i32] = ACTIONS(1604), + [anon_sym_u64] = ACTIONS(1604), + [anon_sym_i64] = ACTIONS(1604), + [anon_sym_u128] = ACTIONS(1604), + [anon_sym_i128] = ACTIONS(1604), + [anon_sym_isize] = ACTIONS(1604), + [anon_sym_usize] = ACTIONS(1604), + [anon_sym_f32] = ACTIONS(1604), + [anon_sym_f64] = ACTIONS(1604), + [anon_sym_bool] = ACTIONS(1604), + [anon_sym_str] = ACTIONS(1604), + [anon_sym_char] = ACTIONS(1604), + [anon_sym_DASH] = ACTIONS(1604), + [anon_sym_SLASH] = ACTIONS(1604), + [anon_sym_PERCENT] = ACTIONS(1604), + [anon_sym_CARET] = ACTIONS(1604), + [anon_sym_BANG] = ACTIONS(1604), + [anon_sym_AMP] = ACTIONS(1604), + [anon_sym_PIPE] = ACTIONS(1604), + [anon_sym_AMP_AMP] = ACTIONS(1606), + [anon_sym_PIPE_PIPE] = ACTIONS(1606), + [anon_sym_LT_LT] = ACTIONS(1604), + [anon_sym_GT_GT] = ACTIONS(1604), + [anon_sym_PLUS_EQ] = ACTIONS(1606), + [anon_sym_DASH_EQ] = ACTIONS(1606), + [anon_sym_STAR_EQ] = ACTIONS(1606), + [anon_sym_SLASH_EQ] = ACTIONS(1606), + [anon_sym_PERCENT_EQ] = ACTIONS(1606), + [anon_sym_CARET_EQ] = ACTIONS(1606), + [anon_sym_AMP_EQ] = ACTIONS(1606), + [anon_sym_PIPE_EQ] = ACTIONS(1606), + [anon_sym_LT_LT_EQ] = ACTIONS(1606), + [anon_sym_GT_GT_EQ] = ACTIONS(1606), + [anon_sym_EQ] = ACTIONS(1604), + [anon_sym_EQ_EQ] = ACTIONS(1606), + [anon_sym_BANG_EQ] = ACTIONS(1606), + [anon_sym_GT] = ACTIONS(1604), + [anon_sym_LT] = ACTIONS(1604), + [anon_sym_GT_EQ] = ACTIONS(1606), + [anon_sym_LT_EQ] = ACTIONS(1606), + [anon_sym_DOT] = ACTIONS(1604), + [anon_sym_DOT_DOT] = ACTIONS(1604), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1606), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1606), + [anon_sym_COMMA] = ACTIONS(1606), + [anon_sym_COLON_COLON] = ACTIONS(1606), + [anon_sym_SQUOTE] = ACTIONS(1604), + [anon_sym_as] = ACTIONS(1604), + [anon_sym_async] = ACTIONS(1604), + [anon_sym_break] = ACTIONS(1604), + [anon_sym_const] = ACTIONS(1604), + [anon_sym_continue] = ACTIONS(1604), + [anon_sym_default] = ACTIONS(1604), + [anon_sym_for] = ACTIONS(1604), + [anon_sym_gen] = ACTIONS(1604), + [anon_sym_if] = ACTIONS(1604), + [anon_sym_loop] = ACTIONS(1604), + [anon_sym_match] = ACTIONS(1604), + [anon_sym_return] = ACTIONS(1604), + [anon_sym_static] = ACTIONS(1604), + [anon_sym_union] = ACTIONS(1604), + [anon_sym_unsafe] = ACTIONS(1604), + [anon_sym_while] = ACTIONS(1604), + [anon_sym_else] = ACTIONS(1604), + [anon_sym_yield] = ACTIONS(1604), + [anon_sym_move] = ACTIONS(1604), + [anon_sym_try] = ACTIONS(1604), + [sym_integer_literal] = ACTIONS(1606), + [aux_sym_string_literal_token1] = ACTIONS(1606), + [sym_char_literal] = ACTIONS(1606), + [anon_sym_true] = ACTIONS(1604), + [anon_sym_false] = ACTIONS(1604), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1604), + [sym_super] = ACTIONS(1604), + [sym_crate] = ACTIONS(1604), + [sym_metavariable] = ACTIONS(1606), + [sym__raw_string_literal_start] = ACTIONS(1606), + [sym_float_literal] = ACTIONS(1606), }, [STATE(443)] = { - [sym_bracketed_type] = STATE(3674), - [sym_generic_type] = STATE(3711), - [sym_generic_type_with_turbofish] = STATE(3231), - [sym_macro_invocation] = STATE(2221), - [sym_scoped_identifier] = STATE(2035), - [sym_scoped_type_identifier] = STATE(3055), - [sym_const_block] = STATE(2221), - [sym__pattern] = STATE(2230), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), [sym_line_comment] = STATE(443), [sym_block_comment] = STATE(443), - [sym_identifier] = ACTIONS(1607), - [anon_sym_LPAREN] = ACTIONS(1609), - [anon_sym_LBRACK] = ACTIONS(1609), - [anon_sym_LBRACE] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(1609), - [anon_sym_u8] = ACTIONS(1607), - [anon_sym_i8] = ACTIONS(1607), - [anon_sym_u16] = ACTIONS(1607), - [anon_sym_i16] = ACTIONS(1607), - [anon_sym_u32] = ACTIONS(1607), - [anon_sym_i32] = ACTIONS(1607), - [anon_sym_u64] = ACTIONS(1607), - [anon_sym_i64] = ACTIONS(1607), - [anon_sym_u128] = ACTIONS(1607), - [anon_sym_i128] = ACTIONS(1607), - [anon_sym_isize] = ACTIONS(1607), - [anon_sym_usize] = ACTIONS(1607), - [anon_sym_f32] = ACTIONS(1607), - [anon_sym_f64] = ACTIONS(1607), - [anon_sym_bool] = ACTIONS(1607), - [anon_sym_str] = ACTIONS(1607), - [anon_sym_char] = ACTIONS(1607), - [anon_sym_DASH] = ACTIONS(1607), - [anon_sym_BANG] = ACTIONS(1609), - [anon_sym_AMP] = ACTIONS(1609), - [anon_sym_PIPE] = ACTIONS(1609), - [anon_sym_LT] = ACTIONS(1609), - [anon_sym__] = ACTIONS(1607), - [anon_sym_DOT_DOT] = ACTIONS(1607), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_DASH_GT] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(1607), - [anon_sym_async] = ACTIONS(1607), - [anon_sym_break] = ACTIONS(1607), - [anon_sym_const] = ACTIONS(1607), - [anon_sym_continue] = ACTIONS(1607), - [anon_sym_default] = ACTIONS(1607), - [anon_sym_for] = ACTIONS(1607), - [anon_sym_gen] = ACTIONS(1607), - [anon_sym_if] = ACTIONS(1607), - [anon_sym_loop] = ACTIONS(1607), - [anon_sym_match] = ACTIONS(1607), - [anon_sym_return] = ACTIONS(1607), - [anon_sym_static] = ACTIONS(1607), - [anon_sym_union] = ACTIONS(1607), - [anon_sym_unsafe] = ACTIONS(1607), - [anon_sym_while] = ACTIONS(1607), - [anon_sym_ref] = ACTIONS(1159), - [sym_mutable_specifier] = ACTIONS(1425), - [anon_sym_yield] = ACTIONS(1607), - [anon_sym_move] = ACTIONS(1607), - [anon_sym_try] = ACTIONS(1607), - [sym_integer_literal] = ACTIONS(1609), - [aux_sym_string_literal_token1] = ACTIONS(1609), - [sym_char_literal] = ACTIONS(1609), - [anon_sym_true] = ACTIONS(1607), - [anon_sym_false] = ACTIONS(1607), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1607), - [sym_super] = ACTIONS(1607), - [sym_crate] = ACTIONS(1607), - [sym_metavariable] = ACTIONS(1609), - [sym__raw_string_literal_start] = ACTIONS(1609), - [sym_float_literal] = ACTIONS(1609), + [sym_identifier] = ACTIONS(1604), + [anon_sym_LPAREN] = ACTIONS(1606), + [anon_sym_LBRACK] = ACTIONS(1606), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_EQ_GT] = ACTIONS(1606), + [anon_sym_COLON] = ACTIONS(1604), + [anon_sym_PLUS] = ACTIONS(1604), + [anon_sym_STAR] = ACTIONS(1604), + [anon_sym_QMARK] = ACTIONS(1606), + [anon_sym_u8] = ACTIONS(1604), + [anon_sym_i8] = ACTIONS(1604), + [anon_sym_u16] = ACTIONS(1604), + [anon_sym_i16] = ACTIONS(1604), + [anon_sym_u32] = ACTIONS(1604), + [anon_sym_i32] = ACTIONS(1604), + [anon_sym_u64] = ACTIONS(1604), + [anon_sym_i64] = ACTIONS(1604), + [anon_sym_u128] = ACTIONS(1604), + [anon_sym_i128] = ACTIONS(1604), + [anon_sym_isize] = ACTIONS(1604), + [anon_sym_usize] = ACTIONS(1604), + [anon_sym_f32] = ACTIONS(1604), + [anon_sym_f64] = ACTIONS(1604), + [anon_sym_bool] = ACTIONS(1604), + [anon_sym_str] = ACTIONS(1604), + [anon_sym_char] = ACTIONS(1604), + [anon_sym_DASH] = ACTIONS(1604), + [anon_sym_SLASH] = ACTIONS(1604), + [anon_sym_PERCENT] = ACTIONS(1604), + [anon_sym_CARET] = ACTIONS(1604), + [anon_sym_BANG] = ACTIONS(1604), + [anon_sym_AMP] = ACTIONS(1604), + [anon_sym_PIPE] = ACTIONS(1604), + [anon_sym_AMP_AMP] = ACTIONS(1606), + [anon_sym_PIPE_PIPE] = ACTIONS(1606), + [anon_sym_LT_LT] = ACTIONS(1604), + [anon_sym_GT_GT] = ACTIONS(1604), + [anon_sym_PLUS_EQ] = ACTIONS(1606), + [anon_sym_DASH_EQ] = ACTIONS(1606), + [anon_sym_STAR_EQ] = ACTIONS(1606), + [anon_sym_SLASH_EQ] = ACTIONS(1606), + [anon_sym_PERCENT_EQ] = ACTIONS(1606), + [anon_sym_CARET_EQ] = ACTIONS(1606), + [anon_sym_AMP_EQ] = ACTIONS(1606), + [anon_sym_PIPE_EQ] = ACTIONS(1606), + [anon_sym_LT_LT_EQ] = ACTIONS(1606), + [anon_sym_GT_GT_EQ] = ACTIONS(1606), + [anon_sym_EQ] = ACTIONS(1604), + [anon_sym_EQ_EQ] = ACTIONS(1606), + [anon_sym_BANG_EQ] = ACTIONS(1606), + [anon_sym_GT] = ACTIONS(1604), + [anon_sym_LT] = ACTIONS(1604), + [anon_sym_GT_EQ] = ACTIONS(1606), + [anon_sym_LT_EQ] = ACTIONS(1606), + [anon_sym_DOT] = ACTIONS(1604), + [anon_sym_DOT_DOT] = ACTIONS(1604), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1606), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1606), + [anon_sym_COLON_COLON] = ACTIONS(1606), + [anon_sym_SQUOTE] = ACTIONS(1604), + [anon_sym_as] = ACTIONS(1604), + [anon_sym_async] = ACTIONS(1604), + [anon_sym_break] = ACTIONS(1604), + [anon_sym_const] = ACTIONS(1604), + [anon_sym_continue] = ACTIONS(1604), + [anon_sym_default] = ACTIONS(1604), + [anon_sym_for] = ACTIONS(1604), + [anon_sym_gen] = ACTIONS(1604), + [anon_sym_if] = ACTIONS(1604), + [anon_sym_loop] = ACTIONS(1604), + [anon_sym_match] = ACTIONS(1604), + [anon_sym_return] = ACTIONS(1604), + [anon_sym_static] = ACTIONS(1604), + [anon_sym_union] = ACTIONS(1604), + [anon_sym_unsafe] = ACTIONS(1604), + [anon_sym_while] = ACTIONS(1604), + [anon_sym_yield] = ACTIONS(1604), + [anon_sym_move] = ACTIONS(1604), + [anon_sym_try] = ACTIONS(1604), + [sym_integer_literal] = ACTIONS(1606), + [aux_sym_string_literal_token1] = ACTIONS(1606), + [sym_char_literal] = ACTIONS(1606), + [anon_sym_true] = ACTIONS(1604), + [anon_sym_false] = ACTIONS(1604), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1604), + [sym_super] = ACTIONS(1604), + [sym_crate] = ACTIONS(1604), + [sym_metavariable] = ACTIONS(1606), + [sym__raw_string_literal_start] = ACTIONS(1606), + [sym_float_literal] = ACTIONS(1606), }, [STATE(444)] = { - [sym_function_modifiers] = STATE(3583), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2611), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(2611), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1632), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3531), - [sym_type_binding] = STATE(2871), - [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(3461), - [sym_scoped_type_identifier] = STATE(2255), - [sym_label] = STATE(3770), - [sym_block] = STATE(2871), - [sym__literal] = STATE(2871), - [sym_string_literal] = STATE(3039), - [sym_raw_string_literal] = STATE(3039), - [sym_boolean_literal] = STATE(3039), + [sym_bracketed_type] = STATE(3756), + [sym_generic_type] = STATE(3622), + [sym_generic_type_with_turbofish] = STATE(3514), + [sym_macro_invocation] = STATE(2197), + [sym_scoped_identifier] = STATE(2056), + [sym_scoped_type_identifier] = STATE(2926), + [sym_const_block] = STATE(2197), + [sym__pattern] = STATE(2230), + [sym_generic_pattern] = STATE(2197), + [sym_tuple_pattern] = STATE(2197), + [sym_slice_pattern] = STATE(2197), + [sym_tuple_struct_pattern] = STATE(2197), + [sym_struct_pattern] = STATE(2197), + [sym_remaining_field_pattern] = STATE(2197), + [sym_mut_pattern] = STATE(2197), + [sym_range_pattern] = STATE(2197), + [sym_ref_pattern] = STATE(2197), + [sym_captured_pattern] = STATE(2197), + [sym_reference_pattern] = STATE(2197), + [sym_or_pattern] = STATE(2197), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2129), + [sym_string_literal] = STATE(2129), + [sym_raw_string_literal] = STATE(2129), + [sym_boolean_literal] = STATE(2129), [sym_line_comment] = STATE(444), [sym_block_comment] = STATE(444), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(1611), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_LBRACE] = ACTIONS(1617), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_QMARK] = ACTIONS(1621), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(1625), - [anon_sym_GT] = ACTIONS(1627), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(1631), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1635), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1639), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1641), - [sym_integer_literal] = ACTIONS(1643), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1643), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1643), + [sym_identifier] = ACTIONS(1608), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1610), + [anon_sym_LBRACE] = ACTIONS(1610), + [anon_sym_STAR] = ACTIONS(1610), + [anon_sym_u8] = ACTIONS(1608), + [anon_sym_i8] = ACTIONS(1608), + [anon_sym_u16] = ACTIONS(1608), + [anon_sym_i16] = ACTIONS(1608), + [anon_sym_u32] = ACTIONS(1608), + [anon_sym_i32] = ACTIONS(1608), + [anon_sym_u64] = ACTIONS(1608), + [anon_sym_i64] = ACTIONS(1608), + [anon_sym_u128] = ACTIONS(1608), + [anon_sym_i128] = ACTIONS(1608), + [anon_sym_isize] = ACTIONS(1608), + [anon_sym_usize] = ACTIONS(1608), + [anon_sym_f32] = ACTIONS(1608), + [anon_sym_f64] = ACTIONS(1608), + [anon_sym_bool] = ACTIONS(1608), + [anon_sym_str] = ACTIONS(1608), + [anon_sym_char] = ACTIONS(1608), + [anon_sym_DASH] = ACTIONS(1608), + [anon_sym_BANG] = ACTIONS(1610), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_PIPE] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(1610), + [anon_sym__] = ACTIONS(1608), + [anon_sym_DOT_DOT] = ACTIONS(1608), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1078), + [anon_sym_COLON_COLON] = ACTIONS(1610), + [anon_sym_DASH_GT] = ACTIONS(1610), + [anon_sym_SQUOTE] = ACTIONS(1608), + [anon_sym_async] = ACTIONS(1608), + [anon_sym_break] = ACTIONS(1608), + [anon_sym_const] = ACTIONS(1608), + [anon_sym_continue] = ACTIONS(1608), + [anon_sym_default] = ACTIONS(1608), + [anon_sym_for] = ACTIONS(1608), + [anon_sym_gen] = ACTIONS(1608), + [anon_sym_if] = ACTIONS(1608), + [anon_sym_loop] = ACTIONS(1608), + [anon_sym_match] = ACTIONS(1608), + [anon_sym_return] = ACTIONS(1608), + [anon_sym_static] = ACTIONS(1608), + [anon_sym_union] = ACTIONS(1608), + [anon_sym_unsafe] = ACTIONS(1608), + [anon_sym_while] = ACTIONS(1608), + [anon_sym_ref] = ACTIONS(1106), + [sym_mutable_specifier] = ACTIONS(1400), + [anon_sym_yield] = ACTIONS(1608), + [anon_sym_move] = ACTIONS(1608), + [anon_sym_try] = ACTIONS(1608), + [sym_integer_literal] = ACTIONS(1610), + [aux_sym_string_literal_token1] = ACTIONS(1610), + [sym_char_literal] = ACTIONS(1610), + [anon_sym_true] = ACTIONS(1608), + [anon_sym_false] = ACTIONS(1608), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1608), + [sym_super] = ACTIONS(1608), + [sym_crate] = ACTIONS(1608), + [sym_metavariable] = ACTIONS(1610), + [sym__raw_string_literal_start] = ACTIONS(1610), + [sym_float_literal] = ACTIONS(1610), }, [STATE(445)] = { - [sym_function_modifiers] = STATE(3583), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2611), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(2611), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1632), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3531), - [sym_type_binding] = STATE(2871), - [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(3461), - [sym_scoped_type_identifier] = STATE(2255), - [sym_label] = STATE(3770), - [sym_block] = STATE(2871), - [sym__literal] = STATE(2871), - [sym_string_literal] = STATE(3039), - [sym_raw_string_literal] = STATE(3039), - [sym_boolean_literal] = STATE(3039), + [sym_bracketed_type] = STATE(3756), + [sym_generic_type] = STATE(3622), + [sym_generic_type_with_turbofish] = STATE(3514), + [sym_macro_invocation] = STATE(2197), + [sym_scoped_identifier] = STATE(2056), + [sym_scoped_type_identifier] = STATE(2926), + [sym_const_block] = STATE(2197), + [sym__pattern] = STATE(2196), + [sym_generic_pattern] = STATE(2197), + [sym_tuple_pattern] = STATE(2197), + [sym_slice_pattern] = STATE(2197), + [sym_tuple_struct_pattern] = STATE(2197), + [sym_struct_pattern] = STATE(2197), + [sym_remaining_field_pattern] = STATE(2197), + [sym_mut_pattern] = STATE(2197), + [sym_range_pattern] = STATE(2197), + [sym_ref_pattern] = STATE(2197), + [sym_captured_pattern] = STATE(2197), + [sym_reference_pattern] = STATE(2197), + [sym_or_pattern] = STATE(2197), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2129), + [sym_string_literal] = STATE(2129), + [sym_raw_string_literal] = STATE(2129), + [sym_boolean_literal] = STATE(2129), [sym_line_comment] = STATE(445), [sym_block_comment] = STATE(445), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(1611), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_LBRACE] = ACTIONS(1617), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_QMARK] = ACTIONS(1621), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(1625), - [anon_sym_GT] = ACTIONS(1649), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(1631), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1635), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1639), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1641), - [sym_integer_literal] = ACTIONS(1643), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1643), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1643), + [sym_identifier] = ACTIONS(1612), + [anon_sym_LPAREN] = ACTIONS(1614), + [anon_sym_LBRACK] = ACTIONS(1614), + [anon_sym_LBRACE] = ACTIONS(1614), + [anon_sym_STAR] = ACTIONS(1614), + [anon_sym_u8] = ACTIONS(1612), + [anon_sym_i8] = ACTIONS(1612), + [anon_sym_u16] = ACTIONS(1612), + [anon_sym_i16] = ACTIONS(1612), + [anon_sym_u32] = ACTIONS(1612), + [anon_sym_i32] = ACTIONS(1612), + [anon_sym_u64] = ACTIONS(1612), + [anon_sym_i64] = ACTIONS(1612), + [anon_sym_u128] = ACTIONS(1612), + [anon_sym_i128] = ACTIONS(1612), + [anon_sym_isize] = ACTIONS(1612), + [anon_sym_usize] = ACTIONS(1612), + [anon_sym_f32] = ACTIONS(1612), + [anon_sym_f64] = ACTIONS(1612), + [anon_sym_bool] = ACTIONS(1612), + [anon_sym_str] = ACTIONS(1612), + [anon_sym_char] = ACTIONS(1612), + [anon_sym_DASH] = ACTIONS(1612), + [anon_sym_BANG] = ACTIONS(1614), + [anon_sym_AMP] = ACTIONS(1614), + [anon_sym_PIPE] = ACTIONS(1614), + [anon_sym_LT] = ACTIONS(1614), + [anon_sym__] = ACTIONS(1612), + [anon_sym_DOT_DOT] = ACTIONS(1612), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1078), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_DASH_GT] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(1612), + [anon_sym_async] = ACTIONS(1612), + [anon_sym_break] = ACTIONS(1612), + [anon_sym_const] = ACTIONS(1612), + [anon_sym_continue] = ACTIONS(1612), + [anon_sym_default] = ACTIONS(1612), + [anon_sym_for] = ACTIONS(1612), + [anon_sym_gen] = ACTIONS(1612), + [anon_sym_if] = ACTIONS(1612), + [anon_sym_loop] = ACTIONS(1612), + [anon_sym_match] = ACTIONS(1612), + [anon_sym_return] = ACTIONS(1612), + [anon_sym_static] = ACTIONS(1612), + [anon_sym_union] = ACTIONS(1612), + [anon_sym_unsafe] = ACTIONS(1612), + [anon_sym_while] = ACTIONS(1612), + [anon_sym_ref] = ACTIONS(1106), + [sym_mutable_specifier] = ACTIONS(1400), + [anon_sym_yield] = ACTIONS(1612), + [anon_sym_move] = ACTIONS(1612), + [anon_sym_try] = ACTIONS(1612), + [sym_integer_literal] = ACTIONS(1614), + [aux_sym_string_literal_token1] = ACTIONS(1614), + [sym_char_literal] = ACTIONS(1614), + [anon_sym_true] = ACTIONS(1612), + [anon_sym_false] = ACTIONS(1612), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1612), + [sym_super] = ACTIONS(1612), + [sym_crate] = ACTIONS(1612), + [sym_metavariable] = ACTIONS(1614), + [sym__raw_string_literal_start] = ACTIONS(1614), + [sym_float_literal] = ACTIONS(1614), }, [STATE(446)] = { - [sym_function_modifiers] = STATE(3583), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2611), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(2611), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1632), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3531), - [sym_type_binding] = STATE(2871), - [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(3461), - [sym_scoped_type_identifier] = STATE(2255), - [sym_label] = STATE(3770), - [sym_block] = STATE(2871), - [sym__literal] = STATE(2871), - [sym_string_literal] = STATE(3039), - [sym_raw_string_literal] = STATE(3039), - [sym_boolean_literal] = STATE(3039), + [sym_function_modifiers] = STATE(3576), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(2567), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(2567), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3771), + [sym_type_binding] = STATE(2848), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2285), + [sym_label] = STATE(3805), + [sym_block] = STATE(2848), + [sym__literal] = STATE(2848), + [sym_string_literal] = STATE(3174), + [sym_raw_string_literal] = STATE(3174), + [sym_boolean_literal] = STATE(3174), [sym_line_comment] = STATE(446), [sym_block_comment] = STATE(446), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(1611), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_LBRACE] = ACTIONS(1617), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_QMARK] = ACTIONS(1621), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(1625), - [anon_sym_GT] = ACTIONS(1651), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(1631), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1635), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1639), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1641), - [sym_integer_literal] = ACTIONS(1643), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1643), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1643), + [sym_identifier] = ACTIONS(1616), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_STAR] = ACTIONS(1624), + [anon_sym_QMARK] = ACTIONS(1626), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1630), + [anon_sym_GT] = ACTIONS(1632), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(1636), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1640), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1644), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1646), + [sym_integer_literal] = ACTIONS(1648), + [aux_sym_string_literal_token1] = ACTIONS(1114), + [sym_char_literal] = ACTIONS(1648), + [anon_sym_true] = ACTIONS(1116), + [anon_sym_false] = ACTIONS(1116), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), + [sym__raw_string_literal_start] = ACTIONS(1124), + [sym_float_literal] = ACTIONS(1648), }, [STATE(447)] = { - [sym_function_modifiers] = STATE(3583), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2611), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(2611), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1632), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3531), - [sym_type_binding] = STATE(2871), - [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(3461), - [sym_scoped_type_identifier] = STATE(2255), - [sym_label] = STATE(3770), - [sym_block] = STATE(2871), - [sym__literal] = STATE(2871), - [sym_string_literal] = STATE(3039), - [sym_raw_string_literal] = STATE(3039), - [sym_boolean_literal] = STATE(3039), + [sym_function_modifiers] = STATE(3576), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(2567), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(2567), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3771), + [sym_type_binding] = STATE(2848), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2285), + [sym_label] = STATE(3805), + [sym_block] = STATE(2848), + [sym__literal] = STATE(2848), + [sym_string_literal] = STATE(3174), + [sym_raw_string_literal] = STATE(3174), + [sym_boolean_literal] = STATE(3174), [sym_line_comment] = STATE(447), [sym_block_comment] = STATE(447), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(1611), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_LBRACE] = ACTIONS(1617), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_QMARK] = ACTIONS(1621), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(1625), - [anon_sym_GT] = ACTIONS(1653), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(1631), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1635), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1639), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1641), - [sym_integer_literal] = ACTIONS(1643), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1643), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1643), + [sym_identifier] = ACTIONS(1616), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_STAR] = ACTIONS(1624), + [anon_sym_QMARK] = ACTIONS(1626), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1630), + [anon_sym_GT] = ACTIONS(1654), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(1636), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1640), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1644), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1646), + [sym_integer_literal] = ACTIONS(1648), + [aux_sym_string_literal_token1] = ACTIONS(1114), + [sym_char_literal] = ACTIONS(1648), + [anon_sym_true] = ACTIONS(1116), + [anon_sym_false] = ACTIONS(1116), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), + [sym__raw_string_literal_start] = ACTIONS(1124), + [sym_float_literal] = ACTIONS(1648), }, [STATE(448)] = { - [sym_function_modifiers] = STATE(3583), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2611), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(2611), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1632), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3531), - [sym_type_binding] = STATE(2871), - [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(3461), - [sym_scoped_type_identifier] = STATE(2255), - [sym_label] = STATE(3770), - [sym_block] = STATE(2871), - [sym__literal] = STATE(2871), - [sym_string_literal] = STATE(3039), - [sym_raw_string_literal] = STATE(3039), - [sym_boolean_literal] = STATE(3039), + [sym_function_modifiers] = STATE(3576), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(2567), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(2567), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3771), + [sym_type_binding] = STATE(2848), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2285), + [sym_label] = STATE(3805), + [sym_block] = STATE(2848), + [sym__literal] = STATE(2848), + [sym_string_literal] = STATE(3174), + [sym_raw_string_literal] = STATE(3174), + [sym_boolean_literal] = STATE(3174), [sym_line_comment] = STATE(448), [sym_block_comment] = STATE(448), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(1611), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_LBRACE] = ACTIONS(1617), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_QMARK] = ACTIONS(1621), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(1625), - [anon_sym_GT] = ACTIONS(1655), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(1631), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1635), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1639), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1641), - [sym_integer_literal] = ACTIONS(1643), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1643), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1643), + [sym_identifier] = ACTIONS(1616), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_STAR] = ACTIONS(1624), + [anon_sym_QMARK] = ACTIONS(1626), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1630), + [anon_sym_GT] = ACTIONS(1656), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(1636), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1640), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1644), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1646), + [sym_integer_literal] = ACTIONS(1648), + [aux_sym_string_literal_token1] = ACTIONS(1114), + [sym_char_literal] = ACTIONS(1648), + [anon_sym_true] = ACTIONS(1116), + [anon_sym_false] = ACTIONS(1116), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), + [sym__raw_string_literal_start] = ACTIONS(1124), + [sym_float_literal] = ACTIONS(1648), }, [STATE(449)] = { - [sym_function_modifiers] = STATE(3583), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2611), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(2611), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1632), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3531), - [sym_type_binding] = STATE(2871), - [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(3461), - [sym_scoped_type_identifier] = STATE(2255), - [sym_label] = STATE(3770), - [sym_block] = STATE(2871), - [sym__literal] = STATE(2871), - [sym_string_literal] = STATE(3039), - [sym_raw_string_literal] = STATE(3039), - [sym_boolean_literal] = STATE(3039), + [sym_function_modifiers] = STATE(3576), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(2567), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(2567), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3771), + [sym_type_binding] = STATE(2848), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2285), + [sym_label] = STATE(3805), + [sym_block] = STATE(2848), + [sym__literal] = STATE(2848), + [sym_string_literal] = STATE(3174), + [sym_raw_string_literal] = STATE(3174), + [sym_boolean_literal] = STATE(3174), [sym_line_comment] = STATE(449), [sym_block_comment] = STATE(449), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(1611), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_LBRACE] = ACTIONS(1617), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_QMARK] = ACTIONS(1621), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(1625), - [anon_sym_GT] = ACTIONS(1657), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(1631), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1635), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1639), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1641), - [sym_integer_literal] = ACTIONS(1643), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1643), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1643), + [sym_identifier] = ACTIONS(1616), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_STAR] = ACTIONS(1624), + [anon_sym_QMARK] = ACTIONS(1626), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1630), + [anon_sym_GT] = ACTIONS(1658), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(1636), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1640), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1644), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1646), + [sym_integer_literal] = ACTIONS(1648), + [aux_sym_string_literal_token1] = ACTIONS(1114), + [sym_char_literal] = ACTIONS(1648), + [anon_sym_true] = ACTIONS(1116), + [anon_sym_false] = ACTIONS(1116), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), + [sym__raw_string_literal_start] = ACTIONS(1124), + [sym_float_literal] = ACTIONS(1648), }, [STATE(450)] = { - [sym_function_modifiers] = STATE(3583), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2611), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(2611), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1632), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3531), - [sym_type_binding] = STATE(2871), - [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(3461), - [sym_scoped_type_identifier] = STATE(2255), - [sym_label] = STATE(3770), - [sym_block] = STATE(2871), - [sym__literal] = STATE(2871), - [sym_string_literal] = STATE(3039), - [sym_raw_string_literal] = STATE(3039), - [sym_boolean_literal] = STATE(3039), + [sym_function_modifiers] = STATE(3576), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(2567), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(2567), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3771), + [sym_type_binding] = STATE(2848), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2285), + [sym_label] = STATE(3805), + [sym_block] = STATE(2848), + [sym__literal] = STATE(2848), + [sym_string_literal] = STATE(3174), + [sym_raw_string_literal] = STATE(3174), + [sym_boolean_literal] = STATE(3174), [sym_line_comment] = STATE(450), [sym_block_comment] = STATE(450), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(1611), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_LBRACE] = ACTIONS(1617), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_QMARK] = ACTIONS(1621), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(1625), - [anon_sym_GT] = ACTIONS(1659), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(1631), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1635), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1639), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1641), - [sym_integer_literal] = ACTIONS(1643), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1643), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1643), + [sym_identifier] = ACTIONS(1616), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_STAR] = ACTIONS(1624), + [anon_sym_QMARK] = ACTIONS(1626), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1630), + [anon_sym_GT] = ACTIONS(1660), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(1636), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1640), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1644), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1646), + [sym_integer_literal] = ACTIONS(1648), + [aux_sym_string_literal_token1] = ACTIONS(1114), + [sym_char_literal] = ACTIONS(1648), + [anon_sym_true] = ACTIONS(1116), + [anon_sym_false] = ACTIONS(1116), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), + [sym__raw_string_literal_start] = ACTIONS(1124), + [sym_float_literal] = ACTIONS(1648), }, [STATE(451)] = { - [sym_function_modifiers] = STATE(3583), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2611), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(2611), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1632), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3531), - [sym_type_binding] = STATE(2871), - [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(3461), - [sym_scoped_type_identifier] = STATE(2255), - [sym_label] = STATE(3770), - [sym_block] = STATE(2871), - [sym__literal] = STATE(2871), - [sym_string_literal] = STATE(3039), - [sym_raw_string_literal] = STATE(3039), - [sym_boolean_literal] = STATE(3039), + [sym_function_modifiers] = STATE(3576), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(2567), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(2567), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3771), + [sym_type_binding] = STATE(2848), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2285), + [sym_label] = STATE(3805), + [sym_block] = STATE(2848), + [sym__literal] = STATE(2848), + [sym_string_literal] = STATE(3174), + [sym_raw_string_literal] = STATE(3174), + [sym_boolean_literal] = STATE(3174), [sym_line_comment] = STATE(451), [sym_block_comment] = STATE(451), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(1611), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_LBRACE] = ACTIONS(1617), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_QMARK] = ACTIONS(1621), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(1625), - [anon_sym_GT] = ACTIONS(1661), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(1631), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1635), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1639), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1641), - [sym_integer_literal] = ACTIONS(1643), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1643), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1643), + [sym_identifier] = ACTIONS(1616), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_STAR] = ACTIONS(1624), + [anon_sym_QMARK] = ACTIONS(1626), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1630), + [anon_sym_GT] = ACTIONS(1662), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(1636), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1640), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1644), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1646), + [sym_integer_literal] = ACTIONS(1648), + [aux_sym_string_literal_token1] = ACTIONS(1114), + [sym_char_literal] = ACTIONS(1648), + [anon_sym_true] = ACTIONS(1116), + [anon_sym_false] = ACTIONS(1116), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), + [sym__raw_string_literal_start] = ACTIONS(1124), + [sym_float_literal] = ACTIONS(1648), }, [STATE(452)] = { - [sym_function_modifiers] = STATE(3583), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2611), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(2611), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1632), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3531), - [sym_type_binding] = STATE(2871), - [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(3461), - [sym_scoped_type_identifier] = STATE(2255), - [sym_label] = STATE(3770), - [sym_block] = STATE(2871), - [sym__literal] = STATE(2871), - [sym_string_literal] = STATE(3039), - [sym_raw_string_literal] = STATE(3039), - [sym_boolean_literal] = STATE(3039), + [sym_function_modifiers] = STATE(3576), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(2567), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(2567), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3771), + [sym_type_binding] = STATE(2848), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2285), + [sym_label] = STATE(3805), + [sym_block] = STATE(2848), + [sym__literal] = STATE(2848), + [sym_string_literal] = STATE(3174), + [sym_raw_string_literal] = STATE(3174), + [sym_boolean_literal] = STATE(3174), [sym_line_comment] = STATE(452), [sym_block_comment] = STATE(452), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(1611), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_LBRACE] = ACTIONS(1617), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_QMARK] = ACTIONS(1621), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(1625), - [anon_sym_GT] = ACTIONS(1663), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(1631), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1635), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1639), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1641), - [sym_integer_literal] = ACTIONS(1643), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1643), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1643), + [sym_identifier] = ACTIONS(1616), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_STAR] = ACTIONS(1624), + [anon_sym_QMARK] = ACTIONS(1626), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1630), + [anon_sym_GT] = ACTIONS(1664), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(1636), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1640), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1644), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1646), + [sym_integer_literal] = ACTIONS(1648), + [aux_sym_string_literal_token1] = ACTIONS(1114), + [sym_char_literal] = ACTIONS(1648), + [anon_sym_true] = ACTIONS(1116), + [anon_sym_false] = ACTIONS(1116), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), + [sym__raw_string_literal_start] = ACTIONS(1124), + [sym_float_literal] = ACTIONS(1648), }, [STATE(453)] = { - [sym_function_modifiers] = STATE(3583), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2611), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(2611), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1632), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3531), - [sym_type_binding] = STATE(2871), - [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(3461), - [sym_scoped_type_identifier] = STATE(2255), - [sym_label] = STATE(3770), - [sym_block] = STATE(2871), - [sym__literal] = STATE(2871), - [sym_string_literal] = STATE(3039), - [sym_raw_string_literal] = STATE(3039), - [sym_boolean_literal] = STATE(3039), + [sym_function_modifiers] = STATE(3576), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(2567), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(2567), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3771), + [sym_type_binding] = STATE(2848), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2285), + [sym_label] = STATE(3805), + [sym_block] = STATE(2848), + [sym__literal] = STATE(2848), + [sym_string_literal] = STATE(3174), + [sym_raw_string_literal] = STATE(3174), + [sym_boolean_literal] = STATE(3174), [sym_line_comment] = STATE(453), [sym_block_comment] = STATE(453), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(1611), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_LBRACE] = ACTIONS(1617), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_QMARK] = ACTIONS(1621), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(1625), - [anon_sym_GT] = ACTIONS(1665), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(1631), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1635), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1639), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1641), - [sym_integer_literal] = ACTIONS(1643), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1643), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1643), + [sym_identifier] = ACTIONS(1616), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_STAR] = ACTIONS(1624), + [anon_sym_QMARK] = ACTIONS(1626), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1630), + [anon_sym_GT] = ACTIONS(1666), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(1636), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1640), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1644), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1646), + [sym_integer_literal] = ACTIONS(1648), + [aux_sym_string_literal_token1] = ACTIONS(1114), + [sym_char_literal] = ACTIONS(1648), + [anon_sym_true] = ACTIONS(1116), + [anon_sym_false] = ACTIONS(1116), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), + [sym__raw_string_literal_start] = ACTIONS(1124), + [sym_float_literal] = ACTIONS(1648), }, [STATE(454)] = { - [sym_function_modifiers] = STATE(3583), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2611), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(2611), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1632), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3531), - [sym_type_binding] = STATE(2871), - [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(3461), - [sym_scoped_type_identifier] = STATE(2255), - [sym_label] = STATE(3770), - [sym_block] = STATE(2871), - [sym__literal] = STATE(2871), - [sym_string_literal] = STATE(3039), - [sym_raw_string_literal] = STATE(3039), - [sym_boolean_literal] = STATE(3039), + [sym_function_modifiers] = STATE(3576), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(2567), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(2567), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3771), + [sym_type_binding] = STATE(2848), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2285), + [sym_label] = STATE(3805), + [sym_block] = STATE(2848), + [sym__literal] = STATE(2848), + [sym_string_literal] = STATE(3174), + [sym_raw_string_literal] = STATE(3174), + [sym_boolean_literal] = STATE(3174), [sym_line_comment] = STATE(454), [sym_block_comment] = STATE(454), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(1611), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_LBRACE] = ACTIONS(1617), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_QMARK] = ACTIONS(1621), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(1625), - [anon_sym_GT] = ACTIONS(1667), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(1631), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1635), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1639), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1641), - [sym_integer_literal] = ACTIONS(1643), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1643), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1643), + [sym_identifier] = ACTIONS(1616), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_STAR] = ACTIONS(1624), + [anon_sym_QMARK] = ACTIONS(1626), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1630), + [anon_sym_GT] = ACTIONS(1668), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(1636), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1640), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1644), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1646), + [sym_integer_literal] = ACTIONS(1648), + [aux_sym_string_literal_token1] = ACTIONS(1114), + [sym_char_literal] = ACTIONS(1648), + [anon_sym_true] = ACTIONS(1116), + [anon_sym_false] = ACTIONS(1116), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), + [sym__raw_string_literal_start] = ACTIONS(1124), + [sym_float_literal] = ACTIONS(1648), }, [STATE(455)] = { - [sym_function_modifiers] = STATE(3583), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2611), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(2611), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1632), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3531), - [sym_type_binding] = STATE(2871), - [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(3461), - [sym_scoped_type_identifier] = STATE(2255), - [sym_label] = STATE(3770), - [sym_block] = STATE(2871), - [sym__literal] = STATE(2871), - [sym_string_literal] = STATE(3039), - [sym_raw_string_literal] = STATE(3039), - [sym_boolean_literal] = STATE(3039), + [sym_function_modifiers] = STATE(3576), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(2567), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(2567), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3771), + [sym_type_binding] = STATE(2848), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2285), + [sym_label] = STATE(3805), + [sym_block] = STATE(2848), + [sym__literal] = STATE(2848), + [sym_string_literal] = STATE(3174), + [sym_raw_string_literal] = STATE(3174), + [sym_boolean_literal] = STATE(3174), [sym_line_comment] = STATE(455), [sym_block_comment] = STATE(455), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(1611), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_LBRACE] = ACTIONS(1617), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_QMARK] = ACTIONS(1621), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(1625), - [anon_sym_GT] = ACTIONS(1669), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(1631), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1635), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1639), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1641), - [sym_integer_literal] = ACTIONS(1643), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1643), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1643), + [sym_identifier] = ACTIONS(1616), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_STAR] = ACTIONS(1624), + [anon_sym_QMARK] = ACTIONS(1626), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1630), + [anon_sym_GT] = ACTIONS(1670), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(1636), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1640), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1644), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1646), + [sym_integer_literal] = ACTIONS(1648), + [aux_sym_string_literal_token1] = ACTIONS(1114), + [sym_char_literal] = ACTIONS(1648), + [anon_sym_true] = ACTIONS(1116), + [anon_sym_false] = ACTIONS(1116), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), + [sym__raw_string_literal_start] = ACTIONS(1124), + [sym_float_literal] = ACTIONS(1648), }, [STATE(456)] = { - [sym_function_modifiers] = STATE(3583), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2445), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(2445), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1632), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3531), - [sym_type_binding] = STATE(2534), - [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(3461), - [sym_scoped_type_identifier] = STATE(2255), - [sym_label] = STATE(3770), - [sym_block] = STATE(2534), - [sym__literal] = STATE(2534), - [sym_string_literal] = STATE(3039), - [sym_raw_string_literal] = STATE(3039), - [sym_boolean_literal] = STATE(3039), + [sym_function_modifiers] = STATE(3576), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(2567), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(2567), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3771), + [sym_type_binding] = STATE(2848), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2285), + [sym_label] = STATE(3805), + [sym_block] = STATE(2848), + [sym__literal] = STATE(2848), + [sym_string_literal] = STATE(3174), + [sym_raw_string_literal] = STATE(3174), + [sym_boolean_literal] = STATE(3174), [sym_line_comment] = STATE(456), [sym_block_comment] = STATE(456), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(1611), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_LBRACE] = ACTIONS(1617), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_QMARK] = ACTIONS(1621), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(1625), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(1631), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1635), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1639), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1641), - [sym_integer_literal] = ACTIONS(1643), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1643), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1643), + [sym_identifier] = ACTIONS(1616), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_STAR] = ACTIONS(1624), + [anon_sym_QMARK] = ACTIONS(1626), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1630), + [anon_sym_GT] = ACTIONS(1672), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(1636), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1640), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1644), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1646), + [sym_integer_literal] = ACTIONS(1648), + [aux_sym_string_literal_token1] = ACTIONS(1114), + [sym_char_literal] = ACTIONS(1648), + [anon_sym_true] = ACTIONS(1116), + [anon_sym_false] = ACTIONS(1116), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), + [sym__raw_string_literal_start] = ACTIONS(1124), + [sym_float_literal] = ACTIONS(1648), }, [STATE(457)] = { - [sym_function_modifiers] = STATE(3583), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2611), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(2611), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1632), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3531), - [sym_type_binding] = STATE(2871), - [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(3461), - [sym_scoped_type_identifier] = STATE(2255), - [sym_label] = STATE(3770), - [sym_block] = STATE(2871), - [sym__literal] = STATE(2871), - [sym_string_literal] = STATE(3039), - [sym_raw_string_literal] = STATE(3039), - [sym_boolean_literal] = STATE(3039), + [sym_function_modifiers] = STATE(3576), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(2567), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(2567), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3771), + [sym_type_binding] = STATE(2848), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2285), + [sym_label] = STATE(3805), + [sym_block] = STATE(2848), + [sym__literal] = STATE(2848), + [sym_string_literal] = STATE(3174), + [sym_raw_string_literal] = STATE(3174), + [sym_boolean_literal] = STATE(3174), [sym_line_comment] = STATE(457), [sym_block_comment] = STATE(457), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(1611), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_LBRACE] = ACTIONS(1617), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_QMARK] = ACTIONS(1621), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(1625), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(1631), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1635), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1639), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1641), - [sym_integer_literal] = ACTIONS(1643), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1643), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1643), + [sym_identifier] = ACTIONS(1616), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_STAR] = ACTIONS(1624), + [anon_sym_QMARK] = ACTIONS(1626), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1630), + [anon_sym_GT] = ACTIONS(1674), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(1636), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1640), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1644), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1646), + [sym_integer_literal] = ACTIONS(1648), + [aux_sym_string_literal_token1] = ACTIONS(1114), + [sym_char_literal] = ACTIONS(1648), + [anon_sym_true] = ACTIONS(1116), + [anon_sym_false] = ACTIONS(1116), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), + [sym__raw_string_literal_start] = ACTIONS(1124), + [sym_float_literal] = ACTIONS(1648), }, [STATE(458)] = { - [sym_function_modifiers] = STATE(3583), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2470), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(2470), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1632), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3531), - [sym_type_binding] = STATE(2546), - [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(3461), - [sym_scoped_type_identifier] = STATE(2255), - [sym_label] = STATE(3770), - [sym_block] = STATE(2546), - [sym__literal] = STATE(2546), - [sym_string_literal] = STATE(3039), - [sym_raw_string_literal] = STATE(3039), - [sym_boolean_literal] = STATE(3039), + [sym_function_modifiers] = STATE(3576), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(2567), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(2567), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3771), + [sym_type_binding] = STATE(2848), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2285), + [sym_label] = STATE(3805), + [sym_block] = STATE(2848), + [sym__literal] = STATE(2848), + [sym_string_literal] = STATE(3174), + [sym_raw_string_literal] = STATE(3174), + [sym_boolean_literal] = STATE(3174), [sym_line_comment] = STATE(458), [sym_block_comment] = STATE(458), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(1611), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_LBRACE] = ACTIONS(1617), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_QMARK] = ACTIONS(1621), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(1625), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(1631), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1635), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1639), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1641), - [sym_integer_literal] = ACTIONS(1643), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1643), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1643), + [sym_identifier] = ACTIONS(1616), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_STAR] = ACTIONS(1624), + [anon_sym_QMARK] = ACTIONS(1626), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1630), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(1636), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1640), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1644), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1646), + [sym_integer_literal] = ACTIONS(1648), + [aux_sym_string_literal_token1] = ACTIONS(1114), + [sym_char_literal] = ACTIONS(1648), + [anon_sym_true] = ACTIONS(1116), + [anon_sym_false] = ACTIONS(1116), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), + [sym__raw_string_literal_start] = ACTIONS(1124), + [sym_float_literal] = ACTIONS(1648), }, [STATE(459)] = { - [sym_function_modifiers] = STATE(3583), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2411), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(2411), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1632), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3531), - [sym_type_binding] = STATE(2615), - [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(3461), - [sym_scoped_type_identifier] = STATE(2255), - [sym_label] = STATE(3770), - [sym_block] = STATE(2615), - [sym__literal] = STATE(2615), - [sym_string_literal] = STATE(3039), - [sym_raw_string_literal] = STATE(3039), - [sym_boolean_literal] = STATE(3039), + [sym_function_modifiers] = STATE(3576), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(2431), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(2431), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3771), + [sym_type_binding] = STATE(2549), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2285), + [sym_label] = STATE(3805), + [sym_block] = STATE(2549), + [sym__literal] = STATE(2549), + [sym_string_literal] = STATE(3174), + [sym_raw_string_literal] = STATE(3174), + [sym_boolean_literal] = STATE(3174), [sym_line_comment] = STATE(459), [sym_block_comment] = STATE(459), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(1611), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_LBRACE] = ACTIONS(1617), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_QMARK] = ACTIONS(1621), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(1625), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(1631), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1635), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1639), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1641), - [sym_integer_literal] = ACTIONS(1643), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1643), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1643), + [sym_identifier] = ACTIONS(1616), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_STAR] = ACTIONS(1624), + [anon_sym_QMARK] = ACTIONS(1626), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1630), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(1636), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1640), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1644), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1646), + [sym_integer_literal] = ACTIONS(1648), + [aux_sym_string_literal_token1] = ACTIONS(1114), + [sym_char_literal] = ACTIONS(1648), + [anon_sym_true] = ACTIONS(1116), + [anon_sym_false] = ACTIONS(1116), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), + [sym__raw_string_literal_start] = ACTIONS(1124), + [sym_float_literal] = ACTIONS(1648), }, [STATE(460)] = { - [sym_function_modifiers] = STATE(3583), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2437), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(2437), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1632), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3531), - [sym_type_binding] = STATE(2511), - [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(3461), - [sym_scoped_type_identifier] = STATE(2255), - [sym_label] = STATE(3770), - [sym_block] = STATE(2511), - [sym__literal] = STATE(2511), - [sym_string_literal] = STATE(3039), - [sym_raw_string_literal] = STATE(3039), - [sym_boolean_literal] = STATE(3039), + [sym_function_modifiers] = STATE(3576), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(2470), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(2470), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3771), + [sym_type_binding] = STATE(2532), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2285), + [sym_label] = STATE(3805), + [sym_block] = STATE(2532), + [sym__literal] = STATE(2532), + [sym_string_literal] = STATE(3174), + [sym_raw_string_literal] = STATE(3174), + [sym_boolean_literal] = STATE(3174), [sym_line_comment] = STATE(460), [sym_block_comment] = STATE(460), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(1611), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_LBRACE] = ACTIONS(1617), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_QMARK] = ACTIONS(1621), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(1625), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(1631), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1635), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1639), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1641), - [sym_integer_literal] = ACTIONS(1643), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1643), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1643), + [sym_identifier] = ACTIONS(1616), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_STAR] = ACTIONS(1624), + [anon_sym_QMARK] = ACTIONS(1626), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1630), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(1636), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1640), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1644), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1646), + [sym_integer_literal] = ACTIONS(1648), + [aux_sym_string_literal_token1] = ACTIONS(1114), + [sym_char_literal] = ACTIONS(1648), + [anon_sym_true] = ACTIONS(1116), + [anon_sym_false] = ACTIONS(1116), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), + [sym__raw_string_literal_start] = ACTIONS(1124), + [sym_float_literal] = ACTIONS(1648), }, [STATE(461)] = { - [sym_attribute_item] = STATE(1145), - [sym_inner_attribute_item] = STATE(1145), - [sym_bracketed_type] = STATE(3695), - [sym_generic_type] = STATE(3711), - [sym_generic_type_with_turbofish] = STATE(3416), - [sym_macro_invocation] = STATE(2883), - [sym_scoped_identifier] = STATE(2241), - [sym_scoped_type_identifier] = STATE(3110), - [sym_match_arm] = STATE(1146), - [sym_last_match_arm] = STATE(3680), - [sym_match_pattern] = STATE(3746), - [sym_const_block] = STATE(2883), - [sym__pattern] = STATE(2909), - [sym_generic_pattern] = STATE(2883), - [sym_tuple_pattern] = STATE(2883), - [sym_slice_pattern] = STATE(2883), - [sym_tuple_struct_pattern] = STATE(2883), - [sym_struct_pattern] = STATE(2883), - [sym_remaining_field_pattern] = STATE(2883), - [sym_mut_pattern] = STATE(2883), - [sym_range_pattern] = STATE(2883), - [sym_ref_pattern] = STATE(2883), - [sym_captured_pattern] = STATE(2883), - [sym_reference_pattern] = STATE(2883), - [sym_or_pattern] = STATE(2883), - [sym__literal_pattern] = STATE(2449), - [sym_negative_literal] = STATE(2408), - [sym_string_literal] = STATE(2408), - [sym_raw_string_literal] = STATE(2408), - [sym_boolean_literal] = STATE(2408), + [sym_function_modifiers] = STATE(3576), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(2481), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(2481), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3771), + [sym_type_binding] = STATE(2556), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2285), + [sym_label] = STATE(3805), + [sym_block] = STATE(2556), + [sym__literal] = STATE(2556), + [sym_string_literal] = STATE(3174), + [sym_raw_string_literal] = STATE(3174), + [sym_boolean_literal] = STATE(3174), [sym_line_comment] = STATE(461), [sym_block_comment] = STATE(461), - [aux_sym_match_block_repeat1] = STATE(473), - [aux_sym_match_arm_repeat1] = STATE(684), - [sym_identifier] = ACTIONS(1671), - [anon_sym_LPAREN] = ACTIONS(1673), - [anon_sym_LBRACK] = ACTIONS(1675), - [anon_sym_RBRACE] = ACTIONS(1677), - [anon_sym_u8] = ACTIONS(1679), - [anon_sym_i8] = ACTIONS(1679), - [anon_sym_u16] = ACTIONS(1679), - [anon_sym_i16] = ACTIONS(1679), - [anon_sym_u32] = ACTIONS(1679), - [anon_sym_i32] = ACTIONS(1679), - [anon_sym_u64] = ACTIONS(1679), - [anon_sym_i64] = ACTIONS(1679), - [anon_sym_u128] = ACTIONS(1679), - [anon_sym_i128] = ACTIONS(1679), - [anon_sym_isize] = ACTIONS(1679), - [anon_sym_usize] = ACTIONS(1679), - [anon_sym_f32] = ACTIONS(1679), - [anon_sym_f64] = ACTIONS(1679), - [anon_sym_bool] = ACTIONS(1679), - [anon_sym_str] = ACTIONS(1679), - [anon_sym_char] = ACTIONS(1679), - [anon_sym_DASH] = ACTIONS(1681), - [anon_sym_AMP] = ACTIONS(1683), - [anon_sym_PIPE] = ACTIONS(1685), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1687), - [anon_sym_DOT_DOT] = ACTIONS(1689), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1691), - [anon_sym_COLON_COLON] = ACTIONS(1693), - [anon_sym_POUND] = ACTIONS(1695), - [anon_sym_const] = ACTIONS(1697), - [anon_sym_default] = ACTIONS(1699), - [anon_sym_gen] = ACTIONS(1699), - [anon_sym_union] = ACTIONS(1699), - [anon_sym_ref] = ACTIONS(1701), - [sym_mutable_specifier] = ACTIONS(1703), - [sym_integer_literal] = ACTIONS(1705), - [aux_sym_string_literal_token1] = ACTIONS(1707), - [sym_char_literal] = ACTIONS(1705), - [anon_sym_true] = ACTIONS(1709), - [anon_sym_false] = ACTIONS(1709), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1711), - [sym_super] = ACTIONS(1711), - [sym_crate] = ACTIONS(1711), - [sym_metavariable] = ACTIONS(1713), - [sym__raw_string_literal_start] = ACTIONS(1715), - [sym_float_literal] = ACTIONS(1705), + [sym_identifier] = ACTIONS(1616), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_STAR] = ACTIONS(1624), + [anon_sym_QMARK] = ACTIONS(1626), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1630), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(1636), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1640), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1644), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1646), + [sym_integer_literal] = ACTIONS(1648), + [aux_sym_string_literal_token1] = ACTIONS(1114), + [sym_char_literal] = ACTIONS(1648), + [anon_sym_true] = ACTIONS(1116), + [anon_sym_false] = ACTIONS(1116), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), + [sym__raw_string_literal_start] = ACTIONS(1124), + [sym_float_literal] = ACTIONS(1648), }, [STATE(462)] = { - [sym_attribute_item] = STATE(1145), - [sym_inner_attribute_item] = STATE(1145), - [sym_bracketed_type] = STATE(3695), - [sym_generic_type] = STATE(3711), - [sym_generic_type_with_turbofish] = STATE(3416), - [sym_macro_invocation] = STATE(2883), - [sym_scoped_identifier] = STATE(2241), - [sym_scoped_type_identifier] = STATE(3110), - [sym_match_arm] = STATE(1146), - [sym_last_match_arm] = STATE(3672), - [sym_match_pattern] = STATE(3746), - [sym_const_block] = STATE(2883), - [sym__pattern] = STATE(2909), - [sym_generic_pattern] = STATE(2883), - [sym_tuple_pattern] = STATE(2883), - [sym_slice_pattern] = STATE(2883), - [sym_tuple_struct_pattern] = STATE(2883), - [sym_struct_pattern] = STATE(2883), - [sym_remaining_field_pattern] = STATE(2883), - [sym_mut_pattern] = STATE(2883), - [sym_range_pattern] = STATE(2883), - [sym_ref_pattern] = STATE(2883), - [sym_captured_pattern] = STATE(2883), - [sym_reference_pattern] = STATE(2883), - [sym_or_pattern] = STATE(2883), - [sym__literal_pattern] = STATE(2449), - [sym_negative_literal] = STATE(2408), - [sym_string_literal] = STATE(2408), - [sym_raw_string_literal] = STATE(2408), - [sym_boolean_literal] = STATE(2408), + [sym_function_modifiers] = STATE(3576), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(2474), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(2474), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3771), + [sym_type_binding] = STATE(2542), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2285), + [sym_label] = STATE(3805), + [sym_block] = STATE(2542), + [sym__literal] = STATE(2542), + [sym_string_literal] = STATE(3174), + [sym_raw_string_literal] = STATE(3174), + [sym_boolean_literal] = STATE(3174), [sym_line_comment] = STATE(462), [sym_block_comment] = STATE(462), - [aux_sym_match_block_repeat1] = STATE(469), - [aux_sym_match_arm_repeat1] = STATE(684), - [sym_identifier] = ACTIONS(1671), - [anon_sym_LPAREN] = ACTIONS(1673), - [anon_sym_LBRACK] = ACTIONS(1675), - [anon_sym_RBRACE] = ACTIONS(1717), - [anon_sym_u8] = ACTIONS(1679), - [anon_sym_i8] = ACTIONS(1679), - [anon_sym_u16] = ACTIONS(1679), - [anon_sym_i16] = ACTIONS(1679), - [anon_sym_u32] = ACTIONS(1679), - [anon_sym_i32] = ACTIONS(1679), - [anon_sym_u64] = ACTIONS(1679), - [anon_sym_i64] = ACTIONS(1679), - [anon_sym_u128] = ACTIONS(1679), - [anon_sym_i128] = ACTIONS(1679), - [anon_sym_isize] = ACTIONS(1679), - [anon_sym_usize] = ACTIONS(1679), - [anon_sym_f32] = ACTIONS(1679), - [anon_sym_f64] = ACTIONS(1679), - [anon_sym_bool] = ACTIONS(1679), - [anon_sym_str] = ACTIONS(1679), - [anon_sym_char] = ACTIONS(1679), - [anon_sym_DASH] = ACTIONS(1681), - [anon_sym_AMP] = ACTIONS(1683), - [anon_sym_PIPE] = ACTIONS(1685), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1687), - [anon_sym_DOT_DOT] = ACTIONS(1689), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1691), - [anon_sym_COLON_COLON] = ACTIONS(1693), - [anon_sym_POUND] = ACTIONS(1695), - [anon_sym_const] = ACTIONS(1697), - [anon_sym_default] = ACTIONS(1699), - [anon_sym_gen] = ACTIONS(1699), - [anon_sym_union] = ACTIONS(1699), - [anon_sym_ref] = ACTIONS(1701), - [sym_mutable_specifier] = ACTIONS(1703), - [sym_integer_literal] = ACTIONS(1705), - [aux_sym_string_literal_token1] = ACTIONS(1707), - [sym_char_literal] = ACTIONS(1705), - [anon_sym_true] = ACTIONS(1709), - [anon_sym_false] = ACTIONS(1709), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1711), - [sym_super] = ACTIONS(1711), - [sym_crate] = ACTIONS(1711), - [sym_metavariable] = ACTIONS(1713), - [sym__raw_string_literal_start] = ACTIONS(1715), - [sym_float_literal] = ACTIONS(1705), + [sym_identifier] = ACTIONS(1616), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_STAR] = ACTIONS(1624), + [anon_sym_QMARK] = ACTIONS(1626), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1630), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(1636), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1640), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1644), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1646), + [sym_integer_literal] = ACTIONS(1648), + [aux_sym_string_literal_token1] = ACTIONS(1114), + [sym_char_literal] = ACTIONS(1648), + [anon_sym_true] = ACTIONS(1116), + [anon_sym_false] = ACTIONS(1116), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), + [sym__raw_string_literal_start] = ACTIONS(1124), + [sym_float_literal] = ACTIONS(1648), }, [STATE(463)] = { - [sym_else_clause] = STATE(489), + [sym_else_clause] = STATE(486), [sym_line_comment] = STATE(463), [sym_block_comment] = STATE(463), - [sym_identifier] = ACTIONS(1407), - [anon_sym_LPAREN] = ACTIONS(1405), - [anon_sym_LBRACK] = ACTIONS(1405), - [anon_sym_RBRACE] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1407), - [anon_sym_STAR] = ACTIONS(1407), - [anon_sym_QMARK] = ACTIONS(1405), - [anon_sym_u8] = ACTIONS(1407), - [anon_sym_i8] = ACTIONS(1407), - [anon_sym_u16] = ACTIONS(1407), - [anon_sym_i16] = ACTIONS(1407), - [anon_sym_u32] = ACTIONS(1407), - [anon_sym_i32] = ACTIONS(1407), - [anon_sym_u64] = ACTIONS(1407), - [anon_sym_i64] = ACTIONS(1407), - [anon_sym_u128] = ACTIONS(1407), - [anon_sym_i128] = ACTIONS(1407), - [anon_sym_isize] = ACTIONS(1407), - [anon_sym_usize] = ACTIONS(1407), - [anon_sym_f32] = ACTIONS(1407), - [anon_sym_f64] = ACTIONS(1407), - [anon_sym_bool] = ACTIONS(1407), - [anon_sym_str] = ACTIONS(1407), - [anon_sym_char] = ACTIONS(1407), - [anon_sym_DASH] = ACTIONS(1407), - [anon_sym_SLASH] = ACTIONS(1407), - [anon_sym_PERCENT] = ACTIONS(1407), - [anon_sym_CARET] = ACTIONS(1407), - [anon_sym_AMP] = ACTIONS(1407), - [anon_sym_PIPE] = ACTIONS(1407), - [anon_sym_AMP_AMP] = ACTIONS(1405), - [anon_sym_PIPE_PIPE] = ACTIONS(1405), - [anon_sym_LT_LT] = ACTIONS(1407), - [anon_sym_GT_GT] = ACTIONS(1407), - [anon_sym_PLUS_EQ] = ACTIONS(1405), - [anon_sym_DASH_EQ] = ACTIONS(1405), - [anon_sym_STAR_EQ] = ACTIONS(1405), - [anon_sym_SLASH_EQ] = ACTIONS(1405), - [anon_sym_PERCENT_EQ] = ACTIONS(1405), - [anon_sym_CARET_EQ] = ACTIONS(1405), - [anon_sym_AMP_EQ] = ACTIONS(1405), - [anon_sym_PIPE_EQ] = ACTIONS(1405), - [anon_sym_LT_LT_EQ] = ACTIONS(1405), - [anon_sym_GT_GT_EQ] = ACTIONS(1405), - [anon_sym_EQ] = ACTIONS(1407), - [anon_sym_EQ_EQ] = ACTIONS(1405), - [anon_sym_BANG_EQ] = ACTIONS(1405), - [anon_sym_GT] = ACTIONS(1407), - [anon_sym_LT] = ACTIONS(1407), - [anon_sym_GT_EQ] = ACTIONS(1405), - [anon_sym_LT_EQ] = ACTIONS(1405), - [anon_sym__] = ACTIONS(1407), - [anon_sym_DOT] = ACTIONS(1407), - [anon_sym_DOT_DOT] = ACTIONS(1407), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1405), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1405), - [anon_sym_COMMA] = ACTIONS(1405), - [anon_sym_COLON_COLON] = ACTIONS(1405), - [anon_sym_POUND] = ACTIONS(1405), - [anon_sym_as] = ACTIONS(1407), - [anon_sym_const] = ACTIONS(1407), - [anon_sym_default] = ACTIONS(1407), - [anon_sym_gen] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1407), - [anon_sym_ref] = ACTIONS(1407), - [anon_sym_else] = ACTIONS(1719), - [sym_mutable_specifier] = ACTIONS(1407), - [sym_integer_literal] = ACTIONS(1405), - [aux_sym_string_literal_token1] = ACTIONS(1405), - [sym_char_literal] = ACTIONS(1405), - [anon_sym_true] = ACTIONS(1407), - [anon_sym_false] = ACTIONS(1407), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1407), - [sym_super] = ACTIONS(1407), - [sym_crate] = ACTIONS(1407), - [sym_metavariable] = ACTIONS(1405), - [sym__raw_string_literal_start] = ACTIONS(1405), - [sym_float_literal] = ACTIONS(1405), + [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(1676), + [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(464)] = { - [sym_attribute_item] = STATE(1145), - [sym_inner_attribute_item] = STATE(1145), - [sym_bracketed_type] = STATE(3695), - [sym_generic_type] = STATE(3711), - [sym_generic_type_with_turbofish] = STATE(3416), - [sym_macro_invocation] = STATE(2883), - [sym_scoped_identifier] = STATE(2241), - [sym_scoped_type_identifier] = STATE(3110), - [sym_match_arm] = STATE(1146), - [sym_last_match_arm] = STATE(3776), - [sym_match_pattern] = STATE(3746), - [sym_const_block] = STATE(2883), - [sym__pattern] = STATE(2909), - [sym_generic_pattern] = STATE(2883), - [sym_tuple_pattern] = STATE(2883), - [sym_slice_pattern] = STATE(2883), - [sym_tuple_struct_pattern] = STATE(2883), - [sym_struct_pattern] = STATE(2883), - [sym_remaining_field_pattern] = STATE(2883), - [sym_mut_pattern] = STATE(2883), - [sym_range_pattern] = STATE(2883), - [sym_ref_pattern] = STATE(2883), - [sym_captured_pattern] = STATE(2883), - [sym_reference_pattern] = STATE(2883), - [sym_or_pattern] = STATE(2883), - [sym__literal_pattern] = STATE(2449), - [sym_negative_literal] = STATE(2408), - [sym_string_literal] = STATE(2408), - [sym_raw_string_literal] = STATE(2408), - [sym_boolean_literal] = STATE(2408), + [sym_attribute_item] = STATE(1423), + [sym_inner_attribute_item] = STATE(1423), + [sym_bracketed_type] = STATE(3730), + [sym_generic_type] = STATE(3622), + [sym_generic_type_with_turbofish] = STATE(3423), + [sym_macro_invocation] = STATE(3092), + [sym_scoped_identifier] = STATE(2268), + [sym_scoped_type_identifier] = STATE(3118), + [sym_match_arm] = STATE(1424), + [sym_last_match_arm] = STATE(3639), + [sym_match_pattern] = STATE(3658), + [sym_const_block] = STATE(3092), + [sym__pattern] = STATE(3027), + [sym_generic_pattern] = STATE(3092), + [sym_tuple_pattern] = STATE(3092), + [sym_slice_pattern] = STATE(3092), + [sym_tuple_struct_pattern] = STATE(3092), + [sym_struct_pattern] = STATE(3092), + [sym_remaining_field_pattern] = STATE(3092), + [sym_mut_pattern] = STATE(3092), + [sym_range_pattern] = STATE(3092), + [sym_ref_pattern] = STATE(3092), + [sym_captured_pattern] = STATE(3092), + [sym_reference_pattern] = STATE(3092), + [sym_or_pattern] = STATE(3092), + [sym__literal_pattern] = STATE(2439), + [sym_negative_literal] = STATE(2421), + [sym_string_literal] = STATE(2421), + [sym_raw_string_literal] = STATE(2421), + [sym_boolean_literal] = STATE(2421), [sym_line_comment] = STATE(464), [sym_block_comment] = STATE(464), - [aux_sym_match_block_repeat1] = STATE(467), - [aux_sym_match_arm_repeat1] = STATE(684), - [sym_identifier] = ACTIONS(1671), - [anon_sym_LPAREN] = ACTIONS(1673), - [anon_sym_LBRACK] = ACTIONS(1675), - [anon_sym_RBRACE] = ACTIONS(1721), - [anon_sym_u8] = ACTIONS(1679), - [anon_sym_i8] = ACTIONS(1679), - [anon_sym_u16] = ACTIONS(1679), - [anon_sym_i16] = ACTIONS(1679), - [anon_sym_u32] = ACTIONS(1679), - [anon_sym_i32] = ACTIONS(1679), - [anon_sym_u64] = ACTIONS(1679), - [anon_sym_i64] = ACTIONS(1679), - [anon_sym_u128] = ACTIONS(1679), - [anon_sym_i128] = ACTIONS(1679), - [anon_sym_isize] = ACTIONS(1679), - [anon_sym_usize] = ACTIONS(1679), - [anon_sym_f32] = ACTIONS(1679), - [anon_sym_f64] = ACTIONS(1679), - [anon_sym_bool] = ACTIONS(1679), - [anon_sym_str] = ACTIONS(1679), - [anon_sym_char] = ACTIONS(1679), - [anon_sym_DASH] = ACTIONS(1681), - [anon_sym_AMP] = ACTIONS(1683), - [anon_sym_PIPE] = ACTIONS(1685), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1687), - [anon_sym_DOT_DOT] = ACTIONS(1689), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1691), - [anon_sym_COLON_COLON] = ACTIONS(1693), - [anon_sym_POUND] = ACTIONS(1695), - [anon_sym_const] = ACTIONS(1697), - [anon_sym_default] = ACTIONS(1699), - [anon_sym_gen] = ACTIONS(1699), - [anon_sym_union] = ACTIONS(1699), - [anon_sym_ref] = ACTIONS(1701), - [sym_mutable_specifier] = ACTIONS(1703), - [sym_integer_literal] = ACTIONS(1705), - [aux_sym_string_literal_token1] = ACTIONS(1707), - [sym_char_literal] = ACTIONS(1705), - [anon_sym_true] = ACTIONS(1709), - [anon_sym_false] = ACTIONS(1709), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1711), - [sym_super] = ACTIONS(1711), - [sym_crate] = ACTIONS(1711), - [sym_metavariable] = ACTIONS(1713), - [sym__raw_string_literal_start] = ACTIONS(1715), - [sym_float_literal] = ACTIONS(1705), + [aux_sym_match_block_repeat1] = STATE(468), + [aux_sym_match_arm_repeat1] = STATE(793), + [sym_identifier] = ACTIONS(1678), + [anon_sym_LPAREN] = ACTIONS(1680), + [anon_sym_LBRACK] = ACTIONS(1682), + [anon_sym_RBRACE] = ACTIONS(1684), + [anon_sym_u8] = ACTIONS(1686), + [anon_sym_i8] = ACTIONS(1686), + [anon_sym_u16] = ACTIONS(1686), + [anon_sym_i16] = ACTIONS(1686), + [anon_sym_u32] = ACTIONS(1686), + [anon_sym_i32] = ACTIONS(1686), + [anon_sym_u64] = ACTIONS(1686), + [anon_sym_i64] = ACTIONS(1686), + [anon_sym_u128] = ACTIONS(1686), + [anon_sym_i128] = ACTIONS(1686), + [anon_sym_isize] = ACTIONS(1686), + [anon_sym_usize] = ACTIONS(1686), + [anon_sym_f32] = ACTIONS(1686), + [anon_sym_f64] = ACTIONS(1686), + [anon_sym_bool] = ACTIONS(1686), + [anon_sym_str] = ACTIONS(1686), + [anon_sym_char] = ACTIONS(1686), + [anon_sym_DASH] = ACTIONS(1688), + [anon_sym_AMP] = ACTIONS(1690), + [anon_sym_PIPE] = ACTIONS(1692), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1694), + [anon_sym_DOT_DOT] = ACTIONS(1696), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1698), + [anon_sym_COLON_COLON] = ACTIONS(1700), + [anon_sym_POUND] = ACTIONS(1702), + [anon_sym_const] = ACTIONS(1704), + [anon_sym_default] = ACTIONS(1706), + [anon_sym_gen] = ACTIONS(1706), + [anon_sym_union] = ACTIONS(1706), + [anon_sym_ref] = ACTIONS(1708), + [sym_mutable_specifier] = ACTIONS(1710), + [sym_integer_literal] = ACTIONS(1712), + [aux_sym_string_literal_token1] = ACTIONS(1714), + [sym_char_literal] = ACTIONS(1712), + [anon_sym_true] = ACTIONS(1716), + [anon_sym_false] = ACTIONS(1716), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1718), + [sym_super] = ACTIONS(1718), + [sym_crate] = ACTIONS(1718), + [sym_metavariable] = ACTIONS(1720), + [sym__raw_string_literal_start] = ACTIONS(1722), + [sym_float_literal] = ACTIONS(1712), }, [STATE(465)] = { - [sym_attribute_item] = STATE(1145), - [sym_inner_attribute_item] = STATE(1145), - [sym_bracketed_type] = STATE(3695), - [sym_generic_type] = STATE(3711), - [sym_generic_type_with_turbofish] = STATE(3416), - [sym_macro_invocation] = STATE(2883), - [sym_scoped_identifier] = STATE(2241), - [sym_scoped_type_identifier] = STATE(3110), - [sym_match_arm] = STATE(1146), - [sym_last_match_arm] = STATE(3668), - [sym_match_pattern] = STATE(3746), - [sym_const_block] = STATE(2883), - [sym__pattern] = STATE(2909), - [sym_generic_pattern] = STATE(2883), - [sym_tuple_pattern] = STATE(2883), - [sym_slice_pattern] = STATE(2883), - [sym_tuple_struct_pattern] = STATE(2883), - [sym_struct_pattern] = STATE(2883), - [sym_remaining_field_pattern] = STATE(2883), - [sym_mut_pattern] = STATE(2883), - [sym_range_pattern] = STATE(2883), - [sym_ref_pattern] = STATE(2883), - [sym_captured_pattern] = STATE(2883), - [sym_reference_pattern] = STATE(2883), - [sym_or_pattern] = STATE(2883), - [sym__literal_pattern] = STATE(2449), - [sym_negative_literal] = STATE(2408), - [sym_string_literal] = STATE(2408), - [sym_raw_string_literal] = STATE(2408), - [sym_boolean_literal] = STATE(2408), + [sym_attribute_item] = STATE(1423), + [sym_inner_attribute_item] = STATE(1423), + [sym_bracketed_type] = STATE(3730), + [sym_generic_type] = STATE(3622), + [sym_generic_type_with_turbofish] = STATE(3423), + [sym_macro_invocation] = STATE(3092), + [sym_scoped_identifier] = STATE(2268), + [sym_scoped_type_identifier] = STATE(3118), + [sym_match_arm] = STATE(1424), + [sym_last_match_arm] = STATE(3643), + [sym_match_pattern] = STATE(3658), + [sym_const_block] = STATE(3092), + [sym__pattern] = STATE(3027), + [sym_generic_pattern] = STATE(3092), + [sym_tuple_pattern] = STATE(3092), + [sym_slice_pattern] = STATE(3092), + [sym_tuple_struct_pattern] = STATE(3092), + [sym_struct_pattern] = STATE(3092), + [sym_remaining_field_pattern] = STATE(3092), + [sym_mut_pattern] = STATE(3092), + [sym_range_pattern] = STATE(3092), + [sym_ref_pattern] = STATE(3092), + [sym_captured_pattern] = STATE(3092), + [sym_reference_pattern] = STATE(3092), + [sym_or_pattern] = STATE(3092), + [sym__literal_pattern] = STATE(2439), + [sym_negative_literal] = STATE(2421), + [sym_string_literal] = STATE(2421), + [sym_raw_string_literal] = STATE(2421), + [sym_boolean_literal] = STATE(2421), [sym_line_comment] = STATE(465), [sym_block_comment] = STATE(465), - [aux_sym_match_block_repeat1] = STATE(466), - [aux_sym_match_arm_repeat1] = STATE(684), - [sym_identifier] = ACTIONS(1671), - [anon_sym_LPAREN] = ACTIONS(1673), - [anon_sym_LBRACK] = ACTIONS(1675), - [anon_sym_RBRACE] = ACTIONS(1723), - [anon_sym_u8] = ACTIONS(1679), - [anon_sym_i8] = ACTIONS(1679), - [anon_sym_u16] = ACTIONS(1679), - [anon_sym_i16] = ACTIONS(1679), - [anon_sym_u32] = ACTIONS(1679), - [anon_sym_i32] = ACTIONS(1679), - [anon_sym_u64] = ACTIONS(1679), - [anon_sym_i64] = ACTIONS(1679), - [anon_sym_u128] = ACTIONS(1679), - [anon_sym_i128] = ACTIONS(1679), - [anon_sym_isize] = ACTIONS(1679), - [anon_sym_usize] = ACTIONS(1679), - [anon_sym_f32] = ACTIONS(1679), - [anon_sym_f64] = ACTIONS(1679), - [anon_sym_bool] = ACTIONS(1679), - [anon_sym_str] = ACTIONS(1679), - [anon_sym_char] = ACTIONS(1679), - [anon_sym_DASH] = ACTIONS(1681), - [anon_sym_AMP] = ACTIONS(1683), - [anon_sym_PIPE] = ACTIONS(1685), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1687), - [anon_sym_DOT_DOT] = ACTIONS(1689), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1691), - [anon_sym_COLON_COLON] = ACTIONS(1693), - [anon_sym_POUND] = ACTIONS(1695), - [anon_sym_const] = ACTIONS(1697), - [anon_sym_default] = ACTIONS(1699), - [anon_sym_gen] = ACTIONS(1699), - [anon_sym_union] = ACTIONS(1699), - [anon_sym_ref] = ACTIONS(1701), - [sym_mutable_specifier] = ACTIONS(1703), - [sym_integer_literal] = ACTIONS(1705), - [aux_sym_string_literal_token1] = ACTIONS(1707), - [sym_char_literal] = ACTIONS(1705), - [anon_sym_true] = ACTIONS(1709), - [anon_sym_false] = ACTIONS(1709), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1711), - [sym_super] = ACTIONS(1711), - [sym_crate] = ACTIONS(1711), - [sym_metavariable] = ACTIONS(1713), - [sym__raw_string_literal_start] = ACTIONS(1715), - [sym_float_literal] = ACTIONS(1705), + [aux_sym_match_block_repeat1] = STATE(471), + [aux_sym_match_arm_repeat1] = STATE(793), + [sym_identifier] = ACTIONS(1678), + [anon_sym_LPAREN] = ACTIONS(1680), + [anon_sym_LBRACK] = ACTIONS(1682), + [anon_sym_RBRACE] = ACTIONS(1724), + [anon_sym_u8] = ACTIONS(1686), + [anon_sym_i8] = ACTIONS(1686), + [anon_sym_u16] = ACTIONS(1686), + [anon_sym_i16] = ACTIONS(1686), + [anon_sym_u32] = ACTIONS(1686), + [anon_sym_i32] = ACTIONS(1686), + [anon_sym_u64] = ACTIONS(1686), + [anon_sym_i64] = ACTIONS(1686), + [anon_sym_u128] = ACTIONS(1686), + [anon_sym_i128] = ACTIONS(1686), + [anon_sym_isize] = ACTIONS(1686), + [anon_sym_usize] = ACTIONS(1686), + [anon_sym_f32] = ACTIONS(1686), + [anon_sym_f64] = ACTIONS(1686), + [anon_sym_bool] = ACTIONS(1686), + [anon_sym_str] = ACTIONS(1686), + [anon_sym_char] = ACTIONS(1686), + [anon_sym_DASH] = ACTIONS(1688), + [anon_sym_AMP] = ACTIONS(1690), + [anon_sym_PIPE] = ACTIONS(1692), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1694), + [anon_sym_DOT_DOT] = ACTIONS(1696), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1698), + [anon_sym_COLON_COLON] = ACTIONS(1700), + [anon_sym_POUND] = ACTIONS(1702), + [anon_sym_const] = ACTIONS(1704), + [anon_sym_default] = ACTIONS(1706), + [anon_sym_gen] = ACTIONS(1706), + [anon_sym_union] = ACTIONS(1706), + [anon_sym_ref] = ACTIONS(1708), + [sym_mutable_specifier] = ACTIONS(1710), + [sym_integer_literal] = ACTIONS(1712), + [aux_sym_string_literal_token1] = ACTIONS(1714), + [sym_char_literal] = ACTIONS(1712), + [anon_sym_true] = ACTIONS(1716), + [anon_sym_false] = ACTIONS(1716), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1718), + [sym_super] = ACTIONS(1718), + [sym_crate] = ACTIONS(1718), + [sym_metavariable] = ACTIONS(1720), + [sym__raw_string_literal_start] = ACTIONS(1722), + [sym_float_literal] = ACTIONS(1712), }, [STATE(466)] = { - [sym_attribute_item] = STATE(1145), - [sym_inner_attribute_item] = STATE(1145), - [sym_bracketed_type] = STATE(3695), - [sym_generic_type] = STATE(3711), - [sym_generic_type_with_turbofish] = STATE(3416), - [sym_macro_invocation] = STATE(2883), - [sym_scoped_identifier] = STATE(2241), - [sym_scoped_type_identifier] = STATE(3110), - [sym_match_arm] = STATE(1146), - [sym_last_match_arm] = STATE(3612), - [sym_match_pattern] = STATE(3746), - [sym_const_block] = STATE(2883), - [sym__pattern] = STATE(2909), - [sym_generic_pattern] = STATE(2883), - [sym_tuple_pattern] = STATE(2883), - [sym_slice_pattern] = STATE(2883), - [sym_tuple_struct_pattern] = STATE(2883), - [sym_struct_pattern] = STATE(2883), - [sym_remaining_field_pattern] = STATE(2883), - [sym_mut_pattern] = STATE(2883), - [sym_range_pattern] = STATE(2883), - [sym_ref_pattern] = STATE(2883), - [sym_captured_pattern] = STATE(2883), - [sym_reference_pattern] = STATE(2883), - [sym_or_pattern] = STATE(2883), - [sym__literal_pattern] = STATE(2449), - [sym_negative_literal] = STATE(2408), - [sym_string_literal] = STATE(2408), - [sym_raw_string_literal] = STATE(2408), - [sym_boolean_literal] = STATE(2408), + [sym_attribute_item] = STATE(1423), + [sym_inner_attribute_item] = STATE(1423), + [sym_bracketed_type] = STATE(3730), + [sym_generic_type] = STATE(3622), + [sym_generic_type_with_turbofish] = STATE(3423), + [sym_macro_invocation] = STATE(3092), + [sym_scoped_identifier] = STATE(2268), + [sym_scoped_type_identifier] = STATE(3118), + [sym_match_arm] = STATE(1424), + [sym_last_match_arm] = STATE(3710), + [sym_match_pattern] = STATE(3658), + [sym_const_block] = STATE(3092), + [sym__pattern] = STATE(3027), + [sym_generic_pattern] = STATE(3092), + [sym_tuple_pattern] = STATE(3092), + [sym_slice_pattern] = STATE(3092), + [sym_tuple_struct_pattern] = STATE(3092), + [sym_struct_pattern] = STATE(3092), + [sym_remaining_field_pattern] = STATE(3092), + [sym_mut_pattern] = STATE(3092), + [sym_range_pattern] = STATE(3092), + [sym_ref_pattern] = STATE(3092), + [sym_captured_pattern] = STATE(3092), + [sym_reference_pattern] = STATE(3092), + [sym_or_pattern] = STATE(3092), + [sym__literal_pattern] = STATE(2439), + [sym_negative_literal] = STATE(2421), + [sym_string_literal] = STATE(2421), + [sym_raw_string_literal] = STATE(2421), + [sym_boolean_literal] = STATE(2421), [sym_line_comment] = STATE(466), [sym_block_comment] = STATE(466), - [aux_sym_match_block_repeat1] = STATE(497), - [aux_sym_match_arm_repeat1] = STATE(684), - [sym_identifier] = ACTIONS(1671), - [anon_sym_LPAREN] = ACTIONS(1673), - [anon_sym_LBRACK] = ACTIONS(1675), - [anon_sym_u8] = ACTIONS(1679), - [anon_sym_i8] = ACTIONS(1679), - [anon_sym_u16] = ACTIONS(1679), - [anon_sym_i16] = ACTIONS(1679), - [anon_sym_u32] = ACTIONS(1679), - [anon_sym_i32] = ACTIONS(1679), - [anon_sym_u64] = ACTIONS(1679), - [anon_sym_i64] = ACTIONS(1679), - [anon_sym_u128] = ACTIONS(1679), - [anon_sym_i128] = ACTIONS(1679), - [anon_sym_isize] = ACTIONS(1679), - [anon_sym_usize] = ACTIONS(1679), - [anon_sym_f32] = ACTIONS(1679), - [anon_sym_f64] = ACTIONS(1679), - [anon_sym_bool] = ACTIONS(1679), - [anon_sym_str] = ACTIONS(1679), - [anon_sym_char] = ACTIONS(1679), - [anon_sym_DASH] = ACTIONS(1681), - [anon_sym_AMP] = ACTIONS(1683), - [anon_sym_PIPE] = ACTIONS(1685), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1687), - [anon_sym_DOT_DOT] = ACTIONS(1689), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1691), - [anon_sym_COLON_COLON] = ACTIONS(1693), - [anon_sym_POUND] = ACTIONS(1695), - [anon_sym_const] = ACTIONS(1697), - [anon_sym_default] = ACTIONS(1699), - [anon_sym_gen] = ACTIONS(1699), - [anon_sym_union] = ACTIONS(1699), - [anon_sym_ref] = ACTIONS(1701), - [sym_mutable_specifier] = ACTIONS(1703), - [sym_integer_literal] = ACTIONS(1705), - [aux_sym_string_literal_token1] = ACTIONS(1707), - [sym_char_literal] = ACTIONS(1705), - [anon_sym_true] = ACTIONS(1709), - [anon_sym_false] = ACTIONS(1709), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1711), - [sym_super] = ACTIONS(1711), - [sym_crate] = ACTIONS(1711), - [sym_metavariable] = ACTIONS(1713), - [sym__raw_string_literal_start] = ACTIONS(1715), - [sym_float_literal] = ACTIONS(1705), + [aux_sym_match_block_repeat1] = STATE(474), + [aux_sym_match_arm_repeat1] = STATE(793), + [sym_identifier] = ACTIONS(1678), + [anon_sym_LPAREN] = ACTIONS(1680), + [anon_sym_LBRACK] = ACTIONS(1682), + [anon_sym_RBRACE] = ACTIONS(1726), + [anon_sym_u8] = ACTIONS(1686), + [anon_sym_i8] = ACTIONS(1686), + [anon_sym_u16] = ACTIONS(1686), + [anon_sym_i16] = ACTIONS(1686), + [anon_sym_u32] = ACTIONS(1686), + [anon_sym_i32] = ACTIONS(1686), + [anon_sym_u64] = ACTIONS(1686), + [anon_sym_i64] = ACTIONS(1686), + [anon_sym_u128] = ACTIONS(1686), + [anon_sym_i128] = ACTIONS(1686), + [anon_sym_isize] = ACTIONS(1686), + [anon_sym_usize] = ACTIONS(1686), + [anon_sym_f32] = ACTIONS(1686), + [anon_sym_f64] = ACTIONS(1686), + [anon_sym_bool] = ACTIONS(1686), + [anon_sym_str] = ACTIONS(1686), + [anon_sym_char] = ACTIONS(1686), + [anon_sym_DASH] = ACTIONS(1688), + [anon_sym_AMP] = ACTIONS(1690), + [anon_sym_PIPE] = ACTIONS(1692), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1694), + [anon_sym_DOT_DOT] = ACTIONS(1696), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1698), + [anon_sym_COLON_COLON] = ACTIONS(1700), + [anon_sym_POUND] = ACTIONS(1702), + [anon_sym_const] = ACTIONS(1704), + [anon_sym_default] = ACTIONS(1706), + [anon_sym_gen] = ACTIONS(1706), + [anon_sym_union] = ACTIONS(1706), + [anon_sym_ref] = ACTIONS(1708), + [sym_mutable_specifier] = ACTIONS(1710), + [sym_integer_literal] = ACTIONS(1712), + [aux_sym_string_literal_token1] = ACTIONS(1714), + [sym_char_literal] = ACTIONS(1712), + [anon_sym_true] = ACTIONS(1716), + [anon_sym_false] = ACTIONS(1716), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1718), + [sym_super] = ACTIONS(1718), + [sym_crate] = ACTIONS(1718), + [sym_metavariable] = ACTIONS(1720), + [sym__raw_string_literal_start] = ACTIONS(1722), + [sym_float_literal] = ACTIONS(1712), }, [STATE(467)] = { - [sym_attribute_item] = STATE(1145), - [sym_inner_attribute_item] = STATE(1145), - [sym_bracketed_type] = STATE(3695), - [sym_generic_type] = STATE(3711), - [sym_generic_type_with_turbofish] = STATE(3416), - [sym_macro_invocation] = STATE(2883), - [sym_scoped_identifier] = STATE(2241), - [sym_scoped_type_identifier] = STATE(3110), - [sym_match_arm] = STATE(1146), - [sym_last_match_arm] = STATE(3498), - [sym_match_pattern] = STATE(3746), - [sym_const_block] = STATE(2883), - [sym__pattern] = STATE(2909), - [sym_generic_pattern] = STATE(2883), - [sym_tuple_pattern] = STATE(2883), - [sym_slice_pattern] = STATE(2883), - [sym_tuple_struct_pattern] = STATE(2883), - [sym_struct_pattern] = STATE(2883), - [sym_remaining_field_pattern] = STATE(2883), - [sym_mut_pattern] = STATE(2883), - [sym_range_pattern] = STATE(2883), - [sym_ref_pattern] = STATE(2883), - [sym_captured_pattern] = STATE(2883), - [sym_reference_pattern] = STATE(2883), - [sym_or_pattern] = STATE(2883), - [sym__literal_pattern] = STATE(2449), - [sym_negative_literal] = STATE(2408), - [sym_string_literal] = STATE(2408), - [sym_raw_string_literal] = STATE(2408), - [sym_boolean_literal] = STATE(2408), + [sym_attribute_item] = STATE(1423), + [sym_inner_attribute_item] = STATE(1423), + [sym_bracketed_type] = STATE(3730), + [sym_generic_type] = STATE(3622), + [sym_generic_type_with_turbofish] = STATE(3423), + [sym_macro_invocation] = STATE(3092), + [sym_scoped_identifier] = STATE(2268), + [sym_scoped_type_identifier] = STATE(3118), + [sym_match_arm] = STATE(1424), + [sym_last_match_arm] = STATE(3592), + [sym_match_pattern] = STATE(3658), + [sym_const_block] = STATE(3092), + [sym__pattern] = STATE(3027), + [sym_generic_pattern] = STATE(3092), + [sym_tuple_pattern] = STATE(3092), + [sym_slice_pattern] = STATE(3092), + [sym_tuple_struct_pattern] = STATE(3092), + [sym_struct_pattern] = STATE(3092), + [sym_remaining_field_pattern] = STATE(3092), + [sym_mut_pattern] = STATE(3092), + [sym_range_pattern] = STATE(3092), + [sym_ref_pattern] = STATE(3092), + [sym_captured_pattern] = STATE(3092), + [sym_reference_pattern] = STATE(3092), + [sym_or_pattern] = STATE(3092), + [sym__literal_pattern] = STATE(2439), + [sym_negative_literal] = STATE(2421), + [sym_string_literal] = STATE(2421), + [sym_raw_string_literal] = STATE(2421), + [sym_boolean_literal] = STATE(2421), [sym_line_comment] = STATE(467), [sym_block_comment] = STATE(467), - [aux_sym_match_block_repeat1] = STATE(497), - [aux_sym_match_arm_repeat1] = STATE(684), - [sym_identifier] = ACTIONS(1671), - [anon_sym_LPAREN] = ACTIONS(1673), - [anon_sym_LBRACK] = ACTIONS(1675), - [anon_sym_u8] = ACTIONS(1679), - [anon_sym_i8] = ACTIONS(1679), - [anon_sym_u16] = ACTIONS(1679), - [anon_sym_i16] = ACTIONS(1679), - [anon_sym_u32] = ACTIONS(1679), - [anon_sym_i32] = ACTIONS(1679), - [anon_sym_u64] = ACTIONS(1679), - [anon_sym_i64] = ACTIONS(1679), - [anon_sym_u128] = ACTIONS(1679), - [anon_sym_i128] = ACTIONS(1679), - [anon_sym_isize] = ACTIONS(1679), - [anon_sym_usize] = ACTIONS(1679), - [anon_sym_f32] = ACTIONS(1679), - [anon_sym_f64] = ACTIONS(1679), - [anon_sym_bool] = ACTIONS(1679), - [anon_sym_str] = ACTIONS(1679), - [anon_sym_char] = ACTIONS(1679), - [anon_sym_DASH] = ACTIONS(1681), - [anon_sym_AMP] = ACTIONS(1683), - [anon_sym_PIPE] = ACTIONS(1685), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1687), - [anon_sym_DOT_DOT] = ACTIONS(1689), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1691), - [anon_sym_COLON_COLON] = ACTIONS(1693), - [anon_sym_POUND] = ACTIONS(1695), - [anon_sym_const] = ACTIONS(1697), - [anon_sym_default] = ACTIONS(1699), - [anon_sym_gen] = ACTIONS(1699), - [anon_sym_union] = ACTIONS(1699), - [anon_sym_ref] = ACTIONS(1701), - [sym_mutable_specifier] = ACTIONS(1703), - [sym_integer_literal] = ACTIONS(1705), - [aux_sym_string_literal_token1] = ACTIONS(1707), - [sym_char_literal] = ACTIONS(1705), - [anon_sym_true] = ACTIONS(1709), - [anon_sym_false] = ACTIONS(1709), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1711), - [sym_super] = ACTIONS(1711), - [sym_crate] = ACTIONS(1711), - [sym_metavariable] = ACTIONS(1713), - [sym__raw_string_literal_start] = ACTIONS(1715), - [sym_float_literal] = ACTIONS(1705), + [aux_sym_match_block_repeat1] = STATE(476), + [aux_sym_match_arm_repeat1] = STATE(793), + [sym_identifier] = ACTIONS(1678), + [anon_sym_LPAREN] = ACTIONS(1680), + [anon_sym_LBRACK] = ACTIONS(1682), + [anon_sym_RBRACE] = ACTIONS(1728), + [anon_sym_u8] = ACTIONS(1686), + [anon_sym_i8] = ACTIONS(1686), + [anon_sym_u16] = ACTIONS(1686), + [anon_sym_i16] = ACTIONS(1686), + [anon_sym_u32] = ACTIONS(1686), + [anon_sym_i32] = ACTIONS(1686), + [anon_sym_u64] = ACTIONS(1686), + [anon_sym_i64] = ACTIONS(1686), + [anon_sym_u128] = ACTIONS(1686), + [anon_sym_i128] = ACTIONS(1686), + [anon_sym_isize] = ACTIONS(1686), + [anon_sym_usize] = ACTIONS(1686), + [anon_sym_f32] = ACTIONS(1686), + [anon_sym_f64] = ACTIONS(1686), + [anon_sym_bool] = ACTIONS(1686), + [anon_sym_str] = ACTIONS(1686), + [anon_sym_char] = ACTIONS(1686), + [anon_sym_DASH] = ACTIONS(1688), + [anon_sym_AMP] = ACTIONS(1690), + [anon_sym_PIPE] = ACTIONS(1692), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1694), + [anon_sym_DOT_DOT] = ACTIONS(1696), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1698), + [anon_sym_COLON_COLON] = ACTIONS(1700), + [anon_sym_POUND] = ACTIONS(1702), + [anon_sym_const] = ACTIONS(1704), + [anon_sym_default] = ACTIONS(1706), + [anon_sym_gen] = ACTIONS(1706), + [anon_sym_union] = ACTIONS(1706), + [anon_sym_ref] = ACTIONS(1708), + [sym_mutable_specifier] = ACTIONS(1710), + [sym_integer_literal] = ACTIONS(1712), + [aux_sym_string_literal_token1] = ACTIONS(1714), + [sym_char_literal] = ACTIONS(1712), + [anon_sym_true] = ACTIONS(1716), + [anon_sym_false] = ACTIONS(1716), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1718), + [sym_super] = ACTIONS(1718), + [sym_crate] = ACTIONS(1718), + [sym_metavariable] = ACTIONS(1720), + [sym__raw_string_literal_start] = ACTIONS(1722), + [sym_float_literal] = ACTIONS(1712), }, [STATE(468)] = { + [sym_attribute_item] = STATE(1423), + [sym_inner_attribute_item] = STATE(1423), + [sym_bracketed_type] = STATE(3730), + [sym_generic_type] = STATE(3622), + [sym_generic_type_with_turbofish] = STATE(3423), + [sym_macro_invocation] = STATE(3092), + [sym_scoped_identifier] = STATE(2268), + [sym_scoped_type_identifier] = STATE(3118), + [sym_match_arm] = STATE(1424), + [sym_last_match_arm] = STATE(3835), + [sym_match_pattern] = STATE(3658), + [sym_const_block] = STATE(3092), + [sym__pattern] = STATE(3027), + [sym_generic_pattern] = STATE(3092), + [sym_tuple_pattern] = STATE(3092), + [sym_slice_pattern] = STATE(3092), + [sym_tuple_struct_pattern] = STATE(3092), + [sym_struct_pattern] = STATE(3092), + [sym_remaining_field_pattern] = STATE(3092), + [sym_mut_pattern] = STATE(3092), + [sym_range_pattern] = STATE(3092), + [sym_ref_pattern] = STATE(3092), + [sym_captured_pattern] = STATE(3092), + [sym_reference_pattern] = STATE(3092), + [sym_or_pattern] = STATE(3092), + [sym__literal_pattern] = STATE(2439), + [sym_negative_literal] = STATE(2421), + [sym_string_literal] = STATE(2421), + [sym_raw_string_literal] = STATE(2421), + [sym_boolean_literal] = STATE(2421), [sym_line_comment] = STATE(468), [sym_block_comment] = STATE(468), - [sym_identifier] = ACTIONS(1451), - [anon_sym_LPAREN] = ACTIONS(1449), - [anon_sym_LBRACK] = ACTIONS(1449), - [anon_sym_RBRACE] = ACTIONS(1449), - [anon_sym_PLUS] = ACTIONS(1451), - [anon_sym_STAR] = ACTIONS(1451), - [anon_sym_QMARK] = ACTIONS(1449), - [anon_sym_u8] = ACTIONS(1451), - [anon_sym_i8] = ACTIONS(1451), - [anon_sym_u16] = ACTIONS(1451), - [anon_sym_i16] = ACTIONS(1451), - [anon_sym_u32] = ACTIONS(1451), - [anon_sym_i32] = ACTIONS(1451), - [anon_sym_u64] = ACTIONS(1451), - [anon_sym_i64] = ACTIONS(1451), - [anon_sym_u128] = ACTIONS(1451), - [anon_sym_i128] = ACTIONS(1451), - [anon_sym_isize] = ACTIONS(1451), - [anon_sym_usize] = ACTIONS(1451), - [anon_sym_f32] = ACTIONS(1451), - [anon_sym_f64] = ACTIONS(1451), - [anon_sym_bool] = ACTIONS(1451), - [anon_sym_str] = ACTIONS(1451), - [anon_sym_char] = ACTIONS(1451), - [anon_sym_DASH] = ACTIONS(1451), - [anon_sym_SLASH] = ACTIONS(1451), - [anon_sym_PERCENT] = ACTIONS(1451), - [anon_sym_CARET] = ACTIONS(1451), - [anon_sym_AMP] = ACTIONS(1451), - [anon_sym_PIPE] = ACTIONS(1451), - [anon_sym_AMP_AMP] = ACTIONS(1449), - [anon_sym_PIPE_PIPE] = ACTIONS(1449), - [anon_sym_LT_LT] = ACTIONS(1451), - [anon_sym_GT_GT] = ACTIONS(1451), - [anon_sym_PLUS_EQ] = ACTIONS(1449), - [anon_sym_DASH_EQ] = ACTIONS(1449), - [anon_sym_STAR_EQ] = ACTIONS(1449), - [anon_sym_SLASH_EQ] = ACTIONS(1449), - [anon_sym_PERCENT_EQ] = ACTIONS(1449), - [anon_sym_CARET_EQ] = ACTIONS(1449), - [anon_sym_AMP_EQ] = ACTIONS(1449), - [anon_sym_PIPE_EQ] = ACTIONS(1449), - [anon_sym_LT_LT_EQ] = ACTIONS(1449), - [anon_sym_GT_GT_EQ] = ACTIONS(1449), - [anon_sym_EQ] = ACTIONS(1451), - [anon_sym_EQ_EQ] = ACTIONS(1449), - [anon_sym_BANG_EQ] = ACTIONS(1449), - [anon_sym_GT] = ACTIONS(1451), - [anon_sym_LT] = ACTIONS(1451), - [anon_sym_GT_EQ] = ACTIONS(1449), - [anon_sym_LT_EQ] = ACTIONS(1449), - [anon_sym__] = ACTIONS(1451), - [anon_sym_DOT] = ACTIONS(1451), - [anon_sym_DOT_DOT] = ACTIONS(1451), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1449), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1449), - [anon_sym_COMMA] = ACTIONS(1449), - [anon_sym_COLON_COLON] = ACTIONS(1449), - [anon_sym_POUND] = ACTIONS(1449), - [anon_sym_as] = ACTIONS(1451), - [anon_sym_const] = ACTIONS(1451), - [anon_sym_default] = ACTIONS(1451), - [anon_sym_gen] = ACTIONS(1451), - [anon_sym_union] = ACTIONS(1451), - [anon_sym_ref] = ACTIONS(1451), - [anon_sym_else] = ACTIONS(1451), - [sym_mutable_specifier] = ACTIONS(1451), - [sym_integer_literal] = ACTIONS(1449), - [aux_sym_string_literal_token1] = ACTIONS(1449), - [sym_char_literal] = ACTIONS(1449), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1451), - [sym_super] = ACTIONS(1451), - [sym_crate] = ACTIONS(1451), - [sym_metavariable] = ACTIONS(1449), - [sym__raw_string_literal_start] = ACTIONS(1449), - [sym_float_literal] = ACTIONS(1449), + [aux_sym_match_block_repeat1] = STATE(499), + [aux_sym_match_arm_repeat1] = STATE(793), + [sym_identifier] = ACTIONS(1678), + [anon_sym_LPAREN] = ACTIONS(1680), + [anon_sym_LBRACK] = ACTIONS(1682), + [anon_sym_u8] = ACTIONS(1686), + [anon_sym_i8] = ACTIONS(1686), + [anon_sym_u16] = ACTIONS(1686), + [anon_sym_i16] = ACTIONS(1686), + [anon_sym_u32] = ACTIONS(1686), + [anon_sym_i32] = ACTIONS(1686), + [anon_sym_u64] = ACTIONS(1686), + [anon_sym_i64] = ACTIONS(1686), + [anon_sym_u128] = ACTIONS(1686), + [anon_sym_i128] = ACTIONS(1686), + [anon_sym_isize] = ACTIONS(1686), + [anon_sym_usize] = ACTIONS(1686), + [anon_sym_f32] = ACTIONS(1686), + [anon_sym_f64] = ACTIONS(1686), + [anon_sym_bool] = ACTIONS(1686), + [anon_sym_str] = ACTIONS(1686), + [anon_sym_char] = ACTIONS(1686), + [anon_sym_DASH] = ACTIONS(1688), + [anon_sym_AMP] = ACTIONS(1690), + [anon_sym_PIPE] = ACTIONS(1692), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1694), + [anon_sym_DOT_DOT] = ACTIONS(1696), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1698), + [anon_sym_COLON_COLON] = ACTIONS(1700), + [anon_sym_POUND] = ACTIONS(1702), + [anon_sym_const] = ACTIONS(1704), + [anon_sym_default] = ACTIONS(1706), + [anon_sym_gen] = ACTIONS(1706), + [anon_sym_union] = ACTIONS(1706), + [anon_sym_ref] = ACTIONS(1708), + [sym_mutable_specifier] = ACTIONS(1710), + [sym_integer_literal] = ACTIONS(1712), + [aux_sym_string_literal_token1] = ACTIONS(1714), + [sym_char_literal] = ACTIONS(1712), + [anon_sym_true] = ACTIONS(1716), + [anon_sym_false] = ACTIONS(1716), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1718), + [sym_super] = ACTIONS(1718), + [sym_crate] = ACTIONS(1718), + [sym_metavariable] = ACTIONS(1720), + [sym__raw_string_literal_start] = ACTIONS(1722), + [sym_float_literal] = ACTIONS(1712), }, [STATE(469)] = { - [sym_attribute_item] = STATE(1145), - [sym_inner_attribute_item] = STATE(1145), - [sym_bracketed_type] = STATE(3695), - [sym_generic_type] = STATE(3711), - [sym_generic_type_with_turbofish] = STATE(3416), - [sym_macro_invocation] = STATE(2883), - [sym_scoped_identifier] = STATE(2241), - [sym_scoped_type_identifier] = STATE(3110), - [sym_match_arm] = STATE(1146), - [sym_last_match_arm] = STATE(3655), - [sym_match_pattern] = STATE(3746), - [sym_const_block] = STATE(2883), - [sym__pattern] = STATE(2909), - [sym_generic_pattern] = STATE(2883), - [sym_tuple_pattern] = STATE(2883), - [sym_slice_pattern] = STATE(2883), - [sym_tuple_struct_pattern] = STATE(2883), - [sym_struct_pattern] = STATE(2883), - [sym_remaining_field_pattern] = STATE(2883), - [sym_mut_pattern] = STATE(2883), - [sym_range_pattern] = STATE(2883), - [sym_ref_pattern] = STATE(2883), - [sym_captured_pattern] = STATE(2883), - [sym_reference_pattern] = STATE(2883), - [sym_or_pattern] = STATE(2883), - [sym__literal_pattern] = STATE(2449), - [sym_negative_literal] = STATE(2408), - [sym_string_literal] = STATE(2408), - [sym_raw_string_literal] = STATE(2408), - [sym_boolean_literal] = STATE(2408), [sym_line_comment] = STATE(469), [sym_block_comment] = STATE(469), - [aux_sym_match_block_repeat1] = STATE(497), - [aux_sym_match_arm_repeat1] = STATE(684), - [sym_identifier] = ACTIONS(1671), - [anon_sym_LPAREN] = ACTIONS(1673), - [anon_sym_LBRACK] = ACTIONS(1675), - [anon_sym_u8] = ACTIONS(1679), - [anon_sym_i8] = ACTIONS(1679), - [anon_sym_u16] = ACTIONS(1679), - [anon_sym_i16] = ACTIONS(1679), - [anon_sym_u32] = ACTIONS(1679), - [anon_sym_i32] = ACTIONS(1679), - [anon_sym_u64] = ACTIONS(1679), - [anon_sym_i64] = ACTIONS(1679), - [anon_sym_u128] = ACTIONS(1679), - [anon_sym_i128] = ACTIONS(1679), - [anon_sym_isize] = ACTIONS(1679), - [anon_sym_usize] = ACTIONS(1679), - [anon_sym_f32] = ACTIONS(1679), - [anon_sym_f64] = ACTIONS(1679), - [anon_sym_bool] = ACTIONS(1679), - [anon_sym_str] = ACTIONS(1679), - [anon_sym_char] = ACTIONS(1679), - [anon_sym_DASH] = ACTIONS(1681), - [anon_sym_AMP] = ACTIONS(1683), - [anon_sym_PIPE] = ACTIONS(1685), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1687), - [anon_sym_DOT_DOT] = ACTIONS(1689), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1691), - [anon_sym_COLON_COLON] = ACTIONS(1693), - [anon_sym_POUND] = ACTIONS(1695), - [anon_sym_const] = ACTIONS(1697), - [anon_sym_default] = ACTIONS(1699), - [anon_sym_gen] = ACTIONS(1699), - [anon_sym_union] = ACTIONS(1699), - [anon_sym_ref] = ACTIONS(1701), - [sym_mutable_specifier] = ACTIONS(1703), - [sym_integer_literal] = ACTIONS(1705), - [aux_sym_string_literal_token1] = ACTIONS(1707), - [sym_char_literal] = ACTIONS(1705), - [anon_sym_true] = ACTIONS(1709), - [anon_sym_false] = ACTIONS(1709), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1711), - [sym_super] = ACTIONS(1711), - [sym_crate] = ACTIONS(1711), - [sym_metavariable] = ACTIONS(1713), - [sym__raw_string_literal_start] = ACTIONS(1715), - [sym_float_literal] = ACTIONS(1705), + [sym_identifier] = ACTIONS(1440), + [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_LBRACK] = ACTIONS(1438), + [anon_sym_RBRACE] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1440), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_QMARK] = ACTIONS(1438), + [anon_sym_u8] = ACTIONS(1440), + [anon_sym_i8] = ACTIONS(1440), + [anon_sym_u16] = ACTIONS(1440), + [anon_sym_i16] = ACTIONS(1440), + [anon_sym_u32] = ACTIONS(1440), + [anon_sym_i32] = ACTIONS(1440), + [anon_sym_u64] = ACTIONS(1440), + [anon_sym_i64] = ACTIONS(1440), + [anon_sym_u128] = ACTIONS(1440), + [anon_sym_i128] = ACTIONS(1440), + [anon_sym_isize] = ACTIONS(1440), + [anon_sym_usize] = ACTIONS(1440), + [anon_sym_f32] = ACTIONS(1440), + [anon_sym_f64] = ACTIONS(1440), + [anon_sym_bool] = ACTIONS(1440), + [anon_sym_str] = ACTIONS(1440), + [anon_sym_char] = ACTIONS(1440), + [anon_sym_DASH] = ACTIONS(1440), + [anon_sym_SLASH] = ACTIONS(1440), + [anon_sym_PERCENT] = ACTIONS(1440), + [anon_sym_CARET] = ACTIONS(1440), + [anon_sym_AMP] = ACTIONS(1440), + [anon_sym_PIPE] = ACTIONS(1440), + [anon_sym_AMP_AMP] = ACTIONS(1438), + [anon_sym_PIPE_PIPE] = ACTIONS(1438), + [anon_sym_LT_LT] = ACTIONS(1440), + [anon_sym_GT_GT] = ACTIONS(1440), + [anon_sym_PLUS_EQ] = ACTIONS(1438), + [anon_sym_DASH_EQ] = ACTIONS(1438), + [anon_sym_STAR_EQ] = ACTIONS(1438), + [anon_sym_SLASH_EQ] = ACTIONS(1438), + [anon_sym_PERCENT_EQ] = ACTIONS(1438), + [anon_sym_CARET_EQ] = ACTIONS(1438), + [anon_sym_AMP_EQ] = ACTIONS(1438), + [anon_sym_PIPE_EQ] = ACTIONS(1438), + [anon_sym_LT_LT_EQ] = ACTIONS(1438), + [anon_sym_GT_GT_EQ] = ACTIONS(1438), + [anon_sym_EQ] = ACTIONS(1440), + [anon_sym_EQ_EQ] = ACTIONS(1438), + [anon_sym_BANG_EQ] = ACTIONS(1438), + [anon_sym_GT] = ACTIONS(1440), + [anon_sym_LT] = ACTIONS(1440), + [anon_sym_GT_EQ] = ACTIONS(1438), + [anon_sym_LT_EQ] = ACTIONS(1438), + [anon_sym__] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1440), + [anon_sym_DOT_DOT] = ACTIONS(1440), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1438), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1438), + [anon_sym_COMMA] = ACTIONS(1438), + [anon_sym_COLON_COLON] = ACTIONS(1438), + [anon_sym_POUND] = ACTIONS(1438), + [anon_sym_as] = ACTIONS(1440), + [anon_sym_const] = ACTIONS(1440), + [anon_sym_default] = ACTIONS(1440), + [anon_sym_gen] = ACTIONS(1440), + [anon_sym_union] = ACTIONS(1440), + [anon_sym_ref] = ACTIONS(1440), + [anon_sym_else] = ACTIONS(1440), + [sym_mutable_specifier] = ACTIONS(1440), + [sym_integer_literal] = ACTIONS(1438), + [aux_sym_string_literal_token1] = ACTIONS(1438), + [sym_char_literal] = ACTIONS(1438), + [anon_sym_true] = ACTIONS(1440), + [anon_sym_false] = ACTIONS(1440), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1440), + [sym_super] = ACTIONS(1440), + [sym_crate] = ACTIONS(1440), + [sym_metavariable] = ACTIONS(1438), + [sym__raw_string_literal_start] = ACTIONS(1438), + [sym_float_literal] = ACTIONS(1438), }, [STATE(470)] = { [sym_line_comment] = STATE(470), [sym_block_comment] = STATE(470), - [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), - [anon_sym_else] = 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(1448), + [anon_sym_LPAREN] = ACTIONS(1446), + [anon_sym_LBRACK] = ACTIONS(1446), + [anon_sym_RBRACE] = ACTIONS(1446), + [anon_sym_PLUS] = ACTIONS(1448), + [anon_sym_STAR] = ACTIONS(1448), + [anon_sym_QMARK] = ACTIONS(1446), + [anon_sym_u8] = ACTIONS(1448), + [anon_sym_i8] = ACTIONS(1448), + [anon_sym_u16] = ACTIONS(1448), + [anon_sym_i16] = ACTIONS(1448), + [anon_sym_u32] = ACTIONS(1448), + [anon_sym_i32] = ACTIONS(1448), + [anon_sym_u64] = ACTIONS(1448), + [anon_sym_i64] = ACTIONS(1448), + [anon_sym_u128] = ACTIONS(1448), + [anon_sym_i128] = ACTIONS(1448), + [anon_sym_isize] = ACTIONS(1448), + [anon_sym_usize] = ACTIONS(1448), + [anon_sym_f32] = ACTIONS(1448), + [anon_sym_f64] = ACTIONS(1448), + [anon_sym_bool] = ACTIONS(1448), + [anon_sym_str] = ACTIONS(1448), + [anon_sym_char] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1448), + [anon_sym_SLASH] = ACTIONS(1448), + [anon_sym_PERCENT] = ACTIONS(1448), + [anon_sym_CARET] = ACTIONS(1448), + [anon_sym_AMP] = ACTIONS(1448), + [anon_sym_PIPE] = ACTIONS(1448), + [anon_sym_AMP_AMP] = ACTIONS(1446), + [anon_sym_PIPE_PIPE] = ACTIONS(1446), + [anon_sym_LT_LT] = ACTIONS(1448), + [anon_sym_GT_GT] = ACTIONS(1448), + [anon_sym_PLUS_EQ] = ACTIONS(1446), + [anon_sym_DASH_EQ] = ACTIONS(1446), + [anon_sym_STAR_EQ] = ACTIONS(1446), + [anon_sym_SLASH_EQ] = ACTIONS(1446), + [anon_sym_PERCENT_EQ] = ACTIONS(1446), + [anon_sym_CARET_EQ] = ACTIONS(1446), + [anon_sym_AMP_EQ] = ACTIONS(1446), + [anon_sym_PIPE_EQ] = ACTIONS(1446), + [anon_sym_LT_LT_EQ] = ACTIONS(1446), + [anon_sym_GT_GT_EQ] = ACTIONS(1446), + [anon_sym_EQ] = ACTIONS(1448), + [anon_sym_EQ_EQ] = ACTIONS(1446), + [anon_sym_BANG_EQ] = ACTIONS(1446), + [anon_sym_GT] = ACTIONS(1448), + [anon_sym_LT] = ACTIONS(1448), + [anon_sym_GT_EQ] = ACTIONS(1446), + [anon_sym_LT_EQ] = ACTIONS(1446), + [anon_sym__] = ACTIONS(1448), + [anon_sym_DOT] = ACTIONS(1448), + [anon_sym_DOT_DOT] = ACTIONS(1448), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1446), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1446), + [anon_sym_COMMA] = ACTIONS(1446), + [anon_sym_COLON_COLON] = ACTIONS(1446), + [anon_sym_POUND] = ACTIONS(1446), + [anon_sym_as] = ACTIONS(1448), + [anon_sym_const] = ACTIONS(1448), + [anon_sym_default] = ACTIONS(1448), + [anon_sym_gen] = ACTIONS(1448), + [anon_sym_union] = ACTIONS(1448), + [anon_sym_ref] = ACTIONS(1448), + [anon_sym_else] = ACTIONS(1448), + [sym_mutable_specifier] = ACTIONS(1448), + [sym_integer_literal] = ACTIONS(1446), + [aux_sym_string_literal_token1] = ACTIONS(1446), + [sym_char_literal] = ACTIONS(1446), + [anon_sym_true] = ACTIONS(1448), + [anon_sym_false] = ACTIONS(1448), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1448), + [sym_super] = ACTIONS(1448), + [sym_crate] = ACTIONS(1448), + [sym_metavariable] = ACTIONS(1446), + [sym__raw_string_literal_start] = ACTIONS(1446), + [sym_float_literal] = ACTIONS(1446), }, [STATE(471)] = { + [sym_attribute_item] = STATE(1423), + [sym_inner_attribute_item] = STATE(1423), + [sym_bracketed_type] = STATE(3730), + [sym_generic_type] = STATE(3622), + [sym_generic_type_with_turbofish] = STATE(3423), + [sym_macro_invocation] = STATE(3092), + [sym_scoped_identifier] = STATE(2268), + [sym_scoped_type_identifier] = STATE(3118), + [sym_match_arm] = STATE(1424), + [sym_last_match_arm] = STATE(3588), + [sym_match_pattern] = STATE(3658), + [sym_const_block] = STATE(3092), + [sym__pattern] = STATE(3027), + [sym_generic_pattern] = STATE(3092), + [sym_tuple_pattern] = STATE(3092), + [sym_slice_pattern] = STATE(3092), + [sym_tuple_struct_pattern] = STATE(3092), + [sym_struct_pattern] = STATE(3092), + [sym_remaining_field_pattern] = STATE(3092), + [sym_mut_pattern] = STATE(3092), + [sym_range_pattern] = STATE(3092), + [sym_ref_pattern] = STATE(3092), + [sym_captured_pattern] = STATE(3092), + [sym_reference_pattern] = STATE(3092), + [sym_or_pattern] = STATE(3092), + [sym__literal_pattern] = STATE(2439), + [sym_negative_literal] = STATE(2421), + [sym_string_literal] = STATE(2421), + [sym_raw_string_literal] = STATE(2421), + [sym_boolean_literal] = STATE(2421), [sym_line_comment] = STATE(471), [sym_block_comment] = STATE(471), - [sym_identifier] = ACTIONS(1435), - [anon_sym_LPAREN] = ACTIONS(1433), - [anon_sym_LBRACK] = ACTIONS(1433), - [anon_sym_RBRACE] = ACTIONS(1433), - [anon_sym_PLUS] = ACTIONS(1435), - [anon_sym_STAR] = ACTIONS(1435), - [anon_sym_QMARK] = ACTIONS(1433), - [anon_sym_u8] = ACTIONS(1435), - [anon_sym_i8] = ACTIONS(1435), - [anon_sym_u16] = ACTIONS(1435), - [anon_sym_i16] = ACTIONS(1435), - [anon_sym_u32] = ACTIONS(1435), - [anon_sym_i32] = ACTIONS(1435), - [anon_sym_u64] = ACTIONS(1435), - [anon_sym_i64] = ACTIONS(1435), - [anon_sym_u128] = ACTIONS(1435), - [anon_sym_i128] = ACTIONS(1435), - [anon_sym_isize] = ACTIONS(1435), - [anon_sym_usize] = ACTIONS(1435), - [anon_sym_f32] = ACTIONS(1435), - [anon_sym_f64] = ACTIONS(1435), - [anon_sym_bool] = ACTIONS(1435), - [anon_sym_str] = ACTIONS(1435), - [anon_sym_char] = ACTIONS(1435), - [anon_sym_DASH] = ACTIONS(1435), - [anon_sym_SLASH] = ACTIONS(1435), - [anon_sym_PERCENT] = ACTIONS(1435), - [anon_sym_CARET] = ACTIONS(1435), - [anon_sym_AMP] = ACTIONS(1435), - [anon_sym_PIPE] = ACTIONS(1435), - [anon_sym_AMP_AMP] = ACTIONS(1433), - [anon_sym_PIPE_PIPE] = ACTIONS(1433), - [anon_sym_LT_LT] = ACTIONS(1435), - [anon_sym_GT_GT] = ACTIONS(1435), - [anon_sym_PLUS_EQ] = ACTIONS(1433), - [anon_sym_DASH_EQ] = ACTIONS(1433), - [anon_sym_STAR_EQ] = ACTIONS(1433), - [anon_sym_SLASH_EQ] = ACTIONS(1433), - [anon_sym_PERCENT_EQ] = ACTIONS(1433), - [anon_sym_CARET_EQ] = ACTIONS(1433), - [anon_sym_AMP_EQ] = ACTIONS(1433), - [anon_sym_PIPE_EQ] = ACTIONS(1433), - [anon_sym_LT_LT_EQ] = ACTIONS(1433), - [anon_sym_GT_GT_EQ] = ACTIONS(1433), - [anon_sym_EQ] = ACTIONS(1435), - [anon_sym_EQ_EQ] = ACTIONS(1433), - [anon_sym_BANG_EQ] = ACTIONS(1433), - [anon_sym_GT] = ACTIONS(1435), - [anon_sym_LT] = ACTIONS(1435), - [anon_sym_GT_EQ] = ACTIONS(1433), - [anon_sym_LT_EQ] = ACTIONS(1433), - [anon_sym__] = ACTIONS(1435), - [anon_sym_DOT] = ACTIONS(1435), - [anon_sym_DOT_DOT] = ACTIONS(1435), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1433), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1433), - [anon_sym_COMMA] = ACTIONS(1433), - [anon_sym_COLON_COLON] = ACTIONS(1433), - [anon_sym_POUND] = ACTIONS(1433), - [anon_sym_as] = ACTIONS(1435), - [anon_sym_const] = ACTIONS(1435), - [anon_sym_default] = ACTIONS(1435), - [anon_sym_gen] = ACTIONS(1435), - [anon_sym_union] = ACTIONS(1435), - [anon_sym_ref] = ACTIONS(1435), - [anon_sym_else] = ACTIONS(1435), - [sym_mutable_specifier] = ACTIONS(1435), - [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_match_block_repeat1] = STATE(499), + [aux_sym_match_arm_repeat1] = STATE(793), + [sym_identifier] = ACTIONS(1678), + [anon_sym_LPAREN] = ACTIONS(1680), + [anon_sym_LBRACK] = ACTIONS(1682), + [anon_sym_u8] = ACTIONS(1686), + [anon_sym_i8] = ACTIONS(1686), + [anon_sym_u16] = ACTIONS(1686), + [anon_sym_i16] = ACTIONS(1686), + [anon_sym_u32] = ACTIONS(1686), + [anon_sym_i32] = ACTIONS(1686), + [anon_sym_u64] = ACTIONS(1686), + [anon_sym_i64] = ACTIONS(1686), + [anon_sym_u128] = ACTIONS(1686), + [anon_sym_i128] = ACTIONS(1686), + [anon_sym_isize] = ACTIONS(1686), + [anon_sym_usize] = ACTIONS(1686), + [anon_sym_f32] = ACTIONS(1686), + [anon_sym_f64] = ACTIONS(1686), + [anon_sym_bool] = ACTIONS(1686), + [anon_sym_str] = ACTIONS(1686), + [anon_sym_char] = ACTIONS(1686), + [anon_sym_DASH] = ACTIONS(1688), + [anon_sym_AMP] = ACTIONS(1690), + [anon_sym_PIPE] = ACTIONS(1692), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1694), + [anon_sym_DOT_DOT] = ACTIONS(1696), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1698), + [anon_sym_COLON_COLON] = ACTIONS(1700), + [anon_sym_POUND] = ACTIONS(1702), + [anon_sym_const] = ACTIONS(1704), + [anon_sym_default] = ACTIONS(1706), + [anon_sym_gen] = ACTIONS(1706), + [anon_sym_union] = ACTIONS(1706), + [anon_sym_ref] = ACTIONS(1708), + [sym_mutable_specifier] = ACTIONS(1710), + [sym_integer_literal] = ACTIONS(1712), + [aux_sym_string_literal_token1] = ACTIONS(1714), + [sym_char_literal] = ACTIONS(1712), + [anon_sym_true] = ACTIONS(1716), + [anon_sym_false] = ACTIONS(1716), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1718), + [sym_super] = ACTIONS(1718), + [sym_crate] = ACTIONS(1718), + [sym_metavariable] = ACTIONS(1720), + [sym__raw_string_literal_start] = ACTIONS(1722), + [sym_float_literal] = ACTIONS(1712), }, [STATE(472)] = { [sym_line_comment] = STATE(472), [sym_block_comment] = STATE(472), - [sym_identifier] = ACTIONS(1439), - [anon_sym_LPAREN] = ACTIONS(1437), - [anon_sym_LBRACK] = 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_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__] = ACTIONS(1439), - [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_COMMA] = ACTIONS(1437), - [anon_sym_COLON_COLON] = ACTIONS(1437), - [anon_sym_POUND] = ACTIONS(1437), - [anon_sym_as] = ACTIONS(1439), - [anon_sym_const] = ACTIONS(1439), - [anon_sym_default] = ACTIONS(1439), - [anon_sym_gen] = ACTIONS(1439), - [anon_sym_union] = ACTIONS(1439), - [anon_sym_ref] = ACTIONS(1439), - [anon_sym_else] = ACTIONS(1439), - [sym_mutable_specifier] = 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), + [sym_identifier] = ACTIONS(1456), + [anon_sym_LPAREN] = ACTIONS(1454), + [anon_sym_LBRACK] = ACTIONS(1454), + [anon_sym_RBRACE] = ACTIONS(1454), + [anon_sym_PLUS] = ACTIONS(1456), + [anon_sym_STAR] = ACTIONS(1456), + [anon_sym_QMARK] = ACTIONS(1454), + [anon_sym_u8] = ACTIONS(1456), + [anon_sym_i8] = ACTIONS(1456), + [anon_sym_u16] = ACTIONS(1456), + [anon_sym_i16] = ACTIONS(1456), + [anon_sym_u32] = ACTIONS(1456), + [anon_sym_i32] = ACTIONS(1456), + [anon_sym_u64] = ACTIONS(1456), + [anon_sym_i64] = ACTIONS(1456), + [anon_sym_u128] = ACTIONS(1456), + [anon_sym_i128] = ACTIONS(1456), + [anon_sym_isize] = ACTIONS(1456), + [anon_sym_usize] = ACTIONS(1456), + [anon_sym_f32] = ACTIONS(1456), + [anon_sym_f64] = ACTIONS(1456), + [anon_sym_bool] = ACTIONS(1456), + [anon_sym_str] = ACTIONS(1456), + [anon_sym_char] = ACTIONS(1456), + [anon_sym_DASH] = ACTIONS(1456), + [anon_sym_SLASH] = ACTIONS(1456), + [anon_sym_PERCENT] = ACTIONS(1456), + [anon_sym_CARET] = ACTIONS(1456), + [anon_sym_AMP] = ACTIONS(1456), + [anon_sym_PIPE] = ACTIONS(1456), + [anon_sym_AMP_AMP] = ACTIONS(1454), + [anon_sym_PIPE_PIPE] = ACTIONS(1454), + [anon_sym_LT_LT] = ACTIONS(1456), + [anon_sym_GT_GT] = ACTIONS(1456), + [anon_sym_PLUS_EQ] = ACTIONS(1454), + [anon_sym_DASH_EQ] = ACTIONS(1454), + [anon_sym_STAR_EQ] = ACTIONS(1454), + [anon_sym_SLASH_EQ] = ACTIONS(1454), + [anon_sym_PERCENT_EQ] = ACTIONS(1454), + [anon_sym_CARET_EQ] = ACTIONS(1454), + [anon_sym_AMP_EQ] = ACTIONS(1454), + [anon_sym_PIPE_EQ] = ACTIONS(1454), + [anon_sym_LT_LT_EQ] = ACTIONS(1454), + [anon_sym_GT_GT_EQ] = ACTIONS(1454), + [anon_sym_EQ] = ACTIONS(1456), + [anon_sym_EQ_EQ] = ACTIONS(1454), + [anon_sym_BANG_EQ] = ACTIONS(1454), + [anon_sym_GT] = ACTIONS(1456), + [anon_sym_LT] = ACTIONS(1456), + [anon_sym_GT_EQ] = ACTIONS(1454), + [anon_sym_LT_EQ] = ACTIONS(1454), + [anon_sym__] = ACTIONS(1456), + [anon_sym_DOT] = ACTIONS(1456), + [anon_sym_DOT_DOT] = ACTIONS(1456), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1454), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1454), + [anon_sym_COMMA] = ACTIONS(1454), + [anon_sym_COLON_COLON] = ACTIONS(1454), + [anon_sym_POUND] = ACTIONS(1454), + [anon_sym_as] = ACTIONS(1456), + [anon_sym_const] = ACTIONS(1456), + [anon_sym_default] = ACTIONS(1456), + [anon_sym_gen] = ACTIONS(1456), + [anon_sym_union] = ACTIONS(1456), + [anon_sym_ref] = ACTIONS(1456), + [anon_sym_else] = ACTIONS(1456), + [sym_mutable_specifier] = ACTIONS(1456), + [sym_integer_literal] = ACTIONS(1454), + [aux_sym_string_literal_token1] = ACTIONS(1454), + [sym_char_literal] = ACTIONS(1454), + [anon_sym_true] = ACTIONS(1456), + [anon_sym_false] = ACTIONS(1456), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1456), + [sym_super] = ACTIONS(1456), + [sym_crate] = ACTIONS(1456), + [sym_metavariable] = ACTIONS(1454), + [sym__raw_string_literal_start] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1454), }, [STATE(473)] = { - [sym_attribute_item] = STATE(1145), - [sym_inner_attribute_item] = STATE(1145), - [sym_bracketed_type] = STATE(3695), - [sym_generic_type] = STATE(3711), - [sym_generic_type_with_turbofish] = STATE(3416), - [sym_macro_invocation] = STATE(2883), - [sym_scoped_identifier] = STATE(2241), - [sym_scoped_type_identifier] = STATE(3110), - [sym_match_arm] = STATE(1146), - [sym_last_match_arm] = STATE(3528), - [sym_match_pattern] = STATE(3746), - [sym_const_block] = STATE(2883), - [sym__pattern] = STATE(2909), - [sym_generic_pattern] = STATE(2883), - [sym_tuple_pattern] = STATE(2883), - [sym_slice_pattern] = STATE(2883), - [sym_tuple_struct_pattern] = STATE(2883), - [sym_struct_pattern] = STATE(2883), - [sym_remaining_field_pattern] = STATE(2883), - [sym_mut_pattern] = STATE(2883), - [sym_range_pattern] = STATE(2883), - [sym_ref_pattern] = STATE(2883), - [sym_captured_pattern] = STATE(2883), - [sym_reference_pattern] = STATE(2883), - [sym_or_pattern] = STATE(2883), - [sym__literal_pattern] = STATE(2449), - [sym_negative_literal] = STATE(2408), - [sym_string_literal] = STATE(2408), - [sym_raw_string_literal] = STATE(2408), - [sym_boolean_literal] = STATE(2408), [sym_line_comment] = STATE(473), [sym_block_comment] = STATE(473), - [aux_sym_match_block_repeat1] = STATE(497), - [aux_sym_match_arm_repeat1] = STATE(684), - [sym_identifier] = ACTIONS(1671), - [anon_sym_LPAREN] = ACTIONS(1673), - [anon_sym_LBRACK] = ACTIONS(1675), - [anon_sym_u8] = ACTIONS(1679), - [anon_sym_i8] = ACTIONS(1679), - [anon_sym_u16] = ACTIONS(1679), - [anon_sym_i16] = ACTIONS(1679), - [anon_sym_u32] = ACTIONS(1679), - [anon_sym_i32] = ACTIONS(1679), - [anon_sym_u64] = ACTIONS(1679), - [anon_sym_i64] = ACTIONS(1679), - [anon_sym_u128] = ACTIONS(1679), - [anon_sym_i128] = ACTIONS(1679), - [anon_sym_isize] = ACTIONS(1679), - [anon_sym_usize] = ACTIONS(1679), - [anon_sym_f32] = ACTIONS(1679), - [anon_sym_f64] = ACTIONS(1679), - [anon_sym_bool] = ACTIONS(1679), - [anon_sym_str] = ACTIONS(1679), - [anon_sym_char] = ACTIONS(1679), - [anon_sym_DASH] = ACTIONS(1681), - [anon_sym_AMP] = ACTIONS(1683), - [anon_sym_PIPE] = ACTIONS(1685), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1687), - [anon_sym_DOT_DOT] = ACTIONS(1689), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1691), - [anon_sym_COLON_COLON] = ACTIONS(1693), - [anon_sym_POUND] = ACTIONS(1695), - [anon_sym_const] = ACTIONS(1697), - [anon_sym_default] = ACTIONS(1699), - [anon_sym_gen] = ACTIONS(1699), - [anon_sym_union] = ACTIONS(1699), - [anon_sym_ref] = ACTIONS(1701), - [sym_mutable_specifier] = ACTIONS(1703), - [sym_integer_literal] = ACTIONS(1705), - [aux_sym_string_literal_token1] = ACTIONS(1707), - [sym_char_literal] = ACTIONS(1705), - [anon_sym_true] = ACTIONS(1709), - [anon_sym_false] = ACTIONS(1709), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1711), - [sym_super] = ACTIONS(1711), - [sym_crate] = ACTIONS(1711), - [sym_metavariable] = ACTIONS(1713), - [sym__raw_string_literal_start] = ACTIONS(1715), - [sym_float_literal] = ACTIONS(1705), + [sym_identifier] = ACTIONS(1444), + [anon_sym_LPAREN] = ACTIONS(1442), + [anon_sym_LBRACK] = ACTIONS(1442), + [anon_sym_RBRACE] = ACTIONS(1442), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_STAR] = ACTIONS(1444), + [anon_sym_QMARK] = ACTIONS(1442), + [anon_sym_u8] = ACTIONS(1444), + [anon_sym_i8] = ACTIONS(1444), + [anon_sym_u16] = ACTIONS(1444), + [anon_sym_i16] = ACTIONS(1444), + [anon_sym_u32] = ACTIONS(1444), + [anon_sym_i32] = ACTIONS(1444), + [anon_sym_u64] = ACTIONS(1444), + [anon_sym_i64] = ACTIONS(1444), + [anon_sym_u128] = ACTIONS(1444), + [anon_sym_i128] = ACTIONS(1444), + [anon_sym_isize] = ACTIONS(1444), + [anon_sym_usize] = ACTIONS(1444), + [anon_sym_f32] = ACTIONS(1444), + [anon_sym_f64] = ACTIONS(1444), + [anon_sym_bool] = ACTIONS(1444), + [anon_sym_str] = ACTIONS(1444), + [anon_sym_char] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_SLASH] = ACTIONS(1444), + [anon_sym_PERCENT] = ACTIONS(1444), + [anon_sym_CARET] = ACTIONS(1444), + [anon_sym_AMP] = ACTIONS(1444), + [anon_sym_PIPE] = ACTIONS(1444), + [anon_sym_AMP_AMP] = ACTIONS(1442), + [anon_sym_PIPE_PIPE] = ACTIONS(1442), + [anon_sym_LT_LT] = ACTIONS(1444), + [anon_sym_GT_GT] = ACTIONS(1444), + [anon_sym_PLUS_EQ] = ACTIONS(1442), + [anon_sym_DASH_EQ] = ACTIONS(1442), + [anon_sym_STAR_EQ] = ACTIONS(1442), + [anon_sym_SLASH_EQ] = ACTIONS(1442), + [anon_sym_PERCENT_EQ] = ACTIONS(1442), + [anon_sym_CARET_EQ] = ACTIONS(1442), + [anon_sym_AMP_EQ] = ACTIONS(1442), + [anon_sym_PIPE_EQ] = ACTIONS(1442), + [anon_sym_LT_LT_EQ] = ACTIONS(1442), + [anon_sym_GT_GT_EQ] = ACTIONS(1442), + [anon_sym_EQ] = ACTIONS(1444), + [anon_sym_EQ_EQ] = ACTIONS(1442), + [anon_sym_BANG_EQ] = ACTIONS(1442), + [anon_sym_GT] = ACTIONS(1444), + [anon_sym_LT] = ACTIONS(1444), + [anon_sym_GT_EQ] = ACTIONS(1442), + [anon_sym_LT_EQ] = ACTIONS(1442), + [anon_sym__] = ACTIONS(1444), + [anon_sym_DOT] = ACTIONS(1444), + [anon_sym_DOT_DOT] = ACTIONS(1444), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1442), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1442), + [anon_sym_COMMA] = ACTIONS(1442), + [anon_sym_COLON_COLON] = ACTIONS(1442), + [anon_sym_POUND] = ACTIONS(1442), + [anon_sym_as] = ACTIONS(1444), + [anon_sym_const] = ACTIONS(1444), + [anon_sym_default] = ACTIONS(1444), + [anon_sym_gen] = ACTIONS(1444), + [anon_sym_union] = ACTIONS(1444), + [anon_sym_ref] = ACTIONS(1444), + [anon_sym_else] = ACTIONS(1444), + [sym_mutable_specifier] = ACTIONS(1444), + [sym_integer_literal] = ACTIONS(1442), + [aux_sym_string_literal_token1] = ACTIONS(1442), + [sym_char_literal] = ACTIONS(1442), + [anon_sym_true] = ACTIONS(1444), + [anon_sym_false] = ACTIONS(1444), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1444), + [sym_super] = ACTIONS(1444), + [sym_crate] = ACTIONS(1444), + [sym_metavariable] = ACTIONS(1442), + [sym__raw_string_literal_start] = ACTIONS(1442), + [sym_float_literal] = ACTIONS(1442), }, [STATE(474)] = { + [sym_attribute_item] = STATE(1423), + [sym_inner_attribute_item] = STATE(1423), + [sym_bracketed_type] = STATE(3730), + [sym_generic_type] = STATE(3622), + [sym_generic_type_with_turbofish] = STATE(3423), + [sym_macro_invocation] = STATE(3092), + [sym_scoped_identifier] = STATE(2268), + [sym_scoped_type_identifier] = STATE(3118), + [sym_match_arm] = STATE(1424), + [sym_last_match_arm] = STATE(3761), + [sym_match_pattern] = STATE(3658), + [sym_const_block] = STATE(3092), + [sym__pattern] = STATE(3027), + [sym_generic_pattern] = STATE(3092), + [sym_tuple_pattern] = STATE(3092), + [sym_slice_pattern] = STATE(3092), + [sym_tuple_struct_pattern] = STATE(3092), + [sym_struct_pattern] = STATE(3092), + [sym_remaining_field_pattern] = STATE(3092), + [sym_mut_pattern] = STATE(3092), + [sym_range_pattern] = STATE(3092), + [sym_ref_pattern] = STATE(3092), + [sym_captured_pattern] = STATE(3092), + [sym_reference_pattern] = STATE(3092), + [sym_or_pattern] = STATE(3092), + [sym__literal_pattern] = STATE(2439), + [sym_negative_literal] = STATE(2421), + [sym_string_literal] = STATE(2421), + [sym_raw_string_literal] = STATE(2421), + [sym_boolean_literal] = STATE(2421), [sym_line_comment] = STATE(474), [sym_block_comment] = STATE(474), - [sym_identifier] = ACTIONS(1447), - [anon_sym_LPAREN] = ACTIONS(1445), - [anon_sym_LBRACK] = ACTIONS(1445), - [anon_sym_RBRACE] = ACTIONS(1445), - [anon_sym_PLUS] = ACTIONS(1447), - [anon_sym_STAR] = ACTIONS(1447), - [anon_sym_QMARK] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1447), - [anon_sym_i8] = ACTIONS(1447), - [anon_sym_u16] = ACTIONS(1447), - [anon_sym_i16] = ACTIONS(1447), - [anon_sym_u32] = ACTIONS(1447), - [anon_sym_i32] = ACTIONS(1447), - [anon_sym_u64] = ACTIONS(1447), - [anon_sym_i64] = ACTIONS(1447), - [anon_sym_u128] = ACTIONS(1447), - [anon_sym_i128] = ACTIONS(1447), - [anon_sym_isize] = ACTIONS(1447), - [anon_sym_usize] = ACTIONS(1447), - [anon_sym_f32] = ACTIONS(1447), - [anon_sym_f64] = ACTIONS(1447), - [anon_sym_bool] = ACTIONS(1447), - [anon_sym_str] = ACTIONS(1447), - [anon_sym_char] = ACTIONS(1447), - [anon_sym_DASH] = ACTIONS(1447), - [anon_sym_SLASH] = ACTIONS(1447), - [anon_sym_PERCENT] = ACTIONS(1447), - [anon_sym_CARET] = ACTIONS(1447), - [anon_sym_AMP] = ACTIONS(1447), - [anon_sym_PIPE] = ACTIONS(1447), - [anon_sym_AMP_AMP] = ACTIONS(1445), - [anon_sym_PIPE_PIPE] = ACTIONS(1445), - [anon_sym_LT_LT] = ACTIONS(1447), - [anon_sym_GT_GT] = ACTIONS(1447), - [anon_sym_PLUS_EQ] = ACTIONS(1445), - [anon_sym_DASH_EQ] = ACTIONS(1445), - [anon_sym_STAR_EQ] = ACTIONS(1445), - [anon_sym_SLASH_EQ] = ACTIONS(1445), - [anon_sym_PERCENT_EQ] = ACTIONS(1445), - [anon_sym_CARET_EQ] = ACTIONS(1445), - [anon_sym_AMP_EQ] = ACTIONS(1445), - [anon_sym_PIPE_EQ] = ACTIONS(1445), - [anon_sym_LT_LT_EQ] = ACTIONS(1445), - [anon_sym_GT_GT_EQ] = ACTIONS(1445), - [anon_sym_EQ] = ACTIONS(1447), - [anon_sym_EQ_EQ] = ACTIONS(1445), - [anon_sym_BANG_EQ] = ACTIONS(1445), - [anon_sym_GT] = ACTIONS(1447), - [anon_sym_LT] = ACTIONS(1447), - [anon_sym_GT_EQ] = ACTIONS(1445), - [anon_sym_LT_EQ] = ACTIONS(1445), - [anon_sym__] = ACTIONS(1447), - [anon_sym_DOT] = ACTIONS(1447), - [anon_sym_DOT_DOT] = ACTIONS(1447), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1445), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1445), - [anon_sym_COMMA] = ACTIONS(1445), - [anon_sym_COLON_COLON] = ACTIONS(1445), - [anon_sym_POUND] = ACTIONS(1445), - [anon_sym_as] = ACTIONS(1447), - [anon_sym_const] = ACTIONS(1447), - [anon_sym_default] = ACTIONS(1447), - [anon_sym_gen] = ACTIONS(1447), - [anon_sym_union] = ACTIONS(1447), - [anon_sym_ref] = ACTIONS(1447), - [anon_sym_else] = ACTIONS(1447), - [sym_mutable_specifier] = ACTIONS(1447), - [sym_integer_literal] = ACTIONS(1445), - [aux_sym_string_literal_token1] = ACTIONS(1445), - [sym_char_literal] = ACTIONS(1445), - [anon_sym_true] = ACTIONS(1447), - [anon_sym_false] = ACTIONS(1447), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1447), - [sym_super] = ACTIONS(1447), - [sym_crate] = ACTIONS(1447), - [sym_metavariable] = ACTIONS(1445), - [sym__raw_string_literal_start] = ACTIONS(1445), - [sym_float_literal] = ACTIONS(1445), + [aux_sym_match_block_repeat1] = STATE(499), + [aux_sym_match_arm_repeat1] = STATE(793), + [sym_identifier] = ACTIONS(1678), + [anon_sym_LPAREN] = ACTIONS(1680), + [anon_sym_LBRACK] = ACTIONS(1682), + [anon_sym_u8] = ACTIONS(1686), + [anon_sym_i8] = ACTIONS(1686), + [anon_sym_u16] = ACTIONS(1686), + [anon_sym_i16] = ACTIONS(1686), + [anon_sym_u32] = ACTIONS(1686), + [anon_sym_i32] = ACTIONS(1686), + [anon_sym_u64] = ACTIONS(1686), + [anon_sym_i64] = ACTIONS(1686), + [anon_sym_u128] = ACTIONS(1686), + [anon_sym_i128] = ACTIONS(1686), + [anon_sym_isize] = ACTIONS(1686), + [anon_sym_usize] = ACTIONS(1686), + [anon_sym_f32] = ACTIONS(1686), + [anon_sym_f64] = ACTIONS(1686), + [anon_sym_bool] = ACTIONS(1686), + [anon_sym_str] = ACTIONS(1686), + [anon_sym_char] = ACTIONS(1686), + [anon_sym_DASH] = ACTIONS(1688), + [anon_sym_AMP] = ACTIONS(1690), + [anon_sym_PIPE] = ACTIONS(1692), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1694), + [anon_sym_DOT_DOT] = ACTIONS(1696), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1698), + [anon_sym_COLON_COLON] = ACTIONS(1700), + [anon_sym_POUND] = ACTIONS(1702), + [anon_sym_const] = ACTIONS(1704), + [anon_sym_default] = ACTIONS(1706), + [anon_sym_gen] = ACTIONS(1706), + [anon_sym_union] = ACTIONS(1706), + [anon_sym_ref] = ACTIONS(1708), + [sym_mutable_specifier] = ACTIONS(1710), + [sym_integer_literal] = ACTIONS(1712), + [aux_sym_string_literal_token1] = ACTIONS(1714), + [sym_char_literal] = ACTIONS(1712), + [anon_sym_true] = ACTIONS(1716), + [anon_sym_false] = ACTIONS(1716), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1718), + [sym_super] = ACTIONS(1718), + [sym_crate] = ACTIONS(1718), + [sym_metavariable] = ACTIONS(1720), + [sym__raw_string_literal_start] = ACTIONS(1722), + [sym_float_literal] = ACTIONS(1712), }, [STATE(475)] = { - [sym_bracketed_type] = STATE(3674), - [sym_generic_type] = STATE(3711), - [sym_generic_type_with_turbofish] = STATE(3231), - [sym_macro_invocation] = STATE(2221), - [sym_scoped_identifier] = STATE(2035), - [sym_scoped_type_identifier] = STATE(3055), - [sym_const_block] = STATE(2221), - [sym_closure_expression] = STATE(3145), - [sym_closure_parameters] = STATE(217), - [sym__pattern] = STATE(2655), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), [sym_line_comment] = STATE(475), [sym_block_comment] = STATE(475), - [sym_identifier] = ACTIONS(1725), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_RPAREN] = ACTIONS(1729), - [anon_sym_LBRACK] = ACTIONS(1731), - [anon_sym_u8] = ACTIONS(1733), - [anon_sym_i8] = ACTIONS(1733), - [anon_sym_u16] = ACTIONS(1733), - [anon_sym_i16] = ACTIONS(1733), - [anon_sym_u32] = ACTIONS(1733), - [anon_sym_i32] = ACTIONS(1733), - [anon_sym_u64] = ACTIONS(1733), - [anon_sym_i64] = ACTIONS(1733), - [anon_sym_u128] = ACTIONS(1733), - [anon_sym_i128] = ACTIONS(1733), - [anon_sym_isize] = ACTIONS(1733), - [anon_sym_usize] = ACTIONS(1733), - [anon_sym_f32] = ACTIONS(1733), - [anon_sym_f64] = ACTIONS(1733), - [anon_sym_bool] = ACTIONS(1733), - [anon_sym_str] = ACTIONS(1733), - [anon_sym_char] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_AMP] = ACTIONS(1735), - [anon_sym_PIPE] = ACTIONS(1415), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1417), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COMMA] = ACTIONS(1737), - [anon_sym_COLON_COLON] = ACTIONS(1739), - [anon_sym_async] = ACTIONS(1741), - [anon_sym_const] = ACTIONS(1743), - [anon_sym_default] = ACTIONS(1745), - [anon_sym_gen] = ACTIONS(1745), - [anon_sym_static] = ACTIONS(1423), - [anon_sym_union] = ACTIONS(1745), - [anon_sym_ref] = ACTIONS(1159), - [sym_mutable_specifier] = ACTIONS(1425), - [anon_sym_move] = ACTIONS(1427), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1747), - [sym_super] = ACTIONS(1747), - [sym_crate] = ACTIONS(1747), - [sym_metavariable] = ACTIONS(1749), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), + [sym_identifier] = ACTIONS(1452), + [anon_sym_LPAREN] = ACTIONS(1450), + [anon_sym_LBRACK] = ACTIONS(1450), + [anon_sym_RBRACE] = ACTIONS(1450), + [anon_sym_PLUS] = ACTIONS(1452), + [anon_sym_STAR] = ACTIONS(1452), + [anon_sym_QMARK] = ACTIONS(1450), + [anon_sym_u8] = ACTIONS(1452), + [anon_sym_i8] = ACTIONS(1452), + [anon_sym_u16] = ACTIONS(1452), + [anon_sym_i16] = ACTIONS(1452), + [anon_sym_u32] = ACTIONS(1452), + [anon_sym_i32] = ACTIONS(1452), + [anon_sym_u64] = ACTIONS(1452), + [anon_sym_i64] = ACTIONS(1452), + [anon_sym_u128] = ACTIONS(1452), + [anon_sym_i128] = ACTIONS(1452), + [anon_sym_isize] = ACTIONS(1452), + [anon_sym_usize] = ACTIONS(1452), + [anon_sym_f32] = ACTIONS(1452), + [anon_sym_f64] = ACTIONS(1452), + [anon_sym_bool] = ACTIONS(1452), + [anon_sym_str] = ACTIONS(1452), + [anon_sym_char] = ACTIONS(1452), + [anon_sym_DASH] = ACTIONS(1452), + [anon_sym_SLASH] = ACTIONS(1452), + [anon_sym_PERCENT] = ACTIONS(1452), + [anon_sym_CARET] = ACTIONS(1452), + [anon_sym_AMP] = ACTIONS(1452), + [anon_sym_PIPE] = ACTIONS(1452), + [anon_sym_AMP_AMP] = ACTIONS(1450), + [anon_sym_PIPE_PIPE] = ACTIONS(1450), + [anon_sym_LT_LT] = ACTIONS(1452), + [anon_sym_GT_GT] = ACTIONS(1452), + [anon_sym_PLUS_EQ] = ACTIONS(1450), + [anon_sym_DASH_EQ] = ACTIONS(1450), + [anon_sym_STAR_EQ] = ACTIONS(1450), + [anon_sym_SLASH_EQ] = ACTIONS(1450), + [anon_sym_PERCENT_EQ] = ACTIONS(1450), + [anon_sym_CARET_EQ] = ACTIONS(1450), + [anon_sym_AMP_EQ] = ACTIONS(1450), + [anon_sym_PIPE_EQ] = ACTIONS(1450), + [anon_sym_LT_LT_EQ] = ACTIONS(1450), + [anon_sym_GT_GT_EQ] = ACTIONS(1450), + [anon_sym_EQ] = ACTIONS(1452), + [anon_sym_EQ_EQ] = ACTIONS(1450), + [anon_sym_BANG_EQ] = ACTIONS(1450), + [anon_sym_GT] = ACTIONS(1452), + [anon_sym_LT] = ACTIONS(1452), + [anon_sym_GT_EQ] = ACTIONS(1450), + [anon_sym_LT_EQ] = ACTIONS(1450), + [anon_sym__] = ACTIONS(1452), + [anon_sym_DOT] = ACTIONS(1452), + [anon_sym_DOT_DOT] = ACTIONS(1452), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1450), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1450), + [anon_sym_COMMA] = ACTIONS(1450), + [anon_sym_COLON_COLON] = ACTIONS(1450), + [anon_sym_POUND] = ACTIONS(1450), + [anon_sym_as] = ACTIONS(1452), + [anon_sym_const] = ACTIONS(1452), + [anon_sym_default] = ACTIONS(1452), + [anon_sym_gen] = ACTIONS(1452), + [anon_sym_union] = ACTIONS(1452), + [anon_sym_ref] = ACTIONS(1452), + [anon_sym_else] = ACTIONS(1452), + [sym_mutable_specifier] = ACTIONS(1452), + [sym_integer_literal] = ACTIONS(1450), + [aux_sym_string_literal_token1] = ACTIONS(1450), + [sym_char_literal] = ACTIONS(1450), + [anon_sym_true] = ACTIONS(1452), + [anon_sym_false] = ACTIONS(1452), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1452), + [sym_super] = ACTIONS(1452), + [sym_crate] = ACTIONS(1452), + [sym_metavariable] = ACTIONS(1450), + [sym__raw_string_literal_start] = ACTIONS(1450), + [sym_float_literal] = ACTIONS(1450), }, [STATE(476)] = { - [sym_bracketed_type] = STATE(3674), - [sym_generic_type] = STATE(3711), - [sym_generic_type_with_turbofish] = STATE(3231), - [sym_macro_invocation] = STATE(2221), - [sym_scoped_identifier] = STATE(2035), - [sym_scoped_type_identifier] = STATE(3055), - [sym_const_block] = STATE(2221), - [sym_closure_expression] = STATE(2901), - [sym_closure_parameters] = STATE(217), - [sym__pattern] = STATE(2824), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), + [sym_attribute_item] = STATE(1423), + [sym_inner_attribute_item] = STATE(1423), + [sym_bracketed_type] = STATE(3730), + [sym_generic_type] = STATE(3622), + [sym_generic_type_with_turbofish] = STATE(3423), + [sym_macro_invocation] = STATE(3092), + [sym_scoped_identifier] = STATE(2268), + [sym_scoped_type_identifier] = STATE(3118), + [sym_match_arm] = STATE(1424), + [sym_last_match_arm] = STATE(3603), + [sym_match_pattern] = STATE(3658), + [sym_const_block] = STATE(3092), + [sym__pattern] = STATE(3027), + [sym_generic_pattern] = STATE(3092), + [sym_tuple_pattern] = STATE(3092), + [sym_slice_pattern] = STATE(3092), + [sym_tuple_struct_pattern] = STATE(3092), + [sym_struct_pattern] = STATE(3092), + [sym_remaining_field_pattern] = STATE(3092), + [sym_mut_pattern] = STATE(3092), + [sym_range_pattern] = STATE(3092), + [sym_ref_pattern] = STATE(3092), + [sym_captured_pattern] = STATE(3092), + [sym_reference_pattern] = STATE(3092), + [sym_or_pattern] = STATE(3092), + [sym__literal_pattern] = STATE(2439), + [sym_negative_literal] = STATE(2421), + [sym_string_literal] = STATE(2421), + [sym_raw_string_literal] = STATE(2421), + [sym_boolean_literal] = STATE(2421), [sym_line_comment] = STATE(476), [sym_block_comment] = STATE(476), - [sym_identifier] = ACTIONS(1725), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_RPAREN] = ACTIONS(1751), - [anon_sym_LBRACK] = ACTIONS(1731), - [anon_sym_u8] = ACTIONS(1733), - [anon_sym_i8] = ACTIONS(1733), - [anon_sym_u16] = ACTIONS(1733), - [anon_sym_i16] = ACTIONS(1733), - [anon_sym_u32] = ACTIONS(1733), - [anon_sym_i32] = ACTIONS(1733), - [anon_sym_u64] = ACTIONS(1733), - [anon_sym_i64] = ACTIONS(1733), - [anon_sym_u128] = ACTIONS(1733), - [anon_sym_i128] = ACTIONS(1733), - [anon_sym_isize] = ACTIONS(1733), - [anon_sym_usize] = ACTIONS(1733), - [anon_sym_f32] = ACTIONS(1733), - [anon_sym_f64] = ACTIONS(1733), - [anon_sym_bool] = ACTIONS(1733), - [anon_sym_str] = ACTIONS(1733), - [anon_sym_char] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_AMP] = ACTIONS(1735), - [anon_sym_PIPE] = ACTIONS(1415), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1417), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COMMA] = ACTIONS(1419), - [anon_sym_COLON_COLON] = ACTIONS(1739), - [anon_sym_async] = ACTIONS(1741), - [anon_sym_const] = ACTIONS(1743), - [anon_sym_default] = ACTIONS(1745), - [anon_sym_gen] = ACTIONS(1745), - [anon_sym_static] = ACTIONS(1423), - [anon_sym_union] = ACTIONS(1745), - [anon_sym_ref] = ACTIONS(1159), - [sym_mutable_specifier] = ACTIONS(1425), - [anon_sym_move] = ACTIONS(1427), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1747), - [sym_super] = ACTIONS(1747), - [sym_crate] = ACTIONS(1747), - [sym_metavariable] = ACTIONS(1749), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), + [aux_sym_match_block_repeat1] = STATE(499), + [aux_sym_match_arm_repeat1] = STATE(793), + [sym_identifier] = ACTIONS(1678), + [anon_sym_LPAREN] = ACTIONS(1680), + [anon_sym_LBRACK] = ACTIONS(1682), + [anon_sym_u8] = ACTIONS(1686), + [anon_sym_i8] = ACTIONS(1686), + [anon_sym_u16] = ACTIONS(1686), + [anon_sym_i16] = ACTIONS(1686), + [anon_sym_u32] = ACTIONS(1686), + [anon_sym_i32] = ACTIONS(1686), + [anon_sym_u64] = ACTIONS(1686), + [anon_sym_i64] = ACTIONS(1686), + [anon_sym_u128] = ACTIONS(1686), + [anon_sym_i128] = ACTIONS(1686), + [anon_sym_isize] = ACTIONS(1686), + [anon_sym_usize] = ACTIONS(1686), + [anon_sym_f32] = ACTIONS(1686), + [anon_sym_f64] = ACTIONS(1686), + [anon_sym_bool] = ACTIONS(1686), + [anon_sym_str] = ACTIONS(1686), + [anon_sym_char] = ACTIONS(1686), + [anon_sym_DASH] = ACTIONS(1688), + [anon_sym_AMP] = ACTIONS(1690), + [anon_sym_PIPE] = ACTIONS(1692), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1694), + [anon_sym_DOT_DOT] = ACTIONS(1696), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1698), + [anon_sym_COLON_COLON] = ACTIONS(1700), + [anon_sym_POUND] = ACTIONS(1702), + [anon_sym_const] = ACTIONS(1704), + [anon_sym_default] = ACTIONS(1706), + [anon_sym_gen] = ACTIONS(1706), + [anon_sym_union] = ACTIONS(1706), + [anon_sym_ref] = ACTIONS(1708), + [sym_mutable_specifier] = ACTIONS(1710), + [sym_integer_literal] = ACTIONS(1712), + [aux_sym_string_literal_token1] = ACTIONS(1714), + [sym_char_literal] = ACTIONS(1712), + [anon_sym_true] = ACTIONS(1716), + [anon_sym_false] = ACTIONS(1716), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1718), + [sym_super] = ACTIONS(1718), + [sym_crate] = ACTIONS(1718), + [sym_metavariable] = ACTIONS(1720), + [sym__raw_string_literal_start] = ACTIONS(1722), + [sym_float_literal] = ACTIONS(1712), }, [STATE(477)] = { [sym_line_comment] = STATE(477), [sym_block_comment] = STATE(477), - [sym_identifier] = ACTIONS(1473), - [anon_sym_LPAREN] = ACTIONS(1471), - [anon_sym_LBRACK] = ACTIONS(1471), - [anon_sym_RBRACE] = ACTIONS(1471), - [anon_sym_PLUS] = ACTIONS(1473), - [anon_sym_STAR] = ACTIONS(1473), - [anon_sym_QMARK] = ACTIONS(1471), - [anon_sym_u8] = ACTIONS(1473), - [anon_sym_i8] = ACTIONS(1473), - [anon_sym_u16] = ACTIONS(1473), - [anon_sym_i16] = ACTIONS(1473), - [anon_sym_u32] = ACTIONS(1473), - [anon_sym_i32] = ACTIONS(1473), - [anon_sym_u64] = ACTIONS(1473), - [anon_sym_i64] = ACTIONS(1473), - [anon_sym_u128] = ACTIONS(1473), - [anon_sym_i128] = ACTIONS(1473), - [anon_sym_isize] = ACTIONS(1473), - [anon_sym_usize] = ACTIONS(1473), - [anon_sym_f32] = ACTIONS(1473), - [anon_sym_f64] = ACTIONS(1473), - [anon_sym_bool] = ACTIONS(1473), - [anon_sym_str] = ACTIONS(1473), - [anon_sym_char] = ACTIONS(1473), - [anon_sym_DASH] = ACTIONS(1473), - [anon_sym_SLASH] = ACTIONS(1473), - [anon_sym_PERCENT] = ACTIONS(1473), - [anon_sym_CARET] = ACTIONS(1473), - [anon_sym_AMP] = ACTIONS(1473), - [anon_sym_PIPE] = ACTIONS(1473), - [anon_sym_AMP_AMP] = ACTIONS(1471), - [anon_sym_PIPE_PIPE] = ACTIONS(1471), - [anon_sym_LT_LT] = ACTIONS(1473), - [anon_sym_GT_GT] = ACTIONS(1473), - [anon_sym_PLUS_EQ] = ACTIONS(1471), - [anon_sym_DASH_EQ] = ACTIONS(1471), - [anon_sym_STAR_EQ] = ACTIONS(1471), - [anon_sym_SLASH_EQ] = ACTIONS(1471), - [anon_sym_PERCENT_EQ] = ACTIONS(1471), - [anon_sym_CARET_EQ] = ACTIONS(1471), - [anon_sym_AMP_EQ] = ACTIONS(1471), - [anon_sym_PIPE_EQ] = ACTIONS(1471), - [anon_sym_LT_LT_EQ] = ACTIONS(1471), - [anon_sym_GT_GT_EQ] = ACTIONS(1471), - [anon_sym_EQ] = ACTIONS(1473), - [anon_sym_EQ_EQ] = ACTIONS(1471), - [anon_sym_BANG_EQ] = ACTIONS(1471), - [anon_sym_GT] = ACTIONS(1473), - [anon_sym_LT] = ACTIONS(1473), - [anon_sym_GT_EQ] = ACTIONS(1471), - [anon_sym_LT_EQ] = ACTIONS(1471), - [anon_sym__] = ACTIONS(1473), - [anon_sym_DOT] = ACTIONS(1473), - [anon_sym_DOT_DOT] = ACTIONS(1473), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1471), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1471), - [anon_sym_COMMA] = ACTIONS(1471), - [anon_sym_COLON_COLON] = ACTIONS(1471), - [anon_sym_POUND] = ACTIONS(1471), - [anon_sym_as] = ACTIONS(1473), - [anon_sym_const] = ACTIONS(1473), - [anon_sym_default] = ACTIONS(1473), - [anon_sym_gen] = ACTIONS(1473), - [anon_sym_union] = ACTIONS(1473), - [anon_sym_ref] = ACTIONS(1473), - [sym_mutable_specifier] = 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), + [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(478)] = { + [sym_bracketed_type] = STATE(3756), + [sym_generic_type] = STATE(3622), + [sym_generic_type_with_turbofish] = STATE(3514), + [sym_macro_invocation] = STATE(2197), + [sym_scoped_identifier] = STATE(2056), + [sym_scoped_type_identifier] = STATE(2926), + [sym_const_block] = STATE(2197), + [sym_closure_expression] = STATE(3218), + [sym_closure_parameters] = STATE(221), + [sym__pattern] = STATE(2669), + [sym_generic_pattern] = STATE(2197), + [sym_tuple_pattern] = STATE(2197), + [sym_slice_pattern] = STATE(2197), + [sym_tuple_struct_pattern] = STATE(2197), + [sym_struct_pattern] = STATE(2197), + [sym_remaining_field_pattern] = STATE(2197), + [sym_mut_pattern] = STATE(2197), + [sym_range_pattern] = STATE(2197), + [sym_ref_pattern] = STATE(2197), + [sym_captured_pattern] = STATE(2197), + [sym_reference_pattern] = STATE(2197), + [sym_or_pattern] = STATE(2197), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2129), + [sym_string_literal] = STATE(2129), + [sym_raw_string_literal] = STATE(2129), + [sym_boolean_literal] = STATE(2129), [sym_line_comment] = STATE(478), [sym_block_comment] = STATE(478), - [sym_identifier] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1543), - [anon_sym_LBRACK] = ACTIONS(1543), - [anon_sym_RBRACE] = ACTIONS(1543), - [anon_sym_PLUS] = ACTIONS(1545), - [anon_sym_STAR] = ACTIONS(1545), - [anon_sym_QMARK] = ACTIONS(1543), - [anon_sym_u8] = ACTIONS(1545), - [anon_sym_i8] = ACTIONS(1545), - [anon_sym_u16] = ACTIONS(1545), - [anon_sym_i16] = ACTIONS(1545), - [anon_sym_u32] = ACTIONS(1545), - [anon_sym_i32] = ACTIONS(1545), - [anon_sym_u64] = ACTIONS(1545), - [anon_sym_i64] = ACTIONS(1545), - [anon_sym_u128] = ACTIONS(1545), - [anon_sym_i128] = ACTIONS(1545), - [anon_sym_isize] = ACTIONS(1545), - [anon_sym_usize] = ACTIONS(1545), - [anon_sym_f32] = ACTIONS(1545), - [anon_sym_f64] = ACTIONS(1545), - [anon_sym_bool] = ACTIONS(1545), - [anon_sym_str] = ACTIONS(1545), - [anon_sym_char] = ACTIONS(1545), - [anon_sym_DASH] = ACTIONS(1545), - [anon_sym_SLASH] = ACTIONS(1545), - [anon_sym_PERCENT] = ACTIONS(1545), - [anon_sym_CARET] = ACTIONS(1545), - [anon_sym_AMP] = ACTIONS(1545), - [anon_sym_PIPE] = ACTIONS(1545), - [anon_sym_AMP_AMP] = ACTIONS(1543), - [anon_sym_PIPE_PIPE] = ACTIONS(1543), - [anon_sym_LT_LT] = ACTIONS(1545), - [anon_sym_GT_GT] = ACTIONS(1545), - [anon_sym_PLUS_EQ] = ACTIONS(1543), - [anon_sym_DASH_EQ] = ACTIONS(1543), - [anon_sym_STAR_EQ] = ACTIONS(1543), - [anon_sym_SLASH_EQ] = ACTIONS(1543), - [anon_sym_PERCENT_EQ] = ACTIONS(1543), - [anon_sym_CARET_EQ] = ACTIONS(1543), - [anon_sym_AMP_EQ] = ACTIONS(1543), - [anon_sym_PIPE_EQ] = ACTIONS(1543), - [anon_sym_LT_LT_EQ] = ACTIONS(1543), - [anon_sym_GT_GT_EQ] = ACTIONS(1543), - [anon_sym_EQ] = ACTIONS(1545), - [anon_sym_EQ_EQ] = ACTIONS(1543), - [anon_sym_BANG_EQ] = ACTIONS(1543), - [anon_sym_GT] = ACTIONS(1545), - [anon_sym_LT] = ACTIONS(1545), - [anon_sym_GT_EQ] = ACTIONS(1543), - [anon_sym_LT_EQ] = ACTIONS(1543), - [anon_sym__] = ACTIONS(1545), - [anon_sym_DOT] = ACTIONS(1545), - [anon_sym_DOT_DOT] = ACTIONS(1545), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1543), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1543), - [anon_sym_COMMA] = ACTIONS(1543), - [anon_sym_COLON_COLON] = ACTIONS(1543), - [anon_sym_POUND] = ACTIONS(1543), - [anon_sym_as] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(1545), - [anon_sym_default] = ACTIONS(1545), - [anon_sym_gen] = ACTIONS(1545), - [anon_sym_union] = ACTIONS(1545), - [anon_sym_ref] = ACTIONS(1545), - [sym_mutable_specifier] = ACTIONS(1545), - [sym_integer_literal] = ACTIONS(1543), - [aux_sym_string_literal_token1] = ACTIONS(1543), - [sym_char_literal] = ACTIONS(1543), - [anon_sym_true] = ACTIONS(1545), - [anon_sym_false] = ACTIONS(1545), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1545), - [sym_super] = ACTIONS(1545), - [sym_crate] = ACTIONS(1545), - [sym_metavariable] = ACTIONS(1543), - [sym__raw_string_literal_start] = ACTIONS(1543), - [sym_float_literal] = ACTIONS(1543), + [sym_identifier] = ACTIONS(1730), + [anon_sym_LPAREN] = ACTIONS(1732), + [anon_sym_RPAREN] = ACTIONS(1734), + [anon_sym_LBRACK] = ACTIONS(1736), + [anon_sym_u8] = ACTIONS(1738), + [anon_sym_i8] = ACTIONS(1738), + [anon_sym_u16] = ACTIONS(1738), + [anon_sym_i16] = ACTIONS(1738), + [anon_sym_u32] = ACTIONS(1738), + [anon_sym_i32] = ACTIONS(1738), + [anon_sym_u64] = ACTIONS(1738), + [anon_sym_i64] = ACTIONS(1738), + [anon_sym_u128] = ACTIONS(1738), + [anon_sym_i128] = ACTIONS(1738), + [anon_sym_isize] = ACTIONS(1738), + [anon_sym_usize] = ACTIONS(1738), + [anon_sym_f32] = ACTIONS(1738), + [anon_sym_f64] = ACTIONS(1738), + [anon_sym_bool] = ACTIONS(1738), + [anon_sym_str] = ACTIONS(1738), + [anon_sym_char] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1064), + [anon_sym_AMP] = ACTIONS(1740), + [anon_sym_PIPE] = ACTIONS(1390), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1392), + [anon_sym_DOT_DOT] = ACTIONS(1074), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1078), + [anon_sym_COMMA] = ACTIONS(1742), + [anon_sym_COLON_COLON] = ACTIONS(1744), + [anon_sym_async] = ACTIONS(1746), + [anon_sym_const] = ACTIONS(1748), + [anon_sym_default] = ACTIONS(1750), + [anon_sym_gen] = ACTIONS(1750), + [anon_sym_static] = ACTIONS(1398), + [anon_sym_union] = ACTIONS(1750), + [anon_sym_ref] = ACTIONS(1106), + [sym_mutable_specifier] = ACTIONS(1400), + [anon_sym_move] = ACTIONS(1402), + [sym_integer_literal] = ACTIONS(1112), + [aux_sym_string_literal_token1] = ACTIONS(1114), + [sym_char_literal] = ACTIONS(1112), + [anon_sym_true] = ACTIONS(1116), + [anon_sym_false] = ACTIONS(1116), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1752), + [sym_super] = ACTIONS(1752), + [sym_crate] = ACTIONS(1752), + [sym_metavariable] = ACTIONS(1754), + [sym__raw_string_literal_start] = ACTIONS(1124), + [sym_float_literal] = ACTIONS(1112), }, [STATE(479)] = { [sym_line_comment] = STATE(479), [sym_block_comment] = STATE(479), - [sym_identifier] = ACTIONS(1753), - [anon_sym_LPAREN] = ACTIONS(1755), - [anon_sym_LBRACK] = ACTIONS(1755), - [anon_sym_RBRACE] = ACTIONS(1457), - [anon_sym_PLUS] = ACTIONS(1459), - [anon_sym_STAR] = ACTIONS(1459), - [anon_sym_QMARK] = ACTIONS(1457), - [anon_sym_u8] = ACTIONS(1753), - [anon_sym_i8] = ACTIONS(1753), - [anon_sym_u16] = ACTIONS(1753), - [anon_sym_i16] = ACTIONS(1753), - [anon_sym_u32] = ACTIONS(1753), - [anon_sym_i32] = ACTIONS(1753), - [anon_sym_u64] = ACTIONS(1753), - [anon_sym_i64] = ACTIONS(1753), - [anon_sym_u128] = ACTIONS(1753), - [anon_sym_i128] = ACTIONS(1753), - [anon_sym_isize] = ACTIONS(1753), - [anon_sym_usize] = ACTIONS(1753), - [anon_sym_f32] = ACTIONS(1753), - [anon_sym_f64] = ACTIONS(1753), - [anon_sym_bool] = ACTIONS(1753), - [anon_sym_str] = ACTIONS(1753), - [anon_sym_char] = ACTIONS(1753), - [anon_sym_DASH] = ACTIONS(1753), - [anon_sym_SLASH] = ACTIONS(1459), - [anon_sym_PERCENT] = ACTIONS(1459), - [anon_sym_CARET] = ACTIONS(1459), - [anon_sym_AMP] = ACTIONS(1753), - [anon_sym_PIPE] = ACTIONS(1753), - [anon_sym_AMP_AMP] = ACTIONS(1457), - [anon_sym_PIPE_PIPE] = ACTIONS(1457), - [anon_sym_LT_LT] = ACTIONS(1459), - [anon_sym_GT_GT] = ACTIONS(1459), - [anon_sym_PLUS_EQ] = ACTIONS(1457), - [anon_sym_DASH_EQ] = ACTIONS(1457), - [anon_sym_STAR_EQ] = ACTIONS(1457), - [anon_sym_SLASH_EQ] = ACTIONS(1457), - [anon_sym_PERCENT_EQ] = ACTIONS(1457), - [anon_sym_CARET_EQ] = ACTIONS(1457), - [anon_sym_AMP_EQ] = ACTIONS(1457), - [anon_sym_PIPE_EQ] = ACTIONS(1457), - [anon_sym_LT_LT_EQ] = ACTIONS(1457), - [anon_sym_GT_GT_EQ] = ACTIONS(1457), - [anon_sym_EQ] = ACTIONS(1459), - [anon_sym_EQ_EQ] = ACTIONS(1457), - [anon_sym_BANG_EQ] = ACTIONS(1457), - [anon_sym_GT] = ACTIONS(1459), - [anon_sym_LT] = ACTIONS(1753), - [anon_sym_GT_EQ] = ACTIONS(1457), - [anon_sym_LT_EQ] = ACTIONS(1457), - [anon_sym__] = ACTIONS(1753), - [anon_sym_DOT] = ACTIONS(1459), - [anon_sym_DOT_DOT] = ACTIONS(1753), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1457), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1755), - [anon_sym_COMMA] = ACTIONS(1457), - [anon_sym_COLON_COLON] = ACTIONS(1755), - [anon_sym_POUND] = ACTIONS(1755), - [anon_sym_as] = ACTIONS(1459), - [anon_sym_const] = ACTIONS(1753), - [anon_sym_default] = ACTIONS(1753), - [anon_sym_gen] = ACTIONS(1753), - [anon_sym_union] = ACTIONS(1753), - [anon_sym_ref] = ACTIONS(1753), - [sym_mutable_specifier] = ACTIONS(1753), - [sym_integer_literal] = ACTIONS(1755), - [aux_sym_string_literal_token1] = ACTIONS(1755), - [sym_char_literal] = ACTIONS(1755), - [anon_sym_true] = ACTIONS(1753), - [anon_sym_false] = ACTIONS(1753), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1753), - [sym_super] = ACTIONS(1753), - [sym_crate] = ACTIONS(1753), - [sym_metavariable] = ACTIONS(1755), - [sym__raw_string_literal_start] = ACTIONS(1755), - [sym_float_literal] = ACTIONS(1755), + [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(480)] = { [sym_line_comment] = STATE(480), [sym_block_comment] = STATE(480), - [sym_identifier] = ACTIONS(1465), - [anon_sym_LPAREN] = ACTIONS(1463), - [anon_sym_LBRACK] = ACTIONS(1463), - [anon_sym_RBRACE] = ACTIONS(1463), - [anon_sym_PLUS] = ACTIONS(1465), - [anon_sym_STAR] = ACTIONS(1465), - [anon_sym_QMARK] = ACTIONS(1463), - [anon_sym_u8] = ACTIONS(1465), - [anon_sym_i8] = ACTIONS(1465), - [anon_sym_u16] = ACTIONS(1465), - [anon_sym_i16] = ACTIONS(1465), - [anon_sym_u32] = ACTIONS(1465), - [anon_sym_i32] = ACTIONS(1465), - [anon_sym_u64] = ACTIONS(1465), - [anon_sym_i64] = ACTIONS(1465), - [anon_sym_u128] = ACTIONS(1465), - [anon_sym_i128] = ACTIONS(1465), - [anon_sym_isize] = ACTIONS(1465), - [anon_sym_usize] = ACTIONS(1465), - [anon_sym_f32] = ACTIONS(1465), - [anon_sym_f64] = ACTIONS(1465), - [anon_sym_bool] = ACTIONS(1465), - [anon_sym_str] = ACTIONS(1465), - [anon_sym_char] = ACTIONS(1465), - [anon_sym_DASH] = ACTIONS(1465), - [anon_sym_SLASH] = ACTIONS(1465), - [anon_sym_PERCENT] = ACTIONS(1465), - [anon_sym_CARET] = ACTIONS(1465), - [anon_sym_AMP] = ACTIONS(1465), - [anon_sym_PIPE] = ACTIONS(1465), - [anon_sym_AMP_AMP] = ACTIONS(1463), - [anon_sym_PIPE_PIPE] = ACTIONS(1463), - [anon_sym_LT_LT] = ACTIONS(1465), - [anon_sym_GT_GT] = ACTIONS(1465), - [anon_sym_PLUS_EQ] = ACTIONS(1463), - [anon_sym_DASH_EQ] = ACTIONS(1463), - [anon_sym_STAR_EQ] = ACTIONS(1463), - [anon_sym_SLASH_EQ] = ACTIONS(1463), - [anon_sym_PERCENT_EQ] = ACTIONS(1463), - [anon_sym_CARET_EQ] = ACTIONS(1463), - [anon_sym_AMP_EQ] = ACTIONS(1463), - [anon_sym_PIPE_EQ] = ACTIONS(1463), - [anon_sym_LT_LT_EQ] = ACTIONS(1463), - [anon_sym_GT_GT_EQ] = ACTIONS(1463), - [anon_sym_EQ] = ACTIONS(1465), - [anon_sym_EQ_EQ] = ACTIONS(1463), - [anon_sym_BANG_EQ] = ACTIONS(1463), - [anon_sym_GT] = ACTIONS(1465), - [anon_sym_LT] = ACTIONS(1465), - [anon_sym_GT_EQ] = ACTIONS(1463), - [anon_sym_LT_EQ] = ACTIONS(1463), - [anon_sym__] = ACTIONS(1465), - [anon_sym_DOT] = ACTIONS(1465), - [anon_sym_DOT_DOT] = ACTIONS(1465), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1463), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1463), - [anon_sym_COMMA] = ACTIONS(1463), - [anon_sym_COLON_COLON] = ACTIONS(1463), - [anon_sym_POUND] = ACTIONS(1463), - [anon_sym_as] = ACTIONS(1465), - [anon_sym_const] = ACTIONS(1465), - [anon_sym_default] = ACTIONS(1465), - [anon_sym_gen] = ACTIONS(1465), - [anon_sym_union] = ACTIONS(1465), - [anon_sym_ref] = ACTIONS(1465), - [sym_mutable_specifier] = ACTIONS(1465), - [sym_integer_literal] = ACTIONS(1463), - [aux_sym_string_literal_token1] = ACTIONS(1463), - [sym_char_literal] = ACTIONS(1463), - [anon_sym_true] = ACTIONS(1465), - [anon_sym_false] = ACTIONS(1465), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1465), - [sym_super] = ACTIONS(1465), - [sym_crate] = ACTIONS(1465), - [sym_metavariable] = ACTIONS(1463), - [sym__raw_string_literal_start] = ACTIONS(1463), - [sym_float_literal] = ACTIONS(1463), + [sym_identifier] = ACTIONS(1756), + [anon_sym_LPAREN] = ACTIONS(1758), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_RBRACE] = ACTIONS(1478), + [anon_sym_PLUS] = ACTIONS(1480), + [anon_sym_STAR] = ACTIONS(1480), + [anon_sym_QMARK] = ACTIONS(1478), + [anon_sym_u8] = ACTIONS(1756), + [anon_sym_i8] = ACTIONS(1756), + [anon_sym_u16] = ACTIONS(1756), + [anon_sym_i16] = ACTIONS(1756), + [anon_sym_u32] = ACTIONS(1756), + [anon_sym_i32] = ACTIONS(1756), + [anon_sym_u64] = ACTIONS(1756), + [anon_sym_i64] = ACTIONS(1756), + [anon_sym_u128] = ACTIONS(1756), + [anon_sym_i128] = ACTIONS(1756), + [anon_sym_isize] = ACTIONS(1756), + [anon_sym_usize] = ACTIONS(1756), + [anon_sym_f32] = ACTIONS(1756), + [anon_sym_f64] = ACTIONS(1756), + [anon_sym_bool] = ACTIONS(1756), + [anon_sym_str] = ACTIONS(1756), + [anon_sym_char] = ACTIONS(1756), + [anon_sym_DASH] = ACTIONS(1756), + [anon_sym_SLASH] = ACTIONS(1480), + [anon_sym_PERCENT] = ACTIONS(1480), + [anon_sym_CARET] = ACTIONS(1480), + [anon_sym_AMP] = ACTIONS(1756), + [anon_sym_PIPE] = ACTIONS(1756), + [anon_sym_AMP_AMP] = ACTIONS(1478), + [anon_sym_PIPE_PIPE] = ACTIONS(1478), + [anon_sym_LT_LT] = ACTIONS(1480), + [anon_sym_GT_GT] = ACTIONS(1480), + [anon_sym_PLUS_EQ] = ACTIONS(1478), + [anon_sym_DASH_EQ] = ACTIONS(1478), + [anon_sym_STAR_EQ] = ACTIONS(1478), + [anon_sym_SLASH_EQ] = ACTIONS(1478), + [anon_sym_PERCENT_EQ] = ACTIONS(1478), + [anon_sym_CARET_EQ] = ACTIONS(1478), + [anon_sym_AMP_EQ] = ACTIONS(1478), + [anon_sym_PIPE_EQ] = ACTIONS(1478), + [anon_sym_LT_LT_EQ] = ACTIONS(1478), + [anon_sym_GT_GT_EQ] = ACTIONS(1478), + [anon_sym_EQ] = ACTIONS(1480), + [anon_sym_EQ_EQ] = ACTIONS(1478), + [anon_sym_BANG_EQ] = ACTIONS(1478), + [anon_sym_GT] = ACTIONS(1480), + [anon_sym_LT] = ACTIONS(1756), + [anon_sym_GT_EQ] = ACTIONS(1478), + [anon_sym_LT_EQ] = ACTIONS(1478), + [anon_sym__] = ACTIONS(1756), + [anon_sym_DOT] = ACTIONS(1480), + [anon_sym_DOT_DOT] = ACTIONS(1756), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1478), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1758), + [anon_sym_COMMA] = ACTIONS(1478), + [anon_sym_COLON_COLON] = ACTIONS(1758), + [anon_sym_POUND] = ACTIONS(1758), + [anon_sym_as] = ACTIONS(1480), + [anon_sym_const] = ACTIONS(1756), + [anon_sym_default] = ACTIONS(1756), + [anon_sym_gen] = ACTIONS(1756), + [anon_sym_union] = ACTIONS(1756), + [anon_sym_ref] = ACTIONS(1756), + [sym_mutable_specifier] = ACTIONS(1756), + [sym_integer_literal] = ACTIONS(1758), + [aux_sym_string_literal_token1] = ACTIONS(1758), + [sym_char_literal] = ACTIONS(1758), + [anon_sym_true] = ACTIONS(1756), + [anon_sym_false] = ACTIONS(1756), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1756), + [sym_super] = ACTIONS(1756), + [sym_crate] = ACTIONS(1756), + [sym_metavariable] = ACTIONS(1758), + [sym__raw_string_literal_start] = ACTIONS(1758), + [sym_float_literal] = ACTIONS(1758), }, [STATE(481)] = { [sym_line_comment] = STATE(481), [sym_block_comment] = STATE(481), - [sym_identifier] = ACTIONS(1757), - [anon_sym_LPAREN] = ACTIONS(1759), - [anon_sym_LBRACK] = ACTIONS(1759), - [anon_sym_RBRACE] = ACTIONS(1457), - [anon_sym_PLUS] = ACTIONS(1459), - [anon_sym_STAR] = ACTIONS(1459), - [anon_sym_QMARK] = ACTIONS(1457), - [anon_sym_u8] = ACTIONS(1757), - [anon_sym_i8] = ACTIONS(1757), - [anon_sym_u16] = ACTIONS(1757), - [anon_sym_i16] = ACTIONS(1757), - [anon_sym_u32] = ACTIONS(1757), - [anon_sym_i32] = ACTIONS(1757), - [anon_sym_u64] = ACTIONS(1757), - [anon_sym_i64] = ACTIONS(1757), - [anon_sym_u128] = ACTIONS(1757), - [anon_sym_i128] = ACTIONS(1757), - [anon_sym_isize] = ACTIONS(1757), - [anon_sym_usize] = ACTIONS(1757), - [anon_sym_f32] = ACTIONS(1757), - [anon_sym_f64] = ACTIONS(1757), - [anon_sym_bool] = ACTIONS(1757), - [anon_sym_str] = ACTIONS(1757), - [anon_sym_char] = ACTIONS(1757), - [anon_sym_DASH] = ACTIONS(1757), - [anon_sym_SLASH] = ACTIONS(1459), - [anon_sym_PERCENT] = ACTIONS(1459), - [anon_sym_CARET] = ACTIONS(1459), - [anon_sym_AMP] = ACTIONS(1757), - [anon_sym_PIPE] = ACTIONS(1757), - [anon_sym_AMP_AMP] = ACTIONS(1457), - [anon_sym_PIPE_PIPE] = ACTIONS(1457), - [anon_sym_LT_LT] = ACTIONS(1459), - [anon_sym_GT_GT] = ACTIONS(1459), - [anon_sym_PLUS_EQ] = ACTIONS(1457), - [anon_sym_DASH_EQ] = ACTIONS(1457), - [anon_sym_STAR_EQ] = ACTIONS(1457), - [anon_sym_SLASH_EQ] = ACTIONS(1457), - [anon_sym_PERCENT_EQ] = ACTIONS(1457), - [anon_sym_CARET_EQ] = ACTIONS(1457), - [anon_sym_AMP_EQ] = ACTIONS(1457), - [anon_sym_PIPE_EQ] = ACTIONS(1457), - [anon_sym_LT_LT_EQ] = ACTIONS(1457), - [anon_sym_GT_GT_EQ] = ACTIONS(1457), - [anon_sym_EQ] = ACTIONS(1459), - [anon_sym_EQ_EQ] = ACTIONS(1457), - [anon_sym_BANG_EQ] = ACTIONS(1457), - [anon_sym_GT] = ACTIONS(1459), - [anon_sym_LT] = ACTIONS(1757), - [anon_sym_GT_EQ] = ACTIONS(1457), - [anon_sym_LT_EQ] = ACTIONS(1457), - [anon_sym__] = ACTIONS(1757), - [anon_sym_DOT] = ACTIONS(1459), - [anon_sym_DOT_DOT] = ACTIONS(1757), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1457), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1759), - [anon_sym_COMMA] = ACTIONS(1457), - [anon_sym_COLON_COLON] = ACTIONS(1759), - [anon_sym_POUND] = ACTIONS(1759), - [anon_sym_as] = ACTIONS(1459), - [anon_sym_const] = ACTIONS(1757), - [anon_sym_default] = ACTIONS(1757), - [anon_sym_gen] = ACTIONS(1757), - [anon_sym_union] = ACTIONS(1757), - [anon_sym_ref] = ACTIONS(1757), - [sym_mutable_specifier] = ACTIONS(1757), - [sym_integer_literal] = ACTIONS(1759), - [aux_sym_string_literal_token1] = ACTIONS(1759), - [sym_char_literal] = ACTIONS(1759), - [anon_sym_true] = ACTIONS(1757), - [anon_sym_false] = ACTIONS(1757), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1757), - [sym_super] = ACTIONS(1757), - [sym_crate] = ACTIONS(1757), - [sym_metavariable] = ACTIONS(1759), - [sym__raw_string_literal_start] = ACTIONS(1759), - [sym_float_literal] = ACTIONS(1759), + [sym_identifier] = ACTIONS(1540), + [anon_sym_LPAREN] = ACTIONS(1538), + [anon_sym_LBRACK] = ACTIONS(1538), + [anon_sym_RBRACE] = ACTIONS(1538), + [anon_sym_PLUS] = ACTIONS(1540), + [anon_sym_STAR] = ACTIONS(1540), + [anon_sym_QMARK] = ACTIONS(1538), + [anon_sym_u8] = ACTIONS(1540), + [anon_sym_i8] = ACTIONS(1540), + [anon_sym_u16] = ACTIONS(1540), + [anon_sym_i16] = ACTIONS(1540), + [anon_sym_u32] = ACTIONS(1540), + [anon_sym_i32] = ACTIONS(1540), + [anon_sym_u64] = ACTIONS(1540), + [anon_sym_i64] = ACTIONS(1540), + [anon_sym_u128] = ACTIONS(1540), + [anon_sym_i128] = ACTIONS(1540), + [anon_sym_isize] = ACTIONS(1540), + [anon_sym_usize] = ACTIONS(1540), + [anon_sym_f32] = ACTIONS(1540), + [anon_sym_f64] = ACTIONS(1540), + [anon_sym_bool] = ACTIONS(1540), + [anon_sym_str] = ACTIONS(1540), + [anon_sym_char] = ACTIONS(1540), + [anon_sym_DASH] = ACTIONS(1540), + [anon_sym_SLASH] = ACTIONS(1540), + [anon_sym_PERCENT] = ACTIONS(1540), + [anon_sym_CARET] = ACTIONS(1540), + [anon_sym_AMP] = ACTIONS(1540), + [anon_sym_PIPE] = ACTIONS(1540), + [anon_sym_AMP_AMP] = ACTIONS(1538), + [anon_sym_PIPE_PIPE] = ACTIONS(1538), + [anon_sym_LT_LT] = ACTIONS(1540), + [anon_sym_GT_GT] = ACTIONS(1540), + [anon_sym_PLUS_EQ] = ACTIONS(1538), + [anon_sym_DASH_EQ] = ACTIONS(1538), + [anon_sym_STAR_EQ] = ACTIONS(1538), + [anon_sym_SLASH_EQ] = ACTIONS(1538), + [anon_sym_PERCENT_EQ] = ACTIONS(1538), + [anon_sym_CARET_EQ] = ACTIONS(1538), + [anon_sym_AMP_EQ] = ACTIONS(1538), + [anon_sym_PIPE_EQ] = ACTIONS(1538), + [anon_sym_LT_LT_EQ] = ACTIONS(1538), + [anon_sym_GT_GT_EQ] = ACTIONS(1538), + [anon_sym_EQ] = ACTIONS(1540), + [anon_sym_EQ_EQ] = ACTIONS(1538), + [anon_sym_BANG_EQ] = ACTIONS(1538), + [anon_sym_GT] = ACTIONS(1540), + [anon_sym_LT] = ACTIONS(1540), + [anon_sym_GT_EQ] = ACTIONS(1538), + [anon_sym_LT_EQ] = ACTIONS(1538), + [anon_sym__] = ACTIONS(1540), + [anon_sym_DOT] = ACTIONS(1540), + [anon_sym_DOT_DOT] = ACTIONS(1540), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1538), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1538), + [anon_sym_COMMA] = ACTIONS(1538), + [anon_sym_COLON_COLON] = ACTIONS(1538), + [anon_sym_POUND] = ACTIONS(1538), + [anon_sym_as] = ACTIONS(1540), + [anon_sym_const] = ACTIONS(1540), + [anon_sym_default] = ACTIONS(1540), + [anon_sym_gen] = ACTIONS(1540), + [anon_sym_union] = ACTIONS(1540), + [anon_sym_ref] = ACTIONS(1540), + [sym_mutable_specifier] = ACTIONS(1540), + [sym_integer_literal] = ACTIONS(1538), + [aux_sym_string_literal_token1] = ACTIONS(1538), + [sym_char_literal] = ACTIONS(1538), + [anon_sym_true] = ACTIONS(1540), + [anon_sym_false] = ACTIONS(1540), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1540), + [sym_super] = ACTIONS(1540), + [sym_crate] = ACTIONS(1540), + [sym_metavariable] = ACTIONS(1538), + [sym__raw_string_literal_start] = ACTIONS(1538), + [sym_float_literal] = ACTIONS(1538), }, [STATE(482)] = { [sym_line_comment] = STATE(482), [sym_block_comment] = STATE(482), - [sym_identifier] = ACTIONS(1503), - [anon_sym_LPAREN] = ACTIONS(1501), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_RBRACE] = ACTIONS(1501), - [anon_sym_PLUS] = ACTIONS(1503), - [anon_sym_STAR] = ACTIONS(1503), - [anon_sym_QMARK] = 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(1503), - [anon_sym_SLASH] = ACTIONS(1503), - [anon_sym_PERCENT] = ACTIONS(1503), - [anon_sym_CARET] = ACTIONS(1503), - [anon_sym_AMP] = ACTIONS(1503), - [anon_sym_PIPE] = ACTIONS(1503), - [anon_sym_AMP_AMP] = ACTIONS(1501), - [anon_sym_PIPE_PIPE] = ACTIONS(1501), - [anon_sym_LT_LT] = ACTIONS(1503), - [anon_sym_GT_GT] = ACTIONS(1503), - [anon_sym_PLUS_EQ] = ACTIONS(1501), - [anon_sym_DASH_EQ] = ACTIONS(1501), - [anon_sym_STAR_EQ] = ACTIONS(1501), - [anon_sym_SLASH_EQ] = ACTIONS(1501), - [anon_sym_PERCENT_EQ] = ACTIONS(1501), - [anon_sym_CARET_EQ] = ACTIONS(1501), - [anon_sym_AMP_EQ] = ACTIONS(1501), - [anon_sym_PIPE_EQ] = ACTIONS(1501), - [anon_sym_LT_LT_EQ] = ACTIONS(1501), - [anon_sym_GT_GT_EQ] = ACTIONS(1501), - [anon_sym_EQ] = ACTIONS(1503), - [anon_sym_EQ_EQ] = ACTIONS(1501), - [anon_sym_BANG_EQ] = ACTIONS(1501), - [anon_sym_GT] = ACTIONS(1503), - [anon_sym_LT] = ACTIONS(1503), - [anon_sym_GT_EQ] = ACTIONS(1501), - [anon_sym_LT_EQ] = ACTIONS(1501), - [anon_sym__] = ACTIONS(1503), - [anon_sym_DOT] = ACTIONS(1503), - [anon_sym_DOT_DOT] = ACTIONS(1503), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1501), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1501), - [anon_sym_COMMA] = ACTIONS(1501), - [anon_sym_COLON_COLON] = ACTIONS(1501), - [anon_sym_POUND] = ACTIONS(1501), - [anon_sym_as] = ACTIONS(1503), - [anon_sym_const] = ACTIONS(1503), - [anon_sym_default] = ACTIONS(1503), - [anon_sym_gen] = ACTIONS(1503), - [anon_sym_union] = ACTIONS(1503), - [anon_sym_ref] = ACTIONS(1503), - [sym_mutable_specifier] = 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), + [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(483)] = { [sym_line_comment] = STATE(483), [sym_block_comment] = STATE(483), - [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(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(484)] = { [sym_line_comment] = STATE(484), [sym_block_comment] = STATE(484), - [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(1548), + [anon_sym_LPAREN] = ACTIONS(1546), + [anon_sym_LBRACK] = ACTIONS(1546), + [anon_sym_RBRACE] = ACTIONS(1546), + [anon_sym_PLUS] = ACTIONS(1548), + [anon_sym_STAR] = ACTIONS(1548), + [anon_sym_QMARK] = ACTIONS(1546), + [anon_sym_u8] = ACTIONS(1548), + [anon_sym_i8] = ACTIONS(1548), + [anon_sym_u16] = ACTIONS(1548), + [anon_sym_i16] = ACTIONS(1548), + [anon_sym_u32] = ACTIONS(1548), + [anon_sym_i32] = ACTIONS(1548), + [anon_sym_u64] = ACTIONS(1548), + [anon_sym_i64] = ACTIONS(1548), + [anon_sym_u128] = ACTIONS(1548), + [anon_sym_i128] = ACTIONS(1548), + [anon_sym_isize] = ACTIONS(1548), + [anon_sym_usize] = ACTIONS(1548), + [anon_sym_f32] = ACTIONS(1548), + [anon_sym_f64] = ACTIONS(1548), + [anon_sym_bool] = ACTIONS(1548), + [anon_sym_str] = ACTIONS(1548), + [anon_sym_char] = ACTIONS(1548), + [anon_sym_DASH] = ACTIONS(1548), + [anon_sym_SLASH] = ACTIONS(1548), + [anon_sym_PERCENT] = ACTIONS(1548), + [anon_sym_CARET] = ACTIONS(1548), + [anon_sym_AMP] = ACTIONS(1548), + [anon_sym_PIPE] = ACTIONS(1548), + [anon_sym_AMP_AMP] = ACTIONS(1546), + [anon_sym_PIPE_PIPE] = ACTIONS(1546), + [anon_sym_LT_LT] = ACTIONS(1548), + [anon_sym_GT_GT] = ACTIONS(1548), + [anon_sym_PLUS_EQ] = ACTIONS(1546), + [anon_sym_DASH_EQ] = ACTIONS(1546), + [anon_sym_STAR_EQ] = ACTIONS(1546), + [anon_sym_SLASH_EQ] = ACTIONS(1546), + [anon_sym_PERCENT_EQ] = ACTIONS(1546), + [anon_sym_CARET_EQ] = ACTIONS(1546), + [anon_sym_AMP_EQ] = ACTIONS(1546), + [anon_sym_PIPE_EQ] = ACTIONS(1546), + [anon_sym_LT_LT_EQ] = ACTIONS(1546), + [anon_sym_GT_GT_EQ] = ACTIONS(1546), + [anon_sym_EQ] = ACTIONS(1548), + [anon_sym_EQ_EQ] = ACTIONS(1546), + [anon_sym_BANG_EQ] = ACTIONS(1546), + [anon_sym_GT] = ACTIONS(1548), + [anon_sym_LT] = ACTIONS(1548), + [anon_sym_GT_EQ] = ACTIONS(1546), + [anon_sym_LT_EQ] = ACTIONS(1546), + [anon_sym__] = ACTIONS(1548), + [anon_sym_DOT] = ACTIONS(1548), + [anon_sym_DOT_DOT] = ACTIONS(1548), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1546), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1546), + [anon_sym_COMMA] = ACTIONS(1546), + [anon_sym_COLON_COLON] = ACTIONS(1546), + [anon_sym_POUND] = ACTIONS(1546), + [anon_sym_as] = ACTIONS(1548), + [anon_sym_const] = ACTIONS(1548), + [anon_sym_default] = ACTIONS(1548), + [anon_sym_gen] = ACTIONS(1548), + [anon_sym_union] = ACTIONS(1548), + [anon_sym_ref] = ACTIONS(1548), + [sym_mutable_specifier] = ACTIONS(1548), + [sym_integer_literal] = ACTIONS(1546), + [aux_sym_string_literal_token1] = ACTIONS(1546), + [sym_char_literal] = ACTIONS(1546), + [anon_sym_true] = ACTIONS(1548), + [anon_sym_false] = ACTIONS(1548), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1548), + [sym_super] = ACTIONS(1548), + [sym_crate] = ACTIONS(1548), + [sym_metavariable] = ACTIONS(1546), + [sym__raw_string_literal_start] = ACTIONS(1546), + [sym_float_literal] = ACTIONS(1546), }, [STATE(485)] = { [sym_line_comment] = STATE(485), [sym_block_comment] = STATE(485), - [sym_identifier] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1475), - [anon_sym_LBRACK] = ACTIONS(1475), - [anon_sym_RBRACE] = ACTIONS(1475), - [anon_sym_PLUS] = ACTIONS(1477), - [anon_sym_STAR] = ACTIONS(1477), - [anon_sym_QMARK] = ACTIONS(1475), - [anon_sym_u8] = ACTIONS(1477), - [anon_sym_i8] = ACTIONS(1477), - [anon_sym_u16] = ACTIONS(1477), - [anon_sym_i16] = ACTIONS(1477), - [anon_sym_u32] = ACTIONS(1477), - [anon_sym_i32] = ACTIONS(1477), - [anon_sym_u64] = ACTIONS(1477), - [anon_sym_i64] = ACTIONS(1477), - [anon_sym_u128] = ACTIONS(1477), - [anon_sym_i128] = ACTIONS(1477), - [anon_sym_isize] = ACTIONS(1477), - [anon_sym_usize] = ACTIONS(1477), - [anon_sym_f32] = ACTIONS(1477), - [anon_sym_f64] = ACTIONS(1477), - [anon_sym_bool] = ACTIONS(1477), - [anon_sym_str] = ACTIONS(1477), - [anon_sym_char] = ACTIONS(1477), - [anon_sym_DASH] = ACTIONS(1477), - [anon_sym_SLASH] = ACTIONS(1477), - [anon_sym_PERCENT] = ACTIONS(1477), - [anon_sym_CARET] = ACTIONS(1477), - [anon_sym_AMP] = ACTIONS(1477), - [anon_sym_PIPE] = ACTIONS(1477), - [anon_sym_AMP_AMP] = ACTIONS(1475), - [anon_sym_PIPE_PIPE] = ACTIONS(1475), - [anon_sym_LT_LT] = ACTIONS(1477), - [anon_sym_GT_GT] = ACTIONS(1477), - [anon_sym_PLUS_EQ] = ACTIONS(1475), - [anon_sym_DASH_EQ] = ACTIONS(1475), - [anon_sym_STAR_EQ] = ACTIONS(1475), - [anon_sym_SLASH_EQ] = ACTIONS(1475), - [anon_sym_PERCENT_EQ] = ACTIONS(1475), - [anon_sym_CARET_EQ] = ACTIONS(1475), - [anon_sym_AMP_EQ] = ACTIONS(1475), - [anon_sym_PIPE_EQ] = ACTIONS(1475), - [anon_sym_LT_LT_EQ] = ACTIONS(1475), - [anon_sym_GT_GT_EQ] = ACTIONS(1475), - [anon_sym_EQ] = ACTIONS(1477), - [anon_sym_EQ_EQ] = ACTIONS(1475), - [anon_sym_BANG_EQ] = ACTIONS(1475), - [anon_sym_GT] = ACTIONS(1477), - [anon_sym_LT] = ACTIONS(1477), - [anon_sym_GT_EQ] = ACTIONS(1475), - [anon_sym_LT_EQ] = ACTIONS(1475), - [anon_sym__] = ACTIONS(1477), - [anon_sym_DOT] = ACTIONS(1477), - [anon_sym_DOT_DOT] = ACTIONS(1477), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1475), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1475), - [anon_sym_COMMA] = ACTIONS(1475), - [anon_sym_COLON_COLON] = ACTIONS(1475), - [anon_sym_POUND] = ACTIONS(1475), - [anon_sym_as] = ACTIONS(1477), - [anon_sym_const] = ACTIONS(1477), - [anon_sym_default] = ACTIONS(1477), - [anon_sym_gen] = ACTIONS(1477), - [anon_sym_union] = ACTIONS(1477), - [anon_sym_ref] = ACTIONS(1477), - [sym_mutable_specifier] = ACTIONS(1477), - [sym_integer_literal] = ACTIONS(1475), - [aux_sym_string_literal_token1] = ACTIONS(1475), - [sym_char_literal] = ACTIONS(1475), - [anon_sym_true] = ACTIONS(1477), - [anon_sym_false] = ACTIONS(1477), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1477), - [sym_super] = ACTIONS(1477), - [sym_crate] = ACTIONS(1477), - [sym_metavariable] = ACTIONS(1475), - [sym__raw_string_literal_start] = ACTIONS(1475), - [sym_float_literal] = ACTIONS(1475), + [sym_identifier] = ACTIONS(1484), + [anon_sym_LPAREN] = ACTIONS(1482), + [anon_sym_LBRACK] = 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_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__] = ACTIONS(1484), + [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_COMMA] = ACTIONS(1482), + [anon_sym_COLON_COLON] = ACTIONS(1482), + [anon_sym_POUND] = ACTIONS(1482), + [anon_sym_as] = ACTIONS(1484), + [anon_sym_const] = ACTIONS(1484), + [anon_sym_default] = ACTIONS(1484), + [anon_sym_gen] = ACTIONS(1484), + [anon_sym_union] = ACTIONS(1484), + [anon_sym_ref] = ACTIONS(1484), + [sym_mutable_specifier] = 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(486)] = { [sym_line_comment] = STATE(486), [sym_block_comment] = STATE(486), - [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(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(487)] = { [sym_line_comment] = STATE(487), [sym_block_comment] = STATE(487), - [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(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(488)] = { [sym_line_comment] = STATE(488), [sym_block_comment] = STATE(488), - [sym_identifier] = ACTIONS(1529), - [anon_sym_LPAREN] = ACTIONS(1527), - [anon_sym_LBRACK] = ACTIONS(1527), - [anon_sym_RBRACE] = ACTIONS(1527), - [anon_sym_PLUS] = ACTIONS(1529), - [anon_sym_STAR] = ACTIONS(1529), - [anon_sym_QMARK] = ACTIONS(1527), - [anon_sym_u8] = ACTIONS(1529), - [anon_sym_i8] = ACTIONS(1529), - [anon_sym_u16] = ACTIONS(1529), - [anon_sym_i16] = ACTIONS(1529), - [anon_sym_u32] = ACTIONS(1529), - [anon_sym_i32] = ACTIONS(1529), - [anon_sym_u64] = ACTIONS(1529), - [anon_sym_i64] = ACTIONS(1529), - [anon_sym_u128] = ACTIONS(1529), - [anon_sym_i128] = ACTIONS(1529), - [anon_sym_isize] = ACTIONS(1529), - [anon_sym_usize] = ACTIONS(1529), - [anon_sym_f32] = ACTIONS(1529), - [anon_sym_f64] = ACTIONS(1529), - [anon_sym_bool] = ACTIONS(1529), - [anon_sym_str] = ACTIONS(1529), - [anon_sym_char] = ACTIONS(1529), - [anon_sym_DASH] = ACTIONS(1529), - [anon_sym_SLASH] = ACTIONS(1529), - [anon_sym_PERCENT] = ACTIONS(1529), - [anon_sym_CARET] = ACTIONS(1529), - [anon_sym_AMP] = ACTIONS(1529), - [anon_sym_PIPE] = ACTIONS(1529), - [anon_sym_AMP_AMP] = ACTIONS(1527), - [anon_sym_PIPE_PIPE] = ACTIONS(1527), - [anon_sym_LT_LT] = ACTIONS(1529), - [anon_sym_GT_GT] = ACTIONS(1529), - [anon_sym_PLUS_EQ] = ACTIONS(1527), - [anon_sym_DASH_EQ] = ACTIONS(1527), - [anon_sym_STAR_EQ] = ACTIONS(1527), - [anon_sym_SLASH_EQ] = ACTIONS(1527), - [anon_sym_PERCENT_EQ] = ACTIONS(1527), - [anon_sym_CARET_EQ] = ACTIONS(1527), - [anon_sym_AMP_EQ] = ACTIONS(1527), - [anon_sym_PIPE_EQ] = ACTIONS(1527), - [anon_sym_LT_LT_EQ] = ACTIONS(1527), - [anon_sym_GT_GT_EQ] = ACTIONS(1527), - [anon_sym_EQ] = ACTIONS(1529), - [anon_sym_EQ_EQ] = ACTIONS(1527), - [anon_sym_BANG_EQ] = ACTIONS(1527), - [anon_sym_GT] = ACTIONS(1529), - [anon_sym_LT] = ACTIONS(1529), - [anon_sym_GT_EQ] = ACTIONS(1527), - [anon_sym_LT_EQ] = ACTIONS(1527), - [anon_sym__] = ACTIONS(1529), - [anon_sym_DOT] = ACTIONS(1529), - [anon_sym_DOT_DOT] = ACTIONS(1529), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1527), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1527), - [anon_sym_COMMA] = ACTIONS(1527), - [anon_sym_COLON_COLON] = ACTIONS(1527), - [anon_sym_POUND] = ACTIONS(1527), - [anon_sym_as] = ACTIONS(1529), - [anon_sym_const] = ACTIONS(1529), - [anon_sym_default] = ACTIONS(1529), - [anon_sym_gen] = ACTIONS(1529), - [anon_sym_union] = ACTIONS(1529), - [anon_sym_ref] = ACTIONS(1529), - [sym_mutable_specifier] = ACTIONS(1529), - [sym_integer_literal] = ACTIONS(1527), - [aux_sym_string_literal_token1] = ACTIONS(1527), - [sym_char_literal] = ACTIONS(1527), - [anon_sym_true] = ACTIONS(1529), - [anon_sym_false] = ACTIONS(1529), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1529), - [sym_super] = ACTIONS(1529), - [sym_crate] = ACTIONS(1529), - [sym_metavariable] = ACTIONS(1527), - [sym__raw_string_literal_start] = ACTIONS(1527), - [sym_float_literal] = ACTIONS(1527), + [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(489)] = { [sym_line_comment] = STATE(489), [sym_block_comment] = STATE(489), - [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(1760), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_LBRACK] = ACTIONS(1762), + [anon_sym_RBRACE] = ACTIONS(1478), + [anon_sym_PLUS] = ACTIONS(1480), + [anon_sym_STAR] = ACTIONS(1480), + [anon_sym_QMARK] = ACTIONS(1478), + [anon_sym_u8] = ACTIONS(1760), + [anon_sym_i8] = ACTIONS(1760), + [anon_sym_u16] = ACTIONS(1760), + [anon_sym_i16] = ACTIONS(1760), + [anon_sym_u32] = ACTIONS(1760), + [anon_sym_i32] = ACTIONS(1760), + [anon_sym_u64] = ACTIONS(1760), + [anon_sym_i64] = ACTIONS(1760), + [anon_sym_u128] = ACTIONS(1760), + [anon_sym_i128] = ACTIONS(1760), + [anon_sym_isize] = ACTIONS(1760), + [anon_sym_usize] = ACTIONS(1760), + [anon_sym_f32] = ACTIONS(1760), + [anon_sym_f64] = ACTIONS(1760), + [anon_sym_bool] = ACTIONS(1760), + [anon_sym_str] = ACTIONS(1760), + [anon_sym_char] = ACTIONS(1760), + [anon_sym_DASH] = ACTIONS(1760), + [anon_sym_SLASH] = ACTIONS(1480), + [anon_sym_PERCENT] = ACTIONS(1480), + [anon_sym_CARET] = ACTIONS(1480), + [anon_sym_AMP] = ACTIONS(1760), + [anon_sym_PIPE] = ACTIONS(1760), + [anon_sym_AMP_AMP] = ACTIONS(1478), + [anon_sym_PIPE_PIPE] = ACTIONS(1478), + [anon_sym_LT_LT] = ACTIONS(1480), + [anon_sym_GT_GT] = ACTIONS(1480), + [anon_sym_PLUS_EQ] = ACTIONS(1478), + [anon_sym_DASH_EQ] = ACTIONS(1478), + [anon_sym_STAR_EQ] = ACTIONS(1478), + [anon_sym_SLASH_EQ] = ACTIONS(1478), + [anon_sym_PERCENT_EQ] = ACTIONS(1478), + [anon_sym_CARET_EQ] = ACTIONS(1478), + [anon_sym_AMP_EQ] = ACTIONS(1478), + [anon_sym_PIPE_EQ] = ACTIONS(1478), + [anon_sym_LT_LT_EQ] = ACTIONS(1478), + [anon_sym_GT_GT_EQ] = ACTIONS(1478), + [anon_sym_EQ] = ACTIONS(1480), + [anon_sym_EQ_EQ] = ACTIONS(1478), + [anon_sym_BANG_EQ] = ACTIONS(1478), + [anon_sym_GT] = ACTIONS(1480), + [anon_sym_LT] = ACTIONS(1760), + [anon_sym_GT_EQ] = ACTIONS(1478), + [anon_sym_LT_EQ] = ACTIONS(1478), + [anon_sym__] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(1480), + [anon_sym_DOT_DOT] = ACTIONS(1760), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1478), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1762), + [anon_sym_COMMA] = ACTIONS(1478), + [anon_sym_COLON_COLON] = ACTIONS(1762), + [anon_sym_POUND] = ACTIONS(1762), + [anon_sym_as] = ACTIONS(1480), + [anon_sym_const] = ACTIONS(1760), + [anon_sym_default] = ACTIONS(1760), + [anon_sym_gen] = ACTIONS(1760), + [anon_sym_union] = ACTIONS(1760), + [anon_sym_ref] = ACTIONS(1760), + [sym_mutable_specifier] = ACTIONS(1760), + [sym_integer_literal] = ACTIONS(1762), + [aux_sym_string_literal_token1] = ACTIONS(1762), + [sym_char_literal] = ACTIONS(1762), + [anon_sym_true] = ACTIONS(1760), + [anon_sym_false] = ACTIONS(1760), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1760), + [sym_super] = ACTIONS(1760), + [sym_crate] = ACTIONS(1760), + [sym_metavariable] = ACTIONS(1762), + [sym__raw_string_literal_start] = ACTIONS(1762), + [sym_float_literal] = ACTIONS(1762), }, [STATE(490)] = { [sym_line_comment] = STATE(490), [sym_block_comment] = STATE(490), - [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), + [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(491)] = { [sym_line_comment] = STATE(491), [sym_block_comment] = STATE(491), - [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(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_line_comment] = STATE(492), [sym_block_comment] = STATE(492), - [sym_identifier] = ACTIONS(1549), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1547), - [anon_sym_RBRACE] = ACTIONS(1547), - [anon_sym_PLUS] = ACTIONS(1549), - [anon_sym_STAR] = ACTIONS(1549), - [anon_sym_QMARK] = ACTIONS(1547), - [anon_sym_u8] = ACTIONS(1549), - [anon_sym_i8] = ACTIONS(1549), - [anon_sym_u16] = ACTIONS(1549), - [anon_sym_i16] = ACTIONS(1549), - [anon_sym_u32] = ACTIONS(1549), - [anon_sym_i32] = ACTIONS(1549), - [anon_sym_u64] = ACTIONS(1549), - [anon_sym_i64] = ACTIONS(1549), - [anon_sym_u128] = ACTIONS(1549), - [anon_sym_i128] = ACTIONS(1549), - [anon_sym_isize] = ACTIONS(1549), - [anon_sym_usize] = ACTIONS(1549), - [anon_sym_f32] = ACTIONS(1549), - [anon_sym_f64] = ACTIONS(1549), - [anon_sym_bool] = ACTIONS(1549), - [anon_sym_str] = ACTIONS(1549), - [anon_sym_char] = ACTIONS(1549), - [anon_sym_DASH] = ACTIONS(1549), - [anon_sym_SLASH] = ACTIONS(1549), - [anon_sym_PERCENT] = ACTIONS(1549), - [anon_sym_CARET] = ACTIONS(1549), - [anon_sym_AMP] = ACTIONS(1549), - [anon_sym_PIPE] = ACTIONS(1549), - [anon_sym_AMP_AMP] = ACTIONS(1547), - [anon_sym_PIPE_PIPE] = ACTIONS(1547), - [anon_sym_LT_LT] = ACTIONS(1549), - [anon_sym_GT_GT] = ACTIONS(1549), - [anon_sym_PLUS_EQ] = ACTIONS(1547), - [anon_sym_DASH_EQ] = ACTIONS(1547), - [anon_sym_STAR_EQ] = ACTIONS(1547), - [anon_sym_SLASH_EQ] = ACTIONS(1547), - [anon_sym_PERCENT_EQ] = ACTIONS(1547), - [anon_sym_CARET_EQ] = ACTIONS(1547), - [anon_sym_AMP_EQ] = ACTIONS(1547), - [anon_sym_PIPE_EQ] = ACTIONS(1547), - [anon_sym_LT_LT_EQ] = ACTIONS(1547), - [anon_sym_GT_GT_EQ] = ACTIONS(1547), - [anon_sym_EQ] = ACTIONS(1549), - [anon_sym_EQ_EQ] = ACTIONS(1547), - [anon_sym_BANG_EQ] = ACTIONS(1547), - [anon_sym_GT] = ACTIONS(1549), - [anon_sym_LT] = ACTIONS(1549), - [anon_sym_GT_EQ] = ACTIONS(1547), - [anon_sym_LT_EQ] = ACTIONS(1547), - [anon_sym__] = ACTIONS(1549), - [anon_sym_DOT] = ACTIONS(1549), - [anon_sym_DOT_DOT] = ACTIONS(1549), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1547), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1547), - [anon_sym_COMMA] = ACTIONS(1547), - [anon_sym_COLON_COLON] = ACTIONS(1547), - [anon_sym_POUND] = ACTIONS(1547), - [anon_sym_as] = ACTIONS(1549), - [anon_sym_const] = ACTIONS(1549), - [anon_sym_default] = ACTIONS(1549), - [anon_sym_gen] = ACTIONS(1549), - [anon_sym_union] = ACTIONS(1549), - [anon_sym_ref] = ACTIONS(1549), - [sym_mutable_specifier] = ACTIONS(1549), - [sym_integer_literal] = ACTIONS(1547), - [aux_sym_string_literal_token1] = ACTIONS(1547), - [sym_char_literal] = ACTIONS(1547), - [anon_sym_true] = ACTIONS(1549), - [anon_sym_false] = ACTIONS(1549), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1549), - [sym_super] = ACTIONS(1549), - [sym_crate] = ACTIONS(1549), - [sym_metavariable] = ACTIONS(1547), - [sym__raw_string_literal_start] = ACTIONS(1547), - [sym_float_literal] = ACTIONS(1547), + [sym_identifier] = ACTIONS(1544), + [anon_sym_LPAREN] = ACTIONS(1542), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_RBRACE] = ACTIONS(1542), + [anon_sym_PLUS] = ACTIONS(1544), + [anon_sym_STAR] = ACTIONS(1544), + [anon_sym_QMARK] = ACTIONS(1542), + [anon_sym_u8] = ACTIONS(1544), + [anon_sym_i8] = ACTIONS(1544), + [anon_sym_u16] = ACTIONS(1544), + [anon_sym_i16] = ACTIONS(1544), + [anon_sym_u32] = ACTIONS(1544), + [anon_sym_i32] = ACTIONS(1544), + [anon_sym_u64] = ACTIONS(1544), + [anon_sym_i64] = ACTIONS(1544), + [anon_sym_u128] = ACTIONS(1544), + [anon_sym_i128] = ACTIONS(1544), + [anon_sym_isize] = ACTIONS(1544), + [anon_sym_usize] = ACTIONS(1544), + [anon_sym_f32] = ACTIONS(1544), + [anon_sym_f64] = ACTIONS(1544), + [anon_sym_bool] = ACTIONS(1544), + [anon_sym_str] = ACTIONS(1544), + [anon_sym_char] = ACTIONS(1544), + [anon_sym_DASH] = ACTIONS(1544), + [anon_sym_SLASH] = ACTIONS(1544), + [anon_sym_PERCENT] = ACTIONS(1544), + [anon_sym_CARET] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(1544), + [anon_sym_PIPE] = ACTIONS(1544), + [anon_sym_AMP_AMP] = ACTIONS(1542), + [anon_sym_PIPE_PIPE] = ACTIONS(1542), + [anon_sym_LT_LT] = ACTIONS(1544), + [anon_sym_GT_GT] = ACTIONS(1544), + [anon_sym_PLUS_EQ] = ACTIONS(1542), + [anon_sym_DASH_EQ] = ACTIONS(1542), + [anon_sym_STAR_EQ] = ACTIONS(1542), + [anon_sym_SLASH_EQ] = ACTIONS(1542), + [anon_sym_PERCENT_EQ] = ACTIONS(1542), + [anon_sym_CARET_EQ] = ACTIONS(1542), + [anon_sym_AMP_EQ] = ACTIONS(1542), + [anon_sym_PIPE_EQ] = ACTIONS(1542), + [anon_sym_LT_LT_EQ] = ACTIONS(1542), + [anon_sym_GT_GT_EQ] = ACTIONS(1542), + [anon_sym_EQ] = ACTIONS(1544), + [anon_sym_EQ_EQ] = ACTIONS(1542), + [anon_sym_BANG_EQ] = ACTIONS(1542), + [anon_sym_GT] = ACTIONS(1544), + [anon_sym_LT] = ACTIONS(1544), + [anon_sym_GT_EQ] = ACTIONS(1542), + [anon_sym_LT_EQ] = ACTIONS(1542), + [anon_sym__] = ACTIONS(1544), + [anon_sym_DOT] = ACTIONS(1544), + [anon_sym_DOT_DOT] = ACTIONS(1544), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1542), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1542), + [anon_sym_COMMA] = ACTIONS(1542), + [anon_sym_COLON_COLON] = ACTIONS(1542), + [anon_sym_POUND] = ACTIONS(1542), + [anon_sym_as] = ACTIONS(1544), + [anon_sym_const] = ACTIONS(1544), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_gen] = ACTIONS(1544), + [anon_sym_union] = ACTIONS(1544), + [anon_sym_ref] = ACTIONS(1544), + [sym_mutable_specifier] = ACTIONS(1544), + [sym_integer_literal] = ACTIONS(1542), + [aux_sym_string_literal_token1] = ACTIONS(1542), + [sym_char_literal] = ACTIONS(1542), + [anon_sym_true] = ACTIONS(1544), + [anon_sym_false] = ACTIONS(1544), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1544), + [sym_super] = ACTIONS(1544), + [sym_crate] = ACTIONS(1544), + [sym_metavariable] = ACTIONS(1542), + [sym__raw_string_literal_start] = ACTIONS(1542), + [sym_float_literal] = ACTIONS(1542), }, [STATE(493)] = { [sym_line_comment] = STATE(493), [sym_block_comment] = STATE(493), - [sym_identifier] = ACTIONS(1553), - [anon_sym_LPAREN] = ACTIONS(1551), - [anon_sym_LBRACK] = ACTIONS(1551), - [anon_sym_RBRACE] = ACTIONS(1551), - [anon_sym_PLUS] = ACTIONS(1553), - [anon_sym_STAR] = ACTIONS(1553), - [anon_sym_QMARK] = ACTIONS(1551), - [anon_sym_u8] = ACTIONS(1553), - [anon_sym_i8] = ACTIONS(1553), - [anon_sym_u16] = ACTIONS(1553), - [anon_sym_i16] = ACTIONS(1553), - [anon_sym_u32] = ACTIONS(1553), - [anon_sym_i32] = ACTIONS(1553), - [anon_sym_u64] = ACTIONS(1553), - [anon_sym_i64] = ACTIONS(1553), - [anon_sym_u128] = ACTIONS(1553), - [anon_sym_i128] = ACTIONS(1553), - [anon_sym_isize] = ACTIONS(1553), - [anon_sym_usize] = ACTIONS(1553), - [anon_sym_f32] = ACTIONS(1553), - [anon_sym_f64] = ACTIONS(1553), - [anon_sym_bool] = ACTIONS(1553), - [anon_sym_str] = ACTIONS(1553), - [anon_sym_char] = ACTIONS(1553), - [anon_sym_DASH] = ACTIONS(1553), - [anon_sym_SLASH] = ACTIONS(1553), - [anon_sym_PERCENT] = ACTIONS(1553), - [anon_sym_CARET] = ACTIONS(1553), - [anon_sym_AMP] = ACTIONS(1553), - [anon_sym_PIPE] = ACTIONS(1553), - [anon_sym_AMP_AMP] = ACTIONS(1551), - [anon_sym_PIPE_PIPE] = ACTIONS(1551), - [anon_sym_LT_LT] = ACTIONS(1553), - [anon_sym_GT_GT] = ACTIONS(1553), - [anon_sym_PLUS_EQ] = ACTIONS(1551), - [anon_sym_DASH_EQ] = ACTIONS(1551), - [anon_sym_STAR_EQ] = ACTIONS(1551), - [anon_sym_SLASH_EQ] = ACTIONS(1551), - [anon_sym_PERCENT_EQ] = ACTIONS(1551), - [anon_sym_CARET_EQ] = ACTIONS(1551), - [anon_sym_AMP_EQ] = ACTIONS(1551), - [anon_sym_PIPE_EQ] = ACTIONS(1551), - [anon_sym_LT_LT_EQ] = ACTIONS(1551), - [anon_sym_GT_GT_EQ] = ACTIONS(1551), - [anon_sym_EQ] = ACTIONS(1553), - [anon_sym_EQ_EQ] = ACTIONS(1551), - [anon_sym_BANG_EQ] = ACTIONS(1551), - [anon_sym_GT] = ACTIONS(1553), - [anon_sym_LT] = ACTIONS(1553), - [anon_sym_GT_EQ] = ACTIONS(1551), - [anon_sym_LT_EQ] = ACTIONS(1551), - [anon_sym__] = ACTIONS(1553), - [anon_sym_DOT] = ACTIONS(1553), - [anon_sym_DOT_DOT] = ACTIONS(1553), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1551), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1551), - [anon_sym_COMMA] = ACTIONS(1551), - [anon_sym_COLON_COLON] = ACTIONS(1551), - [anon_sym_POUND] = ACTIONS(1551), - [anon_sym_as] = ACTIONS(1553), - [anon_sym_const] = ACTIONS(1553), - [anon_sym_default] = ACTIONS(1553), - [anon_sym_gen] = ACTIONS(1553), - [anon_sym_union] = ACTIONS(1553), - [anon_sym_ref] = ACTIONS(1553), - [sym_mutable_specifier] = ACTIONS(1553), - [sym_integer_literal] = ACTIONS(1551), - [aux_sym_string_literal_token1] = ACTIONS(1551), - [sym_char_literal] = ACTIONS(1551), - [anon_sym_true] = ACTIONS(1553), - [anon_sym_false] = ACTIONS(1553), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1553), - [sym_super] = ACTIONS(1553), - [sym_crate] = ACTIONS(1553), - [sym_metavariable] = ACTIONS(1551), - [sym__raw_string_literal_start] = ACTIONS(1551), - [sym_float_literal] = ACTIONS(1551), + [sym_identifier] = ACTIONS(1558), + [anon_sym_LPAREN] = ACTIONS(1556), + [anon_sym_LBRACK] = ACTIONS(1556), + [anon_sym_RBRACE] = ACTIONS(1556), + [anon_sym_PLUS] = ACTIONS(1558), + [anon_sym_STAR] = ACTIONS(1558), + [anon_sym_QMARK] = ACTIONS(1556), + [anon_sym_u8] = ACTIONS(1558), + [anon_sym_i8] = ACTIONS(1558), + [anon_sym_u16] = ACTIONS(1558), + [anon_sym_i16] = ACTIONS(1558), + [anon_sym_u32] = ACTIONS(1558), + [anon_sym_i32] = ACTIONS(1558), + [anon_sym_u64] = ACTIONS(1558), + [anon_sym_i64] = ACTIONS(1558), + [anon_sym_u128] = ACTIONS(1558), + [anon_sym_i128] = ACTIONS(1558), + [anon_sym_isize] = ACTIONS(1558), + [anon_sym_usize] = ACTIONS(1558), + [anon_sym_f32] = ACTIONS(1558), + [anon_sym_f64] = ACTIONS(1558), + [anon_sym_bool] = ACTIONS(1558), + [anon_sym_str] = ACTIONS(1558), + [anon_sym_char] = ACTIONS(1558), + [anon_sym_DASH] = ACTIONS(1558), + [anon_sym_SLASH] = ACTIONS(1558), + [anon_sym_PERCENT] = ACTIONS(1558), + [anon_sym_CARET] = ACTIONS(1558), + [anon_sym_AMP] = ACTIONS(1558), + [anon_sym_PIPE] = ACTIONS(1558), + [anon_sym_AMP_AMP] = ACTIONS(1556), + [anon_sym_PIPE_PIPE] = ACTIONS(1556), + [anon_sym_LT_LT] = ACTIONS(1558), + [anon_sym_GT_GT] = ACTIONS(1558), + [anon_sym_PLUS_EQ] = ACTIONS(1556), + [anon_sym_DASH_EQ] = ACTIONS(1556), + [anon_sym_STAR_EQ] = ACTIONS(1556), + [anon_sym_SLASH_EQ] = ACTIONS(1556), + [anon_sym_PERCENT_EQ] = ACTIONS(1556), + [anon_sym_CARET_EQ] = ACTIONS(1556), + [anon_sym_AMP_EQ] = ACTIONS(1556), + [anon_sym_PIPE_EQ] = ACTIONS(1556), + [anon_sym_LT_LT_EQ] = ACTIONS(1556), + [anon_sym_GT_GT_EQ] = ACTIONS(1556), + [anon_sym_EQ] = ACTIONS(1558), + [anon_sym_EQ_EQ] = ACTIONS(1556), + [anon_sym_BANG_EQ] = ACTIONS(1556), + [anon_sym_GT] = ACTIONS(1558), + [anon_sym_LT] = ACTIONS(1558), + [anon_sym_GT_EQ] = ACTIONS(1556), + [anon_sym_LT_EQ] = ACTIONS(1556), + [anon_sym__] = ACTIONS(1558), + [anon_sym_DOT] = ACTIONS(1558), + [anon_sym_DOT_DOT] = ACTIONS(1558), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1556), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1556), + [anon_sym_COMMA] = ACTIONS(1556), + [anon_sym_COLON_COLON] = ACTIONS(1556), + [anon_sym_POUND] = ACTIONS(1556), + [anon_sym_as] = ACTIONS(1558), + [anon_sym_const] = ACTIONS(1558), + [anon_sym_default] = ACTIONS(1558), + [anon_sym_gen] = ACTIONS(1558), + [anon_sym_union] = ACTIONS(1558), + [anon_sym_ref] = ACTIONS(1558), + [sym_mutable_specifier] = ACTIONS(1558), + [sym_integer_literal] = ACTIONS(1556), + [aux_sym_string_literal_token1] = ACTIONS(1556), + [sym_char_literal] = ACTIONS(1556), + [anon_sym_true] = ACTIONS(1558), + [anon_sym_false] = ACTIONS(1558), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1558), + [sym_super] = ACTIONS(1558), + [sym_crate] = ACTIONS(1558), + [sym_metavariable] = ACTIONS(1556), + [sym__raw_string_literal_start] = ACTIONS(1556), + [sym_float_literal] = ACTIONS(1556), }, [STATE(494)] = { [sym_line_comment] = STATE(494), [sym_block_comment] = STATE(494), - [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(1466), + [anon_sym_LPAREN] = ACTIONS(1464), + [anon_sym_LBRACK] = ACTIONS(1464), + [anon_sym_RBRACE] = ACTIONS(1464), + [anon_sym_PLUS] = ACTIONS(1466), + [anon_sym_STAR] = ACTIONS(1466), + [anon_sym_QMARK] = ACTIONS(1464), + [anon_sym_u8] = ACTIONS(1466), + [anon_sym_i8] = ACTIONS(1466), + [anon_sym_u16] = ACTIONS(1466), + [anon_sym_i16] = ACTIONS(1466), + [anon_sym_u32] = ACTIONS(1466), + [anon_sym_i32] = ACTIONS(1466), + [anon_sym_u64] = ACTIONS(1466), + [anon_sym_i64] = ACTIONS(1466), + [anon_sym_u128] = ACTIONS(1466), + [anon_sym_i128] = ACTIONS(1466), + [anon_sym_isize] = ACTIONS(1466), + [anon_sym_usize] = ACTIONS(1466), + [anon_sym_f32] = ACTIONS(1466), + [anon_sym_f64] = ACTIONS(1466), + [anon_sym_bool] = ACTIONS(1466), + [anon_sym_str] = ACTIONS(1466), + [anon_sym_char] = ACTIONS(1466), + [anon_sym_DASH] = ACTIONS(1466), + [anon_sym_SLASH] = ACTIONS(1466), + [anon_sym_PERCENT] = ACTIONS(1466), + [anon_sym_CARET] = ACTIONS(1466), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_PIPE] = ACTIONS(1466), + [anon_sym_AMP_AMP] = ACTIONS(1464), + [anon_sym_PIPE_PIPE] = ACTIONS(1464), + [anon_sym_LT_LT] = ACTIONS(1466), + [anon_sym_GT_GT] = ACTIONS(1466), + [anon_sym_PLUS_EQ] = ACTIONS(1464), + [anon_sym_DASH_EQ] = ACTIONS(1464), + [anon_sym_STAR_EQ] = ACTIONS(1464), + [anon_sym_SLASH_EQ] = ACTIONS(1464), + [anon_sym_PERCENT_EQ] = ACTIONS(1464), + [anon_sym_CARET_EQ] = ACTIONS(1464), + [anon_sym_AMP_EQ] = ACTIONS(1464), + [anon_sym_PIPE_EQ] = ACTIONS(1464), + [anon_sym_LT_LT_EQ] = ACTIONS(1464), + [anon_sym_GT_GT_EQ] = ACTIONS(1464), + [anon_sym_EQ] = ACTIONS(1466), + [anon_sym_EQ_EQ] = ACTIONS(1464), + [anon_sym_BANG_EQ] = ACTIONS(1464), + [anon_sym_GT] = ACTIONS(1466), + [anon_sym_LT] = ACTIONS(1466), + [anon_sym_GT_EQ] = ACTIONS(1464), + [anon_sym_LT_EQ] = ACTIONS(1464), + [anon_sym__] = ACTIONS(1466), + [anon_sym_DOT] = ACTIONS(1466), + [anon_sym_DOT_DOT] = ACTIONS(1466), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1464), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1464), + [anon_sym_COMMA] = ACTIONS(1464), + [anon_sym_COLON_COLON] = ACTIONS(1464), + [anon_sym_POUND] = ACTIONS(1464), + [anon_sym_as] = ACTIONS(1466), + [anon_sym_const] = ACTIONS(1466), + [anon_sym_default] = ACTIONS(1466), + [anon_sym_gen] = ACTIONS(1466), + [anon_sym_union] = ACTIONS(1466), + [anon_sym_ref] = ACTIONS(1466), + [sym_mutable_specifier] = ACTIONS(1466), + [sym_integer_literal] = ACTIONS(1464), + [aux_sym_string_literal_token1] = ACTIONS(1464), + [sym_char_literal] = ACTIONS(1464), + [anon_sym_true] = ACTIONS(1466), + [anon_sym_false] = ACTIONS(1466), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1466), + [sym_super] = ACTIONS(1466), + [sym_crate] = ACTIONS(1466), + [sym_metavariable] = ACTIONS(1464), + [sym__raw_string_literal_start] = ACTIONS(1464), + [sym_float_literal] = ACTIONS(1464), }, [STATE(495)] = { [sym_line_comment] = STATE(495), [sym_block_comment] = STATE(495), - [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(1470), + [anon_sym_LPAREN] = ACTIONS(1468), + [anon_sym_LBRACK] = ACTIONS(1468), + [anon_sym_RBRACE] = ACTIONS(1468), + [anon_sym_PLUS] = ACTIONS(1470), + [anon_sym_STAR] = ACTIONS(1470), + [anon_sym_QMARK] = ACTIONS(1468), + [anon_sym_u8] = ACTIONS(1470), + [anon_sym_i8] = ACTIONS(1470), + [anon_sym_u16] = ACTIONS(1470), + [anon_sym_i16] = ACTIONS(1470), + [anon_sym_u32] = ACTIONS(1470), + [anon_sym_i32] = ACTIONS(1470), + [anon_sym_u64] = ACTIONS(1470), + [anon_sym_i64] = ACTIONS(1470), + [anon_sym_u128] = ACTIONS(1470), + [anon_sym_i128] = ACTIONS(1470), + [anon_sym_isize] = ACTIONS(1470), + [anon_sym_usize] = ACTIONS(1470), + [anon_sym_f32] = ACTIONS(1470), + [anon_sym_f64] = ACTIONS(1470), + [anon_sym_bool] = ACTIONS(1470), + [anon_sym_str] = ACTIONS(1470), + [anon_sym_char] = ACTIONS(1470), + [anon_sym_DASH] = ACTIONS(1470), + [anon_sym_SLASH] = ACTIONS(1470), + [anon_sym_PERCENT] = ACTIONS(1470), + [anon_sym_CARET] = ACTIONS(1470), + [anon_sym_AMP] = ACTIONS(1470), + [anon_sym_PIPE] = ACTIONS(1470), + [anon_sym_AMP_AMP] = ACTIONS(1468), + [anon_sym_PIPE_PIPE] = ACTIONS(1468), + [anon_sym_LT_LT] = ACTIONS(1470), + [anon_sym_GT_GT] = ACTIONS(1470), + [anon_sym_PLUS_EQ] = ACTIONS(1468), + [anon_sym_DASH_EQ] = ACTIONS(1468), + [anon_sym_STAR_EQ] = ACTIONS(1468), + [anon_sym_SLASH_EQ] = ACTIONS(1468), + [anon_sym_PERCENT_EQ] = ACTIONS(1468), + [anon_sym_CARET_EQ] = ACTIONS(1468), + [anon_sym_AMP_EQ] = ACTIONS(1468), + [anon_sym_PIPE_EQ] = ACTIONS(1468), + [anon_sym_LT_LT_EQ] = ACTIONS(1468), + [anon_sym_GT_GT_EQ] = ACTIONS(1468), + [anon_sym_EQ] = ACTIONS(1470), + [anon_sym_EQ_EQ] = ACTIONS(1468), + [anon_sym_BANG_EQ] = ACTIONS(1468), + [anon_sym_GT] = ACTIONS(1470), + [anon_sym_LT] = ACTIONS(1470), + [anon_sym_GT_EQ] = ACTIONS(1468), + [anon_sym_LT_EQ] = ACTIONS(1468), + [anon_sym__] = ACTIONS(1470), + [anon_sym_DOT] = ACTIONS(1470), + [anon_sym_DOT_DOT] = ACTIONS(1470), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1468), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1468), + [anon_sym_COMMA] = ACTIONS(1468), + [anon_sym_COLON_COLON] = ACTIONS(1468), + [anon_sym_POUND] = ACTIONS(1468), + [anon_sym_as] = ACTIONS(1470), + [anon_sym_const] = ACTIONS(1470), + [anon_sym_default] = ACTIONS(1470), + [anon_sym_gen] = ACTIONS(1470), + [anon_sym_union] = ACTIONS(1470), + [anon_sym_ref] = ACTIONS(1470), + [sym_mutable_specifier] = ACTIONS(1470), + [sym_integer_literal] = ACTIONS(1468), + [aux_sym_string_literal_token1] = ACTIONS(1468), + [sym_char_literal] = ACTIONS(1468), + [anon_sym_true] = ACTIONS(1470), + [anon_sym_false] = ACTIONS(1470), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1470), + [sym_super] = ACTIONS(1470), + [sym_crate] = ACTIONS(1470), + [sym_metavariable] = ACTIONS(1468), + [sym__raw_string_literal_start] = ACTIONS(1468), + [sym_float_literal] = ACTIONS(1468), }, [STATE(496)] = { [sym_line_comment] = STATE(496), [sym_block_comment] = STATE(496), - [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(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(497)] = { - [sym_attribute_item] = STATE(1145), - [sym_inner_attribute_item] = STATE(1145), - [sym_bracketed_type] = STATE(3695), - [sym_generic_type] = STATE(3711), - [sym_generic_type_with_turbofish] = STATE(3416), - [sym_macro_invocation] = STATE(2883), - [sym_scoped_identifier] = STATE(2241), - [sym_scoped_type_identifier] = STATE(3110), - [sym_match_arm] = STATE(1146), - [sym_match_pattern] = STATE(3642), - [sym_const_block] = STATE(2883), - [sym__pattern] = STATE(2909), - [sym_generic_pattern] = STATE(2883), - [sym_tuple_pattern] = STATE(2883), - [sym_slice_pattern] = STATE(2883), - [sym_tuple_struct_pattern] = STATE(2883), - [sym_struct_pattern] = STATE(2883), - [sym_remaining_field_pattern] = STATE(2883), - [sym_mut_pattern] = STATE(2883), - [sym_range_pattern] = STATE(2883), - [sym_ref_pattern] = STATE(2883), - [sym_captured_pattern] = STATE(2883), - [sym_reference_pattern] = STATE(2883), - [sym_or_pattern] = STATE(2883), - [sym__literal_pattern] = STATE(2449), - [sym_negative_literal] = STATE(2408), - [sym_string_literal] = STATE(2408), - [sym_raw_string_literal] = STATE(2408), - [sym_boolean_literal] = STATE(2408), + [sym_bracketed_type] = STATE(3756), + [sym_generic_type] = STATE(3622), + [sym_generic_type_with_turbofish] = STATE(3514), + [sym_macro_invocation] = STATE(2197), + [sym_scoped_identifier] = STATE(2056), + [sym_scoped_type_identifier] = STATE(2926), + [sym_const_block] = STATE(2197), + [sym_closure_expression] = STATE(3087), + [sym_closure_parameters] = STATE(221), + [sym__pattern] = STATE(2812), + [sym_generic_pattern] = STATE(2197), + [sym_tuple_pattern] = STATE(2197), + [sym_slice_pattern] = STATE(2197), + [sym_tuple_struct_pattern] = STATE(2197), + [sym_struct_pattern] = STATE(2197), + [sym_remaining_field_pattern] = STATE(2197), + [sym_mut_pattern] = STATE(2197), + [sym_range_pattern] = STATE(2197), + [sym_ref_pattern] = STATE(2197), + [sym_captured_pattern] = STATE(2197), + [sym_reference_pattern] = STATE(2197), + [sym_or_pattern] = STATE(2197), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2129), + [sym_string_literal] = STATE(2129), + [sym_raw_string_literal] = STATE(2129), + [sym_boolean_literal] = STATE(2129), [sym_line_comment] = STATE(497), [sym_block_comment] = STATE(497), - [aux_sym_match_block_repeat1] = STATE(497), - [aux_sym_match_arm_repeat1] = STATE(644), - [sym_identifier] = ACTIONS(1761), - [anon_sym_LPAREN] = ACTIONS(1764), - [anon_sym_LBRACK] = ACTIONS(1767), - [anon_sym_u8] = ACTIONS(1770), - [anon_sym_i8] = ACTIONS(1770), - [anon_sym_u16] = ACTIONS(1770), - [anon_sym_i16] = ACTIONS(1770), - [anon_sym_u32] = ACTIONS(1770), - [anon_sym_i32] = ACTIONS(1770), - [anon_sym_u64] = ACTIONS(1770), - [anon_sym_i64] = ACTIONS(1770), - [anon_sym_u128] = ACTIONS(1770), - [anon_sym_i128] = ACTIONS(1770), - [anon_sym_isize] = ACTIONS(1770), - [anon_sym_usize] = ACTIONS(1770), - [anon_sym_f32] = ACTIONS(1770), - [anon_sym_f64] = ACTIONS(1770), - [anon_sym_bool] = ACTIONS(1770), - [anon_sym_str] = ACTIONS(1770), - [anon_sym_char] = ACTIONS(1770), - [anon_sym_DASH] = ACTIONS(1773), - [anon_sym_AMP] = ACTIONS(1776), - [anon_sym_PIPE] = ACTIONS(1779), - [anon_sym_LT] = ACTIONS(1782), - [anon_sym__] = ACTIONS(1785), - [anon_sym_DOT_DOT] = ACTIONS(1788), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1791), - [anon_sym_COLON_COLON] = ACTIONS(1794), - [anon_sym_POUND] = ACTIONS(1797), - [anon_sym_const] = ACTIONS(1800), - [anon_sym_default] = ACTIONS(1803), - [anon_sym_gen] = ACTIONS(1803), - [anon_sym_union] = ACTIONS(1803), - [anon_sym_ref] = ACTIONS(1806), - [sym_mutable_specifier] = ACTIONS(1809), - [sym_integer_literal] = ACTIONS(1812), - [aux_sym_string_literal_token1] = ACTIONS(1815), - [sym_char_literal] = ACTIONS(1812), - [anon_sym_true] = ACTIONS(1818), - [anon_sym_false] = ACTIONS(1818), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1821), - [sym_super] = ACTIONS(1821), - [sym_crate] = ACTIONS(1821), - [sym_metavariable] = ACTIONS(1824), - [sym__raw_string_literal_start] = ACTIONS(1827), - [sym_float_literal] = ACTIONS(1812), + [sym_identifier] = ACTIONS(1730), + [anon_sym_LPAREN] = ACTIONS(1732), + [anon_sym_RPAREN] = ACTIONS(1764), + [anon_sym_LBRACK] = ACTIONS(1736), + [anon_sym_u8] = ACTIONS(1738), + [anon_sym_i8] = ACTIONS(1738), + [anon_sym_u16] = ACTIONS(1738), + [anon_sym_i16] = ACTIONS(1738), + [anon_sym_u32] = ACTIONS(1738), + [anon_sym_i32] = ACTIONS(1738), + [anon_sym_u64] = ACTIONS(1738), + [anon_sym_i64] = ACTIONS(1738), + [anon_sym_u128] = ACTIONS(1738), + [anon_sym_i128] = ACTIONS(1738), + [anon_sym_isize] = ACTIONS(1738), + [anon_sym_usize] = ACTIONS(1738), + [anon_sym_f32] = ACTIONS(1738), + [anon_sym_f64] = ACTIONS(1738), + [anon_sym_bool] = ACTIONS(1738), + [anon_sym_str] = ACTIONS(1738), + [anon_sym_char] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1064), + [anon_sym_AMP] = ACTIONS(1740), + [anon_sym_PIPE] = ACTIONS(1390), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1392), + [anon_sym_DOT_DOT] = ACTIONS(1074), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1078), + [anon_sym_COMMA] = ACTIONS(1394), + [anon_sym_COLON_COLON] = ACTIONS(1744), + [anon_sym_async] = ACTIONS(1746), + [anon_sym_const] = ACTIONS(1748), + [anon_sym_default] = ACTIONS(1750), + [anon_sym_gen] = ACTIONS(1750), + [anon_sym_static] = ACTIONS(1398), + [anon_sym_union] = ACTIONS(1750), + [anon_sym_ref] = ACTIONS(1106), + [sym_mutable_specifier] = ACTIONS(1400), + [anon_sym_move] = ACTIONS(1402), + [sym_integer_literal] = ACTIONS(1112), + [aux_sym_string_literal_token1] = ACTIONS(1114), + [sym_char_literal] = ACTIONS(1112), + [anon_sym_true] = ACTIONS(1116), + [anon_sym_false] = ACTIONS(1116), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1752), + [sym_super] = ACTIONS(1752), + [sym_crate] = ACTIONS(1752), + [sym_metavariable] = ACTIONS(1754), + [sym__raw_string_literal_start] = ACTIONS(1124), + [sym_float_literal] = ACTIONS(1112), }, [STATE(498)] = { [sym_line_comment] = STATE(498), [sym_block_comment] = STATE(498), - [sym_identifier] = ACTIONS(1541), - [anon_sym_LPAREN] = ACTIONS(1539), - [anon_sym_LBRACK] = ACTIONS(1539), - [anon_sym_RBRACE] = ACTIONS(1539), - [anon_sym_PLUS] = ACTIONS(1541), - [anon_sym_STAR] = ACTIONS(1541), - [anon_sym_QMARK] = ACTIONS(1539), - [anon_sym_u8] = ACTIONS(1541), - [anon_sym_i8] = ACTIONS(1541), - [anon_sym_u16] = ACTIONS(1541), - [anon_sym_i16] = ACTIONS(1541), - [anon_sym_u32] = ACTIONS(1541), - [anon_sym_i32] = ACTIONS(1541), - [anon_sym_u64] = ACTIONS(1541), - [anon_sym_i64] = ACTIONS(1541), - [anon_sym_u128] = ACTIONS(1541), - [anon_sym_i128] = ACTIONS(1541), - [anon_sym_isize] = ACTIONS(1541), - [anon_sym_usize] = ACTIONS(1541), - [anon_sym_f32] = ACTIONS(1541), - [anon_sym_f64] = ACTIONS(1541), - [anon_sym_bool] = ACTIONS(1541), - [anon_sym_str] = ACTIONS(1541), - [anon_sym_char] = ACTIONS(1541), - [anon_sym_DASH] = ACTIONS(1541), - [anon_sym_SLASH] = ACTIONS(1541), - [anon_sym_PERCENT] = ACTIONS(1541), - [anon_sym_CARET] = ACTIONS(1541), - [anon_sym_AMP] = ACTIONS(1541), - [anon_sym_PIPE] = ACTIONS(1541), - [anon_sym_AMP_AMP] = ACTIONS(1539), - [anon_sym_PIPE_PIPE] = ACTIONS(1539), - [anon_sym_LT_LT] = ACTIONS(1541), - [anon_sym_GT_GT] = ACTIONS(1541), - [anon_sym_PLUS_EQ] = ACTIONS(1539), - [anon_sym_DASH_EQ] = ACTIONS(1539), - [anon_sym_STAR_EQ] = ACTIONS(1539), - [anon_sym_SLASH_EQ] = ACTIONS(1539), - [anon_sym_PERCENT_EQ] = ACTIONS(1539), - [anon_sym_CARET_EQ] = ACTIONS(1539), - [anon_sym_AMP_EQ] = ACTIONS(1539), - [anon_sym_PIPE_EQ] = ACTIONS(1539), - [anon_sym_LT_LT_EQ] = ACTIONS(1539), - [anon_sym_GT_GT_EQ] = ACTIONS(1539), - [anon_sym_EQ] = ACTIONS(1541), - [anon_sym_EQ_EQ] = ACTIONS(1539), - [anon_sym_BANG_EQ] = ACTIONS(1539), - [anon_sym_GT] = ACTIONS(1541), - [anon_sym_LT] = ACTIONS(1541), - [anon_sym_GT_EQ] = ACTIONS(1539), - [anon_sym_LT_EQ] = ACTIONS(1539), - [anon_sym__] = ACTIONS(1541), - [anon_sym_DOT] = ACTIONS(1541), - [anon_sym_DOT_DOT] = ACTIONS(1541), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1539), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1539), - [anon_sym_COMMA] = ACTIONS(1539), - [anon_sym_COLON_COLON] = ACTIONS(1539), - [anon_sym_POUND] = ACTIONS(1539), - [anon_sym_as] = ACTIONS(1541), - [anon_sym_const] = ACTIONS(1541), - [anon_sym_default] = ACTIONS(1541), - [anon_sym_gen] = ACTIONS(1541), - [anon_sym_union] = ACTIONS(1541), - [anon_sym_ref] = ACTIONS(1541), - [sym_mutable_specifier] = ACTIONS(1541), - [sym_integer_literal] = ACTIONS(1539), - [aux_sym_string_literal_token1] = ACTIONS(1539), - [sym_char_literal] = ACTIONS(1539), - [anon_sym_true] = ACTIONS(1541), - [anon_sym_false] = ACTIONS(1541), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1541), - [sym_super] = ACTIONS(1541), - [sym_crate] = ACTIONS(1541), - [sym_metavariable] = ACTIONS(1539), - [sym__raw_string_literal_start] = ACTIONS(1539), - [sym_float_literal] = ACTIONS(1539), + [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(499)] = { - [sym_bracketed_type] = STATE(3674), - [sym_generic_type] = STATE(3711), - [sym_generic_type_with_turbofish] = STATE(3231), - [sym_macro_invocation] = STATE(2221), - [sym_scoped_identifier] = STATE(2035), - [sym_scoped_type_identifier] = STATE(3055), - [sym_const_block] = STATE(2221), - [sym_closure_expression] = STATE(3249), - [sym_closure_parameters] = STATE(217), - [sym__pattern] = STATE(2952), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), + [sym_attribute_item] = STATE(1423), + [sym_inner_attribute_item] = STATE(1423), + [sym_bracketed_type] = STATE(3730), + [sym_generic_type] = STATE(3622), + [sym_generic_type_with_turbofish] = STATE(3423), + [sym_macro_invocation] = STATE(3092), + [sym_scoped_identifier] = STATE(2268), + [sym_scoped_type_identifier] = STATE(3118), + [sym_match_arm] = STATE(1424), + [sym_match_pattern] = STATE(3777), + [sym_const_block] = STATE(3092), + [sym__pattern] = STATE(3027), + [sym_generic_pattern] = STATE(3092), + [sym_tuple_pattern] = STATE(3092), + [sym_slice_pattern] = STATE(3092), + [sym_tuple_struct_pattern] = STATE(3092), + [sym_struct_pattern] = STATE(3092), + [sym_remaining_field_pattern] = STATE(3092), + [sym_mut_pattern] = STATE(3092), + [sym_range_pattern] = STATE(3092), + [sym_ref_pattern] = STATE(3092), + [sym_captured_pattern] = STATE(3092), + [sym_reference_pattern] = STATE(3092), + [sym_or_pattern] = STATE(3092), + [sym__literal_pattern] = STATE(2439), + [sym_negative_literal] = STATE(2421), + [sym_string_literal] = STATE(2421), + [sym_raw_string_literal] = STATE(2421), + [sym_boolean_literal] = STATE(2421), [sym_line_comment] = STATE(499), [sym_block_comment] = STATE(499), - [sym_identifier] = ACTIONS(1725), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_RPAREN] = ACTIONS(1830), - [anon_sym_LBRACK] = ACTIONS(1731), - [anon_sym_u8] = ACTIONS(1733), - [anon_sym_i8] = ACTIONS(1733), - [anon_sym_u16] = ACTIONS(1733), - [anon_sym_i16] = ACTIONS(1733), - [anon_sym_u32] = ACTIONS(1733), - [anon_sym_i32] = ACTIONS(1733), - [anon_sym_u64] = ACTIONS(1733), - [anon_sym_i64] = ACTIONS(1733), - [anon_sym_u128] = ACTIONS(1733), - [anon_sym_i128] = ACTIONS(1733), - [anon_sym_isize] = ACTIONS(1733), - [anon_sym_usize] = ACTIONS(1733), - [anon_sym_f32] = ACTIONS(1733), - [anon_sym_f64] = ACTIONS(1733), - [anon_sym_bool] = ACTIONS(1733), - [anon_sym_str] = ACTIONS(1733), - [anon_sym_char] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_AMP] = ACTIONS(1735), - [anon_sym_PIPE] = ACTIONS(1415), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1417), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COLON_COLON] = ACTIONS(1739), - [anon_sym_async] = ACTIONS(1741), - [anon_sym_const] = ACTIONS(1743), - [anon_sym_default] = ACTIONS(1745), - [anon_sym_gen] = ACTIONS(1745), - [anon_sym_static] = ACTIONS(1423), - [anon_sym_union] = ACTIONS(1745), - [anon_sym_ref] = ACTIONS(1159), - [sym_mutable_specifier] = ACTIONS(1425), - [anon_sym_move] = ACTIONS(1427), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1747), - [sym_super] = ACTIONS(1747), - [sym_crate] = ACTIONS(1747), - [sym_metavariable] = ACTIONS(1749), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), + [aux_sym_match_block_repeat1] = STATE(499), + [aux_sym_match_arm_repeat1] = STATE(791), + [sym_identifier] = ACTIONS(1766), + [anon_sym_LPAREN] = ACTIONS(1769), + [anon_sym_LBRACK] = ACTIONS(1772), + [anon_sym_u8] = ACTIONS(1775), + [anon_sym_i8] = ACTIONS(1775), + [anon_sym_u16] = ACTIONS(1775), + [anon_sym_i16] = ACTIONS(1775), + [anon_sym_u32] = ACTIONS(1775), + [anon_sym_i32] = ACTIONS(1775), + [anon_sym_u64] = ACTIONS(1775), + [anon_sym_i64] = ACTIONS(1775), + [anon_sym_u128] = ACTIONS(1775), + [anon_sym_i128] = ACTIONS(1775), + [anon_sym_isize] = ACTIONS(1775), + [anon_sym_usize] = ACTIONS(1775), + [anon_sym_f32] = ACTIONS(1775), + [anon_sym_f64] = ACTIONS(1775), + [anon_sym_bool] = ACTIONS(1775), + [anon_sym_str] = ACTIONS(1775), + [anon_sym_char] = ACTIONS(1775), + [anon_sym_DASH] = ACTIONS(1778), + [anon_sym_AMP] = ACTIONS(1781), + [anon_sym_PIPE] = ACTIONS(1784), + [anon_sym_LT] = ACTIONS(1787), + [anon_sym__] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(1793), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1799), + [anon_sym_POUND] = ACTIONS(1802), + [anon_sym_const] = ACTIONS(1805), + [anon_sym_default] = ACTIONS(1808), + [anon_sym_gen] = ACTIONS(1808), + [anon_sym_union] = ACTIONS(1808), + [anon_sym_ref] = ACTIONS(1811), + [sym_mutable_specifier] = ACTIONS(1814), + [sym_integer_literal] = ACTIONS(1817), + [aux_sym_string_literal_token1] = ACTIONS(1820), + [sym_char_literal] = ACTIONS(1817), + [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(1826), + [sym_super] = ACTIONS(1826), + [sym_crate] = ACTIONS(1826), + [sym_metavariable] = ACTIONS(1829), + [sym__raw_string_literal_start] = ACTIONS(1832), + [sym_float_literal] = ACTIONS(1817), }, [STATE(500)] = { - [sym_bracketed_type] = STATE(3674), - [sym_generic_type] = STATE(3711), - [sym_generic_type_with_turbofish] = STATE(3231), - [sym_macro_invocation] = STATE(2221), - [sym_scoped_identifier] = STATE(2035), - [sym_scoped_type_identifier] = STATE(3055), - [sym_const_block] = STATE(2221), - [sym_closure_expression] = STATE(3249), - [sym_closure_parameters] = STATE(217), - [sym__pattern] = STATE(2952), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), [sym_line_comment] = STATE(500), [sym_block_comment] = STATE(500), - [sym_identifier] = ACTIONS(1725), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_RPAREN] = ACTIONS(1832), - [anon_sym_LBRACK] = ACTIONS(1731), - [anon_sym_u8] = ACTIONS(1733), - [anon_sym_i8] = ACTIONS(1733), - [anon_sym_u16] = ACTIONS(1733), - [anon_sym_i16] = ACTIONS(1733), - [anon_sym_u32] = ACTIONS(1733), - [anon_sym_i32] = ACTIONS(1733), - [anon_sym_u64] = ACTIONS(1733), - [anon_sym_i64] = ACTIONS(1733), - [anon_sym_u128] = ACTIONS(1733), - [anon_sym_i128] = ACTIONS(1733), - [anon_sym_isize] = ACTIONS(1733), - [anon_sym_usize] = ACTIONS(1733), - [anon_sym_f32] = ACTIONS(1733), - [anon_sym_f64] = ACTIONS(1733), - [anon_sym_bool] = ACTIONS(1733), - [anon_sym_str] = ACTIONS(1733), - [anon_sym_char] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_AMP] = ACTIONS(1735), - [anon_sym_PIPE] = ACTIONS(1415), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1417), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COLON_COLON] = ACTIONS(1739), - [anon_sym_async] = ACTIONS(1741), - [anon_sym_const] = ACTIONS(1743), - [anon_sym_default] = ACTIONS(1745), - [anon_sym_gen] = ACTIONS(1745), - [anon_sym_static] = ACTIONS(1423), - [anon_sym_union] = ACTIONS(1745), - [anon_sym_ref] = ACTIONS(1159), - [sym_mutable_specifier] = ACTIONS(1425), - [anon_sym_move] = ACTIONS(1427), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1747), - [sym_super] = ACTIONS(1747), - [sym_crate] = ACTIONS(1747), - [sym_metavariable] = ACTIONS(1749), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), + [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(501)] = { - [sym_bracketed_type] = STATE(3674), - [sym_generic_type] = STATE(3711), - [sym_generic_type_with_turbofish] = STATE(3231), - [sym_macro_invocation] = STATE(2221), - [sym_scoped_identifier] = STATE(2035), - [sym_scoped_type_identifier] = STATE(3055), - [sym_const_block] = STATE(2221), - [sym_closure_expression] = STATE(3249), - [sym_closure_parameters] = STATE(217), - [sym__pattern] = STATE(2952), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), [sym_line_comment] = STATE(501), [sym_block_comment] = STATE(501), - [sym_identifier] = ACTIONS(1725), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_RPAREN] = ACTIONS(1834), - [anon_sym_LBRACK] = ACTIONS(1731), - [anon_sym_u8] = ACTIONS(1733), - [anon_sym_i8] = ACTIONS(1733), - [anon_sym_u16] = ACTIONS(1733), - [anon_sym_i16] = ACTIONS(1733), - [anon_sym_u32] = ACTIONS(1733), - [anon_sym_i32] = ACTIONS(1733), - [anon_sym_u64] = ACTIONS(1733), - [anon_sym_i64] = ACTIONS(1733), - [anon_sym_u128] = ACTIONS(1733), - [anon_sym_i128] = ACTIONS(1733), - [anon_sym_isize] = ACTIONS(1733), - [anon_sym_usize] = ACTIONS(1733), - [anon_sym_f32] = ACTIONS(1733), - [anon_sym_f64] = ACTIONS(1733), - [anon_sym_bool] = ACTIONS(1733), - [anon_sym_str] = ACTIONS(1733), - [anon_sym_char] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_AMP] = ACTIONS(1735), - [anon_sym_PIPE] = ACTIONS(1415), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1417), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COLON_COLON] = ACTIONS(1739), - [anon_sym_async] = ACTIONS(1741), - [anon_sym_const] = ACTIONS(1743), - [anon_sym_default] = ACTIONS(1745), - [anon_sym_gen] = ACTIONS(1745), - [anon_sym_static] = ACTIONS(1423), - [anon_sym_union] = ACTIONS(1745), - [anon_sym_ref] = ACTIONS(1159), - [sym_mutable_specifier] = ACTIONS(1425), - [anon_sym_move] = ACTIONS(1427), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1747), - [sym_super] = ACTIONS(1747), - [sym_crate] = ACTIONS(1747), - [sym_metavariable] = ACTIONS(1749), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), + [ts_builtin_sym_end] = ACTIONS(1442), + [sym_identifier] = ACTIONS(1444), + [anon_sym_SEMI] = ACTIONS(1442), + [anon_sym_macro_rules_BANG] = ACTIONS(1442), + [anon_sym_LPAREN] = ACTIONS(1442), + [anon_sym_LBRACK] = ACTIONS(1442), + [anon_sym_LBRACE] = ACTIONS(1442), + [anon_sym_RBRACE] = ACTIONS(1442), + [anon_sym_STAR] = ACTIONS(1442), + [anon_sym_u8] = ACTIONS(1444), + [anon_sym_i8] = ACTIONS(1444), + [anon_sym_u16] = ACTIONS(1444), + [anon_sym_i16] = ACTIONS(1444), + [anon_sym_u32] = ACTIONS(1444), + [anon_sym_i32] = ACTIONS(1444), + [anon_sym_u64] = ACTIONS(1444), + [anon_sym_i64] = ACTIONS(1444), + [anon_sym_u128] = ACTIONS(1444), + [anon_sym_i128] = ACTIONS(1444), + [anon_sym_isize] = ACTIONS(1444), + [anon_sym_usize] = ACTIONS(1444), + [anon_sym_f32] = ACTIONS(1444), + [anon_sym_f64] = ACTIONS(1444), + [anon_sym_bool] = ACTIONS(1444), + [anon_sym_str] = ACTIONS(1444), + [anon_sym_char] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1442), + [anon_sym_BANG] = ACTIONS(1442), + [anon_sym_AMP] = ACTIONS(1442), + [anon_sym_PIPE] = ACTIONS(1442), + [anon_sym_LT] = ACTIONS(1442), + [anon_sym_DOT_DOT] = ACTIONS(1442), + [anon_sym_COLON_COLON] = ACTIONS(1442), + [anon_sym_POUND] = ACTIONS(1442), + [anon_sym_SQUOTE] = ACTIONS(1444), + [anon_sym_async] = ACTIONS(1444), + [anon_sym_break] = ACTIONS(1444), + [anon_sym_const] = ACTIONS(1444), + [anon_sym_continue] = ACTIONS(1444), + [anon_sym_default] = ACTIONS(1444), + [anon_sym_enum] = ACTIONS(1444), + [anon_sym_fn] = ACTIONS(1444), + [anon_sym_for] = ACTIONS(1444), + [anon_sym_gen] = ACTIONS(1444), + [anon_sym_if] = ACTIONS(1444), + [anon_sym_impl] = ACTIONS(1444), + [anon_sym_let] = ACTIONS(1444), + [anon_sym_loop] = ACTIONS(1444), + [anon_sym_match] = ACTIONS(1444), + [anon_sym_mod] = ACTIONS(1444), + [anon_sym_pub] = ACTIONS(1444), + [anon_sym_return] = ACTIONS(1444), + [anon_sym_static] = ACTIONS(1444), + [anon_sym_struct] = ACTIONS(1444), + [anon_sym_trait] = ACTIONS(1444), + [anon_sym_type] = ACTIONS(1444), + [anon_sym_union] = ACTIONS(1444), + [anon_sym_unsafe] = ACTIONS(1444), + [anon_sym_use] = ACTIONS(1444), + [anon_sym_while] = ACTIONS(1444), + [anon_sym_extern] = ACTIONS(1444), + [anon_sym_safe] = ACTIONS(1444), + [anon_sym_yield] = ACTIONS(1444), + [anon_sym_move] = ACTIONS(1444), + [anon_sym_try] = ACTIONS(1444), + [sym_integer_literal] = ACTIONS(1442), + [aux_sym_string_literal_token1] = ACTIONS(1442), + [sym_char_literal] = ACTIONS(1442), + [anon_sym_true] = ACTIONS(1444), + [anon_sym_false] = ACTIONS(1444), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1444), + [sym_super] = ACTIONS(1444), + [sym_crate] = ACTIONS(1444), + [sym_metavariable] = ACTIONS(1442), + [sym__raw_string_literal_start] = ACTIONS(1442), + [sym_float_literal] = ACTIONS(1442), }, [STATE(502)] = { - [sym_bracketed_type] = STATE(3674), - [sym_generic_type] = STATE(3711), - [sym_generic_type_with_turbofish] = STATE(3231), - [sym_macro_invocation] = STATE(2221), - [sym_scoped_identifier] = STATE(2035), - [sym_scoped_type_identifier] = STATE(3055), - [sym_const_block] = STATE(2221), - [sym_closure_expression] = STATE(3249), - [sym_closure_parameters] = STATE(217), - [sym__pattern] = STATE(2952), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), [sym_line_comment] = STATE(502), [sym_block_comment] = STATE(502), - [sym_identifier] = ACTIONS(1725), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_RPAREN] = ACTIONS(1836), - [anon_sym_LBRACK] = ACTIONS(1731), - [anon_sym_u8] = ACTIONS(1733), - [anon_sym_i8] = ACTIONS(1733), - [anon_sym_u16] = ACTIONS(1733), - [anon_sym_i16] = ACTIONS(1733), - [anon_sym_u32] = ACTIONS(1733), - [anon_sym_i32] = ACTIONS(1733), - [anon_sym_u64] = ACTIONS(1733), - [anon_sym_i64] = ACTIONS(1733), - [anon_sym_u128] = ACTIONS(1733), - [anon_sym_i128] = ACTIONS(1733), - [anon_sym_isize] = ACTIONS(1733), - [anon_sym_usize] = ACTIONS(1733), - [anon_sym_f32] = ACTIONS(1733), - [anon_sym_f64] = ACTIONS(1733), - [anon_sym_bool] = ACTIONS(1733), - [anon_sym_str] = ACTIONS(1733), - [anon_sym_char] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_AMP] = ACTIONS(1735), - [anon_sym_PIPE] = ACTIONS(1415), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1417), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COLON_COLON] = ACTIONS(1739), - [anon_sym_async] = ACTIONS(1741), - [anon_sym_const] = ACTIONS(1743), - [anon_sym_default] = ACTIONS(1745), - [anon_sym_gen] = ACTIONS(1745), - [anon_sym_static] = ACTIONS(1423), - [anon_sym_union] = ACTIONS(1745), - [anon_sym_ref] = ACTIONS(1159), - [sym_mutable_specifier] = ACTIONS(1425), - [anon_sym_move] = ACTIONS(1427), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1747), - [sym_super] = ACTIONS(1747), - [sym_crate] = ACTIONS(1747), - [sym_metavariable] = ACTIONS(1749), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), + [ts_builtin_sym_end] = ACTIONS(1835), + [sym_identifier] = ACTIONS(1837), + [anon_sym_SEMI] = ACTIONS(1835), + [anon_sym_macro_rules_BANG] = ACTIONS(1835), + [anon_sym_LPAREN] = ACTIONS(1835), + [anon_sym_LBRACK] = ACTIONS(1835), + [anon_sym_LBRACE] = ACTIONS(1835), + [anon_sym_RBRACE] = ACTIONS(1835), + [anon_sym_STAR] = ACTIONS(1835), + [anon_sym_u8] = ACTIONS(1837), + [anon_sym_i8] = ACTIONS(1837), + [anon_sym_u16] = ACTIONS(1837), + [anon_sym_i16] = ACTIONS(1837), + [anon_sym_u32] = ACTIONS(1837), + [anon_sym_i32] = ACTIONS(1837), + [anon_sym_u64] = ACTIONS(1837), + [anon_sym_i64] = ACTIONS(1837), + [anon_sym_u128] = ACTIONS(1837), + [anon_sym_i128] = ACTIONS(1837), + [anon_sym_isize] = ACTIONS(1837), + [anon_sym_usize] = ACTIONS(1837), + [anon_sym_f32] = ACTIONS(1837), + [anon_sym_f64] = ACTIONS(1837), + [anon_sym_bool] = ACTIONS(1837), + [anon_sym_str] = ACTIONS(1837), + [anon_sym_char] = ACTIONS(1837), + [anon_sym_DASH] = ACTIONS(1835), + [anon_sym_BANG] = ACTIONS(1835), + [anon_sym_AMP] = ACTIONS(1835), + [anon_sym_PIPE] = ACTIONS(1835), + [anon_sym_LT] = ACTIONS(1835), + [anon_sym_DOT_DOT] = ACTIONS(1835), + [anon_sym_COLON_COLON] = ACTIONS(1835), + [anon_sym_POUND] = ACTIONS(1835), + [anon_sym_SQUOTE] = ACTIONS(1837), + [anon_sym_async] = ACTIONS(1837), + [anon_sym_break] = ACTIONS(1837), + [anon_sym_const] = ACTIONS(1837), + [anon_sym_continue] = ACTIONS(1837), + [anon_sym_default] = ACTIONS(1837), + [anon_sym_enum] = ACTIONS(1837), + [anon_sym_fn] = ACTIONS(1837), + [anon_sym_for] = ACTIONS(1837), + [anon_sym_gen] = ACTIONS(1837), + [anon_sym_if] = ACTIONS(1837), + [anon_sym_impl] = ACTIONS(1837), + [anon_sym_let] = ACTIONS(1837), + [anon_sym_loop] = ACTIONS(1837), + [anon_sym_match] = ACTIONS(1837), + [anon_sym_mod] = ACTIONS(1837), + [anon_sym_pub] = ACTIONS(1837), + [anon_sym_return] = ACTIONS(1837), + [anon_sym_static] = ACTIONS(1837), + [anon_sym_struct] = ACTIONS(1837), + [anon_sym_trait] = ACTIONS(1837), + [anon_sym_type] = ACTIONS(1837), + [anon_sym_union] = ACTIONS(1837), + [anon_sym_unsafe] = ACTIONS(1837), + [anon_sym_use] = ACTIONS(1837), + [anon_sym_while] = ACTIONS(1837), + [anon_sym_extern] = ACTIONS(1837), + [anon_sym_safe] = ACTIONS(1837), + [anon_sym_yield] = ACTIONS(1837), + [anon_sym_move] = ACTIONS(1837), + [anon_sym_try] = ACTIONS(1837), + [sym_integer_literal] = ACTIONS(1835), + [aux_sym_string_literal_token1] = ACTIONS(1835), + [sym_char_literal] = ACTIONS(1835), + [anon_sym_true] = ACTIONS(1837), + [anon_sym_false] = ACTIONS(1837), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1837), + [sym_super] = ACTIONS(1837), + [sym_crate] = ACTIONS(1837), + [sym_metavariable] = ACTIONS(1835), + [sym__raw_string_literal_start] = ACTIONS(1835), + [sym_float_literal] = ACTIONS(1835), }, [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(1839), + [sym_identifier] = ACTIONS(1841), + [anon_sym_SEMI] = ACTIONS(1839), + [anon_sym_macro_rules_BANG] = ACTIONS(1839), + [anon_sym_LPAREN] = ACTIONS(1839), + [anon_sym_LBRACK] = ACTIONS(1839), + [anon_sym_LBRACE] = ACTIONS(1839), + [anon_sym_RBRACE] = ACTIONS(1839), + [anon_sym_STAR] = ACTIONS(1839), + [anon_sym_u8] = ACTIONS(1841), + [anon_sym_i8] = ACTIONS(1841), + [anon_sym_u16] = ACTIONS(1841), + [anon_sym_i16] = ACTIONS(1841), + [anon_sym_u32] = ACTIONS(1841), + [anon_sym_i32] = ACTIONS(1841), + [anon_sym_u64] = ACTIONS(1841), + [anon_sym_i64] = ACTIONS(1841), + [anon_sym_u128] = ACTIONS(1841), + [anon_sym_i128] = ACTIONS(1841), + [anon_sym_isize] = ACTIONS(1841), + [anon_sym_usize] = ACTIONS(1841), + [anon_sym_f32] = ACTIONS(1841), + [anon_sym_f64] = ACTIONS(1841), + [anon_sym_bool] = ACTIONS(1841), + [anon_sym_str] = ACTIONS(1841), + [anon_sym_char] = ACTIONS(1841), + [anon_sym_DASH] = ACTIONS(1839), + [anon_sym_BANG] = ACTIONS(1839), + [anon_sym_AMP] = ACTIONS(1839), + [anon_sym_PIPE] = ACTIONS(1839), + [anon_sym_LT] = ACTIONS(1839), + [anon_sym_DOT_DOT] = ACTIONS(1839), + [anon_sym_COLON_COLON] = ACTIONS(1839), + [anon_sym_POUND] = ACTIONS(1839), + [anon_sym_SQUOTE] = ACTIONS(1841), + [anon_sym_async] = ACTIONS(1841), + [anon_sym_break] = ACTIONS(1841), + [anon_sym_const] = ACTIONS(1841), + [anon_sym_continue] = ACTIONS(1841), + [anon_sym_default] = ACTIONS(1841), + [anon_sym_enum] = ACTIONS(1841), + [anon_sym_fn] = ACTIONS(1841), + [anon_sym_for] = ACTIONS(1841), + [anon_sym_gen] = ACTIONS(1841), + [anon_sym_if] = ACTIONS(1841), + [anon_sym_impl] = ACTIONS(1841), + [anon_sym_let] = ACTIONS(1841), + [anon_sym_loop] = ACTIONS(1841), + [anon_sym_match] = ACTIONS(1841), + [anon_sym_mod] = ACTIONS(1841), + [anon_sym_pub] = ACTIONS(1841), + [anon_sym_return] = ACTIONS(1841), + [anon_sym_static] = ACTIONS(1841), + [anon_sym_struct] = ACTIONS(1841), + [anon_sym_trait] = ACTIONS(1841), + [anon_sym_type] = ACTIONS(1841), + [anon_sym_union] = ACTIONS(1841), + [anon_sym_unsafe] = ACTIONS(1841), + [anon_sym_use] = ACTIONS(1841), + [anon_sym_while] = ACTIONS(1841), + [anon_sym_extern] = ACTIONS(1841), + [anon_sym_safe] = ACTIONS(1841), + [anon_sym_yield] = ACTIONS(1841), + [anon_sym_move] = ACTIONS(1841), + [anon_sym_try] = ACTIONS(1841), + [sym_integer_literal] = ACTIONS(1839), + [aux_sym_string_literal_token1] = ACTIONS(1839), + [sym_char_literal] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1841), + [anon_sym_false] = ACTIONS(1841), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1841), + [sym_super] = ACTIONS(1841), + [sym_crate] = ACTIONS(1841), + [sym_metavariable] = ACTIONS(1839), + [sym__raw_string_literal_start] = ACTIONS(1839), + [sym_float_literal] = ACTIONS(1839), }, [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(1843), + [sym_identifier] = ACTIONS(1845), + [anon_sym_SEMI] = ACTIONS(1843), + [anon_sym_macro_rules_BANG] = ACTIONS(1843), + [anon_sym_LPAREN] = ACTIONS(1843), + [anon_sym_LBRACK] = ACTIONS(1843), + [anon_sym_LBRACE] = ACTIONS(1843), + [anon_sym_RBRACE] = ACTIONS(1843), + [anon_sym_STAR] = ACTIONS(1843), + [anon_sym_u8] = ACTIONS(1845), + [anon_sym_i8] = ACTIONS(1845), + [anon_sym_u16] = ACTIONS(1845), + [anon_sym_i16] = ACTIONS(1845), + [anon_sym_u32] = ACTIONS(1845), + [anon_sym_i32] = ACTIONS(1845), + [anon_sym_u64] = ACTIONS(1845), + [anon_sym_i64] = ACTIONS(1845), + [anon_sym_u128] = ACTIONS(1845), + [anon_sym_i128] = ACTIONS(1845), + [anon_sym_isize] = ACTIONS(1845), + [anon_sym_usize] = ACTIONS(1845), + [anon_sym_f32] = ACTIONS(1845), + [anon_sym_f64] = ACTIONS(1845), + [anon_sym_bool] = ACTIONS(1845), + [anon_sym_str] = ACTIONS(1845), + [anon_sym_char] = ACTIONS(1845), + [anon_sym_DASH] = ACTIONS(1843), + [anon_sym_BANG] = ACTIONS(1843), + [anon_sym_AMP] = ACTIONS(1843), + [anon_sym_PIPE] = ACTIONS(1843), + [anon_sym_LT] = ACTIONS(1843), + [anon_sym_DOT_DOT] = ACTIONS(1843), + [anon_sym_COLON_COLON] = ACTIONS(1843), + [anon_sym_POUND] = ACTIONS(1843), + [anon_sym_SQUOTE] = ACTIONS(1845), + [anon_sym_async] = ACTIONS(1845), + [anon_sym_break] = ACTIONS(1845), + [anon_sym_const] = ACTIONS(1845), + [anon_sym_continue] = ACTIONS(1845), + [anon_sym_default] = ACTIONS(1845), + [anon_sym_enum] = ACTIONS(1845), + [anon_sym_fn] = ACTIONS(1845), + [anon_sym_for] = ACTIONS(1845), + [anon_sym_gen] = ACTIONS(1845), + [anon_sym_if] = ACTIONS(1845), + [anon_sym_impl] = ACTIONS(1845), + [anon_sym_let] = ACTIONS(1845), + [anon_sym_loop] = ACTIONS(1845), + [anon_sym_match] = ACTIONS(1845), + [anon_sym_mod] = ACTIONS(1845), + [anon_sym_pub] = ACTIONS(1845), + [anon_sym_return] = ACTIONS(1845), + [anon_sym_static] = ACTIONS(1845), + [anon_sym_struct] = ACTIONS(1845), + [anon_sym_trait] = ACTIONS(1845), + [anon_sym_type] = ACTIONS(1845), + [anon_sym_union] = ACTIONS(1845), + [anon_sym_unsafe] = ACTIONS(1845), + [anon_sym_use] = ACTIONS(1845), + [anon_sym_while] = ACTIONS(1845), + [anon_sym_extern] = ACTIONS(1845), + [anon_sym_safe] = ACTIONS(1845), + [anon_sym_yield] = ACTIONS(1845), + [anon_sym_move] = ACTIONS(1845), + [anon_sym_try] = ACTIONS(1845), + [sym_integer_literal] = ACTIONS(1843), + [aux_sym_string_literal_token1] = ACTIONS(1843), + [sym_char_literal] = ACTIONS(1843), + [anon_sym_true] = ACTIONS(1845), + [anon_sym_false] = ACTIONS(1845), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1845), + [sym_super] = ACTIONS(1845), + [sym_crate] = ACTIONS(1845), + [sym_metavariable] = ACTIONS(1843), + [sym__raw_string_literal_start] = ACTIONS(1843), + [sym_float_literal] = ACTIONS(1843), }, [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(1847), + [sym_identifier] = ACTIONS(1849), + [anon_sym_SEMI] = ACTIONS(1847), + [anon_sym_macro_rules_BANG] = ACTIONS(1847), + [anon_sym_LPAREN] = ACTIONS(1847), + [anon_sym_LBRACK] = ACTIONS(1847), + [anon_sym_LBRACE] = ACTIONS(1847), + [anon_sym_RBRACE] = ACTIONS(1847), + [anon_sym_STAR] = ACTIONS(1847), + [anon_sym_u8] = ACTIONS(1849), + [anon_sym_i8] = ACTIONS(1849), + [anon_sym_u16] = ACTIONS(1849), + [anon_sym_i16] = ACTIONS(1849), + [anon_sym_u32] = ACTIONS(1849), + [anon_sym_i32] = ACTIONS(1849), + [anon_sym_u64] = ACTIONS(1849), + [anon_sym_i64] = ACTIONS(1849), + [anon_sym_u128] = ACTIONS(1849), + [anon_sym_i128] = ACTIONS(1849), + [anon_sym_isize] = ACTIONS(1849), + [anon_sym_usize] = ACTIONS(1849), + [anon_sym_f32] = ACTIONS(1849), + [anon_sym_f64] = ACTIONS(1849), + [anon_sym_bool] = ACTIONS(1849), + [anon_sym_str] = ACTIONS(1849), + [anon_sym_char] = ACTIONS(1849), + [anon_sym_DASH] = ACTIONS(1847), + [anon_sym_BANG] = ACTIONS(1847), + [anon_sym_AMP] = ACTIONS(1847), + [anon_sym_PIPE] = ACTIONS(1847), + [anon_sym_LT] = ACTIONS(1847), + [anon_sym_DOT_DOT] = ACTIONS(1847), + [anon_sym_COLON_COLON] = ACTIONS(1847), + [anon_sym_POUND] = ACTIONS(1847), + [anon_sym_SQUOTE] = ACTIONS(1849), + [anon_sym_async] = ACTIONS(1849), + [anon_sym_break] = ACTIONS(1849), + [anon_sym_const] = ACTIONS(1849), + [anon_sym_continue] = ACTIONS(1849), + [anon_sym_default] = ACTIONS(1849), + [anon_sym_enum] = ACTIONS(1849), + [anon_sym_fn] = ACTIONS(1849), + [anon_sym_for] = ACTIONS(1849), + [anon_sym_gen] = ACTIONS(1849), + [anon_sym_if] = ACTIONS(1849), + [anon_sym_impl] = ACTIONS(1849), + [anon_sym_let] = ACTIONS(1849), + [anon_sym_loop] = ACTIONS(1849), + [anon_sym_match] = ACTIONS(1849), + [anon_sym_mod] = ACTIONS(1849), + [anon_sym_pub] = ACTIONS(1849), + [anon_sym_return] = ACTIONS(1849), + [anon_sym_static] = ACTIONS(1849), + [anon_sym_struct] = ACTIONS(1849), + [anon_sym_trait] = ACTIONS(1849), + [anon_sym_type] = ACTIONS(1849), + [anon_sym_union] = ACTIONS(1849), + [anon_sym_unsafe] = ACTIONS(1849), + [anon_sym_use] = ACTIONS(1849), + [anon_sym_while] = ACTIONS(1849), + [anon_sym_extern] = ACTIONS(1849), + [anon_sym_safe] = ACTIONS(1849), + [anon_sym_yield] = ACTIONS(1849), + [anon_sym_move] = ACTIONS(1849), + [anon_sym_try] = ACTIONS(1849), + [sym_integer_literal] = ACTIONS(1847), + [aux_sym_string_literal_token1] = ACTIONS(1847), + [sym_char_literal] = ACTIONS(1847), + [anon_sym_true] = ACTIONS(1849), + [anon_sym_false] = ACTIONS(1849), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1849), + [sym_super] = ACTIONS(1849), + [sym_crate] = ACTIONS(1849), + [sym_metavariable] = ACTIONS(1847), + [sym__raw_string_literal_start] = ACTIONS(1847), + [sym_float_literal] = ACTIONS(1847), }, [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(1851), + [sym_identifier] = ACTIONS(1853), + [anon_sym_SEMI] = ACTIONS(1851), + [anon_sym_macro_rules_BANG] = ACTIONS(1851), + [anon_sym_LPAREN] = ACTIONS(1851), + [anon_sym_LBRACK] = ACTIONS(1851), + [anon_sym_LBRACE] = ACTIONS(1851), + [anon_sym_RBRACE] = ACTIONS(1851), + [anon_sym_STAR] = ACTIONS(1851), + [anon_sym_u8] = ACTIONS(1853), + [anon_sym_i8] = ACTIONS(1853), + [anon_sym_u16] = ACTIONS(1853), + [anon_sym_i16] = ACTIONS(1853), + [anon_sym_u32] = ACTIONS(1853), + [anon_sym_i32] = ACTIONS(1853), + [anon_sym_u64] = ACTIONS(1853), + [anon_sym_i64] = ACTIONS(1853), + [anon_sym_u128] = ACTIONS(1853), + [anon_sym_i128] = ACTIONS(1853), + [anon_sym_isize] = ACTIONS(1853), + [anon_sym_usize] = ACTIONS(1853), + [anon_sym_f32] = ACTIONS(1853), + [anon_sym_f64] = ACTIONS(1853), + [anon_sym_bool] = ACTIONS(1853), + [anon_sym_str] = ACTIONS(1853), + [anon_sym_char] = ACTIONS(1853), + [anon_sym_DASH] = ACTIONS(1851), + [anon_sym_BANG] = ACTIONS(1851), + [anon_sym_AMP] = ACTIONS(1851), + [anon_sym_PIPE] = ACTIONS(1851), + [anon_sym_LT] = ACTIONS(1851), + [anon_sym_DOT_DOT] = ACTIONS(1851), + [anon_sym_COLON_COLON] = ACTIONS(1851), + [anon_sym_POUND] = ACTIONS(1851), + [anon_sym_SQUOTE] = ACTIONS(1853), + [anon_sym_async] = ACTIONS(1853), + [anon_sym_break] = ACTIONS(1853), + [anon_sym_const] = ACTIONS(1853), + [anon_sym_continue] = ACTIONS(1853), + [anon_sym_default] = ACTIONS(1853), + [anon_sym_enum] = ACTIONS(1853), + [anon_sym_fn] = ACTIONS(1853), + [anon_sym_for] = ACTIONS(1853), + [anon_sym_gen] = ACTIONS(1853), + [anon_sym_if] = ACTIONS(1853), + [anon_sym_impl] = ACTIONS(1853), + [anon_sym_let] = ACTIONS(1853), + [anon_sym_loop] = ACTIONS(1853), + [anon_sym_match] = ACTIONS(1853), + [anon_sym_mod] = ACTIONS(1853), + [anon_sym_pub] = ACTIONS(1853), + [anon_sym_return] = ACTIONS(1853), + [anon_sym_static] = ACTIONS(1853), + [anon_sym_struct] = ACTIONS(1853), + [anon_sym_trait] = ACTIONS(1853), + [anon_sym_type] = ACTIONS(1853), + [anon_sym_union] = ACTIONS(1853), + [anon_sym_unsafe] = ACTIONS(1853), + [anon_sym_use] = ACTIONS(1853), + [anon_sym_while] = ACTIONS(1853), + [anon_sym_extern] = ACTIONS(1853), + [anon_sym_safe] = ACTIONS(1853), + [anon_sym_yield] = ACTIONS(1853), + [anon_sym_move] = ACTIONS(1853), + [anon_sym_try] = ACTIONS(1853), + [sym_integer_literal] = ACTIONS(1851), + [aux_sym_string_literal_token1] = ACTIONS(1851), + [sym_char_literal] = ACTIONS(1851), + [anon_sym_true] = ACTIONS(1853), + [anon_sym_false] = ACTIONS(1853), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1853), + [sym_super] = ACTIONS(1853), + [sym_crate] = ACTIONS(1853), + [sym_metavariable] = ACTIONS(1851), + [sym__raw_string_literal_start] = ACTIONS(1851), + [sym_float_literal] = ACTIONS(1851), }, [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(1855), + [sym_identifier] = ACTIONS(1857), + [anon_sym_SEMI] = ACTIONS(1855), + [anon_sym_macro_rules_BANG] = ACTIONS(1855), + [anon_sym_LPAREN] = ACTIONS(1855), + [anon_sym_LBRACK] = ACTIONS(1855), + [anon_sym_LBRACE] = ACTIONS(1855), + [anon_sym_RBRACE] = ACTIONS(1855), + [anon_sym_STAR] = ACTIONS(1855), + [anon_sym_u8] = ACTIONS(1857), + [anon_sym_i8] = ACTIONS(1857), + [anon_sym_u16] = ACTIONS(1857), + [anon_sym_i16] = ACTIONS(1857), + [anon_sym_u32] = ACTIONS(1857), + [anon_sym_i32] = ACTIONS(1857), + [anon_sym_u64] = ACTIONS(1857), + [anon_sym_i64] = ACTIONS(1857), + [anon_sym_u128] = ACTIONS(1857), + [anon_sym_i128] = ACTIONS(1857), + [anon_sym_isize] = ACTIONS(1857), + [anon_sym_usize] = ACTIONS(1857), + [anon_sym_f32] = ACTIONS(1857), + [anon_sym_f64] = ACTIONS(1857), + [anon_sym_bool] = ACTIONS(1857), + [anon_sym_str] = ACTIONS(1857), + [anon_sym_char] = ACTIONS(1857), + [anon_sym_DASH] = ACTIONS(1855), + [anon_sym_BANG] = ACTIONS(1855), + [anon_sym_AMP] = ACTIONS(1855), + [anon_sym_PIPE] = ACTIONS(1855), + [anon_sym_LT] = ACTIONS(1855), + [anon_sym_DOT_DOT] = ACTIONS(1855), + [anon_sym_COLON_COLON] = ACTIONS(1855), + [anon_sym_POUND] = ACTIONS(1855), + [anon_sym_SQUOTE] = ACTIONS(1857), + [anon_sym_async] = ACTIONS(1857), + [anon_sym_break] = ACTIONS(1857), + [anon_sym_const] = ACTIONS(1857), + [anon_sym_continue] = ACTIONS(1857), + [anon_sym_default] = ACTIONS(1857), + [anon_sym_enum] = ACTIONS(1857), + [anon_sym_fn] = ACTIONS(1857), + [anon_sym_for] = ACTIONS(1857), + [anon_sym_gen] = ACTIONS(1857), + [anon_sym_if] = ACTIONS(1857), + [anon_sym_impl] = ACTIONS(1857), + [anon_sym_let] = ACTIONS(1857), + [anon_sym_loop] = ACTIONS(1857), + [anon_sym_match] = ACTIONS(1857), + [anon_sym_mod] = ACTIONS(1857), + [anon_sym_pub] = ACTIONS(1857), + [anon_sym_return] = ACTIONS(1857), + [anon_sym_static] = ACTIONS(1857), + [anon_sym_struct] = ACTIONS(1857), + [anon_sym_trait] = ACTIONS(1857), + [anon_sym_type] = ACTIONS(1857), + [anon_sym_union] = ACTIONS(1857), + [anon_sym_unsafe] = ACTIONS(1857), + [anon_sym_use] = ACTIONS(1857), + [anon_sym_while] = ACTIONS(1857), + [anon_sym_extern] = ACTIONS(1857), + [anon_sym_safe] = ACTIONS(1857), + [anon_sym_yield] = ACTIONS(1857), + [anon_sym_move] = ACTIONS(1857), + [anon_sym_try] = ACTIONS(1857), + [sym_integer_literal] = ACTIONS(1855), + [aux_sym_string_literal_token1] = ACTIONS(1855), + [sym_char_literal] = ACTIONS(1855), + [anon_sym_true] = ACTIONS(1857), + [anon_sym_false] = ACTIONS(1857), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1857), + [sym_super] = ACTIONS(1857), + [sym_crate] = ACTIONS(1857), + [sym_metavariable] = ACTIONS(1855), + [sym__raw_string_literal_start] = ACTIONS(1855), + [sym_float_literal] = ACTIONS(1855), }, [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(1859), + [sym_identifier] = ACTIONS(1861), + [anon_sym_SEMI] = ACTIONS(1859), + [anon_sym_macro_rules_BANG] = ACTIONS(1859), + [anon_sym_LPAREN] = ACTIONS(1859), + [anon_sym_LBRACK] = ACTIONS(1859), + [anon_sym_LBRACE] = ACTIONS(1859), + [anon_sym_RBRACE] = ACTIONS(1859), + [anon_sym_STAR] = ACTIONS(1859), + [anon_sym_u8] = ACTIONS(1861), + [anon_sym_i8] = ACTIONS(1861), + [anon_sym_u16] = ACTIONS(1861), + [anon_sym_i16] = ACTIONS(1861), + [anon_sym_u32] = ACTIONS(1861), + [anon_sym_i32] = ACTIONS(1861), + [anon_sym_u64] = ACTIONS(1861), + [anon_sym_i64] = ACTIONS(1861), + [anon_sym_u128] = ACTIONS(1861), + [anon_sym_i128] = ACTIONS(1861), + [anon_sym_isize] = ACTIONS(1861), + [anon_sym_usize] = ACTIONS(1861), + [anon_sym_f32] = ACTIONS(1861), + [anon_sym_f64] = ACTIONS(1861), + [anon_sym_bool] = ACTIONS(1861), + [anon_sym_str] = ACTIONS(1861), + [anon_sym_char] = ACTIONS(1861), + [anon_sym_DASH] = ACTIONS(1859), + [anon_sym_BANG] = ACTIONS(1859), + [anon_sym_AMP] = ACTIONS(1859), + [anon_sym_PIPE] = ACTIONS(1859), + [anon_sym_LT] = ACTIONS(1859), + [anon_sym_DOT_DOT] = ACTIONS(1859), + [anon_sym_COLON_COLON] = ACTIONS(1859), + [anon_sym_POUND] = ACTIONS(1859), + [anon_sym_SQUOTE] = ACTIONS(1861), + [anon_sym_async] = ACTIONS(1861), + [anon_sym_break] = ACTIONS(1861), + [anon_sym_const] = ACTIONS(1861), + [anon_sym_continue] = ACTIONS(1861), + [anon_sym_default] = ACTIONS(1861), + [anon_sym_enum] = ACTIONS(1861), + [anon_sym_fn] = ACTIONS(1861), + [anon_sym_for] = ACTIONS(1861), + [anon_sym_gen] = ACTIONS(1861), + [anon_sym_if] = ACTIONS(1861), + [anon_sym_impl] = ACTIONS(1861), + [anon_sym_let] = ACTIONS(1861), + [anon_sym_loop] = ACTIONS(1861), + [anon_sym_match] = ACTIONS(1861), + [anon_sym_mod] = ACTIONS(1861), + [anon_sym_pub] = ACTIONS(1861), + [anon_sym_return] = ACTIONS(1861), + [anon_sym_static] = ACTIONS(1861), + [anon_sym_struct] = ACTIONS(1861), + [anon_sym_trait] = ACTIONS(1861), + [anon_sym_type] = ACTIONS(1861), + [anon_sym_union] = ACTIONS(1861), + [anon_sym_unsafe] = ACTIONS(1861), + [anon_sym_use] = ACTIONS(1861), + [anon_sym_while] = ACTIONS(1861), + [anon_sym_extern] = ACTIONS(1861), + [anon_sym_safe] = ACTIONS(1861), + [anon_sym_yield] = ACTIONS(1861), + [anon_sym_move] = ACTIONS(1861), + [anon_sym_try] = ACTIONS(1861), + [sym_integer_literal] = ACTIONS(1859), + [aux_sym_string_literal_token1] = ACTIONS(1859), + [sym_char_literal] = ACTIONS(1859), + [anon_sym_true] = ACTIONS(1861), + [anon_sym_false] = ACTIONS(1861), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1861), + [sym_super] = ACTIONS(1861), + [sym_crate] = ACTIONS(1861), + [sym_metavariable] = ACTIONS(1859), + [sym__raw_string_literal_start] = ACTIONS(1859), + [sym_float_literal] = ACTIONS(1859), }, [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(1863), + [sym_identifier] = ACTIONS(1865), + [anon_sym_SEMI] = ACTIONS(1863), + [anon_sym_macro_rules_BANG] = ACTIONS(1863), + [anon_sym_LPAREN] = ACTIONS(1863), + [anon_sym_LBRACK] = ACTIONS(1863), + [anon_sym_LBRACE] = ACTIONS(1863), + [anon_sym_RBRACE] = ACTIONS(1863), + [anon_sym_STAR] = ACTIONS(1863), + [anon_sym_u8] = ACTIONS(1865), + [anon_sym_i8] = ACTIONS(1865), + [anon_sym_u16] = ACTIONS(1865), + [anon_sym_i16] = ACTIONS(1865), + [anon_sym_u32] = ACTIONS(1865), + [anon_sym_i32] = ACTIONS(1865), + [anon_sym_u64] = ACTIONS(1865), + [anon_sym_i64] = ACTIONS(1865), + [anon_sym_u128] = ACTIONS(1865), + [anon_sym_i128] = ACTIONS(1865), + [anon_sym_isize] = ACTIONS(1865), + [anon_sym_usize] = ACTIONS(1865), + [anon_sym_f32] = ACTIONS(1865), + [anon_sym_f64] = ACTIONS(1865), + [anon_sym_bool] = ACTIONS(1865), + [anon_sym_str] = ACTIONS(1865), + [anon_sym_char] = ACTIONS(1865), + [anon_sym_DASH] = ACTIONS(1863), + [anon_sym_BANG] = ACTIONS(1863), + [anon_sym_AMP] = ACTIONS(1863), + [anon_sym_PIPE] = ACTIONS(1863), + [anon_sym_LT] = ACTIONS(1863), + [anon_sym_DOT_DOT] = ACTIONS(1863), + [anon_sym_COLON_COLON] = ACTIONS(1863), + [anon_sym_POUND] = ACTIONS(1863), + [anon_sym_SQUOTE] = ACTIONS(1865), + [anon_sym_async] = ACTIONS(1865), + [anon_sym_break] = ACTIONS(1865), + [anon_sym_const] = ACTIONS(1865), + [anon_sym_continue] = ACTIONS(1865), + [anon_sym_default] = ACTIONS(1865), + [anon_sym_enum] = ACTIONS(1865), + [anon_sym_fn] = ACTIONS(1865), + [anon_sym_for] = ACTIONS(1865), + [anon_sym_gen] = ACTIONS(1865), + [anon_sym_if] = ACTIONS(1865), + [anon_sym_impl] = ACTIONS(1865), + [anon_sym_let] = ACTIONS(1865), + [anon_sym_loop] = ACTIONS(1865), + [anon_sym_match] = ACTIONS(1865), + [anon_sym_mod] = ACTIONS(1865), + [anon_sym_pub] = ACTIONS(1865), + [anon_sym_return] = ACTIONS(1865), + [anon_sym_static] = ACTIONS(1865), + [anon_sym_struct] = ACTIONS(1865), + [anon_sym_trait] = ACTIONS(1865), + [anon_sym_type] = ACTIONS(1865), + [anon_sym_union] = ACTIONS(1865), + [anon_sym_unsafe] = ACTIONS(1865), + [anon_sym_use] = ACTIONS(1865), + [anon_sym_while] = ACTIONS(1865), + [anon_sym_extern] = ACTIONS(1865), + [anon_sym_safe] = ACTIONS(1865), + [anon_sym_yield] = ACTIONS(1865), + [anon_sym_move] = ACTIONS(1865), + [anon_sym_try] = ACTIONS(1865), + [sym_integer_literal] = ACTIONS(1863), + [aux_sym_string_literal_token1] = ACTIONS(1863), + [sym_char_literal] = ACTIONS(1863), + [anon_sym_true] = ACTIONS(1865), + [anon_sym_false] = ACTIONS(1865), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1865), + [sym_super] = ACTIONS(1865), + [sym_crate] = ACTIONS(1865), + [sym_metavariable] = ACTIONS(1863), + [sym__raw_string_literal_start] = ACTIONS(1863), + [sym_float_literal] = ACTIONS(1863), }, [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(1867), + [sym_identifier] = ACTIONS(1869), + [anon_sym_SEMI] = ACTIONS(1867), + [anon_sym_macro_rules_BANG] = ACTIONS(1867), + [anon_sym_LPAREN] = ACTIONS(1867), + [anon_sym_LBRACK] = ACTIONS(1867), + [anon_sym_LBRACE] = ACTIONS(1867), + [anon_sym_RBRACE] = ACTIONS(1867), + [anon_sym_STAR] = ACTIONS(1867), + [anon_sym_u8] = ACTIONS(1869), + [anon_sym_i8] = ACTIONS(1869), + [anon_sym_u16] = ACTIONS(1869), + [anon_sym_i16] = ACTIONS(1869), + [anon_sym_u32] = ACTIONS(1869), + [anon_sym_i32] = ACTIONS(1869), + [anon_sym_u64] = ACTIONS(1869), + [anon_sym_i64] = ACTIONS(1869), + [anon_sym_u128] = ACTIONS(1869), + [anon_sym_i128] = ACTIONS(1869), + [anon_sym_isize] = ACTIONS(1869), + [anon_sym_usize] = ACTIONS(1869), + [anon_sym_f32] = ACTIONS(1869), + [anon_sym_f64] = ACTIONS(1869), + [anon_sym_bool] = ACTIONS(1869), + [anon_sym_str] = ACTIONS(1869), + [anon_sym_char] = ACTIONS(1869), + [anon_sym_DASH] = ACTIONS(1867), + [anon_sym_BANG] = ACTIONS(1867), + [anon_sym_AMP] = ACTIONS(1867), + [anon_sym_PIPE] = ACTIONS(1867), + [anon_sym_LT] = ACTIONS(1867), + [anon_sym_DOT_DOT] = ACTIONS(1867), + [anon_sym_COLON_COLON] = ACTIONS(1867), + [anon_sym_POUND] = ACTIONS(1867), + [anon_sym_SQUOTE] = ACTIONS(1869), + [anon_sym_async] = ACTIONS(1869), + [anon_sym_break] = ACTIONS(1869), + [anon_sym_const] = ACTIONS(1869), + [anon_sym_continue] = ACTIONS(1869), + [anon_sym_default] = ACTIONS(1869), + [anon_sym_enum] = ACTIONS(1869), + [anon_sym_fn] = ACTIONS(1869), + [anon_sym_for] = ACTIONS(1869), + [anon_sym_gen] = ACTIONS(1869), + [anon_sym_if] = ACTIONS(1869), + [anon_sym_impl] = ACTIONS(1869), + [anon_sym_let] = ACTIONS(1869), + [anon_sym_loop] = ACTIONS(1869), + [anon_sym_match] = ACTIONS(1869), + [anon_sym_mod] = ACTIONS(1869), + [anon_sym_pub] = ACTIONS(1869), + [anon_sym_return] = ACTIONS(1869), + [anon_sym_static] = ACTIONS(1869), + [anon_sym_struct] = ACTIONS(1869), + [anon_sym_trait] = ACTIONS(1869), + [anon_sym_type] = ACTIONS(1869), + [anon_sym_union] = ACTIONS(1869), + [anon_sym_unsafe] = ACTIONS(1869), + [anon_sym_use] = ACTIONS(1869), + [anon_sym_while] = ACTIONS(1869), + [anon_sym_extern] = ACTIONS(1869), + [anon_sym_safe] = ACTIONS(1869), + [anon_sym_yield] = ACTIONS(1869), + [anon_sym_move] = ACTIONS(1869), + [anon_sym_try] = ACTIONS(1869), + [sym_integer_literal] = ACTIONS(1867), + [aux_sym_string_literal_token1] = ACTIONS(1867), + [sym_char_literal] = ACTIONS(1867), + [anon_sym_true] = ACTIONS(1869), + [anon_sym_false] = ACTIONS(1869), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1869), + [sym_super] = ACTIONS(1869), + [sym_crate] = ACTIONS(1869), + [sym_metavariable] = ACTIONS(1867), + [sym__raw_string_literal_start] = ACTIONS(1867), + [sym_float_literal] = ACTIONS(1867), }, [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(1871), + [sym_identifier] = ACTIONS(1873), + [anon_sym_SEMI] = ACTIONS(1871), + [anon_sym_macro_rules_BANG] = ACTIONS(1871), + [anon_sym_LPAREN] = ACTIONS(1871), + [anon_sym_LBRACK] = ACTIONS(1871), + [anon_sym_LBRACE] = ACTIONS(1871), + [anon_sym_RBRACE] = ACTIONS(1871), + [anon_sym_STAR] = ACTIONS(1871), + [anon_sym_u8] = ACTIONS(1873), + [anon_sym_i8] = ACTIONS(1873), + [anon_sym_u16] = ACTIONS(1873), + [anon_sym_i16] = ACTIONS(1873), + [anon_sym_u32] = ACTIONS(1873), + [anon_sym_i32] = ACTIONS(1873), + [anon_sym_u64] = ACTIONS(1873), + [anon_sym_i64] = ACTIONS(1873), + [anon_sym_u128] = ACTIONS(1873), + [anon_sym_i128] = ACTIONS(1873), + [anon_sym_isize] = ACTIONS(1873), + [anon_sym_usize] = ACTIONS(1873), + [anon_sym_f32] = ACTIONS(1873), + [anon_sym_f64] = ACTIONS(1873), + [anon_sym_bool] = ACTIONS(1873), + [anon_sym_str] = ACTIONS(1873), + [anon_sym_char] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1871), + [anon_sym_BANG] = ACTIONS(1871), + [anon_sym_AMP] = ACTIONS(1871), + [anon_sym_PIPE] = ACTIONS(1871), + [anon_sym_LT] = ACTIONS(1871), + [anon_sym_DOT_DOT] = ACTIONS(1871), + [anon_sym_COLON_COLON] = ACTIONS(1871), + [anon_sym_POUND] = ACTIONS(1871), + [anon_sym_SQUOTE] = ACTIONS(1873), + [anon_sym_async] = ACTIONS(1873), + [anon_sym_break] = ACTIONS(1873), + [anon_sym_const] = ACTIONS(1873), + [anon_sym_continue] = ACTIONS(1873), + [anon_sym_default] = ACTIONS(1873), + [anon_sym_enum] = ACTIONS(1873), + [anon_sym_fn] = ACTIONS(1873), + [anon_sym_for] = ACTIONS(1873), + [anon_sym_gen] = ACTIONS(1873), + [anon_sym_if] = ACTIONS(1873), + [anon_sym_impl] = ACTIONS(1873), + [anon_sym_let] = ACTIONS(1873), + [anon_sym_loop] = ACTIONS(1873), + [anon_sym_match] = ACTIONS(1873), + [anon_sym_mod] = ACTIONS(1873), + [anon_sym_pub] = ACTIONS(1873), + [anon_sym_return] = ACTIONS(1873), + [anon_sym_static] = ACTIONS(1873), + [anon_sym_struct] = ACTIONS(1873), + [anon_sym_trait] = ACTIONS(1873), + [anon_sym_type] = ACTIONS(1873), + [anon_sym_union] = ACTIONS(1873), + [anon_sym_unsafe] = ACTIONS(1873), + [anon_sym_use] = ACTIONS(1873), + [anon_sym_while] = ACTIONS(1873), + [anon_sym_extern] = ACTIONS(1873), + [anon_sym_safe] = ACTIONS(1873), + [anon_sym_yield] = ACTIONS(1873), + [anon_sym_move] = ACTIONS(1873), + [anon_sym_try] = ACTIONS(1873), + [sym_integer_literal] = ACTIONS(1871), + [aux_sym_string_literal_token1] = ACTIONS(1871), + [sym_char_literal] = ACTIONS(1871), + [anon_sym_true] = ACTIONS(1873), + [anon_sym_false] = ACTIONS(1873), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1873), + [sym_super] = ACTIONS(1873), + [sym_crate] = ACTIONS(1873), + [sym_metavariable] = ACTIONS(1871), + [sym__raw_string_literal_start] = ACTIONS(1871), + [sym_float_literal] = ACTIONS(1871), }, [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(1875), + [sym_identifier] = ACTIONS(1877), + [anon_sym_SEMI] = ACTIONS(1875), + [anon_sym_macro_rules_BANG] = ACTIONS(1875), + [anon_sym_LPAREN] = ACTIONS(1875), + [anon_sym_LBRACK] = ACTIONS(1875), + [anon_sym_LBRACE] = ACTIONS(1875), + [anon_sym_RBRACE] = ACTIONS(1875), + [anon_sym_STAR] = ACTIONS(1875), + [anon_sym_u8] = ACTIONS(1877), + [anon_sym_i8] = ACTIONS(1877), + [anon_sym_u16] = ACTIONS(1877), + [anon_sym_i16] = ACTIONS(1877), + [anon_sym_u32] = ACTIONS(1877), + [anon_sym_i32] = ACTIONS(1877), + [anon_sym_u64] = ACTIONS(1877), + [anon_sym_i64] = ACTIONS(1877), + [anon_sym_u128] = ACTIONS(1877), + [anon_sym_i128] = ACTIONS(1877), + [anon_sym_isize] = ACTIONS(1877), + [anon_sym_usize] = ACTIONS(1877), + [anon_sym_f32] = ACTIONS(1877), + [anon_sym_f64] = ACTIONS(1877), + [anon_sym_bool] = ACTIONS(1877), + [anon_sym_str] = ACTIONS(1877), + [anon_sym_char] = ACTIONS(1877), + [anon_sym_DASH] = ACTIONS(1875), + [anon_sym_BANG] = ACTIONS(1875), + [anon_sym_AMP] = ACTIONS(1875), + [anon_sym_PIPE] = ACTIONS(1875), + [anon_sym_LT] = ACTIONS(1875), + [anon_sym_DOT_DOT] = ACTIONS(1875), + [anon_sym_COLON_COLON] = ACTIONS(1875), + [anon_sym_POUND] = ACTIONS(1875), + [anon_sym_SQUOTE] = ACTIONS(1877), + [anon_sym_async] = ACTIONS(1877), + [anon_sym_break] = ACTIONS(1877), + [anon_sym_const] = ACTIONS(1877), + [anon_sym_continue] = ACTIONS(1877), + [anon_sym_default] = ACTIONS(1877), + [anon_sym_enum] = ACTIONS(1877), + [anon_sym_fn] = ACTIONS(1877), + [anon_sym_for] = ACTIONS(1877), + [anon_sym_gen] = ACTIONS(1877), + [anon_sym_if] = ACTIONS(1877), + [anon_sym_impl] = ACTIONS(1877), + [anon_sym_let] = ACTIONS(1877), + [anon_sym_loop] = ACTIONS(1877), + [anon_sym_match] = ACTIONS(1877), + [anon_sym_mod] = ACTIONS(1877), + [anon_sym_pub] = ACTIONS(1877), + [anon_sym_return] = ACTIONS(1877), + [anon_sym_static] = ACTIONS(1877), + [anon_sym_struct] = ACTIONS(1877), + [anon_sym_trait] = ACTIONS(1877), + [anon_sym_type] = ACTIONS(1877), + [anon_sym_union] = ACTIONS(1877), + [anon_sym_unsafe] = ACTIONS(1877), + [anon_sym_use] = ACTIONS(1877), + [anon_sym_while] = ACTIONS(1877), + [anon_sym_extern] = ACTIONS(1877), + [anon_sym_safe] = ACTIONS(1877), + [anon_sym_yield] = ACTIONS(1877), + [anon_sym_move] = ACTIONS(1877), + [anon_sym_try] = ACTIONS(1877), + [sym_integer_literal] = ACTIONS(1875), + [aux_sym_string_literal_token1] = ACTIONS(1875), + [sym_char_literal] = ACTIONS(1875), + [anon_sym_true] = ACTIONS(1877), + [anon_sym_false] = ACTIONS(1877), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1877), + [sym_super] = ACTIONS(1877), + [sym_crate] = ACTIONS(1877), + [sym_metavariable] = ACTIONS(1875), + [sym__raw_string_literal_start] = ACTIONS(1875), + [sym_float_literal] = ACTIONS(1875), }, [STATE(513)] = { [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), + [ts_builtin_sym_end] = ACTIONS(1879), + [sym_identifier] = ACTIONS(1881), + [anon_sym_SEMI] = ACTIONS(1879), + [anon_sym_macro_rules_BANG] = ACTIONS(1879), + [anon_sym_LPAREN] = ACTIONS(1879), + [anon_sym_LBRACK] = ACTIONS(1879), + [anon_sym_LBRACE] = ACTIONS(1879), + [anon_sym_RBRACE] = ACTIONS(1879), + [anon_sym_STAR] = ACTIONS(1879), + [anon_sym_u8] = ACTIONS(1881), + [anon_sym_i8] = ACTIONS(1881), + [anon_sym_u16] = ACTIONS(1881), + [anon_sym_i16] = ACTIONS(1881), + [anon_sym_u32] = ACTIONS(1881), + [anon_sym_i32] = ACTIONS(1881), + [anon_sym_u64] = ACTIONS(1881), + [anon_sym_i64] = ACTIONS(1881), + [anon_sym_u128] = ACTIONS(1881), + [anon_sym_i128] = ACTIONS(1881), + [anon_sym_isize] = ACTIONS(1881), + [anon_sym_usize] = ACTIONS(1881), + [anon_sym_f32] = ACTIONS(1881), + [anon_sym_f64] = ACTIONS(1881), + [anon_sym_bool] = ACTIONS(1881), + [anon_sym_str] = ACTIONS(1881), + [anon_sym_char] = ACTIONS(1881), + [anon_sym_DASH] = ACTIONS(1879), + [anon_sym_BANG] = ACTIONS(1879), + [anon_sym_AMP] = ACTIONS(1879), + [anon_sym_PIPE] = ACTIONS(1879), + [anon_sym_LT] = ACTIONS(1879), + [anon_sym_DOT_DOT] = ACTIONS(1879), + [anon_sym_COLON_COLON] = ACTIONS(1879), + [anon_sym_POUND] = ACTIONS(1879), + [anon_sym_SQUOTE] = ACTIONS(1881), + [anon_sym_async] = ACTIONS(1881), + [anon_sym_break] = ACTIONS(1881), + [anon_sym_const] = ACTIONS(1881), + [anon_sym_continue] = ACTIONS(1881), + [anon_sym_default] = ACTIONS(1881), + [anon_sym_enum] = ACTIONS(1881), + [anon_sym_fn] = ACTIONS(1881), + [anon_sym_for] = ACTIONS(1881), + [anon_sym_gen] = ACTIONS(1881), + [anon_sym_if] = ACTIONS(1881), + [anon_sym_impl] = ACTIONS(1881), + [anon_sym_let] = ACTIONS(1881), + [anon_sym_loop] = ACTIONS(1881), + [anon_sym_match] = ACTIONS(1881), + [anon_sym_mod] = ACTIONS(1881), + [anon_sym_pub] = ACTIONS(1881), + [anon_sym_return] = ACTIONS(1881), + [anon_sym_static] = ACTIONS(1881), + [anon_sym_struct] = ACTIONS(1881), + [anon_sym_trait] = ACTIONS(1881), + [anon_sym_type] = ACTIONS(1881), + [anon_sym_union] = ACTIONS(1881), + [anon_sym_unsafe] = ACTIONS(1881), + [anon_sym_use] = ACTIONS(1881), + [anon_sym_while] = ACTIONS(1881), + [anon_sym_extern] = ACTIONS(1881), + [anon_sym_safe] = ACTIONS(1881), + [anon_sym_yield] = ACTIONS(1881), + [anon_sym_move] = ACTIONS(1881), + [anon_sym_try] = ACTIONS(1881), + [sym_integer_literal] = ACTIONS(1879), + [aux_sym_string_literal_token1] = ACTIONS(1879), + [sym_char_literal] = ACTIONS(1879), + [anon_sym_true] = ACTIONS(1881), + [anon_sym_false] = ACTIONS(1881), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1881), + [sym_super] = ACTIONS(1881), + [sym_crate] = ACTIONS(1881), + [sym_metavariable] = ACTIONS(1879), + [sym__raw_string_literal_start] = ACTIONS(1879), + [sym_float_literal] = ACTIONS(1879), }, [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(1883), + [sym_identifier] = ACTIONS(1885), + [anon_sym_SEMI] = ACTIONS(1883), + [anon_sym_macro_rules_BANG] = ACTIONS(1883), + [anon_sym_LPAREN] = ACTIONS(1883), + [anon_sym_LBRACK] = ACTIONS(1883), + [anon_sym_LBRACE] = ACTIONS(1883), + [anon_sym_RBRACE] = ACTIONS(1883), + [anon_sym_STAR] = ACTIONS(1883), + [anon_sym_u8] = ACTIONS(1885), + [anon_sym_i8] = ACTIONS(1885), + [anon_sym_u16] = ACTIONS(1885), + [anon_sym_i16] = ACTIONS(1885), + [anon_sym_u32] = ACTIONS(1885), + [anon_sym_i32] = ACTIONS(1885), + [anon_sym_u64] = ACTIONS(1885), + [anon_sym_i64] = ACTIONS(1885), + [anon_sym_u128] = ACTIONS(1885), + [anon_sym_i128] = ACTIONS(1885), + [anon_sym_isize] = ACTIONS(1885), + [anon_sym_usize] = ACTIONS(1885), + [anon_sym_f32] = ACTIONS(1885), + [anon_sym_f64] = ACTIONS(1885), + [anon_sym_bool] = ACTIONS(1885), + [anon_sym_str] = ACTIONS(1885), + [anon_sym_char] = ACTIONS(1885), + [anon_sym_DASH] = ACTIONS(1883), + [anon_sym_BANG] = ACTIONS(1883), + [anon_sym_AMP] = ACTIONS(1883), + [anon_sym_PIPE] = ACTIONS(1883), + [anon_sym_LT] = ACTIONS(1883), + [anon_sym_DOT_DOT] = ACTIONS(1883), + [anon_sym_COLON_COLON] = ACTIONS(1883), + [anon_sym_POUND] = ACTIONS(1883), + [anon_sym_SQUOTE] = ACTIONS(1885), + [anon_sym_async] = ACTIONS(1885), + [anon_sym_break] = ACTIONS(1885), + [anon_sym_const] = ACTIONS(1885), + [anon_sym_continue] = ACTIONS(1885), + [anon_sym_default] = ACTIONS(1885), + [anon_sym_enum] = ACTIONS(1885), + [anon_sym_fn] = ACTIONS(1885), + [anon_sym_for] = ACTIONS(1885), + [anon_sym_gen] = ACTIONS(1885), + [anon_sym_if] = ACTIONS(1885), + [anon_sym_impl] = ACTIONS(1885), + [anon_sym_let] = ACTIONS(1885), + [anon_sym_loop] = ACTIONS(1885), + [anon_sym_match] = ACTIONS(1885), + [anon_sym_mod] = ACTIONS(1885), + [anon_sym_pub] = ACTIONS(1885), + [anon_sym_return] = ACTIONS(1885), + [anon_sym_static] = ACTIONS(1885), + [anon_sym_struct] = ACTIONS(1885), + [anon_sym_trait] = ACTIONS(1885), + [anon_sym_type] = ACTIONS(1885), + [anon_sym_union] = ACTIONS(1885), + [anon_sym_unsafe] = ACTIONS(1885), + [anon_sym_use] = ACTIONS(1885), + [anon_sym_while] = ACTIONS(1885), + [anon_sym_extern] = ACTIONS(1885), + [anon_sym_safe] = ACTIONS(1885), + [anon_sym_yield] = ACTIONS(1885), + [anon_sym_move] = ACTIONS(1885), + [anon_sym_try] = ACTIONS(1885), + [sym_integer_literal] = ACTIONS(1883), + [aux_sym_string_literal_token1] = ACTIONS(1883), + [sym_char_literal] = ACTIONS(1883), + [anon_sym_true] = ACTIONS(1885), + [anon_sym_false] = ACTIONS(1885), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1885), + [sym_super] = ACTIONS(1885), + [sym_crate] = ACTIONS(1885), + [sym_metavariable] = ACTIONS(1883), + [sym__raw_string_literal_start] = ACTIONS(1883), + [sym_float_literal] = ACTIONS(1883), }, [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(1887), + [sym_identifier] = ACTIONS(1889), + [anon_sym_SEMI] = ACTIONS(1887), + [anon_sym_macro_rules_BANG] = ACTIONS(1887), + [anon_sym_LPAREN] = ACTIONS(1887), + [anon_sym_LBRACK] = ACTIONS(1887), + [anon_sym_LBRACE] = ACTIONS(1887), + [anon_sym_RBRACE] = ACTIONS(1887), + [anon_sym_STAR] = ACTIONS(1887), + [anon_sym_u8] = ACTIONS(1889), + [anon_sym_i8] = ACTIONS(1889), + [anon_sym_u16] = ACTIONS(1889), + [anon_sym_i16] = ACTIONS(1889), + [anon_sym_u32] = ACTIONS(1889), + [anon_sym_i32] = ACTIONS(1889), + [anon_sym_u64] = ACTIONS(1889), + [anon_sym_i64] = ACTIONS(1889), + [anon_sym_u128] = ACTIONS(1889), + [anon_sym_i128] = ACTIONS(1889), + [anon_sym_isize] = ACTIONS(1889), + [anon_sym_usize] = ACTIONS(1889), + [anon_sym_f32] = ACTIONS(1889), + [anon_sym_f64] = ACTIONS(1889), + [anon_sym_bool] = ACTIONS(1889), + [anon_sym_str] = ACTIONS(1889), + [anon_sym_char] = ACTIONS(1889), + [anon_sym_DASH] = ACTIONS(1887), + [anon_sym_BANG] = ACTIONS(1887), + [anon_sym_AMP] = ACTIONS(1887), + [anon_sym_PIPE] = ACTIONS(1887), + [anon_sym_LT] = ACTIONS(1887), + [anon_sym_DOT_DOT] = ACTIONS(1887), + [anon_sym_COLON_COLON] = ACTIONS(1887), + [anon_sym_POUND] = ACTIONS(1887), + [anon_sym_SQUOTE] = ACTIONS(1889), + [anon_sym_async] = ACTIONS(1889), + [anon_sym_break] = ACTIONS(1889), + [anon_sym_const] = ACTIONS(1889), + [anon_sym_continue] = ACTIONS(1889), + [anon_sym_default] = ACTIONS(1889), + [anon_sym_enum] = ACTIONS(1889), + [anon_sym_fn] = ACTIONS(1889), + [anon_sym_for] = ACTIONS(1889), + [anon_sym_gen] = ACTIONS(1889), + [anon_sym_if] = ACTIONS(1889), + [anon_sym_impl] = ACTIONS(1889), + [anon_sym_let] = ACTIONS(1889), + [anon_sym_loop] = ACTIONS(1889), + [anon_sym_match] = ACTIONS(1889), + [anon_sym_mod] = ACTIONS(1889), + [anon_sym_pub] = ACTIONS(1889), + [anon_sym_return] = ACTIONS(1889), + [anon_sym_static] = ACTIONS(1889), + [anon_sym_struct] = ACTIONS(1889), + [anon_sym_trait] = ACTIONS(1889), + [anon_sym_type] = ACTIONS(1889), + [anon_sym_union] = ACTIONS(1889), + [anon_sym_unsafe] = ACTIONS(1889), + [anon_sym_use] = ACTIONS(1889), + [anon_sym_while] = ACTIONS(1889), + [anon_sym_extern] = ACTIONS(1889), + [anon_sym_safe] = ACTIONS(1889), + [anon_sym_yield] = ACTIONS(1889), + [anon_sym_move] = ACTIONS(1889), + [anon_sym_try] = ACTIONS(1889), + [sym_integer_literal] = ACTIONS(1887), + [aux_sym_string_literal_token1] = ACTIONS(1887), + [sym_char_literal] = ACTIONS(1887), + [anon_sym_true] = ACTIONS(1889), + [anon_sym_false] = ACTIONS(1889), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1889), + [sym_super] = ACTIONS(1889), + [sym_crate] = ACTIONS(1889), + [sym_metavariable] = ACTIONS(1887), + [sym__raw_string_literal_start] = ACTIONS(1887), + [sym_float_literal] = ACTIONS(1887), }, [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(1891), + [sym_identifier] = ACTIONS(1893), + [anon_sym_SEMI] = ACTIONS(1891), + [anon_sym_macro_rules_BANG] = ACTIONS(1891), + [anon_sym_LPAREN] = ACTIONS(1891), + [anon_sym_LBRACK] = ACTIONS(1891), + [anon_sym_LBRACE] = ACTIONS(1891), + [anon_sym_RBRACE] = ACTIONS(1891), + [anon_sym_STAR] = ACTIONS(1891), + [anon_sym_u8] = ACTIONS(1893), + [anon_sym_i8] = ACTIONS(1893), + [anon_sym_u16] = ACTIONS(1893), + [anon_sym_i16] = ACTIONS(1893), + [anon_sym_u32] = ACTIONS(1893), + [anon_sym_i32] = ACTIONS(1893), + [anon_sym_u64] = ACTIONS(1893), + [anon_sym_i64] = ACTIONS(1893), + [anon_sym_u128] = ACTIONS(1893), + [anon_sym_i128] = ACTIONS(1893), + [anon_sym_isize] = ACTIONS(1893), + [anon_sym_usize] = ACTIONS(1893), + [anon_sym_f32] = ACTIONS(1893), + [anon_sym_f64] = ACTIONS(1893), + [anon_sym_bool] = ACTIONS(1893), + [anon_sym_str] = ACTIONS(1893), + [anon_sym_char] = ACTIONS(1893), + [anon_sym_DASH] = ACTIONS(1891), + [anon_sym_BANG] = ACTIONS(1891), + [anon_sym_AMP] = ACTIONS(1891), + [anon_sym_PIPE] = ACTIONS(1891), + [anon_sym_LT] = ACTIONS(1891), + [anon_sym_DOT_DOT] = ACTIONS(1891), + [anon_sym_COLON_COLON] = ACTIONS(1891), + [anon_sym_POUND] = ACTIONS(1891), + [anon_sym_SQUOTE] = ACTIONS(1893), + [anon_sym_async] = ACTIONS(1893), + [anon_sym_break] = ACTIONS(1893), + [anon_sym_const] = ACTIONS(1893), + [anon_sym_continue] = ACTIONS(1893), + [anon_sym_default] = ACTIONS(1893), + [anon_sym_enum] = ACTIONS(1893), + [anon_sym_fn] = ACTIONS(1893), + [anon_sym_for] = ACTIONS(1893), + [anon_sym_gen] = ACTIONS(1893), + [anon_sym_if] = ACTIONS(1893), + [anon_sym_impl] = ACTIONS(1893), + [anon_sym_let] = ACTIONS(1893), + [anon_sym_loop] = ACTIONS(1893), + [anon_sym_match] = ACTIONS(1893), + [anon_sym_mod] = ACTIONS(1893), + [anon_sym_pub] = ACTIONS(1893), + [anon_sym_return] = ACTIONS(1893), + [anon_sym_static] = ACTIONS(1893), + [anon_sym_struct] = ACTIONS(1893), + [anon_sym_trait] = ACTIONS(1893), + [anon_sym_type] = ACTIONS(1893), + [anon_sym_union] = ACTIONS(1893), + [anon_sym_unsafe] = ACTIONS(1893), + [anon_sym_use] = ACTIONS(1893), + [anon_sym_while] = ACTIONS(1893), + [anon_sym_extern] = ACTIONS(1893), + [anon_sym_safe] = ACTIONS(1893), + [anon_sym_yield] = ACTIONS(1893), + [anon_sym_move] = ACTIONS(1893), + [anon_sym_try] = ACTIONS(1893), + [sym_integer_literal] = ACTIONS(1891), + [aux_sym_string_literal_token1] = ACTIONS(1891), + [sym_char_literal] = ACTIONS(1891), + [anon_sym_true] = ACTIONS(1893), + [anon_sym_false] = ACTIONS(1893), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1893), + [sym_super] = ACTIONS(1893), + [sym_crate] = ACTIONS(1893), + [sym_metavariable] = ACTIONS(1891), + [sym__raw_string_literal_start] = ACTIONS(1891), + [sym_float_literal] = ACTIONS(1891), }, [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(1895), + [sym_identifier] = ACTIONS(1897), + [anon_sym_SEMI] = ACTIONS(1895), + [anon_sym_macro_rules_BANG] = ACTIONS(1895), + [anon_sym_LPAREN] = ACTIONS(1895), + [anon_sym_LBRACK] = ACTIONS(1895), + [anon_sym_LBRACE] = ACTIONS(1895), + [anon_sym_RBRACE] = ACTIONS(1895), + [anon_sym_STAR] = ACTIONS(1895), + [anon_sym_u8] = ACTIONS(1897), + [anon_sym_i8] = ACTIONS(1897), + [anon_sym_u16] = ACTIONS(1897), + [anon_sym_i16] = ACTIONS(1897), + [anon_sym_u32] = ACTIONS(1897), + [anon_sym_i32] = ACTIONS(1897), + [anon_sym_u64] = ACTIONS(1897), + [anon_sym_i64] = ACTIONS(1897), + [anon_sym_u128] = ACTIONS(1897), + [anon_sym_i128] = ACTIONS(1897), + [anon_sym_isize] = ACTIONS(1897), + [anon_sym_usize] = ACTIONS(1897), + [anon_sym_f32] = ACTIONS(1897), + [anon_sym_f64] = ACTIONS(1897), + [anon_sym_bool] = ACTIONS(1897), + [anon_sym_str] = ACTIONS(1897), + [anon_sym_char] = ACTIONS(1897), + [anon_sym_DASH] = ACTIONS(1895), + [anon_sym_BANG] = ACTIONS(1895), + [anon_sym_AMP] = ACTIONS(1895), + [anon_sym_PIPE] = ACTIONS(1895), + [anon_sym_LT] = ACTIONS(1895), + [anon_sym_DOT_DOT] = ACTIONS(1895), + [anon_sym_COLON_COLON] = ACTIONS(1895), + [anon_sym_POUND] = ACTIONS(1895), + [anon_sym_SQUOTE] = ACTIONS(1897), + [anon_sym_async] = ACTIONS(1897), + [anon_sym_break] = ACTIONS(1897), + [anon_sym_const] = ACTIONS(1897), + [anon_sym_continue] = ACTIONS(1897), + [anon_sym_default] = ACTIONS(1897), + [anon_sym_enum] = ACTIONS(1897), + [anon_sym_fn] = ACTIONS(1897), + [anon_sym_for] = ACTIONS(1897), + [anon_sym_gen] = ACTIONS(1897), + [anon_sym_if] = ACTIONS(1897), + [anon_sym_impl] = ACTIONS(1897), + [anon_sym_let] = ACTIONS(1897), + [anon_sym_loop] = ACTIONS(1897), + [anon_sym_match] = ACTIONS(1897), + [anon_sym_mod] = ACTIONS(1897), + [anon_sym_pub] = ACTIONS(1897), + [anon_sym_return] = ACTIONS(1897), + [anon_sym_static] = ACTIONS(1897), + [anon_sym_struct] = ACTIONS(1897), + [anon_sym_trait] = ACTIONS(1897), + [anon_sym_type] = ACTIONS(1897), + [anon_sym_union] = ACTIONS(1897), + [anon_sym_unsafe] = ACTIONS(1897), + [anon_sym_use] = ACTIONS(1897), + [anon_sym_while] = ACTIONS(1897), + [anon_sym_extern] = ACTIONS(1897), + [anon_sym_safe] = ACTIONS(1897), + [anon_sym_yield] = ACTIONS(1897), + [anon_sym_move] = ACTIONS(1897), + [anon_sym_try] = ACTIONS(1897), + [sym_integer_literal] = ACTIONS(1895), + [aux_sym_string_literal_token1] = ACTIONS(1895), + [sym_char_literal] = ACTIONS(1895), + [anon_sym_true] = ACTIONS(1897), + [anon_sym_false] = ACTIONS(1897), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1897), + [sym_super] = ACTIONS(1897), + [sym_crate] = ACTIONS(1897), + [sym_metavariable] = ACTIONS(1895), + [sym__raw_string_literal_start] = ACTIONS(1895), + [sym_float_literal] = ACTIONS(1895), }, [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(1899), + [sym_identifier] = ACTIONS(1901), + [anon_sym_SEMI] = ACTIONS(1899), + [anon_sym_macro_rules_BANG] = ACTIONS(1899), + [anon_sym_LPAREN] = ACTIONS(1899), + [anon_sym_LBRACK] = ACTIONS(1899), + [anon_sym_LBRACE] = ACTIONS(1899), + [anon_sym_RBRACE] = ACTIONS(1899), + [anon_sym_STAR] = ACTIONS(1899), + [anon_sym_u8] = ACTIONS(1901), + [anon_sym_i8] = ACTIONS(1901), + [anon_sym_u16] = ACTIONS(1901), + [anon_sym_i16] = ACTIONS(1901), + [anon_sym_u32] = ACTIONS(1901), + [anon_sym_i32] = ACTIONS(1901), + [anon_sym_u64] = ACTIONS(1901), + [anon_sym_i64] = ACTIONS(1901), + [anon_sym_u128] = ACTIONS(1901), + [anon_sym_i128] = ACTIONS(1901), + [anon_sym_isize] = ACTIONS(1901), + [anon_sym_usize] = ACTIONS(1901), + [anon_sym_f32] = ACTIONS(1901), + [anon_sym_f64] = ACTIONS(1901), + [anon_sym_bool] = ACTIONS(1901), + [anon_sym_str] = ACTIONS(1901), + [anon_sym_char] = ACTIONS(1901), + [anon_sym_DASH] = ACTIONS(1899), + [anon_sym_BANG] = ACTIONS(1899), + [anon_sym_AMP] = ACTIONS(1899), + [anon_sym_PIPE] = ACTIONS(1899), + [anon_sym_LT] = ACTIONS(1899), + [anon_sym_DOT_DOT] = ACTIONS(1899), + [anon_sym_COLON_COLON] = ACTIONS(1899), + [anon_sym_POUND] = ACTIONS(1899), + [anon_sym_SQUOTE] = ACTIONS(1901), + [anon_sym_async] = ACTIONS(1901), + [anon_sym_break] = ACTIONS(1901), + [anon_sym_const] = ACTIONS(1901), + [anon_sym_continue] = ACTIONS(1901), + [anon_sym_default] = ACTIONS(1901), + [anon_sym_enum] = ACTIONS(1901), + [anon_sym_fn] = ACTIONS(1901), + [anon_sym_for] = ACTIONS(1901), + [anon_sym_gen] = ACTIONS(1901), + [anon_sym_if] = ACTIONS(1901), + [anon_sym_impl] = ACTIONS(1901), + [anon_sym_let] = ACTIONS(1901), + [anon_sym_loop] = ACTIONS(1901), + [anon_sym_match] = ACTIONS(1901), + [anon_sym_mod] = ACTIONS(1901), + [anon_sym_pub] = ACTIONS(1901), + [anon_sym_return] = ACTIONS(1901), + [anon_sym_static] = ACTIONS(1901), + [anon_sym_struct] = ACTIONS(1901), + [anon_sym_trait] = ACTIONS(1901), + [anon_sym_type] = ACTIONS(1901), + [anon_sym_union] = ACTIONS(1901), + [anon_sym_unsafe] = ACTIONS(1901), + [anon_sym_use] = ACTIONS(1901), + [anon_sym_while] = ACTIONS(1901), + [anon_sym_extern] = ACTIONS(1901), + [anon_sym_safe] = ACTIONS(1901), + [anon_sym_yield] = ACTIONS(1901), + [anon_sym_move] = ACTIONS(1901), + [anon_sym_try] = ACTIONS(1901), + [sym_integer_literal] = ACTIONS(1899), + [aux_sym_string_literal_token1] = ACTIONS(1899), + [sym_char_literal] = ACTIONS(1899), + [anon_sym_true] = ACTIONS(1901), + [anon_sym_false] = ACTIONS(1901), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1901), + [sym_super] = ACTIONS(1901), + [sym_crate] = ACTIONS(1901), + [sym_metavariable] = ACTIONS(1899), + [sym__raw_string_literal_start] = ACTIONS(1899), + [sym_float_literal] = ACTIONS(1899), }, [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(1903), + [sym_identifier] = ACTIONS(1905), + [anon_sym_SEMI] = ACTIONS(1903), + [anon_sym_macro_rules_BANG] = ACTIONS(1903), + [anon_sym_LPAREN] = ACTIONS(1903), + [anon_sym_LBRACK] = ACTIONS(1903), + [anon_sym_LBRACE] = ACTIONS(1903), + [anon_sym_RBRACE] = ACTIONS(1903), + [anon_sym_STAR] = ACTIONS(1903), + [anon_sym_u8] = ACTIONS(1905), + [anon_sym_i8] = ACTIONS(1905), + [anon_sym_u16] = ACTIONS(1905), + [anon_sym_i16] = ACTIONS(1905), + [anon_sym_u32] = ACTIONS(1905), + [anon_sym_i32] = ACTIONS(1905), + [anon_sym_u64] = ACTIONS(1905), + [anon_sym_i64] = ACTIONS(1905), + [anon_sym_u128] = ACTIONS(1905), + [anon_sym_i128] = ACTIONS(1905), + [anon_sym_isize] = ACTIONS(1905), + [anon_sym_usize] = ACTIONS(1905), + [anon_sym_f32] = ACTIONS(1905), + [anon_sym_f64] = ACTIONS(1905), + [anon_sym_bool] = ACTIONS(1905), + [anon_sym_str] = ACTIONS(1905), + [anon_sym_char] = ACTIONS(1905), + [anon_sym_DASH] = ACTIONS(1903), + [anon_sym_BANG] = ACTIONS(1903), + [anon_sym_AMP] = ACTIONS(1903), + [anon_sym_PIPE] = ACTIONS(1903), + [anon_sym_LT] = ACTIONS(1903), + [anon_sym_DOT_DOT] = ACTIONS(1903), + [anon_sym_COLON_COLON] = ACTIONS(1903), + [anon_sym_POUND] = ACTIONS(1903), + [anon_sym_SQUOTE] = ACTIONS(1905), + [anon_sym_async] = ACTIONS(1905), + [anon_sym_break] = ACTIONS(1905), + [anon_sym_const] = ACTIONS(1905), + [anon_sym_continue] = ACTIONS(1905), + [anon_sym_default] = ACTIONS(1905), + [anon_sym_enum] = ACTIONS(1905), + [anon_sym_fn] = ACTIONS(1905), + [anon_sym_for] = ACTIONS(1905), + [anon_sym_gen] = ACTIONS(1905), + [anon_sym_if] = ACTIONS(1905), + [anon_sym_impl] = ACTIONS(1905), + [anon_sym_let] = ACTIONS(1905), + [anon_sym_loop] = ACTIONS(1905), + [anon_sym_match] = ACTIONS(1905), + [anon_sym_mod] = ACTIONS(1905), + [anon_sym_pub] = ACTIONS(1905), + [anon_sym_return] = ACTIONS(1905), + [anon_sym_static] = ACTIONS(1905), + [anon_sym_struct] = ACTIONS(1905), + [anon_sym_trait] = ACTIONS(1905), + [anon_sym_type] = ACTIONS(1905), + [anon_sym_union] = ACTIONS(1905), + [anon_sym_unsafe] = ACTIONS(1905), + [anon_sym_use] = ACTIONS(1905), + [anon_sym_while] = ACTIONS(1905), + [anon_sym_extern] = ACTIONS(1905), + [anon_sym_safe] = ACTIONS(1905), + [anon_sym_yield] = ACTIONS(1905), + [anon_sym_move] = ACTIONS(1905), + [anon_sym_try] = ACTIONS(1905), + [sym_integer_literal] = ACTIONS(1903), + [aux_sym_string_literal_token1] = ACTIONS(1903), + [sym_char_literal] = ACTIONS(1903), + [anon_sym_true] = ACTIONS(1905), + [anon_sym_false] = ACTIONS(1905), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1905), + [sym_super] = ACTIONS(1905), + [sym_crate] = ACTIONS(1905), + [sym_metavariable] = ACTIONS(1903), + [sym__raw_string_literal_start] = ACTIONS(1903), + [sym_float_literal] = ACTIONS(1903), }, [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(1907), + [sym_identifier] = ACTIONS(1909), + [anon_sym_SEMI] = ACTIONS(1907), + [anon_sym_macro_rules_BANG] = ACTIONS(1907), + [anon_sym_LPAREN] = ACTIONS(1907), + [anon_sym_LBRACK] = ACTIONS(1907), + [anon_sym_LBRACE] = ACTIONS(1907), + [anon_sym_RBRACE] = ACTIONS(1907), + [anon_sym_STAR] = ACTIONS(1907), + [anon_sym_u8] = ACTIONS(1909), + [anon_sym_i8] = ACTIONS(1909), + [anon_sym_u16] = ACTIONS(1909), + [anon_sym_i16] = ACTIONS(1909), + [anon_sym_u32] = ACTIONS(1909), + [anon_sym_i32] = ACTIONS(1909), + [anon_sym_u64] = ACTIONS(1909), + [anon_sym_i64] = ACTIONS(1909), + [anon_sym_u128] = ACTIONS(1909), + [anon_sym_i128] = ACTIONS(1909), + [anon_sym_isize] = ACTIONS(1909), + [anon_sym_usize] = ACTIONS(1909), + [anon_sym_f32] = ACTIONS(1909), + [anon_sym_f64] = ACTIONS(1909), + [anon_sym_bool] = ACTIONS(1909), + [anon_sym_str] = ACTIONS(1909), + [anon_sym_char] = ACTIONS(1909), + [anon_sym_DASH] = ACTIONS(1907), + [anon_sym_BANG] = ACTIONS(1907), + [anon_sym_AMP] = ACTIONS(1907), + [anon_sym_PIPE] = ACTIONS(1907), + [anon_sym_LT] = ACTIONS(1907), + [anon_sym_DOT_DOT] = ACTIONS(1907), + [anon_sym_COLON_COLON] = ACTIONS(1907), + [anon_sym_POUND] = ACTIONS(1907), + [anon_sym_SQUOTE] = ACTIONS(1909), + [anon_sym_async] = ACTIONS(1909), + [anon_sym_break] = ACTIONS(1909), + [anon_sym_const] = ACTIONS(1909), + [anon_sym_continue] = ACTIONS(1909), + [anon_sym_default] = ACTIONS(1909), + [anon_sym_enum] = ACTIONS(1909), + [anon_sym_fn] = ACTIONS(1909), + [anon_sym_for] = ACTIONS(1909), + [anon_sym_gen] = ACTIONS(1909), + [anon_sym_if] = ACTIONS(1909), + [anon_sym_impl] = ACTIONS(1909), + [anon_sym_let] = ACTIONS(1909), + [anon_sym_loop] = ACTIONS(1909), + [anon_sym_match] = ACTIONS(1909), + [anon_sym_mod] = ACTIONS(1909), + [anon_sym_pub] = ACTIONS(1909), + [anon_sym_return] = ACTIONS(1909), + [anon_sym_static] = ACTIONS(1909), + [anon_sym_struct] = ACTIONS(1909), + [anon_sym_trait] = ACTIONS(1909), + [anon_sym_type] = ACTIONS(1909), + [anon_sym_union] = ACTIONS(1909), + [anon_sym_unsafe] = ACTIONS(1909), + [anon_sym_use] = ACTIONS(1909), + [anon_sym_while] = ACTIONS(1909), + [anon_sym_extern] = ACTIONS(1909), + [anon_sym_safe] = ACTIONS(1909), + [anon_sym_yield] = ACTIONS(1909), + [anon_sym_move] = ACTIONS(1909), + [anon_sym_try] = ACTIONS(1909), + [sym_integer_literal] = ACTIONS(1907), + [aux_sym_string_literal_token1] = ACTIONS(1907), + [sym_char_literal] = ACTIONS(1907), + [anon_sym_true] = ACTIONS(1909), + [anon_sym_false] = ACTIONS(1909), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1909), + [sym_super] = ACTIONS(1909), + [sym_crate] = ACTIONS(1909), + [sym_metavariable] = ACTIONS(1907), + [sym__raw_string_literal_start] = ACTIONS(1907), + [sym_float_literal] = ACTIONS(1907), }, [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(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(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(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(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(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(524)] = { [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), + [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(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(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(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(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(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(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(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(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(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(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(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(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(531)] = { - [sym_empty_statement] = STATE(1170), - [sym_macro_definition] = STATE(1170), - [sym_attribute_item] = STATE(1170), - [sym_inner_attribute_item] = STATE(1170), - [sym_mod_item] = STATE(1170), - [sym_foreign_mod_item] = STATE(1170), - [sym_struct_item] = STATE(1170), - [sym_union_item] = STATE(1170), - [sym_enum_item] = STATE(1170), - [sym_extern_crate_declaration] = STATE(1170), - [sym_const_item] = STATE(1170), - [sym_static_item] = STATE(1170), - [sym_type_item] = STATE(1170), - [sym_function_item] = STATE(1170), - [sym_function_signature_item] = STATE(1170), - [sym_function_modifiers] = STATE(3781), - [sym_impl_item] = STATE(1170), - [sym_trait_item] = STATE(1170), - [sym_associated_type] = STATE(1170), - [sym_let_declaration] = STATE(1170), - [sym_use_declaration] = STATE(1170), - [sym_extern_modifier] = STATE(2235), - [sym_visibility_modifier] = STATE(2021), - [sym_bracketed_type] = STATE(3732), - [sym_generic_type_with_turbofish] = STATE(3800), - [sym_macro_invocation] = STATE(1170), - [sym_scoped_identifier] = STATE(3326), [sym_line_comment] = STATE(531), [sym_block_comment] = STATE(531), - [aux_sym_declaration_list_repeat1] = STATE(531), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(1950), - [anon_sym_SEMI] = ACTIONS(1953), - [anon_sym_macro_rules_BANG] = ACTIONS(1956), + [ts_builtin_sym_end] = ACTIONS(1951), + [sym_identifier] = ACTIONS(1953), + [anon_sym_SEMI] = ACTIONS(1951), + [anon_sym_macro_rules_BANG] = ACTIONS(1951), + [anon_sym_LPAREN] = ACTIONS(1951), + [anon_sym_LBRACK] = ACTIONS(1951), + [anon_sym_LBRACE] = ACTIONS(1951), + [anon_sym_RBRACE] = ACTIONS(1951), + [anon_sym_STAR] = ACTIONS(1951), + [anon_sym_u8] = ACTIONS(1953), + [anon_sym_i8] = ACTIONS(1953), + [anon_sym_u16] = ACTIONS(1953), + [anon_sym_i16] = ACTIONS(1953), + [anon_sym_u32] = ACTIONS(1953), + [anon_sym_i32] = ACTIONS(1953), + [anon_sym_u64] = ACTIONS(1953), + [anon_sym_i64] = ACTIONS(1953), + [anon_sym_u128] = ACTIONS(1953), + [anon_sym_i128] = ACTIONS(1953), + [anon_sym_isize] = ACTIONS(1953), + [anon_sym_usize] = ACTIONS(1953), + [anon_sym_f32] = ACTIONS(1953), + [anon_sym_f64] = ACTIONS(1953), + [anon_sym_bool] = ACTIONS(1953), + [anon_sym_str] = ACTIONS(1953), + [anon_sym_char] = ACTIONS(1953), + [anon_sym_DASH] = ACTIONS(1951), + [anon_sym_BANG] = ACTIONS(1951), + [anon_sym_AMP] = ACTIONS(1951), + [anon_sym_PIPE] = ACTIONS(1951), + [anon_sym_LT] = ACTIONS(1951), + [anon_sym_DOT_DOT] = ACTIONS(1951), + [anon_sym_COLON_COLON] = ACTIONS(1951), + [anon_sym_POUND] = ACTIONS(1951), + [anon_sym_SQUOTE] = ACTIONS(1953), + [anon_sym_async] = ACTIONS(1953), + [anon_sym_break] = ACTIONS(1953), + [anon_sym_const] = ACTIONS(1953), + [anon_sym_continue] = ACTIONS(1953), + [anon_sym_default] = ACTIONS(1953), + [anon_sym_enum] = ACTIONS(1953), + [anon_sym_fn] = ACTIONS(1953), + [anon_sym_for] = ACTIONS(1953), + [anon_sym_gen] = ACTIONS(1953), + [anon_sym_if] = ACTIONS(1953), + [anon_sym_impl] = ACTIONS(1953), + [anon_sym_let] = ACTIONS(1953), + [anon_sym_loop] = ACTIONS(1953), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_mod] = ACTIONS(1953), + [anon_sym_pub] = ACTIONS(1953), + [anon_sym_return] = ACTIONS(1953), + [anon_sym_static] = ACTIONS(1953), + [anon_sym_struct] = ACTIONS(1953), + [anon_sym_trait] = ACTIONS(1953), + [anon_sym_type] = ACTIONS(1953), + [anon_sym_union] = ACTIONS(1953), + [anon_sym_unsafe] = ACTIONS(1953), + [anon_sym_use] = ACTIONS(1953), + [anon_sym_while] = ACTIONS(1953), + [anon_sym_extern] = ACTIONS(1953), + [anon_sym_safe] = ACTIONS(1953), + [anon_sym_yield] = ACTIONS(1953), + [anon_sym_move] = ACTIONS(1953), + [anon_sym_try] = ACTIONS(1953), + [sym_integer_literal] = ACTIONS(1951), + [aux_sym_string_literal_token1] = ACTIONS(1951), + [sym_char_literal] = ACTIONS(1951), + [anon_sym_true] = ACTIONS(1953), + [anon_sym_false] = ACTIONS(1953), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1953), + [sym_super] = ACTIONS(1953), + [sym_crate] = ACTIONS(1953), + [sym_metavariable] = ACTIONS(1951), + [sym__raw_string_literal_start] = ACTIONS(1951), + [sym_float_literal] = ACTIONS(1951), + }, + [STATE(532)] = { + [sym_line_comment] = STATE(532), + [sym_block_comment] = STATE(532), + [ts_builtin_sym_end] = ACTIONS(1955), + [sym_identifier] = ACTIONS(1957), + [anon_sym_SEMI] = ACTIONS(1955), + [anon_sym_macro_rules_BANG] = ACTIONS(1955), + [anon_sym_LPAREN] = ACTIONS(1955), + [anon_sym_LBRACK] = ACTIONS(1955), + [anon_sym_LBRACE] = ACTIONS(1955), + [anon_sym_RBRACE] = ACTIONS(1955), + [anon_sym_STAR] = ACTIONS(1955), + [anon_sym_u8] = ACTIONS(1957), + [anon_sym_i8] = ACTIONS(1957), + [anon_sym_u16] = ACTIONS(1957), + [anon_sym_i16] = ACTIONS(1957), + [anon_sym_u32] = ACTIONS(1957), + [anon_sym_i32] = ACTIONS(1957), + [anon_sym_u64] = ACTIONS(1957), + [anon_sym_i64] = ACTIONS(1957), + [anon_sym_u128] = ACTIONS(1957), + [anon_sym_i128] = ACTIONS(1957), + [anon_sym_isize] = ACTIONS(1957), + [anon_sym_usize] = ACTIONS(1957), + [anon_sym_f32] = ACTIONS(1957), + [anon_sym_f64] = ACTIONS(1957), + [anon_sym_bool] = ACTIONS(1957), + [anon_sym_str] = ACTIONS(1957), + [anon_sym_char] = ACTIONS(1957), + [anon_sym_DASH] = ACTIONS(1955), + [anon_sym_BANG] = ACTIONS(1955), + [anon_sym_AMP] = ACTIONS(1955), + [anon_sym_PIPE] = ACTIONS(1955), + [anon_sym_LT] = ACTIONS(1955), + [anon_sym_DOT_DOT] = ACTIONS(1955), + [anon_sym_COLON_COLON] = ACTIONS(1955), + [anon_sym_POUND] = ACTIONS(1955), + [anon_sym_SQUOTE] = ACTIONS(1957), + [anon_sym_async] = ACTIONS(1957), + [anon_sym_break] = ACTIONS(1957), + [anon_sym_const] = ACTIONS(1957), + [anon_sym_continue] = ACTIONS(1957), + [anon_sym_default] = ACTIONS(1957), + [anon_sym_enum] = ACTIONS(1957), + [anon_sym_fn] = ACTIONS(1957), + [anon_sym_for] = ACTIONS(1957), + [anon_sym_gen] = ACTIONS(1957), + [anon_sym_if] = ACTIONS(1957), + [anon_sym_impl] = ACTIONS(1957), + [anon_sym_let] = ACTIONS(1957), + [anon_sym_loop] = ACTIONS(1957), + [anon_sym_match] = ACTIONS(1957), + [anon_sym_mod] = ACTIONS(1957), + [anon_sym_pub] = ACTIONS(1957), + [anon_sym_return] = ACTIONS(1957), + [anon_sym_static] = ACTIONS(1957), + [anon_sym_struct] = ACTIONS(1957), + [anon_sym_trait] = ACTIONS(1957), + [anon_sym_type] = ACTIONS(1957), + [anon_sym_union] = ACTIONS(1957), + [anon_sym_unsafe] = ACTIONS(1957), + [anon_sym_use] = ACTIONS(1957), + [anon_sym_while] = ACTIONS(1957), + [anon_sym_extern] = ACTIONS(1957), + [anon_sym_safe] = ACTIONS(1957), + [anon_sym_yield] = ACTIONS(1957), + [anon_sym_move] = ACTIONS(1957), + [anon_sym_try] = ACTIONS(1957), + [sym_integer_literal] = ACTIONS(1955), + [aux_sym_string_literal_token1] = ACTIONS(1955), + [sym_char_literal] = ACTIONS(1955), + [anon_sym_true] = ACTIONS(1957), + [anon_sym_false] = ACTIONS(1957), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1957), + [sym_super] = ACTIONS(1957), + [sym_crate] = ACTIONS(1957), + [sym_metavariable] = ACTIONS(1955), + [sym__raw_string_literal_start] = ACTIONS(1955), + [sym_float_literal] = ACTIONS(1955), + }, + [STATE(533)] = { + [sym_line_comment] = STATE(533), + [sym_block_comment] = STATE(533), + [ts_builtin_sym_end] = ACTIONS(1959), + [sym_identifier] = ACTIONS(1961), + [anon_sym_SEMI] = ACTIONS(1959), + [anon_sym_macro_rules_BANG] = ACTIONS(1959), + [anon_sym_LPAREN] = ACTIONS(1959), + [anon_sym_LBRACK] = ACTIONS(1959), + [anon_sym_LBRACE] = ACTIONS(1959), [anon_sym_RBRACE] = ACTIONS(1959), + [anon_sym_STAR] = ACTIONS(1959), [anon_sym_u8] = ACTIONS(1961), [anon_sym_i8] = ACTIONS(1961), [anon_sym_u16] = ACTIONS(1961), @@ -74885,3115 +75333,3916 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1961), [anon_sym_str] = ACTIONS(1961), [anon_sym_char] = ACTIONS(1961), - [anon_sym_LT] = ACTIONS(1964), - [anon_sym_COLON_COLON] = ACTIONS(1967), - [anon_sym_POUND] = ACTIONS(1970), - [anon_sym_async] = ACTIONS(1973), - [anon_sym_const] = ACTIONS(1976), - [anon_sym_default] = ACTIONS(1979), - [anon_sym_enum] = ACTIONS(1982), - [anon_sym_fn] = ACTIONS(1985), - [anon_sym_gen] = ACTIONS(1988), - [anon_sym_impl] = ACTIONS(1991), - [anon_sym_let] = ACTIONS(1994), - [anon_sym_mod] = ACTIONS(1997), - [anon_sym_pub] = ACTIONS(2000), - [anon_sym_static] = ACTIONS(2003), - [anon_sym_struct] = ACTIONS(2006), - [anon_sym_trait] = ACTIONS(2009), - [anon_sym_type] = ACTIONS(2012), - [anon_sym_union] = ACTIONS(2015), - [anon_sym_unsafe] = ACTIONS(2018), - [anon_sym_use] = ACTIONS(2021), - [anon_sym_extern] = ACTIONS(2024), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2027), - [sym_super] = ACTIONS(2027), - [sym_crate] = ACTIONS(2030), - [sym_metavariable] = ACTIONS(2033), - }, - [STATE(532)] = { - [sym_line_comment] = STATE(532), - [sym_block_comment] = STATE(532), - [ts_builtin_sym_end] = ACTIONS(2036), - [sym_identifier] = ACTIONS(2038), - [anon_sym_SEMI] = ACTIONS(2036), - [anon_sym_macro_rules_BANG] = ACTIONS(2036), - [anon_sym_LPAREN] = ACTIONS(2036), - [anon_sym_LBRACK] = ACTIONS(2036), - [anon_sym_LBRACE] = ACTIONS(2036), - [anon_sym_RBRACE] = ACTIONS(2036), - [anon_sym_STAR] = ACTIONS(2036), - [anon_sym_u8] = ACTIONS(2038), - [anon_sym_i8] = ACTIONS(2038), - [anon_sym_u16] = ACTIONS(2038), - [anon_sym_i16] = ACTIONS(2038), - [anon_sym_u32] = ACTIONS(2038), - [anon_sym_i32] = ACTIONS(2038), - [anon_sym_u64] = ACTIONS(2038), - [anon_sym_i64] = ACTIONS(2038), - [anon_sym_u128] = ACTIONS(2038), - [anon_sym_i128] = ACTIONS(2038), - [anon_sym_isize] = ACTIONS(2038), - [anon_sym_usize] = ACTIONS(2038), - [anon_sym_f32] = ACTIONS(2038), - [anon_sym_f64] = ACTIONS(2038), - [anon_sym_bool] = ACTIONS(2038), - [anon_sym_str] = ACTIONS(2038), - [anon_sym_char] = ACTIONS(2038), - [anon_sym_DASH] = ACTIONS(2036), - [anon_sym_BANG] = ACTIONS(2036), - [anon_sym_AMP] = ACTIONS(2036), - [anon_sym_PIPE] = ACTIONS(2036), - [anon_sym_LT] = ACTIONS(2036), - [anon_sym_DOT_DOT] = ACTIONS(2036), - [anon_sym_COLON_COLON] = ACTIONS(2036), - [anon_sym_POUND] = ACTIONS(2036), - [anon_sym_SQUOTE] = ACTIONS(2038), - [anon_sym_async] = ACTIONS(2038), - [anon_sym_break] = ACTIONS(2038), - [anon_sym_const] = ACTIONS(2038), - [anon_sym_continue] = ACTIONS(2038), - [anon_sym_default] = ACTIONS(2038), - [anon_sym_enum] = ACTIONS(2038), - [anon_sym_fn] = ACTIONS(2038), - [anon_sym_for] = ACTIONS(2038), - [anon_sym_gen] = ACTIONS(2038), - [anon_sym_if] = ACTIONS(2038), - [anon_sym_impl] = ACTIONS(2038), - [anon_sym_let] = ACTIONS(2038), - [anon_sym_loop] = ACTIONS(2038), - [anon_sym_match] = ACTIONS(2038), - [anon_sym_mod] = ACTIONS(2038), - [anon_sym_pub] = ACTIONS(2038), - [anon_sym_return] = ACTIONS(2038), - [anon_sym_static] = ACTIONS(2038), - [anon_sym_struct] = ACTIONS(2038), - [anon_sym_trait] = ACTIONS(2038), - [anon_sym_type] = ACTIONS(2038), - [anon_sym_union] = ACTIONS(2038), - [anon_sym_unsafe] = ACTIONS(2038), - [anon_sym_use] = ACTIONS(2038), - [anon_sym_while] = ACTIONS(2038), - [anon_sym_extern] = ACTIONS(2038), - [anon_sym_yield] = ACTIONS(2038), - [anon_sym_move] = ACTIONS(2038), - [anon_sym_try] = ACTIONS(2038), - [sym_integer_literal] = ACTIONS(2036), - [aux_sym_string_literal_token1] = ACTIONS(2036), - [sym_char_literal] = ACTIONS(2036), - [anon_sym_true] = ACTIONS(2038), - [anon_sym_false] = ACTIONS(2038), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2038), - [sym_super] = ACTIONS(2038), - [sym_crate] = ACTIONS(2038), - [sym_metavariable] = ACTIONS(2036), - [sym__raw_string_literal_start] = ACTIONS(2036), - [sym_float_literal] = ACTIONS(2036), - }, - [STATE(533)] = { - [sym_line_comment] = STATE(533), - [sym_block_comment] = STATE(533), - [ts_builtin_sym_end] = ACTIONS(2040), - [sym_identifier] = ACTIONS(2042), - [anon_sym_SEMI] = ACTIONS(2040), - [anon_sym_macro_rules_BANG] = ACTIONS(2040), - [anon_sym_LPAREN] = ACTIONS(2040), - [anon_sym_LBRACK] = ACTIONS(2040), - [anon_sym_LBRACE] = ACTIONS(2040), - [anon_sym_RBRACE] = ACTIONS(2040), - [anon_sym_STAR] = ACTIONS(2040), - [anon_sym_u8] = ACTIONS(2042), - [anon_sym_i8] = ACTIONS(2042), - [anon_sym_u16] = ACTIONS(2042), - [anon_sym_i16] = ACTIONS(2042), - [anon_sym_u32] = ACTIONS(2042), - [anon_sym_i32] = ACTIONS(2042), - [anon_sym_u64] = ACTIONS(2042), - [anon_sym_i64] = ACTIONS(2042), - [anon_sym_u128] = ACTIONS(2042), - [anon_sym_i128] = ACTIONS(2042), - [anon_sym_isize] = ACTIONS(2042), - [anon_sym_usize] = ACTIONS(2042), - [anon_sym_f32] = ACTIONS(2042), - [anon_sym_f64] = ACTIONS(2042), - [anon_sym_bool] = ACTIONS(2042), - [anon_sym_str] = ACTIONS(2042), - [anon_sym_char] = ACTIONS(2042), - [anon_sym_DASH] = ACTIONS(2040), - [anon_sym_BANG] = ACTIONS(2040), - [anon_sym_AMP] = ACTIONS(2040), - [anon_sym_PIPE] = ACTIONS(2040), - [anon_sym_LT] = ACTIONS(2040), - [anon_sym_DOT_DOT] = ACTIONS(2040), - [anon_sym_COLON_COLON] = ACTIONS(2040), - [anon_sym_POUND] = ACTIONS(2040), - [anon_sym_SQUOTE] = ACTIONS(2042), - [anon_sym_async] = ACTIONS(2042), - [anon_sym_break] = ACTIONS(2042), - [anon_sym_const] = ACTIONS(2042), - [anon_sym_continue] = ACTIONS(2042), - [anon_sym_default] = ACTIONS(2042), - [anon_sym_enum] = ACTIONS(2042), - [anon_sym_fn] = ACTIONS(2042), - [anon_sym_for] = ACTIONS(2042), - [anon_sym_gen] = ACTIONS(2042), - [anon_sym_if] = ACTIONS(2042), - [anon_sym_impl] = ACTIONS(2042), - [anon_sym_let] = ACTIONS(2042), - [anon_sym_loop] = ACTIONS(2042), - [anon_sym_match] = ACTIONS(2042), - [anon_sym_mod] = ACTIONS(2042), - [anon_sym_pub] = ACTIONS(2042), - [anon_sym_return] = ACTIONS(2042), - [anon_sym_static] = ACTIONS(2042), - [anon_sym_struct] = ACTIONS(2042), - [anon_sym_trait] = ACTIONS(2042), - [anon_sym_type] = ACTIONS(2042), - [anon_sym_union] = ACTIONS(2042), - [anon_sym_unsafe] = ACTIONS(2042), - [anon_sym_use] = ACTIONS(2042), - [anon_sym_while] = ACTIONS(2042), - [anon_sym_extern] = ACTIONS(2042), - [anon_sym_yield] = ACTIONS(2042), - [anon_sym_move] = ACTIONS(2042), - [anon_sym_try] = ACTIONS(2042), - [sym_integer_literal] = ACTIONS(2040), - [aux_sym_string_literal_token1] = ACTIONS(2040), - [sym_char_literal] = ACTIONS(2040), - [anon_sym_true] = ACTIONS(2042), - [anon_sym_false] = ACTIONS(2042), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2042), - [sym_super] = ACTIONS(2042), - [sym_crate] = ACTIONS(2042), - [sym_metavariable] = ACTIONS(2040), - [sym__raw_string_literal_start] = ACTIONS(2040), - [sym_float_literal] = ACTIONS(2040), + [anon_sym_DASH] = ACTIONS(1959), + [anon_sym_BANG] = ACTIONS(1959), + [anon_sym_AMP] = ACTIONS(1959), + [anon_sym_PIPE] = ACTIONS(1959), + [anon_sym_LT] = ACTIONS(1959), + [anon_sym_DOT_DOT] = ACTIONS(1959), + [anon_sym_COLON_COLON] = ACTIONS(1959), + [anon_sym_POUND] = ACTIONS(1959), + [anon_sym_SQUOTE] = ACTIONS(1961), + [anon_sym_async] = ACTIONS(1961), + [anon_sym_break] = ACTIONS(1961), + [anon_sym_const] = ACTIONS(1961), + [anon_sym_continue] = ACTIONS(1961), + [anon_sym_default] = ACTIONS(1961), + [anon_sym_enum] = ACTIONS(1961), + [anon_sym_fn] = ACTIONS(1961), + [anon_sym_for] = ACTIONS(1961), + [anon_sym_gen] = ACTIONS(1961), + [anon_sym_if] = ACTIONS(1961), + [anon_sym_impl] = ACTIONS(1961), + [anon_sym_let] = ACTIONS(1961), + [anon_sym_loop] = ACTIONS(1961), + [anon_sym_match] = ACTIONS(1961), + [anon_sym_mod] = ACTIONS(1961), + [anon_sym_pub] = ACTIONS(1961), + [anon_sym_return] = ACTIONS(1961), + [anon_sym_static] = ACTIONS(1961), + [anon_sym_struct] = ACTIONS(1961), + [anon_sym_trait] = ACTIONS(1961), + [anon_sym_type] = ACTIONS(1961), + [anon_sym_union] = ACTIONS(1961), + [anon_sym_unsafe] = ACTIONS(1961), + [anon_sym_use] = ACTIONS(1961), + [anon_sym_while] = ACTIONS(1961), + [anon_sym_extern] = ACTIONS(1961), + [anon_sym_safe] = ACTIONS(1961), + [anon_sym_yield] = ACTIONS(1961), + [anon_sym_move] = ACTIONS(1961), + [anon_sym_try] = ACTIONS(1961), + [sym_integer_literal] = ACTIONS(1959), + [aux_sym_string_literal_token1] = ACTIONS(1959), + [sym_char_literal] = ACTIONS(1959), + [anon_sym_true] = ACTIONS(1961), + [anon_sym_false] = ACTIONS(1961), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1961), + [sym_super] = ACTIONS(1961), + [sym_crate] = ACTIONS(1961), + [sym_metavariable] = ACTIONS(1959), + [sym__raw_string_literal_start] = ACTIONS(1959), + [sym_float_literal] = ACTIONS(1959), }, [STATE(534)] = { [sym_line_comment] = STATE(534), [sym_block_comment] = STATE(534), - [ts_builtin_sym_end] = ACTIONS(2044), - [sym_identifier] = ACTIONS(2046), - [anon_sym_SEMI] = ACTIONS(2044), - [anon_sym_macro_rules_BANG] = ACTIONS(2044), - [anon_sym_LPAREN] = ACTIONS(2044), - [anon_sym_LBRACK] = ACTIONS(2044), - [anon_sym_LBRACE] = ACTIONS(2044), - [anon_sym_RBRACE] = ACTIONS(2044), - [anon_sym_STAR] = ACTIONS(2044), - [anon_sym_u8] = ACTIONS(2046), - [anon_sym_i8] = ACTIONS(2046), - [anon_sym_u16] = ACTIONS(2046), - [anon_sym_i16] = ACTIONS(2046), - [anon_sym_u32] = ACTIONS(2046), - [anon_sym_i32] = ACTIONS(2046), - [anon_sym_u64] = ACTIONS(2046), - [anon_sym_i64] = ACTIONS(2046), - [anon_sym_u128] = ACTIONS(2046), - [anon_sym_i128] = ACTIONS(2046), - [anon_sym_isize] = ACTIONS(2046), - [anon_sym_usize] = ACTIONS(2046), - [anon_sym_f32] = ACTIONS(2046), - [anon_sym_f64] = ACTIONS(2046), - [anon_sym_bool] = ACTIONS(2046), - [anon_sym_str] = ACTIONS(2046), - [anon_sym_char] = ACTIONS(2046), - [anon_sym_DASH] = ACTIONS(2044), - [anon_sym_BANG] = ACTIONS(2044), - [anon_sym_AMP] = ACTIONS(2044), - [anon_sym_PIPE] = ACTIONS(2044), - [anon_sym_LT] = ACTIONS(2044), - [anon_sym_DOT_DOT] = ACTIONS(2044), - [anon_sym_COLON_COLON] = ACTIONS(2044), - [anon_sym_POUND] = ACTIONS(2044), - [anon_sym_SQUOTE] = ACTIONS(2046), - [anon_sym_async] = ACTIONS(2046), - [anon_sym_break] = ACTIONS(2046), - [anon_sym_const] = ACTIONS(2046), - [anon_sym_continue] = ACTIONS(2046), - [anon_sym_default] = ACTIONS(2046), - [anon_sym_enum] = ACTIONS(2046), - [anon_sym_fn] = ACTIONS(2046), - [anon_sym_for] = ACTIONS(2046), - [anon_sym_gen] = ACTIONS(2046), - [anon_sym_if] = ACTIONS(2046), - [anon_sym_impl] = ACTIONS(2046), - [anon_sym_let] = ACTIONS(2046), - [anon_sym_loop] = ACTIONS(2046), - [anon_sym_match] = ACTIONS(2046), - [anon_sym_mod] = ACTIONS(2046), - [anon_sym_pub] = ACTIONS(2046), - [anon_sym_return] = ACTIONS(2046), - [anon_sym_static] = ACTIONS(2046), - [anon_sym_struct] = ACTIONS(2046), - [anon_sym_trait] = ACTIONS(2046), - [anon_sym_type] = ACTIONS(2046), - [anon_sym_union] = ACTIONS(2046), - [anon_sym_unsafe] = ACTIONS(2046), - [anon_sym_use] = ACTIONS(2046), - [anon_sym_while] = ACTIONS(2046), - [anon_sym_extern] = ACTIONS(2046), - [anon_sym_yield] = ACTIONS(2046), - [anon_sym_move] = ACTIONS(2046), - [anon_sym_try] = ACTIONS(2046), - [sym_integer_literal] = ACTIONS(2044), - [aux_sym_string_literal_token1] = ACTIONS(2044), - [sym_char_literal] = ACTIONS(2044), - [anon_sym_true] = ACTIONS(2046), - [anon_sym_false] = ACTIONS(2046), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2046), - [sym_super] = ACTIONS(2046), - [sym_crate] = ACTIONS(2046), - [sym_metavariable] = ACTIONS(2044), - [sym__raw_string_literal_start] = ACTIONS(2044), - [sym_float_literal] = ACTIONS(2044), + [ts_builtin_sym_end] = ACTIONS(1963), + [sym_identifier] = ACTIONS(1965), + [anon_sym_SEMI] = ACTIONS(1963), + [anon_sym_macro_rules_BANG] = ACTIONS(1963), + [anon_sym_LPAREN] = ACTIONS(1963), + [anon_sym_LBRACK] = ACTIONS(1963), + [anon_sym_LBRACE] = ACTIONS(1963), + [anon_sym_RBRACE] = ACTIONS(1963), + [anon_sym_STAR] = ACTIONS(1963), + [anon_sym_u8] = ACTIONS(1965), + [anon_sym_i8] = ACTIONS(1965), + [anon_sym_u16] = ACTIONS(1965), + [anon_sym_i16] = ACTIONS(1965), + [anon_sym_u32] = ACTIONS(1965), + [anon_sym_i32] = ACTIONS(1965), + [anon_sym_u64] = ACTIONS(1965), + [anon_sym_i64] = ACTIONS(1965), + [anon_sym_u128] = ACTIONS(1965), + [anon_sym_i128] = ACTIONS(1965), + [anon_sym_isize] = ACTIONS(1965), + [anon_sym_usize] = ACTIONS(1965), + [anon_sym_f32] = ACTIONS(1965), + [anon_sym_f64] = ACTIONS(1965), + [anon_sym_bool] = ACTIONS(1965), + [anon_sym_str] = ACTIONS(1965), + [anon_sym_char] = ACTIONS(1965), + [anon_sym_DASH] = ACTIONS(1963), + [anon_sym_BANG] = ACTIONS(1963), + [anon_sym_AMP] = ACTIONS(1963), + [anon_sym_PIPE] = ACTIONS(1963), + [anon_sym_LT] = ACTIONS(1963), + [anon_sym_DOT_DOT] = ACTIONS(1963), + [anon_sym_COLON_COLON] = ACTIONS(1963), + [anon_sym_POUND] = ACTIONS(1963), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_async] = ACTIONS(1965), + [anon_sym_break] = ACTIONS(1965), + [anon_sym_const] = ACTIONS(1965), + [anon_sym_continue] = ACTIONS(1965), + [anon_sym_default] = ACTIONS(1965), + [anon_sym_enum] = ACTIONS(1965), + [anon_sym_fn] = ACTIONS(1965), + [anon_sym_for] = ACTIONS(1965), + [anon_sym_gen] = ACTIONS(1965), + [anon_sym_if] = ACTIONS(1965), + [anon_sym_impl] = ACTIONS(1965), + [anon_sym_let] = ACTIONS(1965), + [anon_sym_loop] = ACTIONS(1965), + [anon_sym_match] = ACTIONS(1965), + [anon_sym_mod] = ACTIONS(1965), + [anon_sym_pub] = ACTIONS(1965), + [anon_sym_return] = ACTIONS(1965), + [anon_sym_static] = ACTIONS(1965), + [anon_sym_struct] = ACTIONS(1965), + [anon_sym_trait] = ACTIONS(1965), + [anon_sym_type] = ACTIONS(1965), + [anon_sym_union] = ACTIONS(1965), + [anon_sym_unsafe] = ACTIONS(1965), + [anon_sym_use] = ACTIONS(1965), + [anon_sym_while] = ACTIONS(1965), + [anon_sym_extern] = ACTIONS(1965), + [anon_sym_safe] = ACTIONS(1965), + [anon_sym_yield] = ACTIONS(1965), + [anon_sym_move] = ACTIONS(1965), + [anon_sym_try] = ACTIONS(1965), + [sym_integer_literal] = ACTIONS(1963), + [aux_sym_string_literal_token1] = ACTIONS(1963), + [sym_char_literal] = ACTIONS(1963), + [anon_sym_true] = ACTIONS(1965), + [anon_sym_false] = ACTIONS(1965), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1965), + [sym_super] = ACTIONS(1965), + [sym_crate] = ACTIONS(1965), + [sym_metavariable] = ACTIONS(1963), + [sym__raw_string_literal_start] = ACTIONS(1963), + [sym_float_literal] = ACTIONS(1963), }, [STATE(535)] = { [sym_line_comment] = STATE(535), [sym_block_comment] = STATE(535), - [ts_builtin_sym_end] = ACTIONS(2048), - [sym_identifier] = ACTIONS(2050), - [anon_sym_SEMI] = ACTIONS(2048), - [anon_sym_macro_rules_BANG] = ACTIONS(2048), - [anon_sym_LPAREN] = ACTIONS(2048), - [anon_sym_LBRACK] = ACTIONS(2048), - [anon_sym_LBRACE] = ACTIONS(2048), - [anon_sym_RBRACE] = ACTIONS(2048), - [anon_sym_STAR] = ACTIONS(2048), - [anon_sym_u8] = ACTIONS(2050), - [anon_sym_i8] = ACTIONS(2050), - [anon_sym_u16] = ACTIONS(2050), - [anon_sym_i16] = ACTIONS(2050), - [anon_sym_u32] = ACTIONS(2050), - [anon_sym_i32] = ACTIONS(2050), - [anon_sym_u64] = ACTIONS(2050), - [anon_sym_i64] = ACTIONS(2050), - [anon_sym_u128] = ACTIONS(2050), - [anon_sym_i128] = ACTIONS(2050), - [anon_sym_isize] = ACTIONS(2050), - [anon_sym_usize] = ACTIONS(2050), - [anon_sym_f32] = ACTIONS(2050), - [anon_sym_f64] = ACTIONS(2050), - [anon_sym_bool] = ACTIONS(2050), - [anon_sym_str] = ACTIONS(2050), - [anon_sym_char] = ACTIONS(2050), - [anon_sym_DASH] = ACTIONS(2048), - [anon_sym_BANG] = ACTIONS(2048), - [anon_sym_AMP] = ACTIONS(2048), - [anon_sym_PIPE] = ACTIONS(2048), - [anon_sym_LT] = ACTIONS(2048), - [anon_sym_DOT_DOT] = ACTIONS(2048), - [anon_sym_COLON_COLON] = ACTIONS(2048), - [anon_sym_POUND] = ACTIONS(2048), - [anon_sym_SQUOTE] = ACTIONS(2050), - [anon_sym_async] = ACTIONS(2050), - [anon_sym_break] = ACTIONS(2050), - [anon_sym_const] = ACTIONS(2050), - [anon_sym_continue] = ACTIONS(2050), - [anon_sym_default] = ACTIONS(2050), - [anon_sym_enum] = ACTIONS(2050), - [anon_sym_fn] = ACTIONS(2050), - [anon_sym_for] = ACTIONS(2050), - [anon_sym_gen] = ACTIONS(2050), - [anon_sym_if] = ACTIONS(2050), - [anon_sym_impl] = ACTIONS(2050), - [anon_sym_let] = ACTIONS(2050), - [anon_sym_loop] = ACTIONS(2050), - [anon_sym_match] = ACTIONS(2050), - [anon_sym_mod] = ACTIONS(2050), - [anon_sym_pub] = ACTIONS(2050), - [anon_sym_return] = ACTIONS(2050), - [anon_sym_static] = ACTIONS(2050), - [anon_sym_struct] = ACTIONS(2050), - [anon_sym_trait] = ACTIONS(2050), - [anon_sym_type] = ACTIONS(2050), - [anon_sym_union] = ACTIONS(2050), - [anon_sym_unsafe] = ACTIONS(2050), - [anon_sym_use] = ACTIONS(2050), - [anon_sym_while] = ACTIONS(2050), - [anon_sym_extern] = ACTIONS(2050), - [anon_sym_yield] = ACTIONS(2050), - [anon_sym_move] = ACTIONS(2050), - [anon_sym_try] = ACTIONS(2050), - [sym_integer_literal] = ACTIONS(2048), - [aux_sym_string_literal_token1] = ACTIONS(2048), - [sym_char_literal] = ACTIONS(2048), - [anon_sym_true] = ACTIONS(2050), - [anon_sym_false] = ACTIONS(2050), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2050), - [sym_super] = ACTIONS(2050), - [sym_crate] = ACTIONS(2050), - [sym_metavariable] = ACTIONS(2048), - [sym__raw_string_literal_start] = ACTIONS(2048), - [sym_float_literal] = ACTIONS(2048), + [ts_builtin_sym_end] = ACTIONS(1967), + [sym_identifier] = ACTIONS(1969), + [anon_sym_SEMI] = ACTIONS(1967), + [anon_sym_macro_rules_BANG] = ACTIONS(1967), + [anon_sym_LPAREN] = ACTIONS(1967), + [anon_sym_LBRACK] = ACTIONS(1967), + [anon_sym_LBRACE] = ACTIONS(1967), + [anon_sym_RBRACE] = ACTIONS(1967), + [anon_sym_STAR] = ACTIONS(1967), + [anon_sym_u8] = ACTIONS(1969), + [anon_sym_i8] = ACTIONS(1969), + [anon_sym_u16] = ACTIONS(1969), + [anon_sym_i16] = ACTIONS(1969), + [anon_sym_u32] = ACTIONS(1969), + [anon_sym_i32] = ACTIONS(1969), + [anon_sym_u64] = ACTIONS(1969), + [anon_sym_i64] = ACTIONS(1969), + [anon_sym_u128] = ACTIONS(1969), + [anon_sym_i128] = ACTIONS(1969), + [anon_sym_isize] = ACTIONS(1969), + [anon_sym_usize] = ACTIONS(1969), + [anon_sym_f32] = ACTIONS(1969), + [anon_sym_f64] = ACTIONS(1969), + [anon_sym_bool] = ACTIONS(1969), + [anon_sym_str] = ACTIONS(1969), + [anon_sym_char] = ACTIONS(1969), + [anon_sym_DASH] = ACTIONS(1967), + [anon_sym_BANG] = ACTIONS(1967), + [anon_sym_AMP] = ACTIONS(1967), + [anon_sym_PIPE] = ACTIONS(1967), + [anon_sym_LT] = ACTIONS(1967), + [anon_sym_DOT_DOT] = ACTIONS(1967), + [anon_sym_COLON_COLON] = ACTIONS(1967), + [anon_sym_POUND] = ACTIONS(1967), + [anon_sym_SQUOTE] = ACTIONS(1969), + [anon_sym_async] = ACTIONS(1969), + [anon_sym_break] = ACTIONS(1969), + [anon_sym_const] = ACTIONS(1969), + [anon_sym_continue] = ACTIONS(1969), + [anon_sym_default] = ACTIONS(1969), + [anon_sym_enum] = ACTIONS(1969), + [anon_sym_fn] = ACTIONS(1969), + [anon_sym_for] = ACTIONS(1969), + [anon_sym_gen] = ACTIONS(1969), + [anon_sym_if] = ACTIONS(1969), + [anon_sym_impl] = ACTIONS(1969), + [anon_sym_let] = ACTIONS(1969), + [anon_sym_loop] = ACTIONS(1969), + [anon_sym_match] = ACTIONS(1969), + [anon_sym_mod] = ACTIONS(1969), + [anon_sym_pub] = ACTIONS(1969), + [anon_sym_return] = ACTIONS(1969), + [anon_sym_static] = ACTIONS(1969), + [anon_sym_struct] = ACTIONS(1969), + [anon_sym_trait] = ACTIONS(1969), + [anon_sym_type] = ACTIONS(1969), + [anon_sym_union] = ACTIONS(1969), + [anon_sym_unsafe] = ACTIONS(1969), + [anon_sym_use] = ACTIONS(1969), + [anon_sym_while] = ACTIONS(1969), + [anon_sym_extern] = ACTIONS(1969), + [anon_sym_safe] = ACTIONS(1969), + [anon_sym_yield] = ACTIONS(1969), + [anon_sym_move] = ACTIONS(1969), + [anon_sym_try] = ACTIONS(1969), + [sym_integer_literal] = ACTIONS(1967), + [aux_sym_string_literal_token1] = ACTIONS(1967), + [sym_char_literal] = ACTIONS(1967), + [anon_sym_true] = ACTIONS(1969), + [anon_sym_false] = ACTIONS(1969), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1969), + [sym_super] = ACTIONS(1969), + [sym_crate] = ACTIONS(1969), + [sym_metavariable] = ACTIONS(1967), + [sym__raw_string_literal_start] = ACTIONS(1967), + [sym_float_literal] = ACTIONS(1967), }, [STATE(536)] = { [sym_line_comment] = STATE(536), [sym_block_comment] = STATE(536), - [ts_builtin_sym_end] = ACTIONS(2052), - [sym_identifier] = ACTIONS(2054), - [anon_sym_SEMI] = ACTIONS(2052), - [anon_sym_macro_rules_BANG] = ACTIONS(2052), - [anon_sym_LPAREN] = ACTIONS(2052), - [anon_sym_LBRACK] = ACTIONS(2052), - [anon_sym_LBRACE] = ACTIONS(2052), - [anon_sym_RBRACE] = ACTIONS(2052), - [anon_sym_STAR] = ACTIONS(2052), - [anon_sym_u8] = ACTIONS(2054), - [anon_sym_i8] = ACTIONS(2054), - [anon_sym_u16] = ACTIONS(2054), - [anon_sym_i16] = ACTIONS(2054), - [anon_sym_u32] = ACTIONS(2054), - [anon_sym_i32] = ACTIONS(2054), - [anon_sym_u64] = ACTIONS(2054), - [anon_sym_i64] = ACTIONS(2054), - [anon_sym_u128] = ACTIONS(2054), - [anon_sym_i128] = ACTIONS(2054), - [anon_sym_isize] = ACTIONS(2054), - [anon_sym_usize] = ACTIONS(2054), - [anon_sym_f32] = ACTIONS(2054), - [anon_sym_f64] = ACTIONS(2054), - [anon_sym_bool] = ACTIONS(2054), - [anon_sym_str] = ACTIONS(2054), - [anon_sym_char] = ACTIONS(2054), - [anon_sym_DASH] = ACTIONS(2052), - [anon_sym_BANG] = ACTIONS(2052), - [anon_sym_AMP] = ACTIONS(2052), - [anon_sym_PIPE] = ACTIONS(2052), - [anon_sym_LT] = ACTIONS(2052), - [anon_sym_DOT_DOT] = ACTIONS(2052), - [anon_sym_COLON_COLON] = ACTIONS(2052), - [anon_sym_POUND] = ACTIONS(2052), - [anon_sym_SQUOTE] = ACTIONS(2054), - [anon_sym_async] = ACTIONS(2054), - [anon_sym_break] = ACTIONS(2054), - [anon_sym_const] = ACTIONS(2054), - [anon_sym_continue] = ACTIONS(2054), - [anon_sym_default] = ACTIONS(2054), - [anon_sym_enum] = ACTIONS(2054), - [anon_sym_fn] = ACTIONS(2054), - [anon_sym_for] = ACTIONS(2054), - [anon_sym_gen] = ACTIONS(2054), - [anon_sym_if] = ACTIONS(2054), - [anon_sym_impl] = ACTIONS(2054), - [anon_sym_let] = ACTIONS(2054), - [anon_sym_loop] = ACTIONS(2054), - [anon_sym_match] = ACTIONS(2054), - [anon_sym_mod] = ACTIONS(2054), - [anon_sym_pub] = ACTIONS(2054), - [anon_sym_return] = ACTIONS(2054), - [anon_sym_static] = ACTIONS(2054), - [anon_sym_struct] = ACTIONS(2054), - [anon_sym_trait] = ACTIONS(2054), - [anon_sym_type] = ACTIONS(2054), - [anon_sym_union] = ACTIONS(2054), - [anon_sym_unsafe] = ACTIONS(2054), - [anon_sym_use] = ACTIONS(2054), - [anon_sym_while] = ACTIONS(2054), - [anon_sym_extern] = ACTIONS(2054), - [anon_sym_yield] = ACTIONS(2054), - [anon_sym_move] = ACTIONS(2054), - [anon_sym_try] = ACTIONS(2054), - [sym_integer_literal] = ACTIONS(2052), - [aux_sym_string_literal_token1] = ACTIONS(2052), - [sym_char_literal] = ACTIONS(2052), - [anon_sym_true] = ACTIONS(2054), - [anon_sym_false] = ACTIONS(2054), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2054), - [sym_super] = ACTIONS(2054), - [sym_crate] = ACTIONS(2054), - [sym_metavariable] = ACTIONS(2052), - [sym__raw_string_literal_start] = ACTIONS(2052), - [sym_float_literal] = ACTIONS(2052), + [ts_builtin_sym_end] = ACTIONS(1971), + [sym_identifier] = ACTIONS(1973), + [anon_sym_SEMI] = ACTIONS(1971), + [anon_sym_macro_rules_BANG] = ACTIONS(1971), + [anon_sym_LPAREN] = ACTIONS(1971), + [anon_sym_LBRACK] = ACTIONS(1971), + [anon_sym_LBRACE] = ACTIONS(1971), + [anon_sym_RBRACE] = ACTIONS(1971), + [anon_sym_STAR] = ACTIONS(1971), + [anon_sym_u8] = ACTIONS(1973), + [anon_sym_i8] = ACTIONS(1973), + [anon_sym_u16] = ACTIONS(1973), + [anon_sym_i16] = ACTIONS(1973), + [anon_sym_u32] = ACTIONS(1973), + [anon_sym_i32] = ACTIONS(1973), + [anon_sym_u64] = ACTIONS(1973), + [anon_sym_i64] = ACTIONS(1973), + [anon_sym_u128] = ACTIONS(1973), + [anon_sym_i128] = ACTIONS(1973), + [anon_sym_isize] = ACTIONS(1973), + [anon_sym_usize] = ACTIONS(1973), + [anon_sym_f32] = ACTIONS(1973), + [anon_sym_f64] = ACTIONS(1973), + [anon_sym_bool] = ACTIONS(1973), + [anon_sym_str] = ACTIONS(1973), + [anon_sym_char] = ACTIONS(1973), + [anon_sym_DASH] = ACTIONS(1971), + [anon_sym_BANG] = ACTIONS(1971), + [anon_sym_AMP] = ACTIONS(1971), + [anon_sym_PIPE] = ACTIONS(1971), + [anon_sym_LT] = ACTIONS(1971), + [anon_sym_DOT_DOT] = ACTIONS(1971), + [anon_sym_COLON_COLON] = ACTIONS(1971), + [anon_sym_POUND] = ACTIONS(1971), + [anon_sym_SQUOTE] = ACTIONS(1973), + [anon_sym_async] = ACTIONS(1973), + [anon_sym_break] = ACTIONS(1973), + [anon_sym_const] = ACTIONS(1973), + [anon_sym_continue] = ACTIONS(1973), + [anon_sym_default] = ACTIONS(1973), + [anon_sym_enum] = ACTIONS(1973), + [anon_sym_fn] = ACTIONS(1973), + [anon_sym_for] = ACTIONS(1973), + [anon_sym_gen] = ACTIONS(1973), + [anon_sym_if] = ACTIONS(1973), + [anon_sym_impl] = ACTIONS(1973), + [anon_sym_let] = ACTIONS(1973), + [anon_sym_loop] = ACTIONS(1973), + [anon_sym_match] = ACTIONS(1973), + [anon_sym_mod] = ACTIONS(1973), + [anon_sym_pub] = ACTIONS(1973), + [anon_sym_return] = ACTIONS(1973), + [anon_sym_static] = ACTIONS(1973), + [anon_sym_struct] = ACTIONS(1973), + [anon_sym_trait] = ACTIONS(1973), + [anon_sym_type] = ACTIONS(1973), + [anon_sym_union] = ACTIONS(1973), + [anon_sym_unsafe] = ACTIONS(1973), + [anon_sym_use] = ACTIONS(1973), + [anon_sym_while] = ACTIONS(1973), + [anon_sym_extern] = ACTIONS(1973), + [anon_sym_safe] = ACTIONS(1973), + [anon_sym_yield] = ACTIONS(1973), + [anon_sym_move] = ACTIONS(1973), + [anon_sym_try] = ACTIONS(1973), + [sym_integer_literal] = ACTIONS(1971), + [aux_sym_string_literal_token1] = ACTIONS(1971), + [sym_char_literal] = ACTIONS(1971), + [anon_sym_true] = ACTIONS(1973), + [anon_sym_false] = ACTIONS(1973), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1973), + [sym_super] = ACTIONS(1973), + [sym_crate] = ACTIONS(1973), + [sym_metavariable] = ACTIONS(1971), + [sym__raw_string_literal_start] = ACTIONS(1971), + [sym_float_literal] = ACTIONS(1971), }, [STATE(537)] = { [sym_line_comment] = STATE(537), [sym_block_comment] = STATE(537), - [ts_builtin_sym_end] = ACTIONS(2056), - [sym_identifier] = ACTIONS(2058), - [anon_sym_SEMI] = ACTIONS(2056), - [anon_sym_macro_rules_BANG] = ACTIONS(2056), - [anon_sym_LPAREN] = ACTIONS(2056), - [anon_sym_LBRACK] = ACTIONS(2056), - [anon_sym_LBRACE] = ACTIONS(2056), - [anon_sym_RBRACE] = ACTIONS(2056), - [anon_sym_STAR] = ACTIONS(2056), - [anon_sym_u8] = ACTIONS(2058), - [anon_sym_i8] = ACTIONS(2058), - [anon_sym_u16] = ACTIONS(2058), - [anon_sym_i16] = ACTIONS(2058), - [anon_sym_u32] = ACTIONS(2058), - [anon_sym_i32] = ACTIONS(2058), - [anon_sym_u64] = ACTIONS(2058), - [anon_sym_i64] = ACTIONS(2058), - [anon_sym_u128] = ACTIONS(2058), - [anon_sym_i128] = ACTIONS(2058), - [anon_sym_isize] = ACTIONS(2058), - [anon_sym_usize] = ACTIONS(2058), - [anon_sym_f32] = ACTIONS(2058), - [anon_sym_f64] = ACTIONS(2058), - [anon_sym_bool] = ACTIONS(2058), - [anon_sym_str] = ACTIONS(2058), - [anon_sym_char] = ACTIONS(2058), - [anon_sym_DASH] = ACTIONS(2056), - [anon_sym_BANG] = ACTIONS(2056), - [anon_sym_AMP] = ACTIONS(2056), - [anon_sym_PIPE] = ACTIONS(2056), - [anon_sym_LT] = ACTIONS(2056), - [anon_sym_DOT_DOT] = ACTIONS(2056), - [anon_sym_COLON_COLON] = ACTIONS(2056), - [anon_sym_POUND] = ACTIONS(2056), - [anon_sym_SQUOTE] = ACTIONS(2058), - [anon_sym_async] = ACTIONS(2058), - [anon_sym_break] = ACTIONS(2058), - [anon_sym_const] = ACTIONS(2058), - [anon_sym_continue] = ACTIONS(2058), - [anon_sym_default] = ACTIONS(2058), - [anon_sym_enum] = ACTIONS(2058), - [anon_sym_fn] = ACTIONS(2058), - [anon_sym_for] = ACTIONS(2058), - [anon_sym_gen] = ACTIONS(2058), - [anon_sym_if] = ACTIONS(2058), - [anon_sym_impl] = ACTIONS(2058), - [anon_sym_let] = ACTIONS(2058), - [anon_sym_loop] = ACTIONS(2058), - [anon_sym_match] = ACTIONS(2058), - [anon_sym_mod] = ACTIONS(2058), - [anon_sym_pub] = ACTIONS(2058), - [anon_sym_return] = ACTIONS(2058), - [anon_sym_static] = ACTIONS(2058), - [anon_sym_struct] = ACTIONS(2058), - [anon_sym_trait] = ACTIONS(2058), - [anon_sym_type] = ACTIONS(2058), - [anon_sym_union] = ACTIONS(2058), - [anon_sym_unsafe] = ACTIONS(2058), - [anon_sym_use] = ACTIONS(2058), - [anon_sym_while] = ACTIONS(2058), - [anon_sym_extern] = ACTIONS(2058), - [anon_sym_yield] = ACTIONS(2058), - [anon_sym_move] = ACTIONS(2058), - [anon_sym_try] = ACTIONS(2058), - [sym_integer_literal] = ACTIONS(2056), - [aux_sym_string_literal_token1] = ACTIONS(2056), - [sym_char_literal] = ACTIONS(2056), - [anon_sym_true] = ACTIONS(2058), - [anon_sym_false] = ACTIONS(2058), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2058), - [sym_super] = ACTIONS(2058), - [sym_crate] = ACTIONS(2058), - [sym_metavariable] = ACTIONS(2056), - [sym__raw_string_literal_start] = ACTIONS(2056), - [sym_float_literal] = ACTIONS(2056), + [ts_builtin_sym_end] = ACTIONS(1975), + [sym_identifier] = ACTIONS(1977), + [anon_sym_SEMI] = ACTIONS(1975), + [anon_sym_macro_rules_BANG] = ACTIONS(1975), + [anon_sym_LPAREN] = ACTIONS(1975), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_LBRACE] = ACTIONS(1975), + [anon_sym_RBRACE] = ACTIONS(1975), + [anon_sym_STAR] = ACTIONS(1975), + [anon_sym_u8] = ACTIONS(1977), + [anon_sym_i8] = ACTIONS(1977), + [anon_sym_u16] = ACTIONS(1977), + [anon_sym_i16] = ACTIONS(1977), + [anon_sym_u32] = ACTIONS(1977), + [anon_sym_i32] = ACTIONS(1977), + [anon_sym_u64] = ACTIONS(1977), + [anon_sym_i64] = ACTIONS(1977), + [anon_sym_u128] = ACTIONS(1977), + [anon_sym_i128] = ACTIONS(1977), + [anon_sym_isize] = ACTIONS(1977), + [anon_sym_usize] = ACTIONS(1977), + [anon_sym_f32] = ACTIONS(1977), + [anon_sym_f64] = ACTIONS(1977), + [anon_sym_bool] = ACTIONS(1977), + [anon_sym_str] = ACTIONS(1977), + [anon_sym_char] = ACTIONS(1977), + [anon_sym_DASH] = ACTIONS(1975), + [anon_sym_BANG] = ACTIONS(1975), + [anon_sym_AMP] = ACTIONS(1975), + [anon_sym_PIPE] = ACTIONS(1975), + [anon_sym_LT] = ACTIONS(1975), + [anon_sym_DOT_DOT] = ACTIONS(1975), + [anon_sym_COLON_COLON] = ACTIONS(1975), + [anon_sym_POUND] = ACTIONS(1975), + [anon_sym_SQUOTE] = ACTIONS(1977), + [anon_sym_async] = ACTIONS(1977), + [anon_sym_break] = ACTIONS(1977), + [anon_sym_const] = ACTIONS(1977), + [anon_sym_continue] = ACTIONS(1977), + [anon_sym_default] = ACTIONS(1977), + [anon_sym_enum] = ACTIONS(1977), + [anon_sym_fn] = ACTIONS(1977), + [anon_sym_for] = ACTIONS(1977), + [anon_sym_gen] = ACTIONS(1977), + [anon_sym_if] = ACTIONS(1977), + [anon_sym_impl] = ACTIONS(1977), + [anon_sym_let] = ACTIONS(1977), + [anon_sym_loop] = ACTIONS(1977), + [anon_sym_match] = ACTIONS(1977), + [anon_sym_mod] = ACTIONS(1977), + [anon_sym_pub] = ACTIONS(1977), + [anon_sym_return] = ACTIONS(1977), + [anon_sym_static] = ACTIONS(1977), + [anon_sym_struct] = ACTIONS(1977), + [anon_sym_trait] = ACTIONS(1977), + [anon_sym_type] = ACTIONS(1977), + [anon_sym_union] = ACTIONS(1977), + [anon_sym_unsafe] = ACTIONS(1977), + [anon_sym_use] = ACTIONS(1977), + [anon_sym_while] = ACTIONS(1977), + [anon_sym_extern] = ACTIONS(1977), + [anon_sym_safe] = ACTIONS(1977), + [anon_sym_yield] = ACTIONS(1977), + [anon_sym_move] = ACTIONS(1977), + [anon_sym_try] = ACTIONS(1977), + [sym_integer_literal] = ACTIONS(1975), + [aux_sym_string_literal_token1] = ACTIONS(1975), + [sym_char_literal] = ACTIONS(1975), + [anon_sym_true] = ACTIONS(1977), + [anon_sym_false] = ACTIONS(1977), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1977), + [sym_super] = ACTIONS(1977), + [sym_crate] = ACTIONS(1977), + [sym_metavariable] = ACTIONS(1975), + [sym__raw_string_literal_start] = ACTIONS(1975), + [sym_float_literal] = ACTIONS(1975), }, [STATE(538)] = { [sym_line_comment] = STATE(538), [sym_block_comment] = STATE(538), - [ts_builtin_sym_end] = ACTIONS(2060), - [sym_identifier] = ACTIONS(2062), - [anon_sym_SEMI] = ACTIONS(2060), - [anon_sym_macro_rules_BANG] = ACTIONS(2060), - [anon_sym_LPAREN] = ACTIONS(2060), - [anon_sym_LBRACK] = ACTIONS(2060), - [anon_sym_LBRACE] = ACTIONS(2060), - [anon_sym_RBRACE] = ACTIONS(2060), - [anon_sym_STAR] = ACTIONS(2060), - [anon_sym_u8] = ACTIONS(2062), - [anon_sym_i8] = ACTIONS(2062), - [anon_sym_u16] = ACTIONS(2062), - [anon_sym_i16] = ACTIONS(2062), - [anon_sym_u32] = ACTIONS(2062), - [anon_sym_i32] = ACTIONS(2062), - [anon_sym_u64] = ACTIONS(2062), - [anon_sym_i64] = ACTIONS(2062), - [anon_sym_u128] = ACTIONS(2062), - [anon_sym_i128] = ACTIONS(2062), - [anon_sym_isize] = ACTIONS(2062), - [anon_sym_usize] = ACTIONS(2062), - [anon_sym_f32] = ACTIONS(2062), - [anon_sym_f64] = ACTIONS(2062), - [anon_sym_bool] = ACTIONS(2062), - [anon_sym_str] = ACTIONS(2062), - [anon_sym_char] = ACTIONS(2062), - [anon_sym_DASH] = ACTIONS(2060), - [anon_sym_BANG] = ACTIONS(2060), - [anon_sym_AMP] = ACTIONS(2060), - [anon_sym_PIPE] = ACTIONS(2060), - [anon_sym_LT] = ACTIONS(2060), - [anon_sym_DOT_DOT] = ACTIONS(2060), - [anon_sym_COLON_COLON] = ACTIONS(2060), - [anon_sym_POUND] = ACTIONS(2060), - [anon_sym_SQUOTE] = ACTIONS(2062), - [anon_sym_async] = ACTIONS(2062), - [anon_sym_break] = ACTIONS(2062), - [anon_sym_const] = ACTIONS(2062), - [anon_sym_continue] = ACTIONS(2062), - [anon_sym_default] = ACTIONS(2062), - [anon_sym_enum] = ACTIONS(2062), - [anon_sym_fn] = ACTIONS(2062), - [anon_sym_for] = ACTIONS(2062), - [anon_sym_gen] = ACTIONS(2062), - [anon_sym_if] = ACTIONS(2062), - [anon_sym_impl] = ACTIONS(2062), - [anon_sym_let] = ACTIONS(2062), - [anon_sym_loop] = ACTIONS(2062), - [anon_sym_match] = ACTIONS(2062), - [anon_sym_mod] = ACTIONS(2062), - [anon_sym_pub] = ACTIONS(2062), - [anon_sym_return] = ACTIONS(2062), - [anon_sym_static] = ACTIONS(2062), - [anon_sym_struct] = ACTIONS(2062), - [anon_sym_trait] = ACTIONS(2062), - [anon_sym_type] = ACTIONS(2062), - [anon_sym_union] = ACTIONS(2062), - [anon_sym_unsafe] = ACTIONS(2062), - [anon_sym_use] = ACTIONS(2062), - [anon_sym_while] = ACTIONS(2062), - [anon_sym_extern] = ACTIONS(2062), - [anon_sym_yield] = ACTIONS(2062), - [anon_sym_move] = ACTIONS(2062), - [anon_sym_try] = ACTIONS(2062), - [sym_integer_literal] = ACTIONS(2060), - [aux_sym_string_literal_token1] = ACTIONS(2060), - [sym_char_literal] = ACTIONS(2060), - [anon_sym_true] = ACTIONS(2062), - [anon_sym_false] = ACTIONS(2062), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2062), - [sym_super] = ACTIONS(2062), - [sym_crate] = ACTIONS(2062), - [sym_metavariable] = ACTIONS(2060), - [sym__raw_string_literal_start] = ACTIONS(2060), - [sym_float_literal] = ACTIONS(2060), + [ts_builtin_sym_end] = ACTIONS(1979), + [sym_identifier] = ACTIONS(1981), + [anon_sym_SEMI] = ACTIONS(1979), + [anon_sym_macro_rules_BANG] = ACTIONS(1979), + [anon_sym_LPAREN] = ACTIONS(1979), + [anon_sym_LBRACK] = ACTIONS(1979), + [anon_sym_LBRACE] = ACTIONS(1979), + [anon_sym_RBRACE] = ACTIONS(1979), + [anon_sym_STAR] = ACTIONS(1979), + [anon_sym_u8] = ACTIONS(1981), + [anon_sym_i8] = ACTIONS(1981), + [anon_sym_u16] = ACTIONS(1981), + [anon_sym_i16] = ACTIONS(1981), + [anon_sym_u32] = ACTIONS(1981), + [anon_sym_i32] = ACTIONS(1981), + [anon_sym_u64] = ACTIONS(1981), + [anon_sym_i64] = ACTIONS(1981), + [anon_sym_u128] = ACTIONS(1981), + [anon_sym_i128] = ACTIONS(1981), + [anon_sym_isize] = ACTIONS(1981), + [anon_sym_usize] = ACTIONS(1981), + [anon_sym_f32] = ACTIONS(1981), + [anon_sym_f64] = ACTIONS(1981), + [anon_sym_bool] = ACTIONS(1981), + [anon_sym_str] = ACTIONS(1981), + [anon_sym_char] = ACTIONS(1981), + [anon_sym_DASH] = ACTIONS(1979), + [anon_sym_BANG] = ACTIONS(1979), + [anon_sym_AMP] = ACTIONS(1979), + [anon_sym_PIPE] = ACTIONS(1979), + [anon_sym_LT] = ACTIONS(1979), + [anon_sym_DOT_DOT] = ACTIONS(1979), + [anon_sym_COLON_COLON] = ACTIONS(1979), + [anon_sym_POUND] = ACTIONS(1979), + [anon_sym_SQUOTE] = ACTIONS(1981), + [anon_sym_async] = ACTIONS(1981), + [anon_sym_break] = ACTIONS(1981), + [anon_sym_const] = ACTIONS(1981), + [anon_sym_continue] = ACTIONS(1981), + [anon_sym_default] = ACTIONS(1981), + [anon_sym_enum] = ACTIONS(1981), + [anon_sym_fn] = ACTIONS(1981), + [anon_sym_for] = ACTIONS(1981), + [anon_sym_gen] = ACTIONS(1981), + [anon_sym_if] = ACTIONS(1981), + [anon_sym_impl] = ACTIONS(1981), + [anon_sym_let] = ACTIONS(1981), + [anon_sym_loop] = ACTIONS(1981), + [anon_sym_match] = ACTIONS(1981), + [anon_sym_mod] = ACTIONS(1981), + [anon_sym_pub] = ACTIONS(1981), + [anon_sym_return] = ACTIONS(1981), + [anon_sym_static] = ACTIONS(1981), + [anon_sym_struct] = ACTIONS(1981), + [anon_sym_trait] = ACTIONS(1981), + [anon_sym_type] = ACTIONS(1981), + [anon_sym_union] = ACTIONS(1981), + [anon_sym_unsafe] = ACTIONS(1981), + [anon_sym_use] = ACTIONS(1981), + [anon_sym_while] = ACTIONS(1981), + [anon_sym_extern] = ACTIONS(1981), + [anon_sym_safe] = ACTIONS(1981), + [anon_sym_yield] = ACTIONS(1981), + [anon_sym_move] = ACTIONS(1981), + [anon_sym_try] = ACTIONS(1981), + [sym_integer_literal] = ACTIONS(1979), + [aux_sym_string_literal_token1] = ACTIONS(1979), + [sym_char_literal] = ACTIONS(1979), + [anon_sym_true] = ACTIONS(1981), + [anon_sym_false] = ACTIONS(1981), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1981), + [sym_super] = ACTIONS(1981), + [sym_crate] = ACTIONS(1981), + [sym_metavariable] = ACTIONS(1979), + [sym__raw_string_literal_start] = ACTIONS(1979), + [sym_float_literal] = ACTIONS(1979), }, [STATE(539)] = { [sym_line_comment] = STATE(539), [sym_block_comment] = STATE(539), - [ts_builtin_sym_end] = ACTIONS(2064), - [sym_identifier] = ACTIONS(2066), - [anon_sym_SEMI] = ACTIONS(2064), - [anon_sym_macro_rules_BANG] = ACTIONS(2064), - [anon_sym_LPAREN] = ACTIONS(2064), - [anon_sym_LBRACK] = ACTIONS(2064), - [anon_sym_LBRACE] = ACTIONS(2064), - [anon_sym_RBRACE] = ACTIONS(2064), - [anon_sym_STAR] = ACTIONS(2064), - [anon_sym_u8] = ACTIONS(2066), - [anon_sym_i8] = ACTIONS(2066), - [anon_sym_u16] = ACTIONS(2066), - [anon_sym_i16] = ACTIONS(2066), - [anon_sym_u32] = ACTIONS(2066), - [anon_sym_i32] = ACTIONS(2066), - [anon_sym_u64] = ACTIONS(2066), - [anon_sym_i64] = ACTIONS(2066), - [anon_sym_u128] = ACTIONS(2066), - [anon_sym_i128] = ACTIONS(2066), - [anon_sym_isize] = ACTIONS(2066), - [anon_sym_usize] = ACTIONS(2066), - [anon_sym_f32] = ACTIONS(2066), - [anon_sym_f64] = ACTIONS(2066), - [anon_sym_bool] = ACTIONS(2066), - [anon_sym_str] = ACTIONS(2066), - [anon_sym_char] = ACTIONS(2066), - [anon_sym_DASH] = ACTIONS(2064), - [anon_sym_BANG] = ACTIONS(2064), - [anon_sym_AMP] = ACTIONS(2064), - [anon_sym_PIPE] = ACTIONS(2064), - [anon_sym_LT] = ACTIONS(2064), - [anon_sym_DOT_DOT] = ACTIONS(2064), - [anon_sym_COLON_COLON] = ACTIONS(2064), - [anon_sym_POUND] = ACTIONS(2064), - [anon_sym_SQUOTE] = ACTIONS(2066), - [anon_sym_async] = ACTIONS(2066), - [anon_sym_break] = ACTIONS(2066), - [anon_sym_const] = ACTIONS(2066), - [anon_sym_continue] = ACTIONS(2066), - [anon_sym_default] = ACTIONS(2066), - [anon_sym_enum] = ACTIONS(2066), - [anon_sym_fn] = ACTIONS(2066), - [anon_sym_for] = ACTIONS(2066), - [anon_sym_gen] = ACTIONS(2066), - [anon_sym_if] = ACTIONS(2066), - [anon_sym_impl] = ACTIONS(2066), - [anon_sym_let] = ACTIONS(2066), - [anon_sym_loop] = ACTIONS(2066), - [anon_sym_match] = ACTIONS(2066), - [anon_sym_mod] = ACTIONS(2066), - [anon_sym_pub] = ACTIONS(2066), - [anon_sym_return] = ACTIONS(2066), - [anon_sym_static] = ACTIONS(2066), - [anon_sym_struct] = ACTIONS(2066), - [anon_sym_trait] = ACTIONS(2066), - [anon_sym_type] = ACTIONS(2066), - [anon_sym_union] = ACTIONS(2066), - [anon_sym_unsafe] = ACTIONS(2066), - [anon_sym_use] = ACTIONS(2066), - [anon_sym_while] = ACTIONS(2066), - [anon_sym_extern] = ACTIONS(2066), - [anon_sym_yield] = ACTIONS(2066), - [anon_sym_move] = ACTIONS(2066), - [anon_sym_try] = ACTIONS(2066), - [sym_integer_literal] = ACTIONS(2064), - [aux_sym_string_literal_token1] = ACTIONS(2064), - [sym_char_literal] = ACTIONS(2064), - [anon_sym_true] = ACTIONS(2066), - [anon_sym_false] = ACTIONS(2066), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2066), - [sym_super] = ACTIONS(2066), - [sym_crate] = ACTIONS(2066), - [sym_metavariable] = ACTIONS(2064), - [sym__raw_string_literal_start] = ACTIONS(2064), - [sym_float_literal] = ACTIONS(2064), + [ts_builtin_sym_end] = ACTIONS(1983), + [sym_identifier] = ACTIONS(1985), + [anon_sym_SEMI] = ACTIONS(1983), + [anon_sym_macro_rules_BANG] = ACTIONS(1983), + [anon_sym_LPAREN] = ACTIONS(1983), + [anon_sym_LBRACK] = ACTIONS(1983), + [anon_sym_LBRACE] = ACTIONS(1983), + [anon_sym_RBRACE] = ACTIONS(1983), + [anon_sym_STAR] = ACTIONS(1983), + [anon_sym_u8] = ACTIONS(1985), + [anon_sym_i8] = ACTIONS(1985), + [anon_sym_u16] = ACTIONS(1985), + [anon_sym_i16] = ACTIONS(1985), + [anon_sym_u32] = ACTIONS(1985), + [anon_sym_i32] = ACTIONS(1985), + [anon_sym_u64] = ACTIONS(1985), + [anon_sym_i64] = ACTIONS(1985), + [anon_sym_u128] = ACTIONS(1985), + [anon_sym_i128] = ACTIONS(1985), + [anon_sym_isize] = ACTIONS(1985), + [anon_sym_usize] = ACTIONS(1985), + [anon_sym_f32] = ACTIONS(1985), + [anon_sym_f64] = ACTIONS(1985), + [anon_sym_bool] = ACTIONS(1985), + [anon_sym_str] = ACTIONS(1985), + [anon_sym_char] = ACTIONS(1985), + [anon_sym_DASH] = ACTIONS(1983), + [anon_sym_BANG] = ACTIONS(1983), + [anon_sym_AMP] = ACTIONS(1983), + [anon_sym_PIPE] = ACTIONS(1983), + [anon_sym_LT] = ACTIONS(1983), + [anon_sym_DOT_DOT] = ACTIONS(1983), + [anon_sym_COLON_COLON] = ACTIONS(1983), + [anon_sym_POUND] = ACTIONS(1983), + [anon_sym_SQUOTE] = ACTIONS(1985), + [anon_sym_async] = ACTIONS(1985), + [anon_sym_break] = ACTIONS(1985), + [anon_sym_const] = ACTIONS(1985), + [anon_sym_continue] = ACTIONS(1985), + [anon_sym_default] = ACTIONS(1985), + [anon_sym_enum] = ACTIONS(1985), + [anon_sym_fn] = ACTIONS(1985), + [anon_sym_for] = ACTIONS(1985), + [anon_sym_gen] = ACTIONS(1985), + [anon_sym_if] = ACTIONS(1985), + [anon_sym_impl] = ACTIONS(1985), + [anon_sym_let] = ACTIONS(1985), + [anon_sym_loop] = ACTIONS(1985), + [anon_sym_match] = ACTIONS(1985), + [anon_sym_mod] = ACTIONS(1985), + [anon_sym_pub] = ACTIONS(1985), + [anon_sym_return] = ACTIONS(1985), + [anon_sym_static] = ACTIONS(1985), + [anon_sym_struct] = ACTIONS(1985), + [anon_sym_trait] = ACTIONS(1985), + [anon_sym_type] = ACTIONS(1985), + [anon_sym_union] = ACTIONS(1985), + [anon_sym_unsafe] = ACTIONS(1985), + [anon_sym_use] = ACTIONS(1985), + [anon_sym_while] = ACTIONS(1985), + [anon_sym_extern] = ACTIONS(1985), + [anon_sym_safe] = ACTIONS(1985), + [anon_sym_yield] = ACTIONS(1985), + [anon_sym_move] = ACTIONS(1985), + [anon_sym_try] = ACTIONS(1985), + [sym_integer_literal] = ACTIONS(1983), + [aux_sym_string_literal_token1] = ACTIONS(1983), + [sym_char_literal] = ACTIONS(1983), + [anon_sym_true] = ACTIONS(1985), + [anon_sym_false] = ACTIONS(1985), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1985), + [sym_super] = ACTIONS(1985), + [sym_crate] = ACTIONS(1985), + [sym_metavariable] = ACTIONS(1983), + [sym__raw_string_literal_start] = ACTIONS(1983), + [sym_float_literal] = ACTIONS(1983), }, [STATE(540)] = { [sym_line_comment] = STATE(540), [sym_block_comment] = STATE(540), - [ts_builtin_sym_end] = ACTIONS(2068), - [sym_identifier] = ACTIONS(2070), - [anon_sym_SEMI] = ACTIONS(2068), - [anon_sym_macro_rules_BANG] = ACTIONS(2068), - [anon_sym_LPAREN] = ACTIONS(2068), - [anon_sym_LBRACK] = ACTIONS(2068), - [anon_sym_LBRACE] = ACTIONS(2068), - [anon_sym_RBRACE] = ACTIONS(2068), - [anon_sym_STAR] = ACTIONS(2068), - [anon_sym_u8] = ACTIONS(2070), - [anon_sym_i8] = ACTIONS(2070), - [anon_sym_u16] = ACTIONS(2070), - [anon_sym_i16] = ACTIONS(2070), - [anon_sym_u32] = ACTIONS(2070), - [anon_sym_i32] = ACTIONS(2070), - [anon_sym_u64] = ACTIONS(2070), - [anon_sym_i64] = ACTIONS(2070), - [anon_sym_u128] = ACTIONS(2070), - [anon_sym_i128] = ACTIONS(2070), - [anon_sym_isize] = ACTIONS(2070), - [anon_sym_usize] = ACTIONS(2070), - [anon_sym_f32] = ACTIONS(2070), - [anon_sym_f64] = ACTIONS(2070), - [anon_sym_bool] = ACTIONS(2070), - [anon_sym_str] = ACTIONS(2070), - [anon_sym_char] = ACTIONS(2070), - [anon_sym_DASH] = ACTIONS(2068), - [anon_sym_BANG] = ACTIONS(2068), - [anon_sym_AMP] = ACTIONS(2068), - [anon_sym_PIPE] = ACTIONS(2068), - [anon_sym_LT] = ACTIONS(2068), - [anon_sym_DOT_DOT] = ACTIONS(2068), - [anon_sym_COLON_COLON] = ACTIONS(2068), - [anon_sym_POUND] = ACTIONS(2068), - [anon_sym_SQUOTE] = ACTIONS(2070), - [anon_sym_async] = ACTIONS(2070), - [anon_sym_break] = ACTIONS(2070), - [anon_sym_const] = ACTIONS(2070), - [anon_sym_continue] = ACTIONS(2070), - [anon_sym_default] = ACTIONS(2070), - [anon_sym_enum] = ACTIONS(2070), - [anon_sym_fn] = ACTIONS(2070), - [anon_sym_for] = ACTIONS(2070), - [anon_sym_gen] = ACTIONS(2070), - [anon_sym_if] = ACTIONS(2070), - [anon_sym_impl] = ACTIONS(2070), - [anon_sym_let] = ACTIONS(2070), - [anon_sym_loop] = ACTIONS(2070), - [anon_sym_match] = ACTIONS(2070), - [anon_sym_mod] = ACTIONS(2070), - [anon_sym_pub] = ACTIONS(2070), - [anon_sym_return] = ACTIONS(2070), - [anon_sym_static] = ACTIONS(2070), - [anon_sym_struct] = ACTIONS(2070), - [anon_sym_trait] = ACTIONS(2070), - [anon_sym_type] = ACTIONS(2070), - [anon_sym_union] = ACTIONS(2070), - [anon_sym_unsafe] = ACTIONS(2070), - [anon_sym_use] = ACTIONS(2070), - [anon_sym_while] = ACTIONS(2070), - [anon_sym_extern] = ACTIONS(2070), - [anon_sym_yield] = ACTIONS(2070), - [anon_sym_move] = ACTIONS(2070), - [anon_sym_try] = ACTIONS(2070), - [sym_integer_literal] = ACTIONS(2068), - [aux_sym_string_literal_token1] = ACTIONS(2068), - [sym_char_literal] = ACTIONS(2068), - [anon_sym_true] = ACTIONS(2070), - [anon_sym_false] = ACTIONS(2070), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2070), - [sym_super] = ACTIONS(2070), - [sym_crate] = ACTIONS(2070), - [sym_metavariable] = ACTIONS(2068), - [sym__raw_string_literal_start] = ACTIONS(2068), - [sym_float_literal] = ACTIONS(2068), + [ts_builtin_sym_end] = ACTIONS(1987), + [sym_identifier] = ACTIONS(1989), + [anon_sym_SEMI] = ACTIONS(1987), + [anon_sym_macro_rules_BANG] = ACTIONS(1987), + [anon_sym_LPAREN] = ACTIONS(1987), + [anon_sym_LBRACK] = ACTIONS(1987), + [anon_sym_LBRACE] = ACTIONS(1987), + [anon_sym_RBRACE] = ACTIONS(1987), + [anon_sym_STAR] = ACTIONS(1987), + [anon_sym_u8] = ACTIONS(1989), + [anon_sym_i8] = ACTIONS(1989), + [anon_sym_u16] = ACTIONS(1989), + [anon_sym_i16] = ACTIONS(1989), + [anon_sym_u32] = ACTIONS(1989), + [anon_sym_i32] = ACTIONS(1989), + [anon_sym_u64] = ACTIONS(1989), + [anon_sym_i64] = ACTIONS(1989), + [anon_sym_u128] = ACTIONS(1989), + [anon_sym_i128] = ACTIONS(1989), + [anon_sym_isize] = ACTIONS(1989), + [anon_sym_usize] = ACTIONS(1989), + [anon_sym_f32] = ACTIONS(1989), + [anon_sym_f64] = ACTIONS(1989), + [anon_sym_bool] = ACTIONS(1989), + [anon_sym_str] = ACTIONS(1989), + [anon_sym_char] = ACTIONS(1989), + [anon_sym_DASH] = ACTIONS(1987), + [anon_sym_BANG] = ACTIONS(1987), + [anon_sym_AMP] = ACTIONS(1987), + [anon_sym_PIPE] = ACTIONS(1987), + [anon_sym_LT] = ACTIONS(1987), + [anon_sym_DOT_DOT] = ACTIONS(1987), + [anon_sym_COLON_COLON] = ACTIONS(1987), + [anon_sym_POUND] = ACTIONS(1987), + [anon_sym_SQUOTE] = ACTIONS(1989), + [anon_sym_async] = ACTIONS(1989), + [anon_sym_break] = ACTIONS(1989), + [anon_sym_const] = ACTIONS(1989), + [anon_sym_continue] = ACTIONS(1989), + [anon_sym_default] = ACTIONS(1989), + [anon_sym_enum] = ACTIONS(1989), + [anon_sym_fn] = ACTIONS(1989), + [anon_sym_for] = ACTIONS(1989), + [anon_sym_gen] = ACTIONS(1989), + [anon_sym_if] = ACTIONS(1989), + [anon_sym_impl] = ACTIONS(1989), + [anon_sym_let] = ACTIONS(1989), + [anon_sym_loop] = ACTIONS(1989), + [anon_sym_match] = ACTIONS(1989), + [anon_sym_mod] = ACTIONS(1989), + [anon_sym_pub] = ACTIONS(1989), + [anon_sym_return] = ACTIONS(1989), + [anon_sym_static] = ACTIONS(1989), + [anon_sym_struct] = ACTIONS(1989), + [anon_sym_trait] = ACTIONS(1989), + [anon_sym_type] = ACTIONS(1989), + [anon_sym_union] = ACTIONS(1989), + [anon_sym_unsafe] = ACTIONS(1989), + [anon_sym_use] = ACTIONS(1989), + [anon_sym_while] = ACTIONS(1989), + [anon_sym_extern] = ACTIONS(1989), + [anon_sym_safe] = ACTIONS(1989), + [anon_sym_yield] = ACTIONS(1989), + [anon_sym_move] = ACTIONS(1989), + [anon_sym_try] = ACTIONS(1989), + [sym_integer_literal] = ACTIONS(1987), + [aux_sym_string_literal_token1] = ACTIONS(1987), + [sym_char_literal] = ACTIONS(1987), + [anon_sym_true] = ACTIONS(1989), + [anon_sym_false] = ACTIONS(1989), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1989), + [sym_super] = ACTIONS(1989), + [sym_crate] = ACTIONS(1989), + [sym_metavariable] = ACTIONS(1987), + [sym__raw_string_literal_start] = ACTIONS(1987), + [sym_float_literal] = ACTIONS(1987), }, [STATE(541)] = { [sym_line_comment] = STATE(541), [sym_block_comment] = STATE(541), - [ts_builtin_sym_end] = ACTIONS(2072), - [sym_identifier] = ACTIONS(2074), - [anon_sym_SEMI] = ACTIONS(2072), - [anon_sym_macro_rules_BANG] = ACTIONS(2072), - [anon_sym_LPAREN] = ACTIONS(2072), - [anon_sym_LBRACK] = ACTIONS(2072), - [anon_sym_LBRACE] = ACTIONS(2072), - [anon_sym_RBRACE] = ACTIONS(2072), - [anon_sym_STAR] = ACTIONS(2072), - [anon_sym_u8] = ACTIONS(2074), - [anon_sym_i8] = ACTIONS(2074), - [anon_sym_u16] = ACTIONS(2074), - [anon_sym_i16] = ACTIONS(2074), - [anon_sym_u32] = ACTIONS(2074), - [anon_sym_i32] = ACTIONS(2074), - [anon_sym_u64] = ACTIONS(2074), - [anon_sym_i64] = ACTIONS(2074), - [anon_sym_u128] = ACTIONS(2074), - [anon_sym_i128] = ACTIONS(2074), - [anon_sym_isize] = ACTIONS(2074), - [anon_sym_usize] = ACTIONS(2074), - [anon_sym_f32] = ACTIONS(2074), - [anon_sym_f64] = ACTIONS(2074), - [anon_sym_bool] = ACTIONS(2074), - [anon_sym_str] = ACTIONS(2074), - [anon_sym_char] = ACTIONS(2074), - [anon_sym_DASH] = ACTIONS(2072), - [anon_sym_BANG] = ACTIONS(2072), - [anon_sym_AMP] = ACTIONS(2072), - [anon_sym_PIPE] = ACTIONS(2072), - [anon_sym_LT] = ACTIONS(2072), - [anon_sym_DOT_DOT] = ACTIONS(2072), - [anon_sym_COLON_COLON] = ACTIONS(2072), - [anon_sym_POUND] = ACTIONS(2072), - [anon_sym_SQUOTE] = ACTIONS(2074), - [anon_sym_async] = ACTIONS(2074), - [anon_sym_break] = ACTIONS(2074), - [anon_sym_const] = ACTIONS(2074), - [anon_sym_continue] = ACTIONS(2074), - [anon_sym_default] = ACTIONS(2074), - [anon_sym_enum] = ACTIONS(2074), - [anon_sym_fn] = ACTIONS(2074), - [anon_sym_for] = ACTIONS(2074), - [anon_sym_gen] = ACTIONS(2074), - [anon_sym_if] = ACTIONS(2074), - [anon_sym_impl] = ACTIONS(2074), - [anon_sym_let] = ACTIONS(2074), - [anon_sym_loop] = ACTIONS(2074), - [anon_sym_match] = ACTIONS(2074), - [anon_sym_mod] = ACTIONS(2074), - [anon_sym_pub] = ACTIONS(2074), - [anon_sym_return] = ACTIONS(2074), - [anon_sym_static] = ACTIONS(2074), - [anon_sym_struct] = ACTIONS(2074), - [anon_sym_trait] = ACTIONS(2074), - [anon_sym_type] = ACTIONS(2074), - [anon_sym_union] = ACTIONS(2074), - [anon_sym_unsafe] = ACTIONS(2074), - [anon_sym_use] = ACTIONS(2074), - [anon_sym_while] = ACTIONS(2074), - [anon_sym_extern] = ACTIONS(2074), - [anon_sym_yield] = ACTIONS(2074), - [anon_sym_move] = ACTIONS(2074), - [anon_sym_try] = ACTIONS(2074), - [sym_integer_literal] = ACTIONS(2072), - [aux_sym_string_literal_token1] = ACTIONS(2072), - [sym_char_literal] = ACTIONS(2072), - [anon_sym_true] = ACTIONS(2074), - [anon_sym_false] = ACTIONS(2074), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2074), - [sym_super] = ACTIONS(2074), - [sym_crate] = ACTIONS(2074), - [sym_metavariable] = ACTIONS(2072), - [sym__raw_string_literal_start] = ACTIONS(2072), - [sym_float_literal] = ACTIONS(2072), + [ts_builtin_sym_end] = ACTIONS(1991), + [sym_identifier] = ACTIONS(1993), + [anon_sym_SEMI] = ACTIONS(1991), + [anon_sym_macro_rules_BANG] = ACTIONS(1991), + [anon_sym_LPAREN] = ACTIONS(1991), + [anon_sym_LBRACK] = ACTIONS(1991), + [anon_sym_LBRACE] = ACTIONS(1991), + [anon_sym_RBRACE] = ACTIONS(1991), + [anon_sym_STAR] = ACTIONS(1991), + [anon_sym_u8] = ACTIONS(1993), + [anon_sym_i8] = ACTIONS(1993), + [anon_sym_u16] = ACTIONS(1993), + [anon_sym_i16] = ACTIONS(1993), + [anon_sym_u32] = ACTIONS(1993), + [anon_sym_i32] = ACTIONS(1993), + [anon_sym_u64] = ACTIONS(1993), + [anon_sym_i64] = ACTIONS(1993), + [anon_sym_u128] = ACTIONS(1993), + [anon_sym_i128] = ACTIONS(1993), + [anon_sym_isize] = ACTIONS(1993), + [anon_sym_usize] = ACTIONS(1993), + [anon_sym_f32] = ACTIONS(1993), + [anon_sym_f64] = ACTIONS(1993), + [anon_sym_bool] = ACTIONS(1993), + [anon_sym_str] = ACTIONS(1993), + [anon_sym_char] = ACTIONS(1993), + [anon_sym_DASH] = ACTIONS(1991), + [anon_sym_BANG] = ACTIONS(1991), + [anon_sym_AMP] = ACTIONS(1991), + [anon_sym_PIPE] = ACTIONS(1991), + [anon_sym_LT] = ACTIONS(1991), + [anon_sym_DOT_DOT] = ACTIONS(1991), + [anon_sym_COLON_COLON] = ACTIONS(1991), + [anon_sym_POUND] = ACTIONS(1991), + [anon_sym_SQUOTE] = ACTIONS(1993), + [anon_sym_async] = ACTIONS(1993), + [anon_sym_break] = ACTIONS(1993), + [anon_sym_const] = ACTIONS(1993), + [anon_sym_continue] = ACTIONS(1993), + [anon_sym_default] = ACTIONS(1993), + [anon_sym_enum] = ACTIONS(1993), + [anon_sym_fn] = ACTIONS(1993), + [anon_sym_for] = ACTIONS(1993), + [anon_sym_gen] = ACTIONS(1993), + [anon_sym_if] = ACTIONS(1993), + [anon_sym_impl] = ACTIONS(1993), + [anon_sym_let] = ACTIONS(1993), + [anon_sym_loop] = ACTIONS(1993), + [anon_sym_match] = ACTIONS(1993), + [anon_sym_mod] = ACTIONS(1993), + [anon_sym_pub] = ACTIONS(1993), + [anon_sym_return] = ACTIONS(1993), + [anon_sym_static] = ACTIONS(1993), + [anon_sym_struct] = ACTIONS(1993), + [anon_sym_trait] = ACTIONS(1993), + [anon_sym_type] = ACTIONS(1993), + [anon_sym_union] = ACTIONS(1993), + [anon_sym_unsafe] = ACTIONS(1993), + [anon_sym_use] = ACTIONS(1993), + [anon_sym_while] = ACTIONS(1993), + [anon_sym_extern] = ACTIONS(1993), + [anon_sym_safe] = ACTIONS(1993), + [anon_sym_yield] = ACTIONS(1993), + [anon_sym_move] = ACTIONS(1993), + [anon_sym_try] = ACTIONS(1993), + [sym_integer_literal] = ACTIONS(1991), + [aux_sym_string_literal_token1] = ACTIONS(1991), + [sym_char_literal] = ACTIONS(1991), + [anon_sym_true] = ACTIONS(1993), + [anon_sym_false] = ACTIONS(1993), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1993), + [sym_super] = ACTIONS(1993), + [sym_crate] = ACTIONS(1993), + [sym_metavariable] = ACTIONS(1991), + [sym__raw_string_literal_start] = ACTIONS(1991), + [sym_float_literal] = ACTIONS(1991), }, [STATE(542)] = { [sym_line_comment] = STATE(542), [sym_block_comment] = STATE(542), - [ts_builtin_sym_end] = ACTIONS(2076), - [sym_identifier] = ACTIONS(2078), - [anon_sym_SEMI] = ACTIONS(2076), - [anon_sym_macro_rules_BANG] = ACTIONS(2076), - [anon_sym_LPAREN] = ACTIONS(2076), - [anon_sym_LBRACK] = ACTIONS(2076), - [anon_sym_LBRACE] = ACTIONS(2076), - [anon_sym_RBRACE] = ACTIONS(2076), - [anon_sym_STAR] = ACTIONS(2076), - [anon_sym_u8] = ACTIONS(2078), - [anon_sym_i8] = ACTIONS(2078), - [anon_sym_u16] = ACTIONS(2078), - [anon_sym_i16] = ACTIONS(2078), - [anon_sym_u32] = ACTIONS(2078), - [anon_sym_i32] = ACTIONS(2078), - [anon_sym_u64] = ACTIONS(2078), - [anon_sym_i64] = ACTIONS(2078), - [anon_sym_u128] = ACTIONS(2078), - [anon_sym_i128] = ACTIONS(2078), - [anon_sym_isize] = ACTIONS(2078), - [anon_sym_usize] = ACTIONS(2078), - [anon_sym_f32] = ACTIONS(2078), - [anon_sym_f64] = ACTIONS(2078), - [anon_sym_bool] = ACTIONS(2078), - [anon_sym_str] = ACTIONS(2078), - [anon_sym_char] = ACTIONS(2078), - [anon_sym_DASH] = ACTIONS(2076), - [anon_sym_BANG] = ACTIONS(2076), - [anon_sym_AMP] = ACTIONS(2076), - [anon_sym_PIPE] = ACTIONS(2076), - [anon_sym_LT] = ACTIONS(2076), - [anon_sym_DOT_DOT] = ACTIONS(2076), - [anon_sym_COLON_COLON] = ACTIONS(2076), - [anon_sym_POUND] = ACTIONS(2076), - [anon_sym_SQUOTE] = ACTIONS(2078), - [anon_sym_async] = ACTIONS(2078), - [anon_sym_break] = ACTIONS(2078), - [anon_sym_const] = ACTIONS(2078), - [anon_sym_continue] = ACTIONS(2078), - [anon_sym_default] = ACTIONS(2078), - [anon_sym_enum] = ACTIONS(2078), - [anon_sym_fn] = ACTIONS(2078), - [anon_sym_for] = ACTIONS(2078), - [anon_sym_gen] = ACTIONS(2078), - [anon_sym_if] = ACTIONS(2078), - [anon_sym_impl] = ACTIONS(2078), - [anon_sym_let] = ACTIONS(2078), - [anon_sym_loop] = ACTIONS(2078), - [anon_sym_match] = ACTIONS(2078), - [anon_sym_mod] = ACTIONS(2078), - [anon_sym_pub] = ACTIONS(2078), - [anon_sym_return] = ACTIONS(2078), - [anon_sym_static] = ACTIONS(2078), - [anon_sym_struct] = ACTIONS(2078), - [anon_sym_trait] = ACTIONS(2078), - [anon_sym_type] = ACTIONS(2078), - [anon_sym_union] = ACTIONS(2078), - [anon_sym_unsafe] = ACTIONS(2078), - [anon_sym_use] = ACTIONS(2078), - [anon_sym_while] = ACTIONS(2078), - [anon_sym_extern] = ACTIONS(2078), - [anon_sym_yield] = ACTIONS(2078), - [anon_sym_move] = ACTIONS(2078), - [anon_sym_try] = ACTIONS(2078), - [sym_integer_literal] = ACTIONS(2076), - [aux_sym_string_literal_token1] = ACTIONS(2076), - [sym_char_literal] = ACTIONS(2076), - [anon_sym_true] = ACTIONS(2078), - [anon_sym_false] = ACTIONS(2078), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2078), - [sym_super] = ACTIONS(2078), - [sym_crate] = ACTIONS(2078), - [sym_metavariable] = ACTIONS(2076), - [sym__raw_string_literal_start] = ACTIONS(2076), - [sym_float_literal] = ACTIONS(2076), + [ts_builtin_sym_end] = ACTIONS(1995), + [sym_identifier] = ACTIONS(1997), + [anon_sym_SEMI] = ACTIONS(1995), + [anon_sym_macro_rules_BANG] = ACTIONS(1995), + [anon_sym_LPAREN] = ACTIONS(1995), + [anon_sym_LBRACK] = ACTIONS(1995), + [anon_sym_LBRACE] = ACTIONS(1995), + [anon_sym_RBRACE] = ACTIONS(1995), + [anon_sym_STAR] = ACTIONS(1995), + [anon_sym_u8] = ACTIONS(1997), + [anon_sym_i8] = ACTIONS(1997), + [anon_sym_u16] = ACTIONS(1997), + [anon_sym_i16] = ACTIONS(1997), + [anon_sym_u32] = ACTIONS(1997), + [anon_sym_i32] = ACTIONS(1997), + [anon_sym_u64] = ACTIONS(1997), + [anon_sym_i64] = ACTIONS(1997), + [anon_sym_u128] = ACTIONS(1997), + [anon_sym_i128] = ACTIONS(1997), + [anon_sym_isize] = ACTIONS(1997), + [anon_sym_usize] = ACTIONS(1997), + [anon_sym_f32] = ACTIONS(1997), + [anon_sym_f64] = ACTIONS(1997), + [anon_sym_bool] = ACTIONS(1997), + [anon_sym_str] = ACTIONS(1997), + [anon_sym_char] = ACTIONS(1997), + [anon_sym_DASH] = ACTIONS(1995), + [anon_sym_BANG] = ACTIONS(1995), + [anon_sym_AMP] = ACTIONS(1995), + [anon_sym_PIPE] = ACTIONS(1995), + [anon_sym_LT] = ACTIONS(1995), + [anon_sym_DOT_DOT] = ACTIONS(1995), + [anon_sym_COLON_COLON] = ACTIONS(1995), + [anon_sym_POUND] = ACTIONS(1995), + [anon_sym_SQUOTE] = ACTIONS(1997), + [anon_sym_async] = ACTIONS(1997), + [anon_sym_break] = ACTIONS(1997), + [anon_sym_const] = ACTIONS(1997), + [anon_sym_continue] = ACTIONS(1997), + [anon_sym_default] = ACTIONS(1997), + [anon_sym_enum] = ACTIONS(1997), + [anon_sym_fn] = ACTIONS(1997), + [anon_sym_for] = ACTIONS(1997), + [anon_sym_gen] = ACTIONS(1997), + [anon_sym_if] = ACTIONS(1997), + [anon_sym_impl] = ACTIONS(1997), + [anon_sym_let] = ACTIONS(1997), + [anon_sym_loop] = ACTIONS(1997), + [anon_sym_match] = ACTIONS(1997), + [anon_sym_mod] = ACTIONS(1997), + [anon_sym_pub] = ACTIONS(1997), + [anon_sym_return] = ACTIONS(1997), + [anon_sym_static] = ACTIONS(1997), + [anon_sym_struct] = ACTIONS(1997), + [anon_sym_trait] = ACTIONS(1997), + [anon_sym_type] = ACTIONS(1997), + [anon_sym_union] = ACTIONS(1997), + [anon_sym_unsafe] = ACTIONS(1997), + [anon_sym_use] = ACTIONS(1997), + [anon_sym_while] = ACTIONS(1997), + [anon_sym_extern] = ACTIONS(1997), + [anon_sym_safe] = ACTIONS(1997), + [anon_sym_yield] = ACTIONS(1997), + [anon_sym_move] = ACTIONS(1997), + [anon_sym_try] = ACTIONS(1997), + [sym_integer_literal] = ACTIONS(1995), + [aux_sym_string_literal_token1] = ACTIONS(1995), + [sym_char_literal] = ACTIONS(1995), + [anon_sym_true] = ACTIONS(1997), + [anon_sym_false] = ACTIONS(1997), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1997), + [sym_super] = ACTIONS(1997), + [sym_crate] = ACTIONS(1997), + [sym_metavariable] = ACTIONS(1995), + [sym__raw_string_literal_start] = ACTIONS(1995), + [sym_float_literal] = ACTIONS(1995), }, [STATE(543)] = { [sym_line_comment] = STATE(543), [sym_block_comment] = STATE(543), - [ts_builtin_sym_end] = ACTIONS(2080), - [sym_identifier] = ACTIONS(2082), - [anon_sym_SEMI] = ACTIONS(2080), - [anon_sym_macro_rules_BANG] = ACTIONS(2080), - [anon_sym_LPAREN] = ACTIONS(2080), - [anon_sym_LBRACK] = ACTIONS(2080), - [anon_sym_LBRACE] = ACTIONS(2080), - [anon_sym_RBRACE] = ACTIONS(2080), - [anon_sym_STAR] = ACTIONS(2080), - [anon_sym_u8] = ACTIONS(2082), - [anon_sym_i8] = ACTIONS(2082), - [anon_sym_u16] = ACTIONS(2082), - [anon_sym_i16] = ACTIONS(2082), - [anon_sym_u32] = ACTIONS(2082), - [anon_sym_i32] = ACTIONS(2082), - [anon_sym_u64] = ACTIONS(2082), - [anon_sym_i64] = ACTIONS(2082), - [anon_sym_u128] = ACTIONS(2082), - [anon_sym_i128] = ACTIONS(2082), - [anon_sym_isize] = ACTIONS(2082), - [anon_sym_usize] = ACTIONS(2082), - [anon_sym_f32] = ACTIONS(2082), - [anon_sym_f64] = ACTIONS(2082), - [anon_sym_bool] = ACTIONS(2082), - [anon_sym_str] = ACTIONS(2082), - [anon_sym_char] = ACTIONS(2082), - [anon_sym_DASH] = ACTIONS(2080), - [anon_sym_BANG] = ACTIONS(2080), - [anon_sym_AMP] = ACTIONS(2080), - [anon_sym_PIPE] = ACTIONS(2080), - [anon_sym_LT] = ACTIONS(2080), - [anon_sym_DOT_DOT] = ACTIONS(2080), - [anon_sym_COLON_COLON] = ACTIONS(2080), - [anon_sym_POUND] = ACTIONS(2080), - [anon_sym_SQUOTE] = ACTIONS(2082), - [anon_sym_async] = ACTIONS(2082), - [anon_sym_break] = ACTIONS(2082), - [anon_sym_const] = ACTIONS(2082), - [anon_sym_continue] = ACTIONS(2082), - [anon_sym_default] = ACTIONS(2082), - [anon_sym_enum] = ACTIONS(2082), - [anon_sym_fn] = ACTIONS(2082), - [anon_sym_for] = ACTIONS(2082), - [anon_sym_gen] = ACTIONS(2082), - [anon_sym_if] = ACTIONS(2082), - [anon_sym_impl] = ACTIONS(2082), - [anon_sym_let] = ACTIONS(2082), - [anon_sym_loop] = ACTIONS(2082), - [anon_sym_match] = ACTIONS(2082), - [anon_sym_mod] = ACTIONS(2082), - [anon_sym_pub] = ACTIONS(2082), - [anon_sym_return] = ACTIONS(2082), - [anon_sym_static] = ACTIONS(2082), - [anon_sym_struct] = ACTIONS(2082), - [anon_sym_trait] = ACTIONS(2082), - [anon_sym_type] = ACTIONS(2082), - [anon_sym_union] = ACTIONS(2082), - [anon_sym_unsafe] = ACTIONS(2082), - [anon_sym_use] = ACTIONS(2082), - [anon_sym_while] = ACTIONS(2082), - [anon_sym_extern] = ACTIONS(2082), - [anon_sym_yield] = ACTIONS(2082), - [anon_sym_move] = ACTIONS(2082), - [anon_sym_try] = ACTIONS(2082), - [sym_integer_literal] = ACTIONS(2080), - [aux_sym_string_literal_token1] = ACTIONS(2080), - [sym_char_literal] = ACTIONS(2080), - [anon_sym_true] = ACTIONS(2082), - [anon_sym_false] = ACTIONS(2082), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2082), - [sym_super] = ACTIONS(2082), - [sym_crate] = ACTIONS(2082), - [sym_metavariable] = ACTIONS(2080), - [sym__raw_string_literal_start] = ACTIONS(2080), - [sym_float_literal] = ACTIONS(2080), + [ts_builtin_sym_end] = ACTIONS(1999), + [sym_identifier] = ACTIONS(2001), + [anon_sym_SEMI] = ACTIONS(1999), + [anon_sym_macro_rules_BANG] = ACTIONS(1999), + [anon_sym_LPAREN] = ACTIONS(1999), + [anon_sym_LBRACK] = ACTIONS(1999), + [anon_sym_LBRACE] = ACTIONS(1999), + [anon_sym_RBRACE] = ACTIONS(1999), + [anon_sym_STAR] = ACTIONS(1999), + [anon_sym_u8] = ACTIONS(2001), + [anon_sym_i8] = ACTIONS(2001), + [anon_sym_u16] = ACTIONS(2001), + [anon_sym_i16] = ACTIONS(2001), + [anon_sym_u32] = ACTIONS(2001), + [anon_sym_i32] = ACTIONS(2001), + [anon_sym_u64] = ACTIONS(2001), + [anon_sym_i64] = ACTIONS(2001), + [anon_sym_u128] = ACTIONS(2001), + [anon_sym_i128] = ACTIONS(2001), + [anon_sym_isize] = ACTIONS(2001), + [anon_sym_usize] = ACTIONS(2001), + [anon_sym_f32] = ACTIONS(2001), + [anon_sym_f64] = ACTIONS(2001), + [anon_sym_bool] = ACTIONS(2001), + [anon_sym_str] = ACTIONS(2001), + [anon_sym_char] = ACTIONS(2001), + [anon_sym_DASH] = ACTIONS(1999), + [anon_sym_BANG] = ACTIONS(1999), + [anon_sym_AMP] = ACTIONS(1999), + [anon_sym_PIPE] = ACTIONS(1999), + [anon_sym_LT] = ACTIONS(1999), + [anon_sym_DOT_DOT] = ACTIONS(1999), + [anon_sym_COLON_COLON] = ACTIONS(1999), + [anon_sym_POUND] = ACTIONS(1999), + [anon_sym_SQUOTE] = ACTIONS(2001), + [anon_sym_async] = ACTIONS(2001), + [anon_sym_break] = ACTIONS(2001), + [anon_sym_const] = ACTIONS(2001), + [anon_sym_continue] = ACTIONS(2001), + [anon_sym_default] = ACTIONS(2001), + [anon_sym_enum] = ACTIONS(2001), + [anon_sym_fn] = ACTIONS(2001), + [anon_sym_for] = ACTIONS(2001), + [anon_sym_gen] = ACTIONS(2001), + [anon_sym_if] = ACTIONS(2001), + [anon_sym_impl] = ACTIONS(2001), + [anon_sym_let] = ACTIONS(2001), + [anon_sym_loop] = ACTIONS(2001), + [anon_sym_match] = ACTIONS(2001), + [anon_sym_mod] = ACTIONS(2001), + [anon_sym_pub] = ACTIONS(2001), + [anon_sym_return] = ACTIONS(2001), + [anon_sym_static] = ACTIONS(2001), + [anon_sym_struct] = ACTIONS(2001), + [anon_sym_trait] = ACTIONS(2001), + [anon_sym_type] = ACTIONS(2001), + [anon_sym_union] = ACTIONS(2001), + [anon_sym_unsafe] = ACTIONS(2001), + [anon_sym_use] = ACTIONS(2001), + [anon_sym_while] = ACTIONS(2001), + [anon_sym_extern] = ACTIONS(2001), + [anon_sym_safe] = ACTIONS(2001), + [anon_sym_yield] = ACTIONS(2001), + [anon_sym_move] = ACTIONS(2001), + [anon_sym_try] = ACTIONS(2001), + [sym_integer_literal] = ACTIONS(1999), + [aux_sym_string_literal_token1] = ACTIONS(1999), + [sym_char_literal] = ACTIONS(1999), + [anon_sym_true] = ACTIONS(2001), + [anon_sym_false] = ACTIONS(2001), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2001), + [sym_super] = ACTIONS(2001), + [sym_crate] = ACTIONS(2001), + [sym_metavariable] = ACTIONS(1999), + [sym__raw_string_literal_start] = ACTIONS(1999), + [sym_float_literal] = ACTIONS(1999), }, [STATE(544)] = { [sym_line_comment] = STATE(544), [sym_block_comment] = STATE(544), - [ts_builtin_sym_end] = ACTIONS(2084), - [sym_identifier] = ACTIONS(2086), - [anon_sym_SEMI] = ACTIONS(2084), - [anon_sym_macro_rules_BANG] = ACTIONS(2084), - [anon_sym_LPAREN] = ACTIONS(2084), - [anon_sym_LBRACK] = ACTIONS(2084), - [anon_sym_LBRACE] = ACTIONS(2084), - [anon_sym_RBRACE] = ACTIONS(2084), - [anon_sym_STAR] = ACTIONS(2084), - [anon_sym_u8] = ACTIONS(2086), - [anon_sym_i8] = ACTIONS(2086), - [anon_sym_u16] = ACTIONS(2086), - [anon_sym_i16] = ACTIONS(2086), - [anon_sym_u32] = ACTIONS(2086), - [anon_sym_i32] = ACTIONS(2086), - [anon_sym_u64] = ACTIONS(2086), - [anon_sym_i64] = ACTIONS(2086), - [anon_sym_u128] = ACTIONS(2086), - [anon_sym_i128] = ACTIONS(2086), - [anon_sym_isize] = ACTIONS(2086), - [anon_sym_usize] = ACTIONS(2086), - [anon_sym_f32] = ACTIONS(2086), - [anon_sym_f64] = ACTIONS(2086), - [anon_sym_bool] = ACTIONS(2086), - [anon_sym_str] = ACTIONS(2086), - [anon_sym_char] = ACTIONS(2086), - [anon_sym_DASH] = ACTIONS(2084), - [anon_sym_BANG] = ACTIONS(2084), - [anon_sym_AMP] = ACTIONS(2084), - [anon_sym_PIPE] = ACTIONS(2084), - [anon_sym_LT] = ACTIONS(2084), - [anon_sym_DOT_DOT] = ACTIONS(2084), - [anon_sym_COLON_COLON] = ACTIONS(2084), - [anon_sym_POUND] = ACTIONS(2084), - [anon_sym_SQUOTE] = ACTIONS(2086), - [anon_sym_async] = ACTIONS(2086), - [anon_sym_break] = ACTIONS(2086), - [anon_sym_const] = ACTIONS(2086), - [anon_sym_continue] = ACTIONS(2086), - [anon_sym_default] = ACTIONS(2086), - [anon_sym_enum] = ACTIONS(2086), - [anon_sym_fn] = ACTIONS(2086), - [anon_sym_for] = ACTIONS(2086), - [anon_sym_gen] = ACTIONS(2086), - [anon_sym_if] = ACTIONS(2086), - [anon_sym_impl] = ACTIONS(2086), - [anon_sym_let] = ACTIONS(2086), - [anon_sym_loop] = ACTIONS(2086), - [anon_sym_match] = ACTIONS(2086), - [anon_sym_mod] = ACTIONS(2086), - [anon_sym_pub] = ACTIONS(2086), - [anon_sym_return] = ACTIONS(2086), - [anon_sym_static] = ACTIONS(2086), - [anon_sym_struct] = ACTIONS(2086), - [anon_sym_trait] = ACTIONS(2086), - [anon_sym_type] = ACTIONS(2086), - [anon_sym_union] = ACTIONS(2086), - [anon_sym_unsafe] = ACTIONS(2086), - [anon_sym_use] = ACTIONS(2086), - [anon_sym_while] = ACTIONS(2086), - [anon_sym_extern] = ACTIONS(2086), - [anon_sym_yield] = ACTIONS(2086), - [anon_sym_move] = ACTIONS(2086), - [anon_sym_try] = ACTIONS(2086), - [sym_integer_literal] = ACTIONS(2084), - [aux_sym_string_literal_token1] = ACTIONS(2084), - [sym_char_literal] = ACTIONS(2084), - [anon_sym_true] = ACTIONS(2086), - [anon_sym_false] = ACTIONS(2086), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2086), - [sym_super] = ACTIONS(2086), - [sym_crate] = ACTIONS(2086), - [sym_metavariable] = ACTIONS(2084), - [sym__raw_string_literal_start] = ACTIONS(2084), - [sym_float_literal] = ACTIONS(2084), + [ts_builtin_sym_end] = ACTIONS(2003), + [sym_identifier] = ACTIONS(2005), + [anon_sym_SEMI] = ACTIONS(2003), + [anon_sym_macro_rules_BANG] = ACTIONS(2003), + [anon_sym_LPAREN] = ACTIONS(2003), + [anon_sym_LBRACK] = ACTIONS(2003), + [anon_sym_LBRACE] = ACTIONS(2003), + [anon_sym_RBRACE] = ACTIONS(2003), + [anon_sym_STAR] = ACTIONS(2003), + [anon_sym_u8] = ACTIONS(2005), + [anon_sym_i8] = ACTIONS(2005), + [anon_sym_u16] = ACTIONS(2005), + [anon_sym_i16] = ACTIONS(2005), + [anon_sym_u32] = ACTIONS(2005), + [anon_sym_i32] = ACTIONS(2005), + [anon_sym_u64] = ACTIONS(2005), + [anon_sym_i64] = ACTIONS(2005), + [anon_sym_u128] = ACTIONS(2005), + [anon_sym_i128] = ACTIONS(2005), + [anon_sym_isize] = ACTIONS(2005), + [anon_sym_usize] = ACTIONS(2005), + [anon_sym_f32] = ACTIONS(2005), + [anon_sym_f64] = ACTIONS(2005), + [anon_sym_bool] = ACTIONS(2005), + [anon_sym_str] = ACTIONS(2005), + [anon_sym_char] = ACTIONS(2005), + [anon_sym_DASH] = ACTIONS(2003), + [anon_sym_BANG] = ACTIONS(2003), + [anon_sym_AMP] = ACTIONS(2003), + [anon_sym_PIPE] = ACTIONS(2003), + [anon_sym_LT] = ACTIONS(2003), + [anon_sym_DOT_DOT] = ACTIONS(2003), + [anon_sym_COLON_COLON] = ACTIONS(2003), + [anon_sym_POUND] = ACTIONS(2003), + [anon_sym_SQUOTE] = ACTIONS(2005), + [anon_sym_async] = ACTIONS(2005), + [anon_sym_break] = ACTIONS(2005), + [anon_sym_const] = ACTIONS(2005), + [anon_sym_continue] = ACTIONS(2005), + [anon_sym_default] = ACTIONS(2005), + [anon_sym_enum] = ACTIONS(2005), + [anon_sym_fn] = ACTIONS(2005), + [anon_sym_for] = ACTIONS(2005), + [anon_sym_gen] = ACTIONS(2005), + [anon_sym_if] = ACTIONS(2005), + [anon_sym_impl] = ACTIONS(2005), + [anon_sym_let] = ACTIONS(2005), + [anon_sym_loop] = ACTIONS(2005), + [anon_sym_match] = ACTIONS(2005), + [anon_sym_mod] = ACTIONS(2005), + [anon_sym_pub] = ACTIONS(2005), + [anon_sym_return] = ACTIONS(2005), + [anon_sym_static] = ACTIONS(2005), + [anon_sym_struct] = ACTIONS(2005), + [anon_sym_trait] = ACTIONS(2005), + [anon_sym_type] = ACTIONS(2005), + [anon_sym_union] = ACTIONS(2005), + [anon_sym_unsafe] = ACTIONS(2005), + [anon_sym_use] = ACTIONS(2005), + [anon_sym_while] = ACTIONS(2005), + [anon_sym_extern] = ACTIONS(2005), + [anon_sym_safe] = ACTIONS(2005), + [anon_sym_yield] = ACTIONS(2005), + [anon_sym_move] = ACTIONS(2005), + [anon_sym_try] = ACTIONS(2005), + [sym_integer_literal] = ACTIONS(2003), + [aux_sym_string_literal_token1] = ACTIONS(2003), + [sym_char_literal] = ACTIONS(2003), + [anon_sym_true] = ACTIONS(2005), + [anon_sym_false] = ACTIONS(2005), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2005), + [sym_super] = ACTIONS(2005), + [sym_crate] = ACTIONS(2005), + [sym_metavariable] = ACTIONS(2003), + [sym__raw_string_literal_start] = ACTIONS(2003), + [sym_float_literal] = ACTIONS(2003), }, [STATE(545)] = { - [sym_empty_statement] = STATE(1170), - [sym_macro_definition] = STATE(1170), - [sym_attribute_item] = STATE(1170), - [sym_inner_attribute_item] = STATE(1170), - [sym_mod_item] = STATE(1170), - [sym_foreign_mod_item] = STATE(1170), - [sym_struct_item] = STATE(1170), - [sym_union_item] = STATE(1170), - [sym_enum_item] = STATE(1170), - [sym_extern_crate_declaration] = STATE(1170), - [sym_const_item] = STATE(1170), - [sym_static_item] = STATE(1170), - [sym_type_item] = STATE(1170), - [sym_function_item] = STATE(1170), - [sym_function_signature_item] = STATE(1170), - [sym_function_modifiers] = STATE(3781), - [sym_impl_item] = STATE(1170), - [sym_trait_item] = STATE(1170), - [sym_associated_type] = STATE(1170), - [sym_let_declaration] = STATE(1170), - [sym_use_declaration] = STATE(1170), - [sym_extern_modifier] = STATE(2235), - [sym_visibility_modifier] = STATE(2021), - [sym_bracketed_type] = STATE(3732), - [sym_generic_type_with_turbofish] = STATE(3800), - [sym_macro_invocation] = STATE(1170), - [sym_scoped_identifier] = STATE(3326), [sym_line_comment] = STATE(545), [sym_block_comment] = STATE(545), - [aux_sym_declaration_list_repeat1] = STATE(531), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2090), - [anon_sym_macro_rules_BANG] = ACTIONS(2092), - [anon_sym_RBRACE] = 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_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(2098), - [anon_sym_POUND] = ACTIONS(2100), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(2102), - [anon_sym_default] = ACTIONS(2104), - [anon_sym_enum] = ACTIONS(2106), - [anon_sym_fn] = ACTIONS(2108), - [anon_sym_gen] = ACTIONS(2110), - [anon_sym_impl] = ACTIONS(2112), - [anon_sym_let] = ACTIONS(2114), - [anon_sym_mod] = ACTIONS(2116), - [anon_sym_pub] = ACTIONS(69), - [anon_sym_static] = ACTIONS(2118), - [anon_sym_struct] = ACTIONS(2120), - [anon_sym_trait] = ACTIONS(2122), - [anon_sym_type] = ACTIONS(2124), - [anon_sym_union] = ACTIONS(2126), - [anon_sym_unsafe] = ACTIONS(2128), - [anon_sym_use] = ACTIONS(2130), - [anon_sym_extern] = ACTIONS(2132), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2134), - [sym_super] = ACTIONS(2134), - [sym_crate] = ACTIONS(2136), - [sym_metavariable] = ACTIONS(2138), + [ts_builtin_sym_end] = ACTIONS(2007), + [sym_identifier] = ACTIONS(2009), + [anon_sym_SEMI] = ACTIONS(2007), + [anon_sym_macro_rules_BANG] = ACTIONS(2007), + [anon_sym_LPAREN] = ACTIONS(2007), + [anon_sym_LBRACK] = ACTIONS(2007), + [anon_sym_LBRACE] = ACTIONS(2007), + [anon_sym_RBRACE] = ACTIONS(2007), + [anon_sym_STAR] = ACTIONS(2007), + [anon_sym_u8] = ACTIONS(2009), + [anon_sym_i8] = ACTIONS(2009), + [anon_sym_u16] = ACTIONS(2009), + [anon_sym_i16] = ACTIONS(2009), + [anon_sym_u32] = ACTIONS(2009), + [anon_sym_i32] = ACTIONS(2009), + [anon_sym_u64] = ACTIONS(2009), + [anon_sym_i64] = ACTIONS(2009), + [anon_sym_u128] = ACTIONS(2009), + [anon_sym_i128] = ACTIONS(2009), + [anon_sym_isize] = ACTIONS(2009), + [anon_sym_usize] = ACTIONS(2009), + [anon_sym_f32] = ACTIONS(2009), + [anon_sym_f64] = ACTIONS(2009), + [anon_sym_bool] = ACTIONS(2009), + [anon_sym_str] = ACTIONS(2009), + [anon_sym_char] = ACTIONS(2009), + [anon_sym_DASH] = ACTIONS(2007), + [anon_sym_BANG] = ACTIONS(2007), + [anon_sym_AMP] = ACTIONS(2007), + [anon_sym_PIPE] = ACTIONS(2007), + [anon_sym_LT] = ACTIONS(2007), + [anon_sym_DOT_DOT] = ACTIONS(2007), + [anon_sym_COLON_COLON] = ACTIONS(2007), + [anon_sym_POUND] = ACTIONS(2007), + [anon_sym_SQUOTE] = ACTIONS(2009), + [anon_sym_async] = ACTIONS(2009), + [anon_sym_break] = ACTIONS(2009), + [anon_sym_const] = ACTIONS(2009), + [anon_sym_continue] = ACTIONS(2009), + [anon_sym_default] = ACTIONS(2009), + [anon_sym_enum] = ACTIONS(2009), + [anon_sym_fn] = ACTIONS(2009), + [anon_sym_for] = ACTIONS(2009), + [anon_sym_gen] = ACTIONS(2009), + [anon_sym_if] = ACTIONS(2009), + [anon_sym_impl] = ACTIONS(2009), + [anon_sym_let] = ACTIONS(2009), + [anon_sym_loop] = ACTIONS(2009), + [anon_sym_match] = ACTIONS(2009), + [anon_sym_mod] = ACTIONS(2009), + [anon_sym_pub] = ACTIONS(2009), + [anon_sym_return] = ACTIONS(2009), + [anon_sym_static] = ACTIONS(2009), + [anon_sym_struct] = ACTIONS(2009), + [anon_sym_trait] = ACTIONS(2009), + [anon_sym_type] = ACTIONS(2009), + [anon_sym_union] = ACTIONS(2009), + [anon_sym_unsafe] = ACTIONS(2009), + [anon_sym_use] = ACTIONS(2009), + [anon_sym_while] = ACTIONS(2009), + [anon_sym_extern] = ACTIONS(2009), + [anon_sym_safe] = ACTIONS(2009), + [anon_sym_yield] = ACTIONS(2009), + [anon_sym_move] = ACTIONS(2009), + [anon_sym_try] = ACTIONS(2009), + [sym_integer_literal] = ACTIONS(2007), + [aux_sym_string_literal_token1] = ACTIONS(2007), + [sym_char_literal] = ACTIONS(2007), + [anon_sym_true] = ACTIONS(2009), + [anon_sym_false] = ACTIONS(2009), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2009), + [sym_super] = ACTIONS(2009), + [sym_crate] = ACTIONS(2009), + [sym_metavariable] = ACTIONS(2007), + [sym__raw_string_literal_start] = ACTIONS(2007), + [sym_float_literal] = ACTIONS(2007), }, [STATE(546)] = { [sym_line_comment] = STATE(546), [sym_block_comment] = STATE(546), - [ts_builtin_sym_end] = ACTIONS(2140), - [sym_identifier] = ACTIONS(2142), - [anon_sym_SEMI] = ACTIONS(2140), - [anon_sym_macro_rules_BANG] = ACTIONS(2140), - [anon_sym_LPAREN] = ACTIONS(2140), - [anon_sym_LBRACK] = ACTIONS(2140), - [anon_sym_LBRACE] = ACTIONS(2140), - [anon_sym_RBRACE] = ACTIONS(2140), - [anon_sym_STAR] = ACTIONS(2140), - [anon_sym_u8] = ACTIONS(2142), - [anon_sym_i8] = ACTIONS(2142), - [anon_sym_u16] = ACTIONS(2142), - [anon_sym_i16] = ACTIONS(2142), - [anon_sym_u32] = ACTIONS(2142), - [anon_sym_i32] = ACTIONS(2142), - [anon_sym_u64] = ACTIONS(2142), - [anon_sym_i64] = ACTIONS(2142), - [anon_sym_u128] = ACTIONS(2142), - [anon_sym_i128] = ACTIONS(2142), - [anon_sym_isize] = ACTIONS(2142), - [anon_sym_usize] = ACTIONS(2142), - [anon_sym_f32] = ACTIONS(2142), - [anon_sym_f64] = ACTIONS(2142), - [anon_sym_bool] = ACTIONS(2142), - [anon_sym_str] = ACTIONS(2142), - [anon_sym_char] = ACTIONS(2142), - [anon_sym_DASH] = ACTIONS(2140), - [anon_sym_BANG] = ACTIONS(2140), - [anon_sym_AMP] = ACTIONS(2140), - [anon_sym_PIPE] = ACTIONS(2140), - [anon_sym_LT] = ACTIONS(2140), - [anon_sym_DOT_DOT] = ACTIONS(2140), - [anon_sym_COLON_COLON] = ACTIONS(2140), - [anon_sym_POUND] = ACTIONS(2140), - [anon_sym_SQUOTE] = ACTIONS(2142), - [anon_sym_async] = ACTIONS(2142), - [anon_sym_break] = ACTIONS(2142), - [anon_sym_const] = ACTIONS(2142), - [anon_sym_continue] = ACTIONS(2142), - [anon_sym_default] = ACTIONS(2142), - [anon_sym_enum] = ACTIONS(2142), - [anon_sym_fn] = ACTIONS(2142), - [anon_sym_for] = ACTIONS(2142), - [anon_sym_gen] = ACTIONS(2142), - [anon_sym_if] = ACTIONS(2142), - [anon_sym_impl] = ACTIONS(2142), - [anon_sym_let] = ACTIONS(2142), - [anon_sym_loop] = ACTIONS(2142), - [anon_sym_match] = ACTIONS(2142), - [anon_sym_mod] = ACTIONS(2142), - [anon_sym_pub] = ACTIONS(2142), - [anon_sym_return] = ACTIONS(2142), - [anon_sym_static] = ACTIONS(2142), - [anon_sym_struct] = ACTIONS(2142), - [anon_sym_trait] = ACTIONS(2142), - [anon_sym_type] = ACTIONS(2142), - [anon_sym_union] = ACTIONS(2142), - [anon_sym_unsafe] = ACTIONS(2142), - [anon_sym_use] = ACTIONS(2142), - [anon_sym_while] = ACTIONS(2142), - [anon_sym_extern] = ACTIONS(2142), - [anon_sym_yield] = ACTIONS(2142), - [anon_sym_move] = ACTIONS(2142), - [anon_sym_try] = ACTIONS(2142), - [sym_integer_literal] = ACTIONS(2140), - [aux_sym_string_literal_token1] = ACTIONS(2140), - [sym_char_literal] = ACTIONS(2140), - [anon_sym_true] = ACTIONS(2142), - [anon_sym_false] = ACTIONS(2142), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2142), - [sym_super] = ACTIONS(2142), - [sym_crate] = ACTIONS(2142), - [sym_metavariable] = ACTIONS(2140), - [sym__raw_string_literal_start] = ACTIONS(2140), - [sym_float_literal] = ACTIONS(2140), + [ts_builtin_sym_end] = ACTIONS(2011), + [sym_identifier] = ACTIONS(2013), + [anon_sym_SEMI] = ACTIONS(2011), + [anon_sym_macro_rules_BANG] = ACTIONS(2011), + [anon_sym_LPAREN] = ACTIONS(2011), + [anon_sym_LBRACK] = ACTIONS(2011), + [anon_sym_LBRACE] = ACTIONS(2011), + [anon_sym_RBRACE] = ACTIONS(2011), + [anon_sym_STAR] = ACTIONS(2011), + [anon_sym_u8] = ACTIONS(2013), + [anon_sym_i8] = ACTIONS(2013), + [anon_sym_u16] = ACTIONS(2013), + [anon_sym_i16] = ACTIONS(2013), + [anon_sym_u32] = ACTIONS(2013), + [anon_sym_i32] = ACTIONS(2013), + [anon_sym_u64] = ACTIONS(2013), + [anon_sym_i64] = ACTIONS(2013), + [anon_sym_u128] = ACTIONS(2013), + [anon_sym_i128] = ACTIONS(2013), + [anon_sym_isize] = ACTIONS(2013), + [anon_sym_usize] = ACTIONS(2013), + [anon_sym_f32] = ACTIONS(2013), + [anon_sym_f64] = ACTIONS(2013), + [anon_sym_bool] = ACTIONS(2013), + [anon_sym_str] = ACTIONS(2013), + [anon_sym_char] = ACTIONS(2013), + [anon_sym_DASH] = ACTIONS(2011), + [anon_sym_BANG] = ACTIONS(2011), + [anon_sym_AMP] = ACTIONS(2011), + [anon_sym_PIPE] = ACTIONS(2011), + [anon_sym_LT] = ACTIONS(2011), + [anon_sym_DOT_DOT] = ACTIONS(2011), + [anon_sym_COLON_COLON] = ACTIONS(2011), + [anon_sym_POUND] = ACTIONS(2011), + [anon_sym_SQUOTE] = ACTIONS(2013), + [anon_sym_async] = ACTIONS(2013), + [anon_sym_break] = ACTIONS(2013), + [anon_sym_const] = ACTIONS(2013), + [anon_sym_continue] = ACTIONS(2013), + [anon_sym_default] = ACTIONS(2013), + [anon_sym_enum] = ACTIONS(2013), + [anon_sym_fn] = ACTIONS(2013), + [anon_sym_for] = ACTIONS(2013), + [anon_sym_gen] = ACTIONS(2013), + [anon_sym_if] = ACTIONS(2013), + [anon_sym_impl] = ACTIONS(2013), + [anon_sym_let] = ACTIONS(2013), + [anon_sym_loop] = ACTIONS(2013), + [anon_sym_match] = ACTIONS(2013), + [anon_sym_mod] = ACTIONS(2013), + [anon_sym_pub] = ACTIONS(2013), + [anon_sym_return] = ACTIONS(2013), + [anon_sym_static] = ACTIONS(2013), + [anon_sym_struct] = ACTIONS(2013), + [anon_sym_trait] = ACTIONS(2013), + [anon_sym_type] = ACTIONS(2013), + [anon_sym_union] = ACTIONS(2013), + [anon_sym_unsafe] = ACTIONS(2013), + [anon_sym_use] = ACTIONS(2013), + [anon_sym_while] = ACTIONS(2013), + [anon_sym_extern] = ACTIONS(2013), + [anon_sym_safe] = ACTIONS(2013), + [anon_sym_yield] = ACTIONS(2013), + [anon_sym_move] = ACTIONS(2013), + [anon_sym_try] = ACTIONS(2013), + [sym_integer_literal] = ACTIONS(2011), + [aux_sym_string_literal_token1] = ACTIONS(2011), + [sym_char_literal] = ACTIONS(2011), + [anon_sym_true] = ACTIONS(2013), + [anon_sym_false] = ACTIONS(2013), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2013), + [sym_super] = ACTIONS(2013), + [sym_crate] = ACTIONS(2013), + [sym_metavariable] = ACTIONS(2011), + [sym__raw_string_literal_start] = ACTIONS(2011), + [sym_float_literal] = ACTIONS(2011), }, [STATE(547)] = { [sym_line_comment] = STATE(547), [sym_block_comment] = STATE(547), - [ts_builtin_sym_end] = ACTIONS(2144), - [sym_identifier] = ACTIONS(2146), - [anon_sym_SEMI] = ACTIONS(2144), - [anon_sym_macro_rules_BANG] = ACTIONS(2144), - [anon_sym_LPAREN] = ACTIONS(2144), - [anon_sym_LBRACK] = ACTIONS(2144), - [anon_sym_LBRACE] = ACTIONS(2144), - [anon_sym_RBRACE] = ACTIONS(2144), - [anon_sym_STAR] = ACTIONS(2144), - [anon_sym_u8] = ACTIONS(2146), - [anon_sym_i8] = ACTIONS(2146), - [anon_sym_u16] = ACTIONS(2146), - [anon_sym_i16] = ACTIONS(2146), - [anon_sym_u32] = ACTIONS(2146), - [anon_sym_i32] = ACTIONS(2146), - [anon_sym_u64] = ACTIONS(2146), - [anon_sym_i64] = ACTIONS(2146), - [anon_sym_u128] = ACTIONS(2146), - [anon_sym_i128] = ACTIONS(2146), - [anon_sym_isize] = ACTIONS(2146), - [anon_sym_usize] = ACTIONS(2146), - [anon_sym_f32] = ACTIONS(2146), - [anon_sym_f64] = ACTIONS(2146), - [anon_sym_bool] = ACTIONS(2146), - [anon_sym_str] = ACTIONS(2146), - [anon_sym_char] = ACTIONS(2146), - [anon_sym_DASH] = ACTIONS(2144), - [anon_sym_BANG] = ACTIONS(2144), - [anon_sym_AMP] = ACTIONS(2144), - [anon_sym_PIPE] = ACTIONS(2144), - [anon_sym_LT] = ACTIONS(2144), - [anon_sym_DOT_DOT] = ACTIONS(2144), - [anon_sym_COLON_COLON] = ACTIONS(2144), - [anon_sym_POUND] = ACTIONS(2144), - [anon_sym_SQUOTE] = ACTIONS(2146), - [anon_sym_async] = ACTIONS(2146), - [anon_sym_break] = ACTIONS(2146), - [anon_sym_const] = ACTIONS(2146), - [anon_sym_continue] = ACTIONS(2146), - [anon_sym_default] = ACTIONS(2146), - [anon_sym_enum] = ACTIONS(2146), - [anon_sym_fn] = ACTIONS(2146), - [anon_sym_for] = ACTIONS(2146), - [anon_sym_gen] = ACTIONS(2146), - [anon_sym_if] = ACTIONS(2146), - [anon_sym_impl] = ACTIONS(2146), - [anon_sym_let] = ACTIONS(2146), - [anon_sym_loop] = ACTIONS(2146), - [anon_sym_match] = ACTIONS(2146), - [anon_sym_mod] = ACTIONS(2146), - [anon_sym_pub] = ACTIONS(2146), - [anon_sym_return] = ACTIONS(2146), - [anon_sym_static] = ACTIONS(2146), - [anon_sym_struct] = ACTIONS(2146), - [anon_sym_trait] = ACTIONS(2146), - [anon_sym_type] = ACTIONS(2146), - [anon_sym_union] = ACTIONS(2146), - [anon_sym_unsafe] = ACTIONS(2146), - [anon_sym_use] = ACTIONS(2146), - [anon_sym_while] = ACTIONS(2146), - [anon_sym_extern] = ACTIONS(2146), - [anon_sym_yield] = ACTIONS(2146), - [anon_sym_move] = ACTIONS(2146), - [anon_sym_try] = ACTIONS(2146), - [sym_integer_literal] = ACTIONS(2144), - [aux_sym_string_literal_token1] = ACTIONS(2144), - [sym_char_literal] = ACTIONS(2144), - [anon_sym_true] = ACTIONS(2146), - [anon_sym_false] = ACTIONS(2146), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2146), - [sym_super] = ACTIONS(2146), - [sym_crate] = ACTIONS(2146), - [sym_metavariable] = ACTIONS(2144), - [sym__raw_string_literal_start] = ACTIONS(2144), - [sym_float_literal] = ACTIONS(2144), + [ts_builtin_sym_end] = ACTIONS(2015), + [sym_identifier] = ACTIONS(2017), + [anon_sym_SEMI] = ACTIONS(2015), + [anon_sym_macro_rules_BANG] = ACTIONS(2015), + [anon_sym_LPAREN] = ACTIONS(2015), + [anon_sym_LBRACK] = ACTIONS(2015), + [anon_sym_LBRACE] = ACTIONS(2015), + [anon_sym_RBRACE] = ACTIONS(2015), + [anon_sym_STAR] = ACTIONS(2015), + [anon_sym_u8] = ACTIONS(2017), + [anon_sym_i8] = ACTIONS(2017), + [anon_sym_u16] = ACTIONS(2017), + [anon_sym_i16] = ACTIONS(2017), + [anon_sym_u32] = ACTIONS(2017), + [anon_sym_i32] = ACTIONS(2017), + [anon_sym_u64] = ACTIONS(2017), + [anon_sym_i64] = ACTIONS(2017), + [anon_sym_u128] = ACTIONS(2017), + [anon_sym_i128] = ACTIONS(2017), + [anon_sym_isize] = ACTIONS(2017), + [anon_sym_usize] = ACTIONS(2017), + [anon_sym_f32] = ACTIONS(2017), + [anon_sym_f64] = ACTIONS(2017), + [anon_sym_bool] = ACTIONS(2017), + [anon_sym_str] = ACTIONS(2017), + [anon_sym_char] = ACTIONS(2017), + [anon_sym_DASH] = ACTIONS(2015), + [anon_sym_BANG] = ACTIONS(2015), + [anon_sym_AMP] = ACTIONS(2015), + [anon_sym_PIPE] = ACTIONS(2015), + [anon_sym_LT] = ACTIONS(2015), + [anon_sym_DOT_DOT] = ACTIONS(2015), + [anon_sym_COLON_COLON] = ACTIONS(2015), + [anon_sym_POUND] = ACTIONS(2015), + [anon_sym_SQUOTE] = ACTIONS(2017), + [anon_sym_async] = ACTIONS(2017), + [anon_sym_break] = ACTIONS(2017), + [anon_sym_const] = ACTIONS(2017), + [anon_sym_continue] = ACTIONS(2017), + [anon_sym_default] = ACTIONS(2017), + [anon_sym_enum] = ACTIONS(2017), + [anon_sym_fn] = ACTIONS(2017), + [anon_sym_for] = ACTIONS(2017), + [anon_sym_gen] = ACTIONS(2017), + [anon_sym_if] = ACTIONS(2017), + [anon_sym_impl] = ACTIONS(2017), + [anon_sym_let] = ACTIONS(2017), + [anon_sym_loop] = ACTIONS(2017), + [anon_sym_match] = ACTIONS(2017), + [anon_sym_mod] = ACTIONS(2017), + [anon_sym_pub] = ACTIONS(2017), + [anon_sym_return] = ACTIONS(2017), + [anon_sym_static] = ACTIONS(2017), + [anon_sym_struct] = ACTIONS(2017), + [anon_sym_trait] = ACTIONS(2017), + [anon_sym_type] = ACTIONS(2017), + [anon_sym_union] = ACTIONS(2017), + [anon_sym_unsafe] = ACTIONS(2017), + [anon_sym_use] = ACTIONS(2017), + [anon_sym_while] = ACTIONS(2017), + [anon_sym_extern] = ACTIONS(2017), + [anon_sym_safe] = ACTIONS(2017), + [anon_sym_yield] = ACTIONS(2017), + [anon_sym_move] = ACTIONS(2017), + [anon_sym_try] = ACTIONS(2017), + [sym_integer_literal] = ACTIONS(2015), + [aux_sym_string_literal_token1] = ACTIONS(2015), + [sym_char_literal] = ACTIONS(2015), + [anon_sym_true] = ACTIONS(2017), + [anon_sym_false] = ACTIONS(2017), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2017), + [sym_super] = ACTIONS(2017), + [sym_crate] = ACTIONS(2017), + [sym_metavariable] = ACTIONS(2015), + [sym__raw_string_literal_start] = ACTIONS(2015), + [sym_float_literal] = ACTIONS(2015), }, [STATE(548)] = { [sym_line_comment] = STATE(548), [sym_block_comment] = STATE(548), - [ts_builtin_sym_end] = ACTIONS(2148), - [sym_identifier] = ACTIONS(2150), - [anon_sym_SEMI] = ACTIONS(2148), - [anon_sym_macro_rules_BANG] = ACTIONS(2148), - [anon_sym_LPAREN] = ACTIONS(2148), - [anon_sym_LBRACK] = ACTIONS(2148), - [anon_sym_LBRACE] = ACTIONS(2148), - [anon_sym_RBRACE] = ACTIONS(2148), - [anon_sym_STAR] = ACTIONS(2148), - [anon_sym_u8] = ACTIONS(2150), - [anon_sym_i8] = ACTIONS(2150), - [anon_sym_u16] = ACTIONS(2150), - [anon_sym_i16] = ACTIONS(2150), - [anon_sym_u32] = ACTIONS(2150), - [anon_sym_i32] = ACTIONS(2150), - [anon_sym_u64] = ACTIONS(2150), - [anon_sym_i64] = ACTIONS(2150), - [anon_sym_u128] = ACTIONS(2150), - [anon_sym_i128] = ACTIONS(2150), - [anon_sym_isize] = ACTIONS(2150), - [anon_sym_usize] = ACTIONS(2150), - [anon_sym_f32] = ACTIONS(2150), - [anon_sym_f64] = ACTIONS(2150), - [anon_sym_bool] = ACTIONS(2150), - [anon_sym_str] = ACTIONS(2150), - [anon_sym_char] = ACTIONS(2150), - [anon_sym_DASH] = ACTIONS(2148), - [anon_sym_BANG] = ACTIONS(2148), - [anon_sym_AMP] = ACTIONS(2148), - [anon_sym_PIPE] = ACTIONS(2148), - [anon_sym_LT] = ACTIONS(2148), - [anon_sym_DOT_DOT] = ACTIONS(2148), - [anon_sym_COLON_COLON] = ACTIONS(2148), - [anon_sym_POUND] = ACTIONS(2148), - [anon_sym_SQUOTE] = ACTIONS(2150), - [anon_sym_async] = ACTIONS(2150), - [anon_sym_break] = ACTIONS(2150), - [anon_sym_const] = ACTIONS(2150), - [anon_sym_continue] = ACTIONS(2150), - [anon_sym_default] = ACTIONS(2150), - [anon_sym_enum] = ACTIONS(2150), - [anon_sym_fn] = ACTIONS(2150), - [anon_sym_for] = ACTIONS(2150), - [anon_sym_gen] = ACTIONS(2150), - [anon_sym_if] = ACTIONS(2150), - [anon_sym_impl] = ACTIONS(2150), - [anon_sym_let] = ACTIONS(2150), - [anon_sym_loop] = ACTIONS(2150), - [anon_sym_match] = ACTIONS(2150), - [anon_sym_mod] = ACTIONS(2150), - [anon_sym_pub] = ACTIONS(2150), - [anon_sym_return] = ACTIONS(2150), - [anon_sym_static] = ACTIONS(2150), - [anon_sym_struct] = ACTIONS(2150), - [anon_sym_trait] = ACTIONS(2150), - [anon_sym_type] = ACTIONS(2150), - [anon_sym_union] = ACTIONS(2150), - [anon_sym_unsafe] = ACTIONS(2150), - [anon_sym_use] = ACTIONS(2150), - [anon_sym_while] = ACTIONS(2150), - [anon_sym_extern] = ACTIONS(2150), - [anon_sym_yield] = ACTIONS(2150), - [anon_sym_move] = ACTIONS(2150), - [anon_sym_try] = ACTIONS(2150), - [sym_integer_literal] = ACTIONS(2148), - [aux_sym_string_literal_token1] = ACTIONS(2148), - [sym_char_literal] = ACTIONS(2148), - [anon_sym_true] = ACTIONS(2150), - [anon_sym_false] = ACTIONS(2150), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2150), - [sym_super] = ACTIONS(2150), - [sym_crate] = ACTIONS(2150), - [sym_metavariable] = ACTIONS(2148), - [sym__raw_string_literal_start] = ACTIONS(2148), - [sym_float_literal] = ACTIONS(2148), + [ts_builtin_sym_end] = ACTIONS(2019), + [sym_identifier] = ACTIONS(2021), + [anon_sym_SEMI] = ACTIONS(2019), + [anon_sym_macro_rules_BANG] = ACTIONS(2019), + [anon_sym_LPAREN] = ACTIONS(2019), + [anon_sym_LBRACK] = ACTIONS(2019), + [anon_sym_LBRACE] = ACTIONS(2019), + [anon_sym_RBRACE] = ACTIONS(2019), + [anon_sym_STAR] = ACTIONS(2019), + [anon_sym_u8] = ACTIONS(2021), + [anon_sym_i8] = ACTIONS(2021), + [anon_sym_u16] = ACTIONS(2021), + [anon_sym_i16] = ACTIONS(2021), + [anon_sym_u32] = ACTIONS(2021), + [anon_sym_i32] = ACTIONS(2021), + [anon_sym_u64] = ACTIONS(2021), + [anon_sym_i64] = ACTIONS(2021), + [anon_sym_u128] = ACTIONS(2021), + [anon_sym_i128] = ACTIONS(2021), + [anon_sym_isize] = ACTIONS(2021), + [anon_sym_usize] = ACTIONS(2021), + [anon_sym_f32] = ACTIONS(2021), + [anon_sym_f64] = ACTIONS(2021), + [anon_sym_bool] = ACTIONS(2021), + [anon_sym_str] = ACTIONS(2021), + [anon_sym_char] = ACTIONS(2021), + [anon_sym_DASH] = ACTIONS(2019), + [anon_sym_BANG] = ACTIONS(2019), + [anon_sym_AMP] = ACTIONS(2019), + [anon_sym_PIPE] = ACTIONS(2019), + [anon_sym_LT] = ACTIONS(2019), + [anon_sym_DOT_DOT] = ACTIONS(2019), + [anon_sym_COLON_COLON] = ACTIONS(2019), + [anon_sym_POUND] = ACTIONS(2019), + [anon_sym_SQUOTE] = ACTIONS(2021), + [anon_sym_async] = ACTIONS(2021), + [anon_sym_break] = ACTIONS(2021), + [anon_sym_const] = ACTIONS(2021), + [anon_sym_continue] = ACTIONS(2021), + [anon_sym_default] = ACTIONS(2021), + [anon_sym_enum] = ACTIONS(2021), + [anon_sym_fn] = ACTIONS(2021), + [anon_sym_for] = ACTIONS(2021), + [anon_sym_gen] = ACTIONS(2021), + [anon_sym_if] = ACTIONS(2021), + [anon_sym_impl] = ACTIONS(2021), + [anon_sym_let] = ACTIONS(2021), + [anon_sym_loop] = ACTIONS(2021), + [anon_sym_match] = ACTIONS(2021), + [anon_sym_mod] = ACTIONS(2021), + [anon_sym_pub] = ACTIONS(2021), + [anon_sym_return] = ACTIONS(2021), + [anon_sym_static] = ACTIONS(2021), + [anon_sym_struct] = ACTIONS(2021), + [anon_sym_trait] = ACTIONS(2021), + [anon_sym_type] = ACTIONS(2021), + [anon_sym_union] = ACTIONS(2021), + [anon_sym_unsafe] = ACTIONS(2021), + [anon_sym_use] = ACTIONS(2021), + [anon_sym_while] = ACTIONS(2021), + [anon_sym_extern] = ACTIONS(2021), + [anon_sym_safe] = ACTIONS(2021), + [anon_sym_yield] = ACTIONS(2021), + [anon_sym_move] = ACTIONS(2021), + [anon_sym_try] = ACTIONS(2021), + [sym_integer_literal] = ACTIONS(2019), + [aux_sym_string_literal_token1] = ACTIONS(2019), + [sym_char_literal] = ACTIONS(2019), + [anon_sym_true] = ACTIONS(2021), + [anon_sym_false] = ACTIONS(2021), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2021), + [sym_super] = ACTIONS(2021), + [sym_crate] = ACTIONS(2021), + [sym_metavariable] = ACTIONS(2019), + [sym__raw_string_literal_start] = ACTIONS(2019), + [sym_float_literal] = ACTIONS(2019), }, [STATE(549)] = { [sym_line_comment] = STATE(549), [sym_block_comment] = STATE(549), - [ts_builtin_sym_end] = ACTIONS(2152), - [sym_identifier] = ACTIONS(2154), - [anon_sym_SEMI] = ACTIONS(2152), - [anon_sym_macro_rules_BANG] = ACTIONS(2152), - [anon_sym_LPAREN] = ACTIONS(2152), - [anon_sym_LBRACK] = ACTIONS(2152), - [anon_sym_LBRACE] = ACTIONS(2152), - [anon_sym_RBRACE] = ACTIONS(2152), - [anon_sym_STAR] = ACTIONS(2152), - [anon_sym_u8] = ACTIONS(2154), - [anon_sym_i8] = ACTIONS(2154), - [anon_sym_u16] = ACTIONS(2154), - [anon_sym_i16] = ACTIONS(2154), - [anon_sym_u32] = ACTIONS(2154), - [anon_sym_i32] = ACTIONS(2154), - [anon_sym_u64] = ACTIONS(2154), - [anon_sym_i64] = ACTIONS(2154), - [anon_sym_u128] = ACTIONS(2154), - [anon_sym_i128] = ACTIONS(2154), - [anon_sym_isize] = ACTIONS(2154), - [anon_sym_usize] = ACTIONS(2154), - [anon_sym_f32] = ACTIONS(2154), - [anon_sym_f64] = ACTIONS(2154), - [anon_sym_bool] = ACTIONS(2154), - [anon_sym_str] = ACTIONS(2154), - [anon_sym_char] = ACTIONS(2154), - [anon_sym_DASH] = ACTIONS(2152), - [anon_sym_BANG] = ACTIONS(2152), - [anon_sym_AMP] = ACTIONS(2152), - [anon_sym_PIPE] = ACTIONS(2152), - [anon_sym_LT] = ACTIONS(2152), - [anon_sym_DOT_DOT] = ACTIONS(2152), - [anon_sym_COLON_COLON] = ACTIONS(2152), - [anon_sym_POUND] = ACTIONS(2152), - [anon_sym_SQUOTE] = ACTIONS(2154), - [anon_sym_async] = ACTIONS(2154), - [anon_sym_break] = ACTIONS(2154), - [anon_sym_const] = ACTIONS(2154), - [anon_sym_continue] = ACTIONS(2154), - [anon_sym_default] = ACTIONS(2154), - [anon_sym_enum] = ACTIONS(2154), - [anon_sym_fn] = ACTIONS(2154), - [anon_sym_for] = ACTIONS(2154), - [anon_sym_gen] = ACTIONS(2154), - [anon_sym_if] = ACTIONS(2154), - [anon_sym_impl] = ACTIONS(2154), - [anon_sym_let] = ACTIONS(2154), - [anon_sym_loop] = ACTIONS(2154), - [anon_sym_match] = ACTIONS(2154), - [anon_sym_mod] = ACTIONS(2154), - [anon_sym_pub] = ACTIONS(2154), - [anon_sym_return] = ACTIONS(2154), - [anon_sym_static] = ACTIONS(2154), - [anon_sym_struct] = ACTIONS(2154), - [anon_sym_trait] = ACTIONS(2154), - [anon_sym_type] = ACTIONS(2154), - [anon_sym_union] = ACTIONS(2154), - [anon_sym_unsafe] = ACTIONS(2154), - [anon_sym_use] = ACTIONS(2154), - [anon_sym_while] = ACTIONS(2154), - [anon_sym_extern] = ACTIONS(2154), - [anon_sym_yield] = ACTIONS(2154), - [anon_sym_move] = ACTIONS(2154), - [anon_sym_try] = ACTIONS(2154), - [sym_integer_literal] = ACTIONS(2152), - [aux_sym_string_literal_token1] = ACTIONS(2152), - [sym_char_literal] = ACTIONS(2152), - [anon_sym_true] = ACTIONS(2154), - [anon_sym_false] = ACTIONS(2154), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2154), - [sym_super] = ACTIONS(2154), - [sym_crate] = ACTIONS(2154), - [sym_metavariable] = ACTIONS(2152), - [sym__raw_string_literal_start] = ACTIONS(2152), - [sym_float_literal] = ACTIONS(2152), + [ts_builtin_sym_end] = ACTIONS(2023), + [sym_identifier] = ACTIONS(2025), + [anon_sym_SEMI] = ACTIONS(2023), + [anon_sym_macro_rules_BANG] = ACTIONS(2023), + [anon_sym_LPAREN] = ACTIONS(2023), + [anon_sym_LBRACK] = ACTIONS(2023), + [anon_sym_LBRACE] = ACTIONS(2023), + [anon_sym_RBRACE] = ACTIONS(2023), + [anon_sym_STAR] = ACTIONS(2023), + [anon_sym_u8] = ACTIONS(2025), + [anon_sym_i8] = ACTIONS(2025), + [anon_sym_u16] = ACTIONS(2025), + [anon_sym_i16] = ACTIONS(2025), + [anon_sym_u32] = ACTIONS(2025), + [anon_sym_i32] = ACTIONS(2025), + [anon_sym_u64] = ACTIONS(2025), + [anon_sym_i64] = ACTIONS(2025), + [anon_sym_u128] = ACTIONS(2025), + [anon_sym_i128] = ACTIONS(2025), + [anon_sym_isize] = ACTIONS(2025), + [anon_sym_usize] = ACTIONS(2025), + [anon_sym_f32] = ACTIONS(2025), + [anon_sym_f64] = ACTIONS(2025), + [anon_sym_bool] = ACTIONS(2025), + [anon_sym_str] = ACTIONS(2025), + [anon_sym_char] = ACTIONS(2025), + [anon_sym_DASH] = ACTIONS(2023), + [anon_sym_BANG] = ACTIONS(2023), + [anon_sym_AMP] = ACTIONS(2023), + [anon_sym_PIPE] = ACTIONS(2023), + [anon_sym_LT] = ACTIONS(2023), + [anon_sym_DOT_DOT] = ACTIONS(2023), + [anon_sym_COLON_COLON] = ACTIONS(2023), + [anon_sym_POUND] = ACTIONS(2023), + [anon_sym_SQUOTE] = ACTIONS(2025), + [anon_sym_async] = ACTIONS(2025), + [anon_sym_break] = ACTIONS(2025), + [anon_sym_const] = ACTIONS(2025), + [anon_sym_continue] = ACTIONS(2025), + [anon_sym_default] = ACTIONS(2025), + [anon_sym_enum] = ACTIONS(2025), + [anon_sym_fn] = ACTIONS(2025), + [anon_sym_for] = ACTIONS(2025), + [anon_sym_gen] = ACTIONS(2025), + [anon_sym_if] = ACTIONS(2025), + [anon_sym_impl] = ACTIONS(2025), + [anon_sym_let] = ACTIONS(2025), + [anon_sym_loop] = ACTIONS(2025), + [anon_sym_match] = ACTIONS(2025), + [anon_sym_mod] = ACTIONS(2025), + [anon_sym_pub] = ACTIONS(2025), + [anon_sym_return] = ACTIONS(2025), + [anon_sym_static] = ACTIONS(2025), + [anon_sym_struct] = ACTIONS(2025), + [anon_sym_trait] = ACTIONS(2025), + [anon_sym_type] = ACTIONS(2025), + [anon_sym_union] = ACTIONS(2025), + [anon_sym_unsafe] = ACTIONS(2025), + [anon_sym_use] = ACTIONS(2025), + [anon_sym_while] = ACTIONS(2025), + [anon_sym_extern] = ACTIONS(2025), + [anon_sym_safe] = ACTIONS(2025), + [anon_sym_yield] = ACTIONS(2025), + [anon_sym_move] = ACTIONS(2025), + [anon_sym_try] = ACTIONS(2025), + [sym_integer_literal] = ACTIONS(2023), + [aux_sym_string_literal_token1] = ACTIONS(2023), + [sym_char_literal] = ACTIONS(2023), + [anon_sym_true] = ACTIONS(2025), + [anon_sym_false] = ACTIONS(2025), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2025), + [sym_super] = ACTIONS(2025), + [sym_crate] = ACTIONS(2025), + [sym_metavariable] = ACTIONS(2023), + [sym__raw_string_literal_start] = ACTIONS(2023), + [sym_float_literal] = ACTIONS(2023), }, [STATE(550)] = { - [sym_empty_statement] = STATE(1170), - [sym_macro_definition] = STATE(1170), - [sym_attribute_item] = STATE(1170), - [sym_inner_attribute_item] = STATE(1170), - [sym_mod_item] = STATE(1170), - [sym_foreign_mod_item] = STATE(1170), - [sym_struct_item] = STATE(1170), - [sym_union_item] = STATE(1170), - [sym_enum_item] = STATE(1170), - [sym_extern_crate_declaration] = STATE(1170), - [sym_const_item] = STATE(1170), - [sym_static_item] = STATE(1170), - [sym_type_item] = STATE(1170), - [sym_function_item] = STATE(1170), - [sym_function_signature_item] = STATE(1170), - [sym_function_modifiers] = STATE(3781), - [sym_impl_item] = STATE(1170), - [sym_trait_item] = STATE(1170), - [sym_associated_type] = STATE(1170), - [sym_let_declaration] = STATE(1170), - [sym_use_declaration] = STATE(1170), - [sym_extern_modifier] = STATE(2235), - [sym_visibility_modifier] = STATE(2021), - [sym_bracketed_type] = STATE(3732), - [sym_generic_type_with_turbofish] = STATE(3800), - [sym_macro_invocation] = STATE(1170), - [sym_scoped_identifier] = STATE(3326), [sym_line_comment] = STATE(550), [sym_block_comment] = STATE(550), - [aux_sym_declaration_list_repeat1] = STATE(545), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2090), - [anon_sym_macro_rules_BANG] = ACTIONS(2092), - [anon_sym_RBRACE] = ACTIONS(2156), - [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_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(2098), - [anon_sym_POUND] = ACTIONS(2100), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(2102), - [anon_sym_default] = ACTIONS(2104), - [anon_sym_enum] = ACTIONS(2106), - [anon_sym_fn] = ACTIONS(2108), - [anon_sym_gen] = ACTIONS(2110), - [anon_sym_impl] = ACTIONS(2112), - [anon_sym_let] = ACTIONS(2114), - [anon_sym_mod] = ACTIONS(2116), - [anon_sym_pub] = ACTIONS(69), - [anon_sym_static] = ACTIONS(2118), - [anon_sym_struct] = ACTIONS(2120), - [anon_sym_trait] = ACTIONS(2122), - [anon_sym_type] = ACTIONS(2124), - [anon_sym_union] = ACTIONS(2126), - [anon_sym_unsafe] = ACTIONS(2128), - [anon_sym_use] = ACTIONS(2130), - [anon_sym_extern] = ACTIONS(2132), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2134), - [sym_super] = ACTIONS(2134), - [sym_crate] = ACTIONS(2136), - [sym_metavariable] = ACTIONS(2138), + [ts_builtin_sym_end] = ACTIONS(2027), + [sym_identifier] = ACTIONS(2029), + [anon_sym_SEMI] = ACTIONS(2027), + [anon_sym_macro_rules_BANG] = ACTIONS(2027), + [anon_sym_LPAREN] = ACTIONS(2027), + [anon_sym_LBRACK] = ACTIONS(2027), + [anon_sym_LBRACE] = ACTIONS(2027), + [anon_sym_RBRACE] = ACTIONS(2027), + [anon_sym_STAR] = ACTIONS(2027), + [anon_sym_u8] = ACTIONS(2029), + [anon_sym_i8] = ACTIONS(2029), + [anon_sym_u16] = ACTIONS(2029), + [anon_sym_i16] = ACTIONS(2029), + [anon_sym_u32] = ACTIONS(2029), + [anon_sym_i32] = ACTIONS(2029), + [anon_sym_u64] = ACTIONS(2029), + [anon_sym_i64] = ACTIONS(2029), + [anon_sym_u128] = ACTIONS(2029), + [anon_sym_i128] = ACTIONS(2029), + [anon_sym_isize] = ACTIONS(2029), + [anon_sym_usize] = ACTIONS(2029), + [anon_sym_f32] = ACTIONS(2029), + [anon_sym_f64] = ACTIONS(2029), + [anon_sym_bool] = ACTIONS(2029), + [anon_sym_str] = ACTIONS(2029), + [anon_sym_char] = ACTIONS(2029), + [anon_sym_DASH] = ACTIONS(2027), + [anon_sym_BANG] = ACTIONS(2027), + [anon_sym_AMP] = ACTIONS(2027), + [anon_sym_PIPE] = ACTIONS(2027), + [anon_sym_LT] = ACTIONS(2027), + [anon_sym_DOT_DOT] = ACTIONS(2027), + [anon_sym_COLON_COLON] = ACTIONS(2027), + [anon_sym_POUND] = ACTIONS(2027), + [anon_sym_SQUOTE] = ACTIONS(2029), + [anon_sym_async] = ACTIONS(2029), + [anon_sym_break] = ACTIONS(2029), + [anon_sym_const] = ACTIONS(2029), + [anon_sym_continue] = ACTIONS(2029), + [anon_sym_default] = ACTIONS(2029), + [anon_sym_enum] = ACTIONS(2029), + [anon_sym_fn] = ACTIONS(2029), + [anon_sym_for] = ACTIONS(2029), + [anon_sym_gen] = ACTIONS(2029), + [anon_sym_if] = ACTIONS(2029), + [anon_sym_impl] = ACTIONS(2029), + [anon_sym_let] = ACTIONS(2029), + [anon_sym_loop] = ACTIONS(2029), + [anon_sym_match] = ACTIONS(2029), + [anon_sym_mod] = ACTIONS(2029), + [anon_sym_pub] = ACTIONS(2029), + [anon_sym_return] = ACTIONS(2029), + [anon_sym_static] = ACTIONS(2029), + [anon_sym_struct] = ACTIONS(2029), + [anon_sym_trait] = ACTIONS(2029), + [anon_sym_type] = ACTIONS(2029), + [anon_sym_union] = ACTIONS(2029), + [anon_sym_unsafe] = ACTIONS(2029), + [anon_sym_use] = ACTIONS(2029), + [anon_sym_while] = ACTIONS(2029), + [anon_sym_extern] = ACTIONS(2029), + [anon_sym_safe] = ACTIONS(2029), + [anon_sym_yield] = ACTIONS(2029), + [anon_sym_move] = ACTIONS(2029), + [anon_sym_try] = ACTIONS(2029), + [sym_integer_literal] = ACTIONS(2027), + [aux_sym_string_literal_token1] = ACTIONS(2027), + [sym_char_literal] = ACTIONS(2027), + [anon_sym_true] = ACTIONS(2029), + [anon_sym_false] = ACTIONS(2029), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2029), + [sym_super] = ACTIONS(2029), + [sym_crate] = ACTIONS(2029), + [sym_metavariable] = ACTIONS(2027), + [sym__raw_string_literal_start] = ACTIONS(2027), + [sym_float_literal] = ACTIONS(2027), }, [STATE(551)] = { [sym_line_comment] = STATE(551), [sym_block_comment] = STATE(551), - [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(2031), + [sym_identifier] = ACTIONS(2033), + [anon_sym_SEMI] = ACTIONS(2031), + [anon_sym_macro_rules_BANG] = ACTIONS(2031), + [anon_sym_LPAREN] = ACTIONS(2031), + [anon_sym_LBRACK] = ACTIONS(2031), + [anon_sym_LBRACE] = ACTIONS(2031), + [anon_sym_RBRACE] = ACTIONS(2031), + [anon_sym_STAR] = ACTIONS(2031), + [anon_sym_u8] = ACTIONS(2033), + [anon_sym_i8] = ACTIONS(2033), + [anon_sym_u16] = ACTIONS(2033), + [anon_sym_i16] = ACTIONS(2033), + [anon_sym_u32] = ACTIONS(2033), + [anon_sym_i32] = ACTIONS(2033), + [anon_sym_u64] = ACTIONS(2033), + [anon_sym_i64] = ACTIONS(2033), + [anon_sym_u128] = ACTIONS(2033), + [anon_sym_i128] = ACTIONS(2033), + [anon_sym_isize] = ACTIONS(2033), + [anon_sym_usize] = ACTIONS(2033), + [anon_sym_f32] = ACTIONS(2033), + [anon_sym_f64] = ACTIONS(2033), + [anon_sym_bool] = ACTIONS(2033), + [anon_sym_str] = ACTIONS(2033), + [anon_sym_char] = ACTIONS(2033), + [anon_sym_DASH] = ACTIONS(2031), + [anon_sym_BANG] = ACTIONS(2031), + [anon_sym_AMP] = ACTIONS(2031), + [anon_sym_PIPE] = ACTIONS(2031), + [anon_sym_LT] = ACTIONS(2031), + [anon_sym_DOT_DOT] = ACTIONS(2031), + [anon_sym_COLON_COLON] = ACTIONS(2031), + [anon_sym_POUND] = ACTIONS(2031), + [anon_sym_SQUOTE] = ACTIONS(2033), + [anon_sym_async] = ACTIONS(2033), + [anon_sym_break] = ACTIONS(2033), + [anon_sym_const] = ACTIONS(2033), + [anon_sym_continue] = ACTIONS(2033), + [anon_sym_default] = ACTIONS(2033), + [anon_sym_enum] = ACTIONS(2033), + [anon_sym_fn] = ACTIONS(2033), + [anon_sym_for] = ACTIONS(2033), + [anon_sym_gen] = ACTIONS(2033), + [anon_sym_if] = ACTIONS(2033), + [anon_sym_impl] = ACTIONS(2033), + [anon_sym_let] = ACTIONS(2033), + [anon_sym_loop] = ACTIONS(2033), + [anon_sym_match] = ACTIONS(2033), + [anon_sym_mod] = ACTIONS(2033), + [anon_sym_pub] = ACTIONS(2033), + [anon_sym_return] = ACTIONS(2033), + [anon_sym_static] = ACTIONS(2033), + [anon_sym_struct] = ACTIONS(2033), + [anon_sym_trait] = ACTIONS(2033), + [anon_sym_type] = ACTIONS(2033), + [anon_sym_union] = ACTIONS(2033), + [anon_sym_unsafe] = ACTIONS(2033), + [anon_sym_use] = ACTIONS(2033), + [anon_sym_while] = ACTIONS(2033), + [anon_sym_extern] = ACTIONS(2033), + [anon_sym_safe] = ACTIONS(2033), + [anon_sym_yield] = ACTIONS(2033), + [anon_sym_move] = ACTIONS(2033), + [anon_sym_try] = ACTIONS(2033), + [sym_integer_literal] = ACTIONS(2031), + [aux_sym_string_literal_token1] = ACTIONS(2031), + [sym_char_literal] = ACTIONS(2031), + [anon_sym_true] = ACTIONS(2033), + [anon_sym_false] = ACTIONS(2033), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2033), + [sym_super] = ACTIONS(2033), + [sym_crate] = ACTIONS(2033), + [sym_metavariable] = ACTIONS(2031), + [sym__raw_string_literal_start] = ACTIONS(2031), + [sym_float_literal] = ACTIONS(2031), }, [STATE(552)] = { [sym_line_comment] = STATE(552), [sym_block_comment] = STATE(552), - [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(2035), + [sym_identifier] = ACTIONS(2037), + [anon_sym_SEMI] = ACTIONS(2035), + [anon_sym_macro_rules_BANG] = ACTIONS(2035), + [anon_sym_LPAREN] = ACTIONS(2035), + [anon_sym_LBRACK] = ACTIONS(2035), + [anon_sym_LBRACE] = ACTIONS(2035), + [anon_sym_RBRACE] = ACTIONS(2035), + [anon_sym_STAR] = ACTIONS(2035), + [anon_sym_u8] = ACTIONS(2037), + [anon_sym_i8] = ACTIONS(2037), + [anon_sym_u16] = ACTIONS(2037), + [anon_sym_i16] = ACTIONS(2037), + [anon_sym_u32] = ACTIONS(2037), + [anon_sym_i32] = ACTIONS(2037), + [anon_sym_u64] = ACTIONS(2037), + [anon_sym_i64] = ACTIONS(2037), + [anon_sym_u128] = ACTIONS(2037), + [anon_sym_i128] = ACTIONS(2037), + [anon_sym_isize] = ACTIONS(2037), + [anon_sym_usize] = ACTIONS(2037), + [anon_sym_f32] = ACTIONS(2037), + [anon_sym_f64] = ACTIONS(2037), + [anon_sym_bool] = ACTIONS(2037), + [anon_sym_str] = ACTIONS(2037), + [anon_sym_char] = ACTIONS(2037), + [anon_sym_DASH] = ACTIONS(2035), + [anon_sym_BANG] = ACTIONS(2035), + [anon_sym_AMP] = ACTIONS(2035), + [anon_sym_PIPE] = ACTIONS(2035), + [anon_sym_LT] = ACTIONS(2035), + [anon_sym_DOT_DOT] = ACTIONS(2035), + [anon_sym_COLON_COLON] = ACTIONS(2035), + [anon_sym_POUND] = ACTIONS(2035), + [anon_sym_SQUOTE] = ACTIONS(2037), + [anon_sym_async] = ACTIONS(2037), + [anon_sym_break] = ACTIONS(2037), + [anon_sym_const] = ACTIONS(2037), + [anon_sym_continue] = ACTIONS(2037), + [anon_sym_default] = ACTIONS(2037), + [anon_sym_enum] = ACTIONS(2037), + [anon_sym_fn] = ACTIONS(2037), + [anon_sym_for] = ACTIONS(2037), + [anon_sym_gen] = ACTIONS(2037), + [anon_sym_if] = ACTIONS(2037), + [anon_sym_impl] = ACTIONS(2037), + [anon_sym_let] = ACTIONS(2037), + [anon_sym_loop] = ACTIONS(2037), + [anon_sym_match] = ACTIONS(2037), + [anon_sym_mod] = ACTIONS(2037), + [anon_sym_pub] = ACTIONS(2037), + [anon_sym_return] = ACTIONS(2037), + [anon_sym_static] = ACTIONS(2037), + [anon_sym_struct] = ACTIONS(2037), + [anon_sym_trait] = ACTIONS(2037), + [anon_sym_type] = ACTIONS(2037), + [anon_sym_union] = ACTIONS(2037), + [anon_sym_unsafe] = ACTIONS(2037), + [anon_sym_use] = ACTIONS(2037), + [anon_sym_while] = ACTIONS(2037), + [anon_sym_extern] = ACTIONS(2037), + [anon_sym_safe] = ACTIONS(2037), + [anon_sym_yield] = ACTIONS(2037), + [anon_sym_move] = ACTIONS(2037), + [anon_sym_try] = ACTIONS(2037), + [sym_integer_literal] = ACTIONS(2035), + [aux_sym_string_literal_token1] = ACTIONS(2035), + [sym_char_literal] = ACTIONS(2035), + [anon_sym_true] = ACTIONS(2037), + [anon_sym_false] = ACTIONS(2037), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2037), + [sym_super] = ACTIONS(2037), + [sym_crate] = ACTIONS(2037), + [sym_metavariable] = ACTIONS(2035), + [sym__raw_string_literal_start] = ACTIONS(2035), + [sym_float_literal] = ACTIONS(2035), }, [STATE(553)] = { [sym_line_comment] = STATE(553), [sym_block_comment] = STATE(553), - [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(2039), + [sym_identifier] = ACTIONS(2041), + [anon_sym_SEMI] = ACTIONS(2039), + [anon_sym_macro_rules_BANG] = ACTIONS(2039), + [anon_sym_LPAREN] = ACTIONS(2039), + [anon_sym_LBRACK] = ACTIONS(2039), + [anon_sym_LBRACE] = ACTIONS(2039), + [anon_sym_RBRACE] = ACTIONS(2039), + [anon_sym_STAR] = ACTIONS(2039), + [anon_sym_u8] = ACTIONS(2041), + [anon_sym_i8] = ACTIONS(2041), + [anon_sym_u16] = ACTIONS(2041), + [anon_sym_i16] = ACTIONS(2041), + [anon_sym_u32] = ACTIONS(2041), + [anon_sym_i32] = ACTIONS(2041), + [anon_sym_u64] = ACTIONS(2041), + [anon_sym_i64] = ACTIONS(2041), + [anon_sym_u128] = ACTIONS(2041), + [anon_sym_i128] = ACTIONS(2041), + [anon_sym_isize] = ACTIONS(2041), + [anon_sym_usize] = ACTIONS(2041), + [anon_sym_f32] = ACTIONS(2041), + [anon_sym_f64] = ACTIONS(2041), + [anon_sym_bool] = ACTIONS(2041), + [anon_sym_str] = ACTIONS(2041), + [anon_sym_char] = ACTIONS(2041), + [anon_sym_DASH] = ACTIONS(2039), + [anon_sym_BANG] = ACTIONS(2039), + [anon_sym_AMP] = ACTIONS(2039), + [anon_sym_PIPE] = ACTIONS(2039), + [anon_sym_LT] = ACTIONS(2039), + [anon_sym_DOT_DOT] = ACTIONS(2039), + [anon_sym_COLON_COLON] = ACTIONS(2039), + [anon_sym_POUND] = ACTIONS(2039), + [anon_sym_SQUOTE] = ACTIONS(2041), + [anon_sym_async] = ACTIONS(2041), + [anon_sym_break] = ACTIONS(2041), + [anon_sym_const] = ACTIONS(2041), + [anon_sym_continue] = ACTIONS(2041), + [anon_sym_default] = ACTIONS(2041), + [anon_sym_enum] = ACTIONS(2041), + [anon_sym_fn] = ACTIONS(2041), + [anon_sym_for] = ACTIONS(2041), + [anon_sym_gen] = ACTIONS(2041), + [anon_sym_if] = ACTIONS(2041), + [anon_sym_impl] = ACTIONS(2041), + [anon_sym_let] = ACTIONS(2041), + [anon_sym_loop] = ACTIONS(2041), + [anon_sym_match] = ACTIONS(2041), + [anon_sym_mod] = ACTIONS(2041), + [anon_sym_pub] = ACTIONS(2041), + [anon_sym_return] = ACTIONS(2041), + [anon_sym_static] = ACTIONS(2041), + [anon_sym_struct] = ACTIONS(2041), + [anon_sym_trait] = ACTIONS(2041), + [anon_sym_type] = ACTIONS(2041), + [anon_sym_union] = ACTIONS(2041), + [anon_sym_unsafe] = ACTIONS(2041), + [anon_sym_use] = ACTIONS(2041), + [anon_sym_while] = ACTIONS(2041), + [anon_sym_extern] = ACTIONS(2041), + [anon_sym_safe] = ACTIONS(2041), + [anon_sym_yield] = ACTIONS(2041), + [anon_sym_move] = ACTIONS(2041), + [anon_sym_try] = ACTIONS(2041), + [sym_integer_literal] = ACTIONS(2039), + [aux_sym_string_literal_token1] = ACTIONS(2039), + [sym_char_literal] = ACTIONS(2039), + [anon_sym_true] = ACTIONS(2041), + [anon_sym_false] = ACTIONS(2041), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2041), + [sym_super] = ACTIONS(2041), + [sym_crate] = ACTIONS(2041), + [sym_metavariable] = ACTIONS(2039), + [sym__raw_string_literal_start] = ACTIONS(2039), + [sym_float_literal] = ACTIONS(2039), }, [STATE(554)] = { [sym_line_comment] = STATE(554), [sym_block_comment] = STATE(554), - [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(2043), + [sym_identifier] = ACTIONS(2045), + [anon_sym_SEMI] = ACTIONS(2043), + [anon_sym_macro_rules_BANG] = ACTIONS(2043), + [anon_sym_LPAREN] = ACTIONS(2043), + [anon_sym_LBRACK] = ACTIONS(2043), + [anon_sym_LBRACE] = ACTIONS(2043), + [anon_sym_RBRACE] = ACTIONS(2043), + [anon_sym_STAR] = ACTIONS(2043), + [anon_sym_u8] = ACTIONS(2045), + [anon_sym_i8] = ACTIONS(2045), + [anon_sym_u16] = ACTIONS(2045), + [anon_sym_i16] = ACTIONS(2045), + [anon_sym_u32] = ACTIONS(2045), + [anon_sym_i32] = ACTIONS(2045), + [anon_sym_u64] = ACTIONS(2045), + [anon_sym_i64] = ACTIONS(2045), + [anon_sym_u128] = ACTIONS(2045), + [anon_sym_i128] = ACTIONS(2045), + [anon_sym_isize] = ACTIONS(2045), + [anon_sym_usize] = ACTIONS(2045), + [anon_sym_f32] = ACTIONS(2045), + [anon_sym_f64] = ACTIONS(2045), + [anon_sym_bool] = ACTIONS(2045), + [anon_sym_str] = ACTIONS(2045), + [anon_sym_char] = ACTIONS(2045), + [anon_sym_DASH] = ACTIONS(2043), + [anon_sym_BANG] = ACTIONS(2043), + [anon_sym_AMP] = ACTIONS(2043), + [anon_sym_PIPE] = ACTIONS(2043), + [anon_sym_LT] = ACTIONS(2043), + [anon_sym_DOT_DOT] = ACTIONS(2043), + [anon_sym_COLON_COLON] = ACTIONS(2043), + [anon_sym_POUND] = ACTIONS(2043), + [anon_sym_SQUOTE] = ACTIONS(2045), + [anon_sym_async] = ACTIONS(2045), + [anon_sym_break] = ACTIONS(2045), + [anon_sym_const] = ACTIONS(2045), + [anon_sym_continue] = ACTIONS(2045), + [anon_sym_default] = ACTIONS(2045), + [anon_sym_enum] = ACTIONS(2045), + [anon_sym_fn] = ACTIONS(2045), + [anon_sym_for] = ACTIONS(2045), + [anon_sym_gen] = ACTIONS(2045), + [anon_sym_if] = ACTIONS(2045), + [anon_sym_impl] = ACTIONS(2045), + [anon_sym_let] = ACTIONS(2045), + [anon_sym_loop] = ACTIONS(2045), + [anon_sym_match] = ACTIONS(2045), + [anon_sym_mod] = ACTIONS(2045), + [anon_sym_pub] = ACTIONS(2045), + [anon_sym_return] = ACTIONS(2045), + [anon_sym_static] = ACTIONS(2045), + [anon_sym_struct] = ACTIONS(2045), + [anon_sym_trait] = ACTIONS(2045), + [anon_sym_type] = ACTIONS(2045), + [anon_sym_union] = ACTIONS(2045), + [anon_sym_unsafe] = ACTIONS(2045), + [anon_sym_use] = ACTIONS(2045), + [anon_sym_while] = ACTIONS(2045), + [anon_sym_extern] = ACTIONS(2045), + [anon_sym_safe] = ACTIONS(2045), + [anon_sym_yield] = ACTIONS(2045), + [anon_sym_move] = ACTIONS(2045), + [anon_sym_try] = ACTIONS(2045), + [sym_integer_literal] = ACTIONS(2043), + [aux_sym_string_literal_token1] = ACTIONS(2043), + [sym_char_literal] = ACTIONS(2043), + [anon_sym_true] = ACTIONS(2045), + [anon_sym_false] = ACTIONS(2045), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2045), + [sym_super] = ACTIONS(2045), + [sym_crate] = ACTIONS(2045), + [sym_metavariable] = ACTIONS(2043), + [sym__raw_string_literal_start] = ACTIONS(2043), + [sym_float_literal] = ACTIONS(2043), }, [STATE(555)] = { [sym_line_comment] = STATE(555), [sym_block_comment] = STATE(555), - [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(2047), + [sym_identifier] = ACTIONS(2049), + [anon_sym_SEMI] = ACTIONS(2047), + [anon_sym_macro_rules_BANG] = ACTIONS(2047), + [anon_sym_LPAREN] = ACTIONS(2047), + [anon_sym_LBRACK] = ACTIONS(2047), + [anon_sym_LBRACE] = ACTIONS(2047), + [anon_sym_RBRACE] = ACTIONS(2047), + [anon_sym_STAR] = ACTIONS(2047), + [anon_sym_u8] = ACTIONS(2049), + [anon_sym_i8] = ACTIONS(2049), + [anon_sym_u16] = ACTIONS(2049), + [anon_sym_i16] = ACTIONS(2049), + [anon_sym_u32] = ACTIONS(2049), + [anon_sym_i32] = ACTIONS(2049), + [anon_sym_u64] = ACTIONS(2049), + [anon_sym_i64] = ACTIONS(2049), + [anon_sym_u128] = ACTIONS(2049), + [anon_sym_i128] = ACTIONS(2049), + [anon_sym_isize] = ACTIONS(2049), + [anon_sym_usize] = ACTIONS(2049), + [anon_sym_f32] = ACTIONS(2049), + [anon_sym_f64] = ACTIONS(2049), + [anon_sym_bool] = ACTIONS(2049), + [anon_sym_str] = ACTIONS(2049), + [anon_sym_char] = ACTIONS(2049), + [anon_sym_DASH] = ACTIONS(2047), + [anon_sym_BANG] = ACTIONS(2047), + [anon_sym_AMP] = ACTIONS(2047), + [anon_sym_PIPE] = ACTIONS(2047), + [anon_sym_LT] = ACTIONS(2047), + [anon_sym_DOT_DOT] = ACTIONS(2047), + [anon_sym_COLON_COLON] = ACTIONS(2047), + [anon_sym_POUND] = ACTIONS(2047), + [anon_sym_SQUOTE] = ACTIONS(2049), + [anon_sym_async] = ACTIONS(2049), + [anon_sym_break] = ACTIONS(2049), + [anon_sym_const] = ACTIONS(2049), + [anon_sym_continue] = ACTIONS(2049), + [anon_sym_default] = ACTIONS(2049), + [anon_sym_enum] = ACTIONS(2049), + [anon_sym_fn] = ACTIONS(2049), + [anon_sym_for] = ACTIONS(2049), + [anon_sym_gen] = ACTIONS(2049), + [anon_sym_if] = ACTIONS(2049), + [anon_sym_impl] = ACTIONS(2049), + [anon_sym_let] = ACTIONS(2049), + [anon_sym_loop] = ACTIONS(2049), + [anon_sym_match] = ACTIONS(2049), + [anon_sym_mod] = ACTIONS(2049), + [anon_sym_pub] = ACTIONS(2049), + [anon_sym_return] = ACTIONS(2049), + [anon_sym_static] = ACTIONS(2049), + [anon_sym_struct] = ACTIONS(2049), + [anon_sym_trait] = ACTIONS(2049), + [anon_sym_type] = ACTIONS(2049), + [anon_sym_union] = ACTIONS(2049), + [anon_sym_unsafe] = ACTIONS(2049), + [anon_sym_use] = ACTIONS(2049), + [anon_sym_while] = ACTIONS(2049), + [anon_sym_extern] = ACTIONS(2049), + [anon_sym_safe] = ACTIONS(2049), + [anon_sym_yield] = ACTIONS(2049), + [anon_sym_move] = ACTIONS(2049), + [anon_sym_try] = ACTIONS(2049), + [sym_integer_literal] = ACTIONS(2047), + [aux_sym_string_literal_token1] = ACTIONS(2047), + [sym_char_literal] = ACTIONS(2047), + [anon_sym_true] = ACTIONS(2049), + [anon_sym_false] = ACTIONS(2049), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2049), + [sym_super] = ACTIONS(2049), + [sym_crate] = ACTIONS(2049), + [sym_metavariable] = ACTIONS(2047), + [sym__raw_string_literal_start] = ACTIONS(2047), + [sym_float_literal] = ACTIONS(2047), }, [STATE(556)] = { [sym_line_comment] = STATE(556), [sym_block_comment] = STATE(556), - [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(2051), + [sym_identifier] = ACTIONS(2053), + [anon_sym_SEMI] = ACTIONS(2051), + [anon_sym_macro_rules_BANG] = ACTIONS(2051), + [anon_sym_LPAREN] = ACTIONS(2051), + [anon_sym_LBRACK] = ACTIONS(2051), + [anon_sym_LBRACE] = ACTIONS(2051), + [anon_sym_RBRACE] = ACTIONS(2051), + [anon_sym_STAR] = ACTIONS(2051), + [anon_sym_u8] = ACTIONS(2053), + [anon_sym_i8] = ACTIONS(2053), + [anon_sym_u16] = ACTIONS(2053), + [anon_sym_i16] = ACTIONS(2053), + [anon_sym_u32] = ACTIONS(2053), + [anon_sym_i32] = ACTIONS(2053), + [anon_sym_u64] = ACTIONS(2053), + [anon_sym_i64] = ACTIONS(2053), + [anon_sym_u128] = ACTIONS(2053), + [anon_sym_i128] = ACTIONS(2053), + [anon_sym_isize] = ACTIONS(2053), + [anon_sym_usize] = ACTIONS(2053), + [anon_sym_f32] = ACTIONS(2053), + [anon_sym_f64] = ACTIONS(2053), + [anon_sym_bool] = ACTIONS(2053), + [anon_sym_str] = ACTIONS(2053), + [anon_sym_char] = ACTIONS(2053), + [anon_sym_DASH] = ACTIONS(2051), + [anon_sym_BANG] = ACTIONS(2051), + [anon_sym_AMP] = ACTIONS(2051), + [anon_sym_PIPE] = ACTIONS(2051), + [anon_sym_LT] = ACTIONS(2051), + [anon_sym_DOT_DOT] = ACTIONS(2051), + [anon_sym_COLON_COLON] = ACTIONS(2051), + [anon_sym_POUND] = ACTIONS(2051), + [anon_sym_SQUOTE] = ACTIONS(2053), + [anon_sym_async] = ACTIONS(2053), + [anon_sym_break] = ACTIONS(2053), + [anon_sym_const] = ACTIONS(2053), + [anon_sym_continue] = ACTIONS(2053), + [anon_sym_default] = ACTIONS(2053), + [anon_sym_enum] = ACTIONS(2053), + [anon_sym_fn] = ACTIONS(2053), + [anon_sym_for] = ACTIONS(2053), + [anon_sym_gen] = ACTIONS(2053), + [anon_sym_if] = ACTIONS(2053), + [anon_sym_impl] = ACTIONS(2053), + [anon_sym_let] = ACTIONS(2053), + [anon_sym_loop] = ACTIONS(2053), + [anon_sym_match] = ACTIONS(2053), + [anon_sym_mod] = ACTIONS(2053), + [anon_sym_pub] = ACTIONS(2053), + [anon_sym_return] = ACTIONS(2053), + [anon_sym_static] = ACTIONS(2053), + [anon_sym_struct] = ACTIONS(2053), + [anon_sym_trait] = ACTIONS(2053), + [anon_sym_type] = ACTIONS(2053), + [anon_sym_union] = ACTIONS(2053), + [anon_sym_unsafe] = ACTIONS(2053), + [anon_sym_use] = ACTIONS(2053), + [anon_sym_while] = ACTIONS(2053), + [anon_sym_extern] = ACTIONS(2053), + [anon_sym_safe] = ACTIONS(2053), + [anon_sym_yield] = ACTIONS(2053), + [anon_sym_move] = ACTIONS(2053), + [anon_sym_try] = ACTIONS(2053), + [sym_integer_literal] = ACTIONS(2051), + [aux_sym_string_literal_token1] = ACTIONS(2051), + [sym_char_literal] = ACTIONS(2051), + [anon_sym_true] = ACTIONS(2053), + [anon_sym_false] = ACTIONS(2053), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2053), + [sym_super] = ACTIONS(2053), + [sym_crate] = ACTIONS(2053), + [sym_metavariable] = ACTIONS(2051), + [sym__raw_string_literal_start] = ACTIONS(2051), + [sym_float_literal] = ACTIONS(2051), }, [STATE(557)] = { [sym_line_comment] = STATE(557), [sym_block_comment] = STATE(557), - [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(2055), + [sym_identifier] = ACTIONS(2057), + [anon_sym_SEMI] = ACTIONS(2055), + [anon_sym_macro_rules_BANG] = ACTIONS(2055), + [anon_sym_LPAREN] = ACTIONS(2055), + [anon_sym_LBRACK] = ACTIONS(2055), + [anon_sym_LBRACE] = ACTIONS(2055), + [anon_sym_RBRACE] = ACTIONS(2055), + [anon_sym_STAR] = ACTIONS(2055), + [anon_sym_u8] = ACTIONS(2057), + [anon_sym_i8] = ACTIONS(2057), + [anon_sym_u16] = ACTIONS(2057), + [anon_sym_i16] = ACTIONS(2057), + [anon_sym_u32] = ACTIONS(2057), + [anon_sym_i32] = ACTIONS(2057), + [anon_sym_u64] = ACTIONS(2057), + [anon_sym_i64] = ACTIONS(2057), + [anon_sym_u128] = ACTIONS(2057), + [anon_sym_i128] = ACTIONS(2057), + [anon_sym_isize] = ACTIONS(2057), + [anon_sym_usize] = ACTIONS(2057), + [anon_sym_f32] = ACTIONS(2057), + [anon_sym_f64] = ACTIONS(2057), + [anon_sym_bool] = ACTIONS(2057), + [anon_sym_str] = ACTIONS(2057), + [anon_sym_char] = ACTIONS(2057), + [anon_sym_DASH] = ACTIONS(2055), + [anon_sym_BANG] = ACTIONS(2055), + [anon_sym_AMP] = ACTIONS(2055), + [anon_sym_PIPE] = ACTIONS(2055), + [anon_sym_LT] = ACTIONS(2055), + [anon_sym_DOT_DOT] = ACTIONS(2055), + [anon_sym_COLON_COLON] = ACTIONS(2055), + [anon_sym_POUND] = ACTIONS(2055), + [anon_sym_SQUOTE] = ACTIONS(2057), + [anon_sym_async] = ACTIONS(2057), + [anon_sym_break] = ACTIONS(2057), + [anon_sym_const] = ACTIONS(2057), + [anon_sym_continue] = ACTIONS(2057), + [anon_sym_default] = ACTIONS(2057), + [anon_sym_enum] = ACTIONS(2057), + [anon_sym_fn] = ACTIONS(2057), + [anon_sym_for] = ACTIONS(2057), + [anon_sym_gen] = ACTIONS(2057), + [anon_sym_if] = ACTIONS(2057), + [anon_sym_impl] = ACTIONS(2057), + [anon_sym_let] = ACTIONS(2057), + [anon_sym_loop] = ACTIONS(2057), + [anon_sym_match] = ACTIONS(2057), + [anon_sym_mod] = ACTIONS(2057), + [anon_sym_pub] = ACTIONS(2057), + [anon_sym_return] = ACTIONS(2057), + [anon_sym_static] = ACTIONS(2057), + [anon_sym_struct] = ACTIONS(2057), + [anon_sym_trait] = ACTIONS(2057), + [anon_sym_type] = ACTIONS(2057), + [anon_sym_union] = ACTIONS(2057), + [anon_sym_unsafe] = ACTIONS(2057), + [anon_sym_use] = ACTIONS(2057), + [anon_sym_while] = ACTIONS(2057), + [anon_sym_extern] = ACTIONS(2057), + [anon_sym_safe] = ACTIONS(2057), + [anon_sym_yield] = ACTIONS(2057), + [anon_sym_move] = ACTIONS(2057), + [anon_sym_try] = ACTIONS(2057), + [sym_integer_literal] = ACTIONS(2055), + [aux_sym_string_literal_token1] = ACTIONS(2055), + [sym_char_literal] = ACTIONS(2055), + [anon_sym_true] = ACTIONS(2057), + [anon_sym_false] = ACTIONS(2057), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2057), + [sym_super] = ACTIONS(2057), + [sym_crate] = ACTIONS(2057), + [sym_metavariable] = ACTIONS(2055), + [sym__raw_string_literal_start] = ACTIONS(2055), + [sym_float_literal] = ACTIONS(2055), }, [STATE(558)] = { [sym_line_comment] = STATE(558), [sym_block_comment] = STATE(558), - [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(2059), + [sym_identifier] = ACTIONS(2061), + [anon_sym_SEMI] = ACTIONS(2059), + [anon_sym_macro_rules_BANG] = ACTIONS(2059), + [anon_sym_LPAREN] = ACTIONS(2059), + [anon_sym_LBRACK] = ACTIONS(2059), + [anon_sym_LBRACE] = ACTIONS(2059), + [anon_sym_RBRACE] = ACTIONS(2059), + [anon_sym_STAR] = ACTIONS(2059), + [anon_sym_u8] = ACTIONS(2061), + [anon_sym_i8] = ACTIONS(2061), + [anon_sym_u16] = ACTIONS(2061), + [anon_sym_i16] = ACTIONS(2061), + [anon_sym_u32] = ACTIONS(2061), + [anon_sym_i32] = ACTIONS(2061), + [anon_sym_u64] = ACTIONS(2061), + [anon_sym_i64] = ACTIONS(2061), + [anon_sym_u128] = ACTIONS(2061), + [anon_sym_i128] = ACTIONS(2061), + [anon_sym_isize] = ACTIONS(2061), + [anon_sym_usize] = ACTIONS(2061), + [anon_sym_f32] = ACTIONS(2061), + [anon_sym_f64] = ACTIONS(2061), + [anon_sym_bool] = ACTIONS(2061), + [anon_sym_str] = ACTIONS(2061), + [anon_sym_char] = ACTIONS(2061), + [anon_sym_DASH] = ACTIONS(2059), + [anon_sym_BANG] = ACTIONS(2059), + [anon_sym_AMP] = ACTIONS(2059), + [anon_sym_PIPE] = ACTIONS(2059), + [anon_sym_LT] = ACTIONS(2059), + [anon_sym_DOT_DOT] = ACTIONS(2059), + [anon_sym_COLON_COLON] = ACTIONS(2059), + [anon_sym_POUND] = ACTIONS(2059), + [anon_sym_SQUOTE] = ACTIONS(2061), + [anon_sym_async] = ACTIONS(2061), + [anon_sym_break] = ACTIONS(2061), + [anon_sym_const] = ACTIONS(2061), + [anon_sym_continue] = ACTIONS(2061), + [anon_sym_default] = ACTIONS(2061), + [anon_sym_enum] = ACTIONS(2061), + [anon_sym_fn] = ACTIONS(2061), + [anon_sym_for] = ACTIONS(2061), + [anon_sym_gen] = ACTIONS(2061), + [anon_sym_if] = ACTIONS(2061), + [anon_sym_impl] = ACTIONS(2061), + [anon_sym_let] = ACTIONS(2061), + [anon_sym_loop] = ACTIONS(2061), + [anon_sym_match] = ACTIONS(2061), + [anon_sym_mod] = ACTIONS(2061), + [anon_sym_pub] = ACTIONS(2061), + [anon_sym_return] = ACTIONS(2061), + [anon_sym_static] = ACTIONS(2061), + [anon_sym_struct] = ACTIONS(2061), + [anon_sym_trait] = ACTIONS(2061), + [anon_sym_type] = ACTIONS(2061), + [anon_sym_union] = ACTIONS(2061), + [anon_sym_unsafe] = ACTIONS(2061), + [anon_sym_use] = ACTIONS(2061), + [anon_sym_while] = ACTIONS(2061), + [anon_sym_extern] = ACTIONS(2061), + [anon_sym_safe] = ACTIONS(2061), + [anon_sym_yield] = ACTIONS(2061), + [anon_sym_move] = ACTIONS(2061), + [anon_sym_try] = ACTIONS(2061), + [sym_integer_literal] = ACTIONS(2059), + [aux_sym_string_literal_token1] = ACTIONS(2059), + [sym_char_literal] = ACTIONS(2059), + [anon_sym_true] = ACTIONS(2061), + [anon_sym_false] = ACTIONS(2061), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2061), + [sym_super] = ACTIONS(2061), + [sym_crate] = ACTIONS(2061), + [sym_metavariable] = ACTIONS(2059), + [sym__raw_string_literal_start] = ACTIONS(2059), + [sym_float_literal] = ACTIONS(2059), }, [STATE(559)] = { [sym_line_comment] = STATE(559), [sym_block_comment] = STATE(559), - [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(2063), + [sym_identifier] = ACTIONS(2065), + [anon_sym_SEMI] = ACTIONS(2063), + [anon_sym_macro_rules_BANG] = ACTIONS(2063), + [anon_sym_LPAREN] = ACTIONS(2063), + [anon_sym_LBRACK] = ACTIONS(2063), + [anon_sym_LBRACE] = ACTIONS(2063), + [anon_sym_RBRACE] = ACTIONS(2063), + [anon_sym_STAR] = ACTIONS(2063), + [anon_sym_u8] = ACTIONS(2065), + [anon_sym_i8] = ACTIONS(2065), + [anon_sym_u16] = ACTIONS(2065), + [anon_sym_i16] = ACTIONS(2065), + [anon_sym_u32] = ACTIONS(2065), + [anon_sym_i32] = ACTIONS(2065), + [anon_sym_u64] = ACTIONS(2065), + [anon_sym_i64] = ACTIONS(2065), + [anon_sym_u128] = ACTIONS(2065), + [anon_sym_i128] = ACTIONS(2065), + [anon_sym_isize] = ACTIONS(2065), + [anon_sym_usize] = ACTIONS(2065), + [anon_sym_f32] = ACTIONS(2065), + [anon_sym_f64] = ACTIONS(2065), + [anon_sym_bool] = ACTIONS(2065), + [anon_sym_str] = ACTIONS(2065), + [anon_sym_char] = ACTIONS(2065), + [anon_sym_DASH] = ACTIONS(2063), + [anon_sym_BANG] = ACTIONS(2063), + [anon_sym_AMP] = ACTIONS(2063), + [anon_sym_PIPE] = ACTIONS(2063), + [anon_sym_LT] = ACTIONS(2063), + [anon_sym_DOT_DOT] = ACTIONS(2063), + [anon_sym_COLON_COLON] = ACTIONS(2063), + [anon_sym_POUND] = ACTIONS(2063), + [anon_sym_SQUOTE] = ACTIONS(2065), + [anon_sym_async] = ACTIONS(2065), + [anon_sym_break] = ACTIONS(2065), + [anon_sym_const] = ACTIONS(2065), + [anon_sym_continue] = ACTIONS(2065), + [anon_sym_default] = ACTIONS(2065), + [anon_sym_enum] = ACTIONS(2065), + [anon_sym_fn] = ACTIONS(2065), + [anon_sym_for] = ACTIONS(2065), + [anon_sym_gen] = ACTIONS(2065), + [anon_sym_if] = ACTIONS(2065), + [anon_sym_impl] = ACTIONS(2065), + [anon_sym_let] = ACTIONS(2065), + [anon_sym_loop] = ACTIONS(2065), + [anon_sym_match] = ACTIONS(2065), + [anon_sym_mod] = ACTIONS(2065), + [anon_sym_pub] = ACTIONS(2065), + [anon_sym_return] = ACTIONS(2065), + [anon_sym_static] = ACTIONS(2065), + [anon_sym_struct] = ACTIONS(2065), + [anon_sym_trait] = ACTIONS(2065), + [anon_sym_type] = ACTIONS(2065), + [anon_sym_union] = ACTIONS(2065), + [anon_sym_unsafe] = ACTIONS(2065), + [anon_sym_use] = ACTIONS(2065), + [anon_sym_while] = ACTIONS(2065), + [anon_sym_extern] = ACTIONS(2065), + [anon_sym_safe] = ACTIONS(2065), + [anon_sym_yield] = ACTIONS(2065), + [anon_sym_move] = ACTIONS(2065), + [anon_sym_try] = ACTIONS(2065), + [sym_integer_literal] = ACTIONS(2063), + [aux_sym_string_literal_token1] = ACTIONS(2063), + [sym_char_literal] = ACTIONS(2063), + [anon_sym_true] = ACTIONS(2065), + [anon_sym_false] = ACTIONS(2065), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2065), + [sym_super] = ACTIONS(2065), + [sym_crate] = ACTIONS(2065), + [sym_metavariable] = ACTIONS(2063), + [sym__raw_string_literal_start] = ACTIONS(2063), + [sym_float_literal] = ACTIONS(2063), }, [STATE(560)] = { [sym_line_comment] = STATE(560), [sym_block_comment] = STATE(560), - [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(2067), + [sym_identifier] = ACTIONS(2069), + [anon_sym_SEMI] = ACTIONS(2067), + [anon_sym_macro_rules_BANG] = ACTIONS(2067), + [anon_sym_LPAREN] = ACTIONS(2067), + [anon_sym_LBRACK] = ACTIONS(2067), + [anon_sym_LBRACE] = ACTIONS(2067), + [anon_sym_RBRACE] = ACTIONS(2067), + [anon_sym_STAR] = ACTIONS(2067), + [anon_sym_u8] = ACTIONS(2069), + [anon_sym_i8] = ACTIONS(2069), + [anon_sym_u16] = ACTIONS(2069), + [anon_sym_i16] = ACTIONS(2069), + [anon_sym_u32] = ACTIONS(2069), + [anon_sym_i32] = ACTIONS(2069), + [anon_sym_u64] = ACTIONS(2069), + [anon_sym_i64] = ACTIONS(2069), + [anon_sym_u128] = ACTIONS(2069), + [anon_sym_i128] = ACTIONS(2069), + [anon_sym_isize] = ACTIONS(2069), + [anon_sym_usize] = ACTIONS(2069), + [anon_sym_f32] = ACTIONS(2069), + [anon_sym_f64] = ACTIONS(2069), + [anon_sym_bool] = ACTIONS(2069), + [anon_sym_str] = ACTIONS(2069), + [anon_sym_char] = ACTIONS(2069), + [anon_sym_DASH] = ACTIONS(2067), + [anon_sym_BANG] = ACTIONS(2067), + [anon_sym_AMP] = ACTIONS(2067), + [anon_sym_PIPE] = ACTIONS(2067), + [anon_sym_LT] = ACTIONS(2067), + [anon_sym_DOT_DOT] = ACTIONS(2067), + [anon_sym_COLON_COLON] = ACTIONS(2067), + [anon_sym_POUND] = ACTIONS(2067), + [anon_sym_SQUOTE] = ACTIONS(2069), + [anon_sym_async] = ACTIONS(2069), + [anon_sym_break] = ACTIONS(2069), + [anon_sym_const] = ACTIONS(2069), + [anon_sym_continue] = ACTIONS(2069), + [anon_sym_default] = ACTIONS(2069), + [anon_sym_enum] = ACTIONS(2069), + [anon_sym_fn] = ACTIONS(2069), + [anon_sym_for] = ACTIONS(2069), + [anon_sym_gen] = ACTIONS(2069), + [anon_sym_if] = ACTIONS(2069), + [anon_sym_impl] = ACTIONS(2069), + [anon_sym_let] = ACTIONS(2069), + [anon_sym_loop] = ACTIONS(2069), + [anon_sym_match] = ACTIONS(2069), + [anon_sym_mod] = ACTIONS(2069), + [anon_sym_pub] = ACTIONS(2069), + [anon_sym_return] = ACTIONS(2069), + [anon_sym_static] = ACTIONS(2069), + [anon_sym_struct] = ACTIONS(2069), + [anon_sym_trait] = ACTIONS(2069), + [anon_sym_type] = ACTIONS(2069), + [anon_sym_union] = ACTIONS(2069), + [anon_sym_unsafe] = ACTIONS(2069), + [anon_sym_use] = ACTIONS(2069), + [anon_sym_while] = ACTIONS(2069), + [anon_sym_extern] = ACTIONS(2069), + [anon_sym_safe] = ACTIONS(2069), + [anon_sym_yield] = ACTIONS(2069), + [anon_sym_move] = ACTIONS(2069), + [anon_sym_try] = ACTIONS(2069), + [sym_integer_literal] = ACTIONS(2067), + [aux_sym_string_literal_token1] = ACTIONS(2067), + [sym_char_literal] = ACTIONS(2067), + [anon_sym_true] = ACTIONS(2069), + [anon_sym_false] = ACTIONS(2069), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2069), + [sym_super] = ACTIONS(2069), + [sym_crate] = ACTIONS(2069), + [sym_metavariable] = ACTIONS(2067), + [sym__raw_string_literal_start] = ACTIONS(2067), + [sym_float_literal] = ACTIONS(2067), }, [STATE(561)] = { [sym_line_comment] = STATE(561), [sym_block_comment] = STATE(561), - [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(2071), + [sym_identifier] = ACTIONS(2073), + [anon_sym_SEMI] = ACTIONS(2071), + [anon_sym_macro_rules_BANG] = ACTIONS(2071), + [anon_sym_LPAREN] = ACTIONS(2071), + [anon_sym_LBRACK] = ACTIONS(2071), + [anon_sym_LBRACE] = ACTIONS(2071), + [anon_sym_RBRACE] = ACTIONS(2071), + [anon_sym_STAR] = ACTIONS(2071), + [anon_sym_u8] = ACTIONS(2073), + [anon_sym_i8] = ACTIONS(2073), + [anon_sym_u16] = ACTIONS(2073), + [anon_sym_i16] = ACTIONS(2073), + [anon_sym_u32] = ACTIONS(2073), + [anon_sym_i32] = ACTIONS(2073), + [anon_sym_u64] = ACTIONS(2073), + [anon_sym_i64] = ACTIONS(2073), + [anon_sym_u128] = ACTIONS(2073), + [anon_sym_i128] = ACTIONS(2073), + [anon_sym_isize] = ACTIONS(2073), + [anon_sym_usize] = ACTIONS(2073), + [anon_sym_f32] = ACTIONS(2073), + [anon_sym_f64] = ACTIONS(2073), + [anon_sym_bool] = ACTIONS(2073), + [anon_sym_str] = ACTIONS(2073), + [anon_sym_char] = ACTIONS(2073), + [anon_sym_DASH] = ACTIONS(2071), + [anon_sym_BANG] = ACTIONS(2071), + [anon_sym_AMP] = ACTIONS(2071), + [anon_sym_PIPE] = ACTIONS(2071), + [anon_sym_LT] = ACTIONS(2071), + [anon_sym_DOT_DOT] = ACTIONS(2071), + [anon_sym_COLON_COLON] = ACTIONS(2071), + [anon_sym_POUND] = ACTIONS(2071), + [anon_sym_SQUOTE] = ACTIONS(2073), + [anon_sym_async] = ACTIONS(2073), + [anon_sym_break] = ACTIONS(2073), + [anon_sym_const] = ACTIONS(2073), + [anon_sym_continue] = ACTIONS(2073), + [anon_sym_default] = ACTIONS(2073), + [anon_sym_enum] = ACTIONS(2073), + [anon_sym_fn] = ACTIONS(2073), + [anon_sym_for] = ACTIONS(2073), + [anon_sym_gen] = ACTIONS(2073), + [anon_sym_if] = ACTIONS(2073), + [anon_sym_impl] = ACTIONS(2073), + [anon_sym_let] = ACTIONS(2073), + [anon_sym_loop] = ACTIONS(2073), + [anon_sym_match] = ACTIONS(2073), + [anon_sym_mod] = ACTIONS(2073), + [anon_sym_pub] = ACTIONS(2073), + [anon_sym_return] = ACTIONS(2073), + [anon_sym_static] = ACTIONS(2073), + [anon_sym_struct] = ACTIONS(2073), + [anon_sym_trait] = ACTIONS(2073), + [anon_sym_type] = ACTIONS(2073), + [anon_sym_union] = ACTIONS(2073), + [anon_sym_unsafe] = ACTIONS(2073), + [anon_sym_use] = ACTIONS(2073), + [anon_sym_while] = ACTIONS(2073), + [anon_sym_extern] = ACTIONS(2073), + [anon_sym_safe] = ACTIONS(2073), + [anon_sym_yield] = ACTIONS(2073), + [anon_sym_move] = ACTIONS(2073), + [anon_sym_try] = ACTIONS(2073), + [sym_integer_literal] = ACTIONS(2071), + [aux_sym_string_literal_token1] = ACTIONS(2071), + [sym_char_literal] = ACTIONS(2071), + [anon_sym_true] = ACTIONS(2073), + [anon_sym_false] = ACTIONS(2073), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2073), + [sym_super] = ACTIONS(2073), + [sym_crate] = ACTIONS(2073), + [sym_metavariable] = ACTIONS(2071), + [sym__raw_string_literal_start] = ACTIONS(2071), + [sym_float_literal] = ACTIONS(2071), }, [STATE(562)] = { [sym_line_comment] = STATE(562), [sym_block_comment] = STATE(562), - [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(2075), + [sym_identifier] = ACTIONS(2077), + [anon_sym_SEMI] = ACTIONS(2075), + [anon_sym_macro_rules_BANG] = ACTIONS(2075), + [anon_sym_LPAREN] = ACTIONS(2075), + [anon_sym_LBRACK] = ACTIONS(2075), + [anon_sym_LBRACE] = ACTIONS(2075), + [anon_sym_RBRACE] = ACTIONS(2075), + [anon_sym_STAR] = ACTIONS(2075), + [anon_sym_u8] = ACTIONS(2077), + [anon_sym_i8] = ACTIONS(2077), + [anon_sym_u16] = ACTIONS(2077), + [anon_sym_i16] = ACTIONS(2077), + [anon_sym_u32] = ACTIONS(2077), + [anon_sym_i32] = ACTIONS(2077), + [anon_sym_u64] = ACTIONS(2077), + [anon_sym_i64] = ACTIONS(2077), + [anon_sym_u128] = ACTIONS(2077), + [anon_sym_i128] = ACTIONS(2077), + [anon_sym_isize] = ACTIONS(2077), + [anon_sym_usize] = ACTIONS(2077), + [anon_sym_f32] = ACTIONS(2077), + [anon_sym_f64] = ACTIONS(2077), + [anon_sym_bool] = ACTIONS(2077), + [anon_sym_str] = ACTIONS(2077), + [anon_sym_char] = ACTIONS(2077), + [anon_sym_DASH] = ACTIONS(2075), + [anon_sym_BANG] = ACTIONS(2075), + [anon_sym_AMP] = ACTIONS(2075), + [anon_sym_PIPE] = ACTIONS(2075), + [anon_sym_LT] = ACTIONS(2075), + [anon_sym_DOT_DOT] = ACTIONS(2075), + [anon_sym_COLON_COLON] = ACTIONS(2075), + [anon_sym_POUND] = ACTIONS(2075), + [anon_sym_SQUOTE] = ACTIONS(2077), + [anon_sym_async] = ACTIONS(2077), + [anon_sym_break] = ACTIONS(2077), + [anon_sym_const] = ACTIONS(2077), + [anon_sym_continue] = ACTIONS(2077), + [anon_sym_default] = ACTIONS(2077), + [anon_sym_enum] = ACTIONS(2077), + [anon_sym_fn] = ACTIONS(2077), + [anon_sym_for] = ACTIONS(2077), + [anon_sym_gen] = ACTIONS(2077), + [anon_sym_if] = ACTIONS(2077), + [anon_sym_impl] = ACTIONS(2077), + [anon_sym_let] = ACTIONS(2077), + [anon_sym_loop] = ACTIONS(2077), + [anon_sym_match] = ACTIONS(2077), + [anon_sym_mod] = ACTIONS(2077), + [anon_sym_pub] = ACTIONS(2077), + [anon_sym_return] = ACTIONS(2077), + [anon_sym_static] = ACTIONS(2077), + [anon_sym_struct] = ACTIONS(2077), + [anon_sym_trait] = ACTIONS(2077), + [anon_sym_type] = ACTIONS(2077), + [anon_sym_union] = ACTIONS(2077), + [anon_sym_unsafe] = ACTIONS(2077), + [anon_sym_use] = ACTIONS(2077), + [anon_sym_while] = ACTIONS(2077), + [anon_sym_extern] = ACTIONS(2077), + [anon_sym_safe] = ACTIONS(2077), + [anon_sym_yield] = ACTIONS(2077), + [anon_sym_move] = ACTIONS(2077), + [anon_sym_try] = ACTIONS(2077), + [sym_integer_literal] = ACTIONS(2075), + [aux_sym_string_literal_token1] = ACTIONS(2075), + [sym_char_literal] = ACTIONS(2075), + [anon_sym_true] = ACTIONS(2077), + [anon_sym_false] = ACTIONS(2077), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2077), + [sym_super] = ACTIONS(2077), + [sym_crate] = ACTIONS(2077), + [sym_metavariable] = ACTIONS(2075), + [sym__raw_string_literal_start] = ACTIONS(2075), + [sym_float_literal] = ACTIONS(2075), }, [STATE(563)] = { [sym_line_comment] = STATE(563), [sym_block_comment] = STATE(563), - [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(2079), + [sym_identifier] = ACTIONS(2081), + [anon_sym_SEMI] = ACTIONS(2079), + [anon_sym_macro_rules_BANG] = ACTIONS(2079), + [anon_sym_LPAREN] = ACTIONS(2079), + [anon_sym_LBRACK] = ACTIONS(2079), + [anon_sym_LBRACE] = ACTIONS(2079), + [anon_sym_RBRACE] = ACTIONS(2079), + [anon_sym_STAR] = ACTIONS(2079), + [anon_sym_u8] = ACTIONS(2081), + [anon_sym_i8] = ACTIONS(2081), + [anon_sym_u16] = ACTIONS(2081), + [anon_sym_i16] = ACTIONS(2081), + [anon_sym_u32] = ACTIONS(2081), + [anon_sym_i32] = ACTIONS(2081), + [anon_sym_u64] = ACTIONS(2081), + [anon_sym_i64] = ACTIONS(2081), + [anon_sym_u128] = ACTIONS(2081), + [anon_sym_i128] = ACTIONS(2081), + [anon_sym_isize] = ACTIONS(2081), + [anon_sym_usize] = ACTIONS(2081), + [anon_sym_f32] = ACTIONS(2081), + [anon_sym_f64] = ACTIONS(2081), + [anon_sym_bool] = ACTIONS(2081), + [anon_sym_str] = ACTIONS(2081), + [anon_sym_char] = ACTIONS(2081), + [anon_sym_DASH] = ACTIONS(2079), + [anon_sym_BANG] = ACTIONS(2079), + [anon_sym_AMP] = ACTIONS(2079), + [anon_sym_PIPE] = ACTIONS(2079), + [anon_sym_LT] = ACTIONS(2079), + [anon_sym_DOT_DOT] = ACTIONS(2079), + [anon_sym_COLON_COLON] = ACTIONS(2079), + [anon_sym_POUND] = ACTIONS(2079), + [anon_sym_SQUOTE] = ACTIONS(2081), + [anon_sym_async] = ACTIONS(2081), + [anon_sym_break] = ACTIONS(2081), + [anon_sym_const] = ACTIONS(2081), + [anon_sym_continue] = ACTIONS(2081), + [anon_sym_default] = ACTIONS(2081), + [anon_sym_enum] = ACTIONS(2081), + [anon_sym_fn] = ACTIONS(2081), + [anon_sym_for] = ACTIONS(2081), + [anon_sym_gen] = ACTIONS(2081), + [anon_sym_if] = ACTIONS(2081), + [anon_sym_impl] = ACTIONS(2081), + [anon_sym_let] = ACTIONS(2081), + [anon_sym_loop] = ACTIONS(2081), + [anon_sym_match] = ACTIONS(2081), + [anon_sym_mod] = ACTIONS(2081), + [anon_sym_pub] = ACTIONS(2081), + [anon_sym_return] = ACTIONS(2081), + [anon_sym_static] = ACTIONS(2081), + [anon_sym_struct] = ACTIONS(2081), + [anon_sym_trait] = ACTIONS(2081), + [anon_sym_type] = ACTIONS(2081), + [anon_sym_union] = ACTIONS(2081), + [anon_sym_unsafe] = ACTIONS(2081), + [anon_sym_use] = ACTIONS(2081), + [anon_sym_while] = ACTIONS(2081), + [anon_sym_extern] = ACTIONS(2081), + [anon_sym_safe] = ACTIONS(2081), + [anon_sym_yield] = ACTIONS(2081), + [anon_sym_move] = ACTIONS(2081), + [anon_sym_try] = ACTIONS(2081), + [sym_integer_literal] = ACTIONS(2079), + [aux_sym_string_literal_token1] = ACTIONS(2079), + [sym_char_literal] = ACTIONS(2079), + [anon_sym_true] = ACTIONS(2081), + [anon_sym_false] = ACTIONS(2081), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2081), + [sym_super] = ACTIONS(2081), + [sym_crate] = ACTIONS(2081), + [sym_metavariable] = ACTIONS(2079), + [sym__raw_string_literal_start] = ACTIONS(2079), + [sym_float_literal] = ACTIONS(2079), }, [STATE(564)] = { [sym_line_comment] = STATE(564), [sym_block_comment] = STATE(564), - [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(2083), + [sym_identifier] = ACTIONS(2085), + [anon_sym_SEMI] = ACTIONS(2083), + [anon_sym_macro_rules_BANG] = ACTIONS(2083), + [anon_sym_LPAREN] = ACTIONS(2083), + [anon_sym_LBRACK] = ACTIONS(2083), + [anon_sym_LBRACE] = ACTIONS(2083), + [anon_sym_RBRACE] = ACTIONS(2083), + [anon_sym_STAR] = ACTIONS(2083), + [anon_sym_u8] = ACTIONS(2085), + [anon_sym_i8] = ACTIONS(2085), + [anon_sym_u16] = ACTIONS(2085), + [anon_sym_i16] = ACTIONS(2085), + [anon_sym_u32] = ACTIONS(2085), + [anon_sym_i32] = ACTIONS(2085), + [anon_sym_u64] = ACTIONS(2085), + [anon_sym_i64] = ACTIONS(2085), + [anon_sym_u128] = ACTIONS(2085), + [anon_sym_i128] = ACTIONS(2085), + [anon_sym_isize] = ACTIONS(2085), + [anon_sym_usize] = ACTIONS(2085), + [anon_sym_f32] = ACTIONS(2085), + [anon_sym_f64] = ACTIONS(2085), + [anon_sym_bool] = ACTIONS(2085), + [anon_sym_str] = ACTIONS(2085), + [anon_sym_char] = ACTIONS(2085), + [anon_sym_DASH] = ACTIONS(2083), + [anon_sym_BANG] = ACTIONS(2083), + [anon_sym_AMP] = ACTIONS(2083), + [anon_sym_PIPE] = ACTIONS(2083), + [anon_sym_LT] = ACTIONS(2083), + [anon_sym_DOT_DOT] = ACTIONS(2083), + [anon_sym_COLON_COLON] = ACTIONS(2083), + [anon_sym_POUND] = ACTIONS(2083), + [anon_sym_SQUOTE] = ACTIONS(2085), + [anon_sym_async] = ACTIONS(2085), + [anon_sym_break] = ACTIONS(2085), + [anon_sym_const] = ACTIONS(2085), + [anon_sym_continue] = ACTIONS(2085), + [anon_sym_default] = ACTIONS(2085), + [anon_sym_enum] = ACTIONS(2085), + [anon_sym_fn] = ACTIONS(2085), + [anon_sym_for] = ACTIONS(2085), + [anon_sym_gen] = ACTIONS(2085), + [anon_sym_if] = ACTIONS(2085), + [anon_sym_impl] = ACTIONS(2085), + [anon_sym_let] = ACTIONS(2085), + [anon_sym_loop] = ACTIONS(2085), + [anon_sym_match] = ACTIONS(2085), + [anon_sym_mod] = ACTIONS(2085), + [anon_sym_pub] = ACTIONS(2085), + [anon_sym_return] = ACTIONS(2085), + [anon_sym_static] = ACTIONS(2085), + [anon_sym_struct] = ACTIONS(2085), + [anon_sym_trait] = ACTIONS(2085), + [anon_sym_type] = ACTIONS(2085), + [anon_sym_union] = ACTIONS(2085), + [anon_sym_unsafe] = ACTIONS(2085), + [anon_sym_use] = ACTIONS(2085), + [anon_sym_while] = ACTIONS(2085), + [anon_sym_extern] = ACTIONS(2085), + [anon_sym_safe] = ACTIONS(2085), + [anon_sym_yield] = ACTIONS(2085), + [anon_sym_move] = ACTIONS(2085), + [anon_sym_try] = ACTIONS(2085), + [sym_integer_literal] = ACTIONS(2083), + [aux_sym_string_literal_token1] = ACTIONS(2083), + [sym_char_literal] = ACTIONS(2083), + [anon_sym_true] = ACTIONS(2085), + [anon_sym_false] = ACTIONS(2085), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2085), + [sym_super] = ACTIONS(2085), + [sym_crate] = ACTIONS(2085), + [sym_metavariable] = ACTIONS(2083), + [sym__raw_string_literal_start] = ACTIONS(2083), + [sym_float_literal] = ACTIONS(2083), }, [STATE(565)] = { [sym_line_comment] = STATE(565), [sym_block_comment] = STATE(565), - [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(2087), + [sym_identifier] = ACTIONS(2089), + [anon_sym_SEMI] = ACTIONS(2087), + [anon_sym_macro_rules_BANG] = ACTIONS(2087), + [anon_sym_LPAREN] = ACTIONS(2087), + [anon_sym_LBRACK] = ACTIONS(2087), + [anon_sym_LBRACE] = ACTIONS(2087), + [anon_sym_RBRACE] = ACTIONS(2087), + [anon_sym_STAR] = ACTIONS(2087), + [anon_sym_u8] = ACTIONS(2089), + [anon_sym_i8] = ACTIONS(2089), + [anon_sym_u16] = ACTIONS(2089), + [anon_sym_i16] = ACTIONS(2089), + [anon_sym_u32] = ACTIONS(2089), + [anon_sym_i32] = ACTIONS(2089), + [anon_sym_u64] = ACTIONS(2089), + [anon_sym_i64] = ACTIONS(2089), + [anon_sym_u128] = ACTIONS(2089), + [anon_sym_i128] = ACTIONS(2089), + [anon_sym_isize] = ACTIONS(2089), + [anon_sym_usize] = ACTIONS(2089), + [anon_sym_f32] = ACTIONS(2089), + [anon_sym_f64] = ACTIONS(2089), + [anon_sym_bool] = ACTIONS(2089), + [anon_sym_str] = ACTIONS(2089), + [anon_sym_char] = ACTIONS(2089), + [anon_sym_DASH] = ACTIONS(2087), + [anon_sym_BANG] = ACTIONS(2087), + [anon_sym_AMP] = ACTIONS(2087), + [anon_sym_PIPE] = ACTIONS(2087), + [anon_sym_LT] = ACTIONS(2087), + [anon_sym_DOT_DOT] = ACTIONS(2087), + [anon_sym_COLON_COLON] = ACTIONS(2087), + [anon_sym_POUND] = ACTIONS(2087), + [anon_sym_SQUOTE] = ACTIONS(2089), + [anon_sym_async] = ACTIONS(2089), + [anon_sym_break] = ACTIONS(2089), + [anon_sym_const] = ACTIONS(2089), + [anon_sym_continue] = ACTIONS(2089), + [anon_sym_default] = ACTIONS(2089), + [anon_sym_enum] = ACTIONS(2089), + [anon_sym_fn] = ACTIONS(2089), + [anon_sym_for] = ACTIONS(2089), + [anon_sym_gen] = ACTIONS(2089), + [anon_sym_if] = ACTIONS(2089), + [anon_sym_impl] = ACTIONS(2089), + [anon_sym_let] = ACTIONS(2089), + [anon_sym_loop] = ACTIONS(2089), + [anon_sym_match] = ACTIONS(2089), + [anon_sym_mod] = ACTIONS(2089), + [anon_sym_pub] = ACTIONS(2089), + [anon_sym_return] = ACTIONS(2089), + [anon_sym_static] = ACTIONS(2089), + [anon_sym_struct] = ACTIONS(2089), + [anon_sym_trait] = ACTIONS(2089), + [anon_sym_type] = ACTIONS(2089), + [anon_sym_union] = ACTIONS(2089), + [anon_sym_unsafe] = ACTIONS(2089), + [anon_sym_use] = ACTIONS(2089), + [anon_sym_while] = ACTIONS(2089), + [anon_sym_extern] = ACTIONS(2089), + [anon_sym_safe] = ACTIONS(2089), + [anon_sym_yield] = ACTIONS(2089), + [anon_sym_move] = ACTIONS(2089), + [anon_sym_try] = ACTIONS(2089), + [sym_integer_literal] = ACTIONS(2087), + [aux_sym_string_literal_token1] = ACTIONS(2087), + [sym_char_literal] = ACTIONS(2087), + [anon_sym_true] = ACTIONS(2089), + [anon_sym_false] = ACTIONS(2089), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2089), + [sym_super] = ACTIONS(2089), + [sym_crate] = ACTIONS(2089), + [sym_metavariable] = ACTIONS(2087), + [sym__raw_string_literal_start] = ACTIONS(2087), + [sym_float_literal] = ACTIONS(2087), }, [STATE(566)] = { [sym_line_comment] = STATE(566), [sym_block_comment] = STATE(566), - [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(2091), + [sym_identifier] = ACTIONS(2093), + [anon_sym_SEMI] = ACTIONS(2091), + [anon_sym_macro_rules_BANG] = ACTIONS(2091), + [anon_sym_LPAREN] = ACTIONS(2091), + [anon_sym_LBRACK] = ACTIONS(2091), + [anon_sym_LBRACE] = ACTIONS(2091), + [anon_sym_RBRACE] = ACTIONS(2091), + [anon_sym_STAR] = ACTIONS(2091), + [anon_sym_u8] = ACTIONS(2093), + [anon_sym_i8] = ACTIONS(2093), + [anon_sym_u16] = ACTIONS(2093), + [anon_sym_i16] = ACTIONS(2093), + [anon_sym_u32] = ACTIONS(2093), + [anon_sym_i32] = ACTIONS(2093), + [anon_sym_u64] = ACTIONS(2093), + [anon_sym_i64] = ACTIONS(2093), + [anon_sym_u128] = ACTIONS(2093), + [anon_sym_i128] = ACTIONS(2093), + [anon_sym_isize] = ACTIONS(2093), + [anon_sym_usize] = ACTIONS(2093), + [anon_sym_f32] = ACTIONS(2093), + [anon_sym_f64] = ACTIONS(2093), + [anon_sym_bool] = ACTIONS(2093), + [anon_sym_str] = ACTIONS(2093), + [anon_sym_char] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2091), + [anon_sym_BANG] = ACTIONS(2091), + [anon_sym_AMP] = ACTIONS(2091), + [anon_sym_PIPE] = ACTIONS(2091), + [anon_sym_LT] = ACTIONS(2091), + [anon_sym_DOT_DOT] = ACTIONS(2091), + [anon_sym_COLON_COLON] = ACTIONS(2091), + [anon_sym_POUND] = ACTIONS(2091), + [anon_sym_SQUOTE] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_default] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_fn] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_gen] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_impl] = ACTIONS(2093), + [anon_sym_let] = ACTIONS(2093), + [anon_sym_loop] = ACTIONS(2093), + [anon_sym_match] = ACTIONS(2093), + [anon_sym_mod] = ACTIONS(2093), + [anon_sym_pub] = ACTIONS(2093), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_struct] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_union] = ACTIONS(2093), + [anon_sym_unsafe] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_extern] = ACTIONS(2093), + [anon_sym_safe] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_move] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [sym_integer_literal] = ACTIONS(2091), + [aux_sym_string_literal_token1] = ACTIONS(2091), + [sym_char_literal] = ACTIONS(2091), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2093), + [sym_super] = ACTIONS(2093), + [sym_crate] = ACTIONS(2093), + [sym_metavariable] = ACTIONS(2091), + [sym__raw_string_literal_start] = ACTIONS(2091), + [sym_float_literal] = ACTIONS(2091), }, [STATE(567)] = { [sym_line_comment] = STATE(567), [sym_block_comment] = STATE(567), - [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(2095), + [sym_identifier] = ACTIONS(2097), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_macro_rules_BANG] = ACTIONS(2095), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_LBRACK] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_RBRACE] = ACTIONS(2095), + [anon_sym_STAR] = ACTIONS(2095), + [anon_sym_u8] = ACTIONS(2097), + [anon_sym_i8] = ACTIONS(2097), + [anon_sym_u16] = ACTIONS(2097), + [anon_sym_i16] = ACTIONS(2097), + [anon_sym_u32] = ACTIONS(2097), + [anon_sym_i32] = ACTIONS(2097), + [anon_sym_u64] = ACTIONS(2097), + [anon_sym_i64] = ACTIONS(2097), + [anon_sym_u128] = ACTIONS(2097), + [anon_sym_i128] = ACTIONS(2097), + [anon_sym_isize] = ACTIONS(2097), + [anon_sym_usize] = ACTIONS(2097), + [anon_sym_f32] = ACTIONS(2097), + [anon_sym_f64] = ACTIONS(2097), + [anon_sym_bool] = ACTIONS(2097), + [anon_sym_str] = ACTIONS(2097), + [anon_sym_char] = ACTIONS(2097), + [anon_sym_DASH] = ACTIONS(2095), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_AMP] = ACTIONS(2095), + [anon_sym_PIPE] = ACTIONS(2095), + [anon_sym_LT] = ACTIONS(2095), + [anon_sym_DOT_DOT] = ACTIONS(2095), + [anon_sym_COLON_COLON] = ACTIONS(2095), + [anon_sym_POUND] = ACTIONS(2095), + [anon_sym_SQUOTE] = ACTIONS(2097), + [anon_sym_async] = ACTIONS(2097), + [anon_sym_break] = ACTIONS(2097), + [anon_sym_const] = ACTIONS(2097), + [anon_sym_continue] = ACTIONS(2097), + [anon_sym_default] = ACTIONS(2097), + [anon_sym_enum] = ACTIONS(2097), + [anon_sym_fn] = ACTIONS(2097), + [anon_sym_for] = ACTIONS(2097), + [anon_sym_gen] = ACTIONS(2097), + [anon_sym_if] = ACTIONS(2097), + [anon_sym_impl] = ACTIONS(2097), + [anon_sym_let] = ACTIONS(2097), + [anon_sym_loop] = ACTIONS(2097), + [anon_sym_match] = ACTIONS(2097), + [anon_sym_mod] = ACTIONS(2097), + [anon_sym_pub] = ACTIONS(2097), + [anon_sym_return] = ACTIONS(2097), + [anon_sym_static] = ACTIONS(2097), + [anon_sym_struct] = ACTIONS(2097), + [anon_sym_trait] = ACTIONS(2097), + [anon_sym_type] = ACTIONS(2097), + [anon_sym_union] = ACTIONS(2097), + [anon_sym_unsafe] = ACTIONS(2097), + [anon_sym_use] = ACTIONS(2097), + [anon_sym_while] = ACTIONS(2097), + [anon_sym_extern] = ACTIONS(2097), + [anon_sym_safe] = ACTIONS(2097), + [anon_sym_yield] = ACTIONS(2097), + [anon_sym_move] = ACTIONS(2097), + [anon_sym_try] = ACTIONS(2097), + [sym_integer_literal] = ACTIONS(2095), + [aux_sym_string_literal_token1] = ACTIONS(2095), + [sym_char_literal] = ACTIONS(2095), + [anon_sym_true] = ACTIONS(2097), + [anon_sym_false] = ACTIONS(2097), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2097), + [sym_super] = ACTIONS(2097), + [sym_crate] = ACTIONS(2097), + [sym_metavariable] = ACTIONS(2095), + [sym__raw_string_literal_start] = ACTIONS(2095), + [sym_float_literal] = ACTIONS(2095), }, [STATE(568)] = { [sym_line_comment] = STATE(568), [sym_block_comment] = STATE(568), - [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(2099), + [sym_identifier] = ACTIONS(2101), + [anon_sym_SEMI] = ACTIONS(2099), + [anon_sym_macro_rules_BANG] = ACTIONS(2099), + [anon_sym_LPAREN] = ACTIONS(2099), + [anon_sym_LBRACK] = ACTIONS(2099), + [anon_sym_LBRACE] = ACTIONS(2099), + [anon_sym_RBRACE] = ACTIONS(2099), + [anon_sym_STAR] = ACTIONS(2099), + [anon_sym_u8] = ACTIONS(2101), + [anon_sym_i8] = ACTIONS(2101), + [anon_sym_u16] = ACTIONS(2101), + [anon_sym_i16] = ACTIONS(2101), + [anon_sym_u32] = ACTIONS(2101), + [anon_sym_i32] = ACTIONS(2101), + [anon_sym_u64] = ACTIONS(2101), + [anon_sym_i64] = ACTIONS(2101), + [anon_sym_u128] = ACTIONS(2101), + [anon_sym_i128] = ACTIONS(2101), + [anon_sym_isize] = ACTIONS(2101), + [anon_sym_usize] = ACTIONS(2101), + [anon_sym_f32] = ACTIONS(2101), + [anon_sym_f64] = ACTIONS(2101), + [anon_sym_bool] = ACTIONS(2101), + [anon_sym_str] = ACTIONS(2101), + [anon_sym_char] = ACTIONS(2101), + [anon_sym_DASH] = ACTIONS(2099), + [anon_sym_BANG] = ACTIONS(2099), + [anon_sym_AMP] = ACTIONS(2099), + [anon_sym_PIPE] = ACTIONS(2099), + [anon_sym_LT] = ACTIONS(2099), + [anon_sym_DOT_DOT] = ACTIONS(2099), + [anon_sym_COLON_COLON] = ACTIONS(2099), + [anon_sym_POUND] = ACTIONS(2099), + [anon_sym_SQUOTE] = ACTIONS(2101), + [anon_sym_async] = ACTIONS(2101), + [anon_sym_break] = ACTIONS(2101), + [anon_sym_const] = ACTIONS(2101), + [anon_sym_continue] = ACTIONS(2101), + [anon_sym_default] = ACTIONS(2101), + [anon_sym_enum] = ACTIONS(2101), + [anon_sym_fn] = ACTIONS(2101), + [anon_sym_for] = ACTIONS(2101), + [anon_sym_gen] = ACTIONS(2101), + [anon_sym_if] = ACTIONS(2101), + [anon_sym_impl] = ACTIONS(2101), + [anon_sym_let] = ACTIONS(2101), + [anon_sym_loop] = ACTIONS(2101), + [anon_sym_match] = ACTIONS(2101), + [anon_sym_mod] = ACTIONS(2101), + [anon_sym_pub] = ACTIONS(2101), + [anon_sym_return] = ACTIONS(2101), + [anon_sym_static] = ACTIONS(2101), + [anon_sym_struct] = ACTIONS(2101), + [anon_sym_trait] = ACTIONS(2101), + [anon_sym_type] = ACTIONS(2101), + [anon_sym_union] = ACTIONS(2101), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_use] = ACTIONS(2101), + [anon_sym_while] = ACTIONS(2101), + [anon_sym_extern] = ACTIONS(2101), + [anon_sym_safe] = ACTIONS(2101), + [anon_sym_yield] = ACTIONS(2101), + [anon_sym_move] = ACTIONS(2101), + [anon_sym_try] = ACTIONS(2101), + [sym_integer_literal] = ACTIONS(2099), + [aux_sym_string_literal_token1] = ACTIONS(2099), + [sym_char_literal] = ACTIONS(2099), + [anon_sym_true] = ACTIONS(2101), + [anon_sym_false] = ACTIONS(2101), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2101), + [sym_super] = ACTIONS(2101), + [sym_crate] = ACTIONS(2101), + [sym_metavariable] = ACTIONS(2099), + [sym__raw_string_literal_start] = ACTIONS(2099), + [sym_float_literal] = ACTIONS(2099), }, [STATE(569)] = { [sym_line_comment] = STATE(569), [sym_block_comment] = STATE(569), - [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(2103), + [sym_identifier] = ACTIONS(2105), + [anon_sym_SEMI] = ACTIONS(2103), + [anon_sym_macro_rules_BANG] = ACTIONS(2103), + [anon_sym_LPAREN] = ACTIONS(2103), + [anon_sym_LBRACK] = ACTIONS(2103), + [anon_sym_LBRACE] = ACTIONS(2103), + [anon_sym_RBRACE] = ACTIONS(2103), + [anon_sym_STAR] = ACTIONS(2103), + [anon_sym_u8] = ACTIONS(2105), + [anon_sym_i8] = ACTIONS(2105), + [anon_sym_u16] = ACTIONS(2105), + [anon_sym_i16] = ACTIONS(2105), + [anon_sym_u32] = ACTIONS(2105), + [anon_sym_i32] = ACTIONS(2105), + [anon_sym_u64] = ACTIONS(2105), + [anon_sym_i64] = ACTIONS(2105), + [anon_sym_u128] = ACTIONS(2105), + [anon_sym_i128] = ACTIONS(2105), + [anon_sym_isize] = ACTIONS(2105), + [anon_sym_usize] = ACTIONS(2105), + [anon_sym_f32] = ACTIONS(2105), + [anon_sym_f64] = ACTIONS(2105), + [anon_sym_bool] = ACTIONS(2105), + [anon_sym_str] = ACTIONS(2105), + [anon_sym_char] = ACTIONS(2105), + [anon_sym_DASH] = ACTIONS(2103), + [anon_sym_BANG] = ACTIONS(2103), + [anon_sym_AMP] = ACTIONS(2103), + [anon_sym_PIPE] = ACTIONS(2103), + [anon_sym_LT] = ACTIONS(2103), + [anon_sym_DOT_DOT] = ACTIONS(2103), + [anon_sym_COLON_COLON] = ACTIONS(2103), + [anon_sym_POUND] = ACTIONS(2103), + [anon_sym_SQUOTE] = ACTIONS(2105), + [anon_sym_async] = ACTIONS(2105), + [anon_sym_break] = ACTIONS(2105), + [anon_sym_const] = ACTIONS(2105), + [anon_sym_continue] = ACTIONS(2105), + [anon_sym_default] = ACTIONS(2105), + [anon_sym_enum] = ACTIONS(2105), + [anon_sym_fn] = ACTIONS(2105), + [anon_sym_for] = ACTIONS(2105), + [anon_sym_gen] = ACTIONS(2105), + [anon_sym_if] = ACTIONS(2105), + [anon_sym_impl] = ACTIONS(2105), + [anon_sym_let] = ACTIONS(2105), + [anon_sym_loop] = ACTIONS(2105), + [anon_sym_match] = ACTIONS(2105), + [anon_sym_mod] = ACTIONS(2105), + [anon_sym_pub] = ACTIONS(2105), + [anon_sym_return] = ACTIONS(2105), + [anon_sym_static] = ACTIONS(2105), + [anon_sym_struct] = ACTIONS(2105), + [anon_sym_trait] = ACTIONS(2105), + [anon_sym_type] = ACTIONS(2105), + [anon_sym_union] = ACTIONS(2105), + [anon_sym_unsafe] = ACTIONS(2105), + [anon_sym_use] = ACTIONS(2105), + [anon_sym_while] = ACTIONS(2105), + [anon_sym_extern] = ACTIONS(2105), + [anon_sym_safe] = ACTIONS(2105), + [anon_sym_yield] = ACTIONS(2105), + [anon_sym_move] = ACTIONS(2105), + [anon_sym_try] = ACTIONS(2105), + [sym_integer_literal] = ACTIONS(2103), + [aux_sym_string_literal_token1] = ACTIONS(2103), + [sym_char_literal] = ACTIONS(2103), + [anon_sym_true] = ACTIONS(2105), + [anon_sym_false] = ACTIONS(2105), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2105), + [sym_super] = ACTIONS(2105), + [sym_crate] = ACTIONS(2105), + [sym_metavariable] = ACTIONS(2103), + [sym__raw_string_literal_start] = ACTIONS(2103), + [sym_float_literal] = ACTIONS(2103), }, [STATE(570)] = { [sym_line_comment] = STATE(570), [sym_block_comment] = STATE(570), + [ts_builtin_sym_end] = ACTIONS(2107), + [sym_identifier] = ACTIONS(2109), + [anon_sym_SEMI] = ACTIONS(2107), + [anon_sym_macro_rules_BANG] = ACTIONS(2107), + [anon_sym_LPAREN] = ACTIONS(2107), + [anon_sym_LBRACK] = ACTIONS(2107), + [anon_sym_LBRACE] = ACTIONS(2107), + [anon_sym_RBRACE] = ACTIONS(2107), + [anon_sym_STAR] = ACTIONS(2107), + [anon_sym_u8] = ACTIONS(2109), + [anon_sym_i8] = ACTIONS(2109), + [anon_sym_u16] = ACTIONS(2109), + [anon_sym_i16] = ACTIONS(2109), + [anon_sym_u32] = ACTIONS(2109), + [anon_sym_i32] = ACTIONS(2109), + [anon_sym_u64] = ACTIONS(2109), + [anon_sym_i64] = ACTIONS(2109), + [anon_sym_u128] = ACTIONS(2109), + [anon_sym_i128] = ACTIONS(2109), + [anon_sym_isize] = ACTIONS(2109), + [anon_sym_usize] = ACTIONS(2109), + [anon_sym_f32] = ACTIONS(2109), + [anon_sym_f64] = ACTIONS(2109), + [anon_sym_bool] = ACTIONS(2109), + [anon_sym_str] = ACTIONS(2109), + [anon_sym_char] = ACTIONS(2109), + [anon_sym_DASH] = ACTIONS(2107), + [anon_sym_BANG] = ACTIONS(2107), + [anon_sym_AMP] = ACTIONS(2107), + [anon_sym_PIPE] = ACTIONS(2107), + [anon_sym_LT] = ACTIONS(2107), + [anon_sym_DOT_DOT] = ACTIONS(2107), + [anon_sym_COLON_COLON] = ACTIONS(2107), + [anon_sym_POUND] = ACTIONS(2107), + [anon_sym_SQUOTE] = ACTIONS(2109), + [anon_sym_async] = ACTIONS(2109), + [anon_sym_break] = ACTIONS(2109), + [anon_sym_const] = ACTIONS(2109), + [anon_sym_continue] = ACTIONS(2109), + [anon_sym_default] = ACTIONS(2109), + [anon_sym_enum] = ACTIONS(2109), + [anon_sym_fn] = ACTIONS(2109), + [anon_sym_for] = ACTIONS(2109), + [anon_sym_gen] = ACTIONS(2109), + [anon_sym_if] = ACTIONS(2109), + [anon_sym_impl] = ACTIONS(2109), + [anon_sym_let] = ACTIONS(2109), + [anon_sym_loop] = ACTIONS(2109), + [anon_sym_match] = ACTIONS(2109), + [anon_sym_mod] = ACTIONS(2109), + [anon_sym_pub] = ACTIONS(2109), + [anon_sym_return] = ACTIONS(2109), + [anon_sym_static] = ACTIONS(2109), + [anon_sym_struct] = ACTIONS(2109), + [anon_sym_trait] = ACTIONS(2109), + [anon_sym_type] = ACTIONS(2109), + [anon_sym_union] = ACTIONS(2109), + [anon_sym_unsafe] = ACTIONS(2109), + [anon_sym_use] = ACTIONS(2109), + [anon_sym_while] = ACTIONS(2109), + [anon_sym_extern] = ACTIONS(2109), + [anon_sym_safe] = ACTIONS(2109), + [anon_sym_yield] = ACTIONS(2109), + [anon_sym_move] = ACTIONS(2109), + [anon_sym_try] = ACTIONS(2109), + [sym_integer_literal] = ACTIONS(2107), + [aux_sym_string_literal_token1] = ACTIONS(2107), + [sym_char_literal] = ACTIONS(2107), + [anon_sym_true] = ACTIONS(2109), + [anon_sym_false] = ACTIONS(2109), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2109), + [sym_super] = ACTIONS(2109), + [sym_crate] = ACTIONS(2109), + [sym_metavariable] = ACTIONS(2107), + [sym__raw_string_literal_start] = ACTIONS(2107), + [sym_float_literal] = ACTIONS(2107), + }, + [STATE(571)] = { + [sym_line_comment] = STATE(571), + [sym_block_comment] = STATE(571), + [ts_builtin_sym_end] = ACTIONS(2111), + [sym_identifier] = ACTIONS(2113), + [anon_sym_SEMI] = ACTIONS(2111), + [anon_sym_macro_rules_BANG] = ACTIONS(2111), + [anon_sym_LPAREN] = ACTIONS(2111), + [anon_sym_LBRACK] = ACTIONS(2111), + [anon_sym_LBRACE] = ACTIONS(2111), + [anon_sym_RBRACE] = ACTIONS(2111), + [anon_sym_STAR] = ACTIONS(2111), + [anon_sym_u8] = ACTIONS(2113), + [anon_sym_i8] = ACTIONS(2113), + [anon_sym_u16] = ACTIONS(2113), + [anon_sym_i16] = ACTIONS(2113), + [anon_sym_u32] = ACTIONS(2113), + [anon_sym_i32] = ACTIONS(2113), + [anon_sym_u64] = ACTIONS(2113), + [anon_sym_i64] = ACTIONS(2113), + [anon_sym_u128] = ACTIONS(2113), + [anon_sym_i128] = ACTIONS(2113), + [anon_sym_isize] = ACTIONS(2113), + [anon_sym_usize] = ACTIONS(2113), + [anon_sym_f32] = ACTIONS(2113), + [anon_sym_f64] = ACTIONS(2113), + [anon_sym_bool] = ACTIONS(2113), + [anon_sym_str] = ACTIONS(2113), + [anon_sym_char] = ACTIONS(2113), + [anon_sym_DASH] = ACTIONS(2111), + [anon_sym_BANG] = ACTIONS(2111), + [anon_sym_AMP] = ACTIONS(2111), + [anon_sym_PIPE] = ACTIONS(2111), + [anon_sym_LT] = ACTIONS(2111), + [anon_sym_DOT_DOT] = ACTIONS(2111), + [anon_sym_COLON_COLON] = ACTIONS(2111), + [anon_sym_POUND] = ACTIONS(2111), + [anon_sym_SQUOTE] = ACTIONS(2113), + [anon_sym_async] = ACTIONS(2113), + [anon_sym_break] = ACTIONS(2113), + [anon_sym_const] = ACTIONS(2113), + [anon_sym_continue] = ACTIONS(2113), + [anon_sym_default] = ACTIONS(2113), + [anon_sym_enum] = ACTIONS(2113), + [anon_sym_fn] = ACTIONS(2113), + [anon_sym_for] = ACTIONS(2113), + [anon_sym_gen] = ACTIONS(2113), + [anon_sym_if] = ACTIONS(2113), + [anon_sym_impl] = ACTIONS(2113), + [anon_sym_let] = ACTIONS(2113), + [anon_sym_loop] = ACTIONS(2113), + [anon_sym_match] = ACTIONS(2113), + [anon_sym_mod] = ACTIONS(2113), + [anon_sym_pub] = ACTIONS(2113), + [anon_sym_return] = ACTIONS(2113), + [anon_sym_static] = ACTIONS(2113), + [anon_sym_struct] = ACTIONS(2113), + [anon_sym_trait] = ACTIONS(2113), + [anon_sym_type] = ACTIONS(2113), + [anon_sym_union] = ACTIONS(2113), + [anon_sym_unsafe] = ACTIONS(2113), + [anon_sym_use] = ACTIONS(2113), + [anon_sym_while] = ACTIONS(2113), + [anon_sym_extern] = ACTIONS(2113), + [anon_sym_safe] = ACTIONS(2113), + [anon_sym_yield] = ACTIONS(2113), + [anon_sym_move] = ACTIONS(2113), + [anon_sym_try] = ACTIONS(2113), + [sym_integer_literal] = ACTIONS(2111), + [aux_sym_string_literal_token1] = ACTIONS(2111), + [sym_char_literal] = ACTIONS(2111), + [anon_sym_true] = ACTIONS(2113), + [anon_sym_false] = ACTIONS(2113), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2113), + [sym_super] = ACTIONS(2113), + [sym_crate] = ACTIONS(2113), + [sym_metavariable] = ACTIONS(2111), + [sym__raw_string_literal_start] = ACTIONS(2111), + [sym_float_literal] = ACTIONS(2111), + }, + [STATE(572)] = { + [sym_line_comment] = STATE(572), + [sym_block_comment] = STATE(572), + [ts_builtin_sym_end] = ACTIONS(2115), + [sym_identifier] = ACTIONS(2117), + [anon_sym_SEMI] = ACTIONS(2115), + [anon_sym_macro_rules_BANG] = ACTIONS(2115), + [anon_sym_LPAREN] = ACTIONS(2115), + [anon_sym_LBRACK] = ACTIONS(2115), + [anon_sym_LBRACE] = ACTIONS(2115), + [anon_sym_RBRACE] = ACTIONS(2115), + [anon_sym_STAR] = ACTIONS(2115), + [anon_sym_u8] = ACTIONS(2117), + [anon_sym_i8] = ACTIONS(2117), + [anon_sym_u16] = ACTIONS(2117), + [anon_sym_i16] = ACTIONS(2117), + [anon_sym_u32] = ACTIONS(2117), + [anon_sym_i32] = ACTIONS(2117), + [anon_sym_u64] = ACTIONS(2117), + [anon_sym_i64] = ACTIONS(2117), + [anon_sym_u128] = ACTIONS(2117), + [anon_sym_i128] = ACTIONS(2117), + [anon_sym_isize] = ACTIONS(2117), + [anon_sym_usize] = ACTIONS(2117), + [anon_sym_f32] = ACTIONS(2117), + [anon_sym_f64] = ACTIONS(2117), + [anon_sym_bool] = ACTIONS(2117), + [anon_sym_str] = ACTIONS(2117), + [anon_sym_char] = ACTIONS(2117), + [anon_sym_DASH] = ACTIONS(2115), + [anon_sym_BANG] = ACTIONS(2115), + [anon_sym_AMP] = ACTIONS(2115), + [anon_sym_PIPE] = ACTIONS(2115), + [anon_sym_LT] = ACTIONS(2115), + [anon_sym_DOT_DOT] = ACTIONS(2115), + [anon_sym_COLON_COLON] = ACTIONS(2115), + [anon_sym_POUND] = ACTIONS(2115), + [anon_sym_SQUOTE] = ACTIONS(2117), + [anon_sym_async] = ACTIONS(2117), + [anon_sym_break] = ACTIONS(2117), + [anon_sym_const] = ACTIONS(2117), + [anon_sym_continue] = ACTIONS(2117), + [anon_sym_default] = ACTIONS(2117), + [anon_sym_enum] = ACTIONS(2117), + [anon_sym_fn] = ACTIONS(2117), + [anon_sym_for] = ACTIONS(2117), + [anon_sym_gen] = ACTIONS(2117), + [anon_sym_if] = ACTIONS(2117), + [anon_sym_impl] = ACTIONS(2117), + [anon_sym_let] = ACTIONS(2117), + [anon_sym_loop] = ACTIONS(2117), + [anon_sym_match] = ACTIONS(2117), + [anon_sym_mod] = ACTIONS(2117), + [anon_sym_pub] = ACTIONS(2117), + [anon_sym_return] = ACTIONS(2117), + [anon_sym_static] = ACTIONS(2117), + [anon_sym_struct] = ACTIONS(2117), + [anon_sym_trait] = ACTIONS(2117), + [anon_sym_type] = ACTIONS(2117), + [anon_sym_union] = ACTIONS(2117), + [anon_sym_unsafe] = ACTIONS(2117), + [anon_sym_use] = ACTIONS(2117), + [anon_sym_while] = ACTIONS(2117), + [anon_sym_extern] = ACTIONS(2117), + [anon_sym_safe] = ACTIONS(2117), + [anon_sym_yield] = ACTIONS(2117), + [anon_sym_move] = ACTIONS(2117), + [anon_sym_try] = ACTIONS(2117), + [sym_integer_literal] = ACTIONS(2115), + [aux_sym_string_literal_token1] = ACTIONS(2115), + [sym_char_literal] = ACTIONS(2115), + [anon_sym_true] = ACTIONS(2117), + [anon_sym_false] = ACTIONS(2117), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2117), + [sym_super] = ACTIONS(2117), + [sym_crate] = ACTIONS(2117), + [sym_metavariable] = ACTIONS(2115), + [sym__raw_string_literal_start] = ACTIONS(2115), + [sym_float_literal] = ACTIONS(2115), + }, + [STATE(573)] = { + [sym_line_comment] = STATE(573), + [sym_block_comment] = STATE(573), + [ts_builtin_sym_end] = ACTIONS(2119), + [sym_identifier] = ACTIONS(2121), + [anon_sym_SEMI] = ACTIONS(2119), + [anon_sym_macro_rules_BANG] = ACTIONS(2119), + [anon_sym_LPAREN] = ACTIONS(2119), + [anon_sym_LBRACK] = ACTIONS(2119), + [anon_sym_LBRACE] = ACTIONS(2119), + [anon_sym_RBRACE] = ACTIONS(2119), + [anon_sym_STAR] = ACTIONS(2119), + [anon_sym_u8] = ACTIONS(2121), + [anon_sym_i8] = ACTIONS(2121), + [anon_sym_u16] = ACTIONS(2121), + [anon_sym_i16] = ACTIONS(2121), + [anon_sym_u32] = ACTIONS(2121), + [anon_sym_i32] = ACTIONS(2121), + [anon_sym_u64] = ACTIONS(2121), + [anon_sym_i64] = ACTIONS(2121), + [anon_sym_u128] = ACTIONS(2121), + [anon_sym_i128] = ACTIONS(2121), + [anon_sym_isize] = ACTIONS(2121), + [anon_sym_usize] = ACTIONS(2121), + [anon_sym_f32] = ACTIONS(2121), + [anon_sym_f64] = ACTIONS(2121), + [anon_sym_bool] = ACTIONS(2121), + [anon_sym_str] = ACTIONS(2121), + [anon_sym_char] = ACTIONS(2121), + [anon_sym_DASH] = ACTIONS(2119), + [anon_sym_BANG] = ACTIONS(2119), + [anon_sym_AMP] = ACTIONS(2119), + [anon_sym_PIPE] = ACTIONS(2119), + [anon_sym_LT] = ACTIONS(2119), + [anon_sym_DOT_DOT] = ACTIONS(2119), + [anon_sym_COLON_COLON] = ACTIONS(2119), + [anon_sym_POUND] = ACTIONS(2119), + [anon_sym_SQUOTE] = ACTIONS(2121), + [anon_sym_async] = ACTIONS(2121), + [anon_sym_break] = ACTIONS(2121), + [anon_sym_const] = ACTIONS(2121), + [anon_sym_continue] = ACTIONS(2121), + [anon_sym_default] = ACTIONS(2121), + [anon_sym_enum] = ACTIONS(2121), + [anon_sym_fn] = ACTIONS(2121), + [anon_sym_for] = ACTIONS(2121), + [anon_sym_gen] = ACTIONS(2121), + [anon_sym_if] = ACTIONS(2121), + [anon_sym_impl] = ACTIONS(2121), + [anon_sym_let] = ACTIONS(2121), + [anon_sym_loop] = ACTIONS(2121), + [anon_sym_match] = ACTIONS(2121), + [anon_sym_mod] = ACTIONS(2121), + [anon_sym_pub] = ACTIONS(2121), + [anon_sym_return] = ACTIONS(2121), + [anon_sym_static] = ACTIONS(2121), + [anon_sym_struct] = ACTIONS(2121), + [anon_sym_trait] = ACTIONS(2121), + [anon_sym_type] = ACTIONS(2121), + [anon_sym_union] = ACTIONS(2121), + [anon_sym_unsafe] = ACTIONS(2121), + [anon_sym_use] = ACTIONS(2121), + [anon_sym_while] = ACTIONS(2121), + [anon_sym_extern] = ACTIONS(2121), + [anon_sym_safe] = ACTIONS(2121), + [anon_sym_yield] = ACTIONS(2121), + [anon_sym_move] = ACTIONS(2121), + [anon_sym_try] = ACTIONS(2121), + [sym_integer_literal] = ACTIONS(2119), + [aux_sym_string_literal_token1] = ACTIONS(2119), + [sym_char_literal] = ACTIONS(2119), + [anon_sym_true] = ACTIONS(2121), + [anon_sym_false] = ACTIONS(2121), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2121), + [sym_super] = ACTIONS(2121), + [sym_crate] = ACTIONS(2121), + [sym_metavariable] = ACTIONS(2119), + [sym__raw_string_literal_start] = ACTIONS(2119), + [sym_float_literal] = ACTIONS(2119), + }, + [STATE(574)] = { + [sym_line_comment] = STATE(574), + [sym_block_comment] = STATE(574), + [ts_builtin_sym_end] = ACTIONS(2123), + [sym_identifier] = ACTIONS(2125), + [anon_sym_SEMI] = ACTIONS(2123), + [anon_sym_macro_rules_BANG] = ACTIONS(2123), + [anon_sym_LPAREN] = ACTIONS(2123), + [anon_sym_LBRACK] = ACTIONS(2123), + [anon_sym_LBRACE] = ACTIONS(2123), + [anon_sym_RBRACE] = ACTIONS(2123), + [anon_sym_STAR] = ACTIONS(2123), + [anon_sym_u8] = ACTIONS(2125), + [anon_sym_i8] = ACTIONS(2125), + [anon_sym_u16] = ACTIONS(2125), + [anon_sym_i16] = ACTIONS(2125), + [anon_sym_u32] = ACTIONS(2125), + [anon_sym_i32] = ACTIONS(2125), + [anon_sym_u64] = ACTIONS(2125), + [anon_sym_i64] = ACTIONS(2125), + [anon_sym_u128] = ACTIONS(2125), + [anon_sym_i128] = ACTIONS(2125), + [anon_sym_isize] = ACTIONS(2125), + [anon_sym_usize] = ACTIONS(2125), + [anon_sym_f32] = ACTIONS(2125), + [anon_sym_f64] = ACTIONS(2125), + [anon_sym_bool] = ACTIONS(2125), + [anon_sym_str] = ACTIONS(2125), + [anon_sym_char] = ACTIONS(2125), + [anon_sym_DASH] = ACTIONS(2123), + [anon_sym_BANG] = ACTIONS(2123), + [anon_sym_AMP] = ACTIONS(2123), + [anon_sym_PIPE] = ACTIONS(2123), + [anon_sym_LT] = ACTIONS(2123), + [anon_sym_DOT_DOT] = ACTIONS(2123), + [anon_sym_COLON_COLON] = ACTIONS(2123), + [anon_sym_POUND] = ACTIONS(2123), + [anon_sym_SQUOTE] = ACTIONS(2125), + [anon_sym_async] = ACTIONS(2125), + [anon_sym_break] = ACTIONS(2125), + [anon_sym_const] = ACTIONS(2125), + [anon_sym_continue] = ACTIONS(2125), + [anon_sym_default] = ACTIONS(2125), + [anon_sym_enum] = ACTIONS(2125), + [anon_sym_fn] = ACTIONS(2125), + [anon_sym_for] = ACTIONS(2125), + [anon_sym_gen] = ACTIONS(2125), + [anon_sym_if] = ACTIONS(2125), + [anon_sym_impl] = ACTIONS(2125), + [anon_sym_let] = ACTIONS(2125), + [anon_sym_loop] = ACTIONS(2125), + [anon_sym_match] = ACTIONS(2125), + [anon_sym_mod] = ACTIONS(2125), + [anon_sym_pub] = ACTIONS(2125), + [anon_sym_return] = ACTIONS(2125), + [anon_sym_static] = ACTIONS(2125), + [anon_sym_struct] = ACTIONS(2125), + [anon_sym_trait] = ACTIONS(2125), + [anon_sym_type] = ACTIONS(2125), + [anon_sym_union] = ACTIONS(2125), + [anon_sym_unsafe] = ACTIONS(2125), + [anon_sym_use] = ACTIONS(2125), + [anon_sym_while] = ACTIONS(2125), + [anon_sym_extern] = ACTIONS(2125), + [anon_sym_safe] = ACTIONS(2125), + [anon_sym_yield] = ACTIONS(2125), + [anon_sym_move] = ACTIONS(2125), + [anon_sym_try] = ACTIONS(2125), + [sym_integer_literal] = ACTIONS(2123), + [aux_sym_string_literal_token1] = ACTIONS(2123), + [sym_char_literal] = ACTIONS(2123), + [anon_sym_true] = ACTIONS(2125), + [anon_sym_false] = ACTIONS(2125), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2125), + [sym_super] = ACTIONS(2125), + [sym_crate] = ACTIONS(2125), + [sym_metavariable] = ACTIONS(2123), + [sym__raw_string_literal_start] = ACTIONS(2123), + [sym_float_literal] = ACTIONS(2123), + }, + [STATE(575)] = { + [sym_line_comment] = STATE(575), + [sym_block_comment] = STATE(575), + [ts_builtin_sym_end] = ACTIONS(2127), + [sym_identifier] = ACTIONS(2129), + [anon_sym_SEMI] = ACTIONS(2127), + [anon_sym_macro_rules_BANG] = ACTIONS(2127), + [anon_sym_LPAREN] = ACTIONS(2127), + [anon_sym_LBRACK] = ACTIONS(2127), + [anon_sym_LBRACE] = ACTIONS(2127), + [anon_sym_RBRACE] = ACTIONS(2127), + [anon_sym_STAR] = ACTIONS(2127), + [anon_sym_u8] = ACTIONS(2129), + [anon_sym_i8] = ACTIONS(2129), + [anon_sym_u16] = ACTIONS(2129), + [anon_sym_i16] = ACTIONS(2129), + [anon_sym_u32] = ACTIONS(2129), + [anon_sym_i32] = ACTIONS(2129), + [anon_sym_u64] = ACTIONS(2129), + [anon_sym_i64] = ACTIONS(2129), + [anon_sym_u128] = ACTIONS(2129), + [anon_sym_i128] = ACTIONS(2129), + [anon_sym_isize] = ACTIONS(2129), + [anon_sym_usize] = ACTIONS(2129), + [anon_sym_f32] = ACTIONS(2129), + [anon_sym_f64] = ACTIONS(2129), + [anon_sym_bool] = ACTIONS(2129), + [anon_sym_str] = ACTIONS(2129), + [anon_sym_char] = ACTIONS(2129), + [anon_sym_DASH] = ACTIONS(2127), + [anon_sym_BANG] = ACTIONS(2127), + [anon_sym_AMP] = ACTIONS(2127), + [anon_sym_PIPE] = ACTIONS(2127), + [anon_sym_LT] = ACTIONS(2127), + [anon_sym_DOT_DOT] = ACTIONS(2127), + [anon_sym_COLON_COLON] = ACTIONS(2127), + [anon_sym_POUND] = ACTIONS(2127), + [anon_sym_SQUOTE] = ACTIONS(2129), + [anon_sym_async] = ACTIONS(2129), + [anon_sym_break] = ACTIONS(2129), + [anon_sym_const] = ACTIONS(2129), + [anon_sym_continue] = ACTIONS(2129), + [anon_sym_default] = ACTIONS(2129), + [anon_sym_enum] = ACTIONS(2129), + [anon_sym_fn] = ACTIONS(2129), + [anon_sym_for] = ACTIONS(2129), + [anon_sym_gen] = ACTIONS(2129), + [anon_sym_if] = ACTIONS(2129), + [anon_sym_impl] = ACTIONS(2129), + [anon_sym_let] = ACTIONS(2129), + [anon_sym_loop] = ACTIONS(2129), + [anon_sym_match] = ACTIONS(2129), + [anon_sym_mod] = ACTIONS(2129), + [anon_sym_pub] = ACTIONS(2129), + [anon_sym_return] = ACTIONS(2129), + [anon_sym_static] = ACTIONS(2129), + [anon_sym_struct] = ACTIONS(2129), + [anon_sym_trait] = ACTIONS(2129), + [anon_sym_type] = ACTIONS(2129), + [anon_sym_union] = ACTIONS(2129), + [anon_sym_unsafe] = ACTIONS(2129), + [anon_sym_use] = ACTIONS(2129), + [anon_sym_while] = ACTIONS(2129), + [anon_sym_extern] = ACTIONS(2129), + [anon_sym_safe] = ACTIONS(2129), + [anon_sym_yield] = ACTIONS(2129), + [anon_sym_move] = ACTIONS(2129), + [anon_sym_try] = ACTIONS(2129), + [sym_integer_literal] = ACTIONS(2127), + [aux_sym_string_literal_token1] = ACTIONS(2127), + [sym_char_literal] = ACTIONS(2127), + [anon_sym_true] = ACTIONS(2129), + [anon_sym_false] = ACTIONS(2129), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2129), + [sym_super] = ACTIONS(2129), + [sym_crate] = ACTIONS(2129), + [sym_metavariable] = ACTIONS(2127), + [sym__raw_string_literal_start] = ACTIONS(2127), + [sym_float_literal] = ACTIONS(2127), + }, + [STATE(576)] = { + [sym_line_comment] = STATE(576), + [sym_block_comment] = STATE(576), + [ts_builtin_sym_end] = ACTIONS(2131), + [sym_identifier] = ACTIONS(2133), + [anon_sym_SEMI] = ACTIONS(2131), + [anon_sym_macro_rules_BANG] = ACTIONS(2131), + [anon_sym_LPAREN] = ACTIONS(2131), + [anon_sym_LBRACK] = ACTIONS(2131), + [anon_sym_LBRACE] = ACTIONS(2131), + [anon_sym_RBRACE] = ACTIONS(2131), + [anon_sym_STAR] = ACTIONS(2131), + [anon_sym_u8] = ACTIONS(2133), + [anon_sym_i8] = ACTIONS(2133), + [anon_sym_u16] = ACTIONS(2133), + [anon_sym_i16] = ACTIONS(2133), + [anon_sym_u32] = ACTIONS(2133), + [anon_sym_i32] = ACTIONS(2133), + [anon_sym_u64] = ACTIONS(2133), + [anon_sym_i64] = ACTIONS(2133), + [anon_sym_u128] = ACTIONS(2133), + [anon_sym_i128] = ACTIONS(2133), + [anon_sym_isize] = ACTIONS(2133), + [anon_sym_usize] = ACTIONS(2133), + [anon_sym_f32] = ACTIONS(2133), + [anon_sym_f64] = ACTIONS(2133), + [anon_sym_bool] = ACTIONS(2133), + [anon_sym_str] = ACTIONS(2133), + [anon_sym_char] = ACTIONS(2133), + [anon_sym_DASH] = ACTIONS(2131), + [anon_sym_BANG] = ACTIONS(2131), + [anon_sym_AMP] = ACTIONS(2131), + [anon_sym_PIPE] = ACTIONS(2131), + [anon_sym_LT] = ACTIONS(2131), + [anon_sym_DOT_DOT] = ACTIONS(2131), + [anon_sym_COLON_COLON] = ACTIONS(2131), + [anon_sym_POUND] = ACTIONS(2131), + [anon_sym_SQUOTE] = ACTIONS(2133), + [anon_sym_async] = ACTIONS(2133), + [anon_sym_break] = ACTIONS(2133), + [anon_sym_const] = ACTIONS(2133), + [anon_sym_continue] = ACTIONS(2133), + [anon_sym_default] = ACTIONS(2133), + [anon_sym_enum] = ACTIONS(2133), + [anon_sym_fn] = ACTIONS(2133), + [anon_sym_for] = ACTIONS(2133), + [anon_sym_gen] = ACTIONS(2133), + [anon_sym_if] = ACTIONS(2133), + [anon_sym_impl] = ACTIONS(2133), + [anon_sym_let] = ACTIONS(2133), + [anon_sym_loop] = ACTIONS(2133), + [anon_sym_match] = ACTIONS(2133), + [anon_sym_mod] = ACTIONS(2133), + [anon_sym_pub] = ACTIONS(2133), + [anon_sym_return] = ACTIONS(2133), + [anon_sym_static] = ACTIONS(2133), + [anon_sym_struct] = ACTIONS(2133), + [anon_sym_trait] = ACTIONS(2133), + [anon_sym_type] = ACTIONS(2133), + [anon_sym_union] = ACTIONS(2133), + [anon_sym_unsafe] = ACTIONS(2133), + [anon_sym_use] = ACTIONS(2133), + [anon_sym_while] = ACTIONS(2133), + [anon_sym_extern] = ACTIONS(2133), + [anon_sym_safe] = ACTIONS(2133), + [anon_sym_yield] = ACTIONS(2133), + [anon_sym_move] = ACTIONS(2133), + [anon_sym_try] = ACTIONS(2133), + [sym_integer_literal] = ACTIONS(2131), + [aux_sym_string_literal_token1] = ACTIONS(2131), + [sym_char_literal] = ACTIONS(2131), + [anon_sym_true] = ACTIONS(2133), + [anon_sym_false] = ACTIONS(2133), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2133), + [sym_super] = ACTIONS(2133), + [sym_crate] = ACTIONS(2133), + [sym_metavariable] = ACTIONS(2131), + [sym__raw_string_literal_start] = ACTIONS(2131), + [sym_float_literal] = ACTIONS(2131), + }, + [STATE(577)] = { + [sym_line_comment] = STATE(577), + [sym_block_comment] = STATE(577), + [ts_builtin_sym_end] = ACTIONS(2135), + [sym_identifier] = ACTIONS(2137), + [anon_sym_SEMI] = ACTIONS(2135), + [anon_sym_macro_rules_BANG] = ACTIONS(2135), + [anon_sym_LPAREN] = ACTIONS(2135), + [anon_sym_LBRACK] = ACTIONS(2135), + [anon_sym_LBRACE] = ACTIONS(2135), + [anon_sym_RBRACE] = ACTIONS(2135), + [anon_sym_STAR] = ACTIONS(2135), + [anon_sym_u8] = ACTIONS(2137), + [anon_sym_i8] = ACTIONS(2137), + [anon_sym_u16] = ACTIONS(2137), + [anon_sym_i16] = ACTIONS(2137), + [anon_sym_u32] = ACTIONS(2137), + [anon_sym_i32] = ACTIONS(2137), + [anon_sym_u64] = ACTIONS(2137), + [anon_sym_i64] = ACTIONS(2137), + [anon_sym_u128] = ACTIONS(2137), + [anon_sym_i128] = ACTIONS(2137), + [anon_sym_isize] = ACTIONS(2137), + [anon_sym_usize] = ACTIONS(2137), + [anon_sym_f32] = ACTIONS(2137), + [anon_sym_f64] = ACTIONS(2137), + [anon_sym_bool] = ACTIONS(2137), + [anon_sym_str] = ACTIONS(2137), + [anon_sym_char] = ACTIONS(2137), + [anon_sym_DASH] = ACTIONS(2135), + [anon_sym_BANG] = ACTIONS(2135), + [anon_sym_AMP] = ACTIONS(2135), + [anon_sym_PIPE] = ACTIONS(2135), + [anon_sym_LT] = ACTIONS(2135), + [anon_sym_DOT_DOT] = ACTIONS(2135), + [anon_sym_COLON_COLON] = ACTIONS(2135), + [anon_sym_POUND] = ACTIONS(2135), + [anon_sym_SQUOTE] = ACTIONS(2137), + [anon_sym_async] = ACTIONS(2137), + [anon_sym_break] = ACTIONS(2137), + [anon_sym_const] = ACTIONS(2137), + [anon_sym_continue] = ACTIONS(2137), + [anon_sym_default] = ACTIONS(2137), + [anon_sym_enum] = ACTIONS(2137), + [anon_sym_fn] = ACTIONS(2137), + [anon_sym_for] = ACTIONS(2137), + [anon_sym_gen] = ACTIONS(2137), + [anon_sym_if] = ACTIONS(2137), + [anon_sym_impl] = ACTIONS(2137), + [anon_sym_let] = ACTIONS(2137), + [anon_sym_loop] = ACTIONS(2137), + [anon_sym_match] = ACTIONS(2137), + [anon_sym_mod] = ACTIONS(2137), + [anon_sym_pub] = ACTIONS(2137), + [anon_sym_return] = ACTIONS(2137), + [anon_sym_static] = ACTIONS(2137), + [anon_sym_struct] = ACTIONS(2137), + [anon_sym_trait] = ACTIONS(2137), + [anon_sym_type] = ACTIONS(2137), + [anon_sym_union] = ACTIONS(2137), + [anon_sym_unsafe] = ACTIONS(2137), + [anon_sym_use] = ACTIONS(2137), + [anon_sym_while] = ACTIONS(2137), + [anon_sym_extern] = ACTIONS(2137), + [anon_sym_safe] = ACTIONS(2137), + [anon_sym_yield] = ACTIONS(2137), + [anon_sym_move] = ACTIONS(2137), + [anon_sym_try] = ACTIONS(2137), + [sym_integer_literal] = ACTIONS(2135), + [aux_sym_string_literal_token1] = ACTIONS(2135), + [sym_char_literal] = ACTIONS(2135), + [anon_sym_true] = ACTIONS(2137), + [anon_sym_false] = ACTIONS(2137), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2137), + [sym_super] = ACTIONS(2137), + [sym_crate] = ACTIONS(2137), + [sym_metavariable] = ACTIONS(2135), + [sym__raw_string_literal_start] = ACTIONS(2135), + [sym_float_literal] = ACTIONS(2135), + }, + [STATE(578)] = { + [sym_bracketed_type] = STATE(3756), + [sym_generic_type] = STATE(3622), + [sym_generic_type_with_turbofish] = STATE(3514), + [sym_macro_invocation] = STATE(2197), + [sym_scoped_identifier] = STATE(2056), + [sym_scoped_type_identifier] = STATE(2926), + [sym_const_block] = STATE(2197), + [sym_closure_expression] = STATE(3473), + [sym_closure_parameters] = STATE(221), + [sym__pattern] = STATE(3188), + [sym_generic_pattern] = STATE(2197), + [sym_tuple_pattern] = STATE(2197), + [sym_slice_pattern] = STATE(2197), + [sym_tuple_struct_pattern] = STATE(2197), + [sym_struct_pattern] = STATE(2197), + [sym_remaining_field_pattern] = STATE(2197), + [sym_mut_pattern] = STATE(2197), + [sym_range_pattern] = STATE(2197), + [sym_ref_pattern] = STATE(2197), + [sym_captured_pattern] = STATE(2197), + [sym_reference_pattern] = STATE(2197), + [sym_or_pattern] = STATE(2197), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2129), + [sym_string_literal] = STATE(2129), + [sym_raw_string_literal] = STATE(2129), + [sym_boolean_literal] = STATE(2129), + [sym_line_comment] = STATE(578), + [sym_block_comment] = STATE(578), + [sym_identifier] = ACTIONS(1730), + [anon_sym_LPAREN] = ACTIONS(1732), + [anon_sym_RPAREN] = ACTIONS(2139), + [anon_sym_LBRACK] = ACTIONS(1736), + [anon_sym_u8] = ACTIONS(1738), + [anon_sym_i8] = ACTIONS(1738), + [anon_sym_u16] = ACTIONS(1738), + [anon_sym_i16] = ACTIONS(1738), + [anon_sym_u32] = ACTIONS(1738), + [anon_sym_i32] = ACTIONS(1738), + [anon_sym_u64] = ACTIONS(1738), + [anon_sym_i64] = ACTIONS(1738), + [anon_sym_u128] = ACTIONS(1738), + [anon_sym_i128] = ACTIONS(1738), + [anon_sym_isize] = ACTIONS(1738), + [anon_sym_usize] = ACTIONS(1738), + [anon_sym_f32] = ACTIONS(1738), + [anon_sym_f64] = ACTIONS(1738), + [anon_sym_bool] = ACTIONS(1738), + [anon_sym_str] = ACTIONS(1738), + [anon_sym_char] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1064), + [anon_sym_AMP] = ACTIONS(1740), + [anon_sym_PIPE] = ACTIONS(1390), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1392), + [anon_sym_DOT_DOT] = ACTIONS(1074), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1078), + [anon_sym_COLON_COLON] = ACTIONS(1744), + [anon_sym_async] = ACTIONS(1746), + [anon_sym_const] = ACTIONS(1748), + [anon_sym_default] = ACTIONS(1750), + [anon_sym_gen] = ACTIONS(1750), + [anon_sym_static] = ACTIONS(1398), + [anon_sym_union] = ACTIONS(1750), + [anon_sym_ref] = ACTIONS(1106), + [sym_mutable_specifier] = ACTIONS(1400), + [anon_sym_move] = ACTIONS(1402), + [sym_integer_literal] = ACTIONS(1112), + [aux_sym_string_literal_token1] = ACTIONS(1114), + [sym_char_literal] = ACTIONS(1112), + [anon_sym_true] = ACTIONS(1116), + [anon_sym_false] = ACTIONS(1116), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1752), + [sym_super] = ACTIONS(1752), + [sym_crate] = ACTIONS(1752), + [sym_metavariable] = ACTIONS(1754), + [sym__raw_string_literal_start] = ACTIONS(1124), + [sym_float_literal] = ACTIONS(1112), + }, + [STATE(579)] = { + [sym_line_comment] = STATE(579), + [sym_block_comment] = STATE(579), + [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(580)] = { + [sym_empty_statement] = STATE(1308), + [sym_macro_definition] = STATE(1308), + [sym_attribute_item] = STATE(1308), + [sym_inner_attribute_item] = STATE(1308), + [sym_mod_item] = STATE(1308), + [sym_foreign_mod_item] = STATE(1308), + [sym_struct_item] = STATE(1308), + [sym_union_item] = STATE(1308), + [sym_enum_item] = STATE(1308), + [sym_extern_crate_declaration] = STATE(1308), + [sym_const_item] = STATE(1308), + [sym_static_item] = STATE(1308), + [sym_type_item] = STATE(1308), + [sym_function_item] = STATE(1308), + [sym_function_signature_item] = STATE(1308), + [sym_function_modifiers] = STATE(3814), + [aux_sym__item_modifiers] = STATE(2286), + [sym_impl_item] = STATE(1308), + [sym_trait_item] = STATE(1308), + [sym_associated_type] = STATE(1308), + [sym_let_declaration] = STATE(1308), + [sym_use_declaration] = STATE(1308), + [sym_extern_modifier] = STATE(2646), + [sym_visibility_modifier] = STATE(2028), + [sym_bracketed_type] = STATE(3790), + [sym_generic_type_with_turbofish] = STATE(3839), + [sym_macro_invocation] = STATE(1308), + [sym_scoped_identifier] = STATE(3324), + [sym_line_comment] = STATE(580), + [sym_block_comment] = STATE(580), + [aux_sym_declaration_list_repeat1] = STATE(580), + [sym_identifier] = ACTIONS(2145), + [anon_sym_SEMI] = ACTIONS(2148), + [anon_sym_macro_rules_BANG] = ACTIONS(2151), + [anon_sym_RBRACE] = 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_LT] = ACTIONS(2159), + [anon_sym_COLON_COLON] = ACTIONS(2162), + [anon_sym_POUND] = ACTIONS(2165), + [anon_sym_async] = ACTIONS(2168), + [anon_sym_const] = ACTIONS(2171), + [anon_sym_default] = ACTIONS(2174), + [anon_sym_enum] = ACTIONS(2177), + [anon_sym_fn] = ACTIONS(2180), + [anon_sym_gen] = ACTIONS(2183), + [anon_sym_impl] = ACTIONS(2186), + [anon_sym_let] = ACTIONS(2189), + [anon_sym_mod] = ACTIONS(2192), + [anon_sym_pub] = ACTIONS(2195), + [anon_sym_static] = ACTIONS(2198), + [anon_sym_struct] = ACTIONS(2201), + [anon_sym_trait] = ACTIONS(2204), + [anon_sym_type] = ACTIONS(2207), + [anon_sym_union] = ACTIONS(2210), + [anon_sym_unsafe] = ACTIONS(2213), + [anon_sym_use] = ACTIONS(2216), + [anon_sym_extern] = ACTIONS(2219), + [anon_sym_safe] = ACTIONS(2222), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2225), + [sym_super] = ACTIONS(2225), + [sym_crate] = ACTIONS(2228), + [sym_metavariable] = ACTIONS(2231), + }, + [STATE(581)] = { + [sym_line_comment] = STATE(581), + [sym_block_comment] = STATE(581), [ts_builtin_sym_end] = ACTIONS(2234), [sym_identifier] = ACTIONS(2236), [anon_sym_SEMI] = ACTIONS(2234), @@ -78055,6 +79304,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(2236), [anon_sym_while] = ACTIONS(2236), [anon_sym_extern] = ACTIONS(2236), + [anon_sym_safe] = ACTIONS(2236), [anon_sym_yield] = ACTIONS(2236), [anon_sym_move] = ACTIONS(2236), [anon_sym_try] = ACTIONS(2236), @@ -78063,8 +79313,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), [sym_self] = ACTIONS(2236), [sym_super] = ACTIONS(2236), [sym_crate] = ACTIONS(2236), @@ -78072,9 +79322,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2234), [sym_float_literal] = ACTIONS(2234), }, - [STATE(571)] = { - [sym_line_comment] = STATE(571), - [sym_block_comment] = STATE(571), + [STATE(582)] = { + [sym_line_comment] = STATE(582), + [sym_block_comment] = STATE(582), [ts_builtin_sym_end] = ACTIONS(2238), [sym_identifier] = ACTIONS(2240), [anon_sym_SEMI] = ACTIONS(2238), @@ -78136,6 +79386,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(2240), [anon_sym_while] = ACTIONS(2240), [anon_sym_extern] = ACTIONS(2240), + [anon_sym_safe] = ACTIONS(2240), [anon_sym_yield] = ACTIONS(2240), [anon_sym_move] = ACTIONS(2240), [anon_sym_try] = ACTIONS(2240), @@ -78144,8 +79395,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), [sym_self] = ACTIONS(2240), [sym_super] = ACTIONS(2240), [sym_crate] = ACTIONS(2240), @@ -78153,9 +79404,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2238), [sym_float_literal] = ACTIONS(2238), }, - [STATE(572)] = { - [sym_line_comment] = STATE(572), - [sym_block_comment] = STATE(572), + [STATE(583)] = { + [sym_line_comment] = STATE(583), + [sym_block_comment] = STATE(583), [ts_builtin_sym_end] = ACTIONS(2242), [sym_identifier] = ACTIONS(2244), [anon_sym_SEMI] = ACTIONS(2242), @@ -78217,6 +79468,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(2244), [anon_sym_while] = ACTIONS(2244), [anon_sym_extern] = ACTIONS(2244), + [anon_sym_safe] = ACTIONS(2244), [anon_sym_yield] = ACTIONS(2244), [anon_sym_move] = ACTIONS(2244), [anon_sym_try] = ACTIONS(2244), @@ -78225,8 +79477,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), [sym_self] = ACTIONS(2244), [sym_super] = ACTIONS(2244), [sym_crate] = ACTIONS(2244), @@ -78234,9 +79486,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2242), [sym_float_literal] = ACTIONS(2242), }, - [STATE(573)] = { - [sym_line_comment] = STATE(573), - [sym_block_comment] = STATE(573), + [STATE(584)] = { + [sym_line_comment] = STATE(584), + [sym_block_comment] = STATE(584), [ts_builtin_sym_end] = ACTIONS(2246), [sym_identifier] = ACTIONS(2248), [anon_sym_SEMI] = ACTIONS(2246), @@ -78298,6 +79550,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(2248), [anon_sym_while] = ACTIONS(2248), [anon_sym_extern] = ACTIONS(2248), + [anon_sym_safe] = ACTIONS(2248), [anon_sym_yield] = ACTIONS(2248), [anon_sym_move] = ACTIONS(2248), [anon_sym_try] = ACTIONS(2248), @@ -78306,8 +79559,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), [sym_self] = ACTIONS(2248), [sym_super] = ACTIONS(2248), [sym_crate] = ACTIONS(2248), @@ -78315,9 +79568,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2246), [sym_float_literal] = ACTIONS(2246), }, - [STATE(574)] = { - [sym_line_comment] = STATE(574), - [sym_block_comment] = STATE(574), + [STATE(585)] = { + [sym_line_comment] = STATE(585), + [sym_block_comment] = STATE(585), [ts_builtin_sym_end] = ACTIONS(2250), [sym_identifier] = ACTIONS(2252), [anon_sym_SEMI] = ACTIONS(2250), @@ -78379,6 +79632,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(2252), [anon_sym_while] = ACTIONS(2252), [anon_sym_extern] = ACTIONS(2252), + [anon_sym_safe] = ACTIONS(2252), [anon_sym_yield] = ACTIONS(2252), [anon_sym_move] = ACTIONS(2252), [anon_sym_try] = ACTIONS(2252), @@ -78387,8 +79641,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), [sym_self] = ACTIONS(2252), [sym_super] = ACTIONS(2252), [sym_crate] = ACTIONS(2252), @@ -78396,9 +79650,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2250), [sym_float_literal] = ACTIONS(2250), }, - [STATE(575)] = { - [sym_line_comment] = STATE(575), - [sym_block_comment] = STATE(575), + [STATE(586)] = { + [sym_line_comment] = STATE(586), + [sym_block_comment] = STATE(586), [ts_builtin_sym_end] = ACTIONS(2254), [sym_identifier] = ACTIONS(2256), [anon_sym_SEMI] = ACTIONS(2254), @@ -78460,6 +79714,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(2256), [anon_sym_while] = ACTIONS(2256), [anon_sym_extern] = ACTIONS(2256), + [anon_sym_safe] = ACTIONS(2256), [anon_sym_yield] = ACTIONS(2256), [anon_sym_move] = ACTIONS(2256), [anon_sym_try] = ACTIONS(2256), @@ -78468,8 +79723,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), [sym_self] = ACTIONS(2256), [sym_super] = ACTIONS(2256), [sym_crate] = ACTIONS(2256), @@ -78477,9 +79732,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2254), [sym_float_literal] = ACTIONS(2254), }, - [STATE(576)] = { - [sym_line_comment] = STATE(576), - [sym_block_comment] = STATE(576), + [STATE(587)] = { + [sym_line_comment] = STATE(587), + [sym_block_comment] = STATE(587), [ts_builtin_sym_end] = ACTIONS(2258), [sym_identifier] = ACTIONS(2260), [anon_sym_SEMI] = ACTIONS(2258), @@ -78541,6 +79796,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(2260), [anon_sym_while] = ACTIONS(2260), [anon_sym_extern] = ACTIONS(2260), + [anon_sym_safe] = ACTIONS(2260), [anon_sym_yield] = ACTIONS(2260), [anon_sym_move] = ACTIONS(2260), [anon_sym_try] = ACTIONS(2260), @@ -78549,8 +79805,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), [sym_self] = ACTIONS(2260), [sym_super] = ACTIONS(2260), [sym_crate] = ACTIONS(2260), @@ -78558,9 +79814,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2258), [sym_float_literal] = ACTIONS(2258), }, - [STATE(577)] = { - [sym_line_comment] = STATE(577), - [sym_block_comment] = STATE(577), + [STATE(588)] = { + [sym_line_comment] = STATE(588), + [sym_block_comment] = STATE(588), [ts_builtin_sym_end] = ACTIONS(2262), [sym_identifier] = ACTIONS(2264), [anon_sym_SEMI] = ACTIONS(2262), @@ -78622,6 +79878,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(2264), [anon_sym_while] = ACTIONS(2264), [anon_sym_extern] = ACTIONS(2264), + [anon_sym_safe] = ACTIONS(2264), [anon_sym_yield] = ACTIONS(2264), [anon_sym_move] = ACTIONS(2264), [anon_sym_try] = ACTIONS(2264), @@ -78630,8 +79887,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), [sym_self] = ACTIONS(2264), [sym_super] = ACTIONS(2264), [sym_crate] = ACTIONS(2264), @@ -78639,9 +79896,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2262), [sym_float_literal] = ACTIONS(2262), }, - [STATE(578)] = { - [sym_line_comment] = STATE(578), - [sym_block_comment] = STATE(578), + [STATE(589)] = { + [sym_line_comment] = STATE(589), + [sym_block_comment] = STATE(589), [ts_builtin_sym_end] = ACTIONS(2266), [sym_identifier] = ACTIONS(2268), [anon_sym_SEMI] = ACTIONS(2266), @@ -78703,6 +79960,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(2268), [anon_sym_while] = ACTIONS(2268), [anon_sym_extern] = ACTIONS(2268), + [anon_sym_safe] = ACTIONS(2268), [anon_sym_yield] = ACTIONS(2268), [anon_sym_move] = ACTIONS(2268), [anon_sym_try] = ACTIONS(2268), @@ -78711,8 +79969,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), [sym_self] = ACTIONS(2268), [sym_super] = ACTIONS(2268), [sym_crate] = ACTIONS(2268), @@ -78720,9 +79978,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2266), [sym_float_literal] = ACTIONS(2266), }, - [STATE(579)] = { - [sym_line_comment] = STATE(579), - [sym_block_comment] = STATE(579), + [STATE(590)] = { + [sym_line_comment] = STATE(590), + [sym_block_comment] = STATE(590), [ts_builtin_sym_end] = ACTIONS(2270), [sym_identifier] = ACTIONS(2272), [anon_sym_SEMI] = ACTIONS(2270), @@ -78784,6 +80042,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(2272), [anon_sym_while] = ACTIONS(2272), [anon_sym_extern] = ACTIONS(2272), + [anon_sym_safe] = ACTIONS(2272), [anon_sym_yield] = ACTIONS(2272), [anon_sym_move] = ACTIONS(2272), [anon_sym_try] = ACTIONS(2272), @@ -78792,8 +80051,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), [sym_self] = ACTIONS(2272), [sym_super] = ACTIONS(2272), [sym_crate] = ACTIONS(2272), @@ -78801,9 +80060,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2270), [sym_float_literal] = ACTIONS(2270), }, - [STATE(580)] = { - [sym_line_comment] = STATE(580), - [sym_block_comment] = STATE(580), + [STATE(591)] = { + [sym_line_comment] = STATE(591), + [sym_block_comment] = STATE(591), [ts_builtin_sym_end] = ACTIONS(2274), [sym_identifier] = ACTIONS(2276), [anon_sym_SEMI] = ACTIONS(2274), @@ -78865,6 +80124,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(2276), [anon_sym_while] = ACTIONS(2276), [anon_sym_extern] = ACTIONS(2276), + [anon_sym_safe] = ACTIONS(2276), [anon_sym_yield] = ACTIONS(2276), [anon_sym_move] = ACTIONS(2276), [anon_sym_try] = ACTIONS(2276), @@ -78873,8 +80133,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), [sym_self] = ACTIONS(2276), [sym_super] = ACTIONS(2276), [sym_crate] = ACTIONS(2276), @@ -78882,9 +80142,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2274), [sym_float_literal] = ACTIONS(2274), }, - [STATE(581)] = { - [sym_line_comment] = STATE(581), - [sym_block_comment] = STATE(581), + [STATE(592)] = { + [sym_line_comment] = STATE(592), + [sym_block_comment] = STATE(592), [ts_builtin_sym_end] = ACTIONS(2278), [sym_identifier] = ACTIONS(2280), [anon_sym_SEMI] = ACTIONS(2278), @@ -78946,6 +80206,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(2280), [anon_sym_while] = ACTIONS(2280), [anon_sym_extern] = ACTIONS(2280), + [anon_sym_safe] = ACTIONS(2280), [anon_sym_yield] = ACTIONS(2280), [anon_sym_move] = ACTIONS(2280), [anon_sym_try] = ACTIONS(2280), @@ -78954,8 +80215,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), [sym_self] = ACTIONS(2280), [sym_super] = ACTIONS(2280), [sym_crate] = ACTIONS(2280), @@ -78963,9 +80224,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2278), [sym_float_literal] = ACTIONS(2278), }, - [STATE(582)] = { - [sym_line_comment] = STATE(582), - [sym_block_comment] = STATE(582), + [STATE(593)] = { + [sym_line_comment] = STATE(593), + [sym_block_comment] = STATE(593), [ts_builtin_sym_end] = ACTIONS(2282), [sym_identifier] = ACTIONS(2284), [anon_sym_SEMI] = ACTIONS(2282), @@ -79027,6 +80288,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(2284), [anon_sym_while] = ACTIONS(2284), [anon_sym_extern] = ACTIONS(2284), + [anon_sym_safe] = ACTIONS(2284), [anon_sym_yield] = ACTIONS(2284), [anon_sym_move] = ACTIONS(2284), [anon_sym_try] = ACTIONS(2284), @@ -79035,8 +80297,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), [sym_self] = ACTIONS(2284), [sym_super] = ACTIONS(2284), [sym_crate] = ACTIONS(2284), @@ -79044,9 +80306,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2282), [sym_float_literal] = ACTIONS(2282), }, - [STATE(583)] = { - [sym_line_comment] = STATE(583), - [sym_block_comment] = STATE(583), + [STATE(594)] = { + [sym_line_comment] = STATE(594), + [sym_block_comment] = STATE(594), [ts_builtin_sym_end] = ACTIONS(2286), [sym_identifier] = ACTIONS(2288), [anon_sym_SEMI] = ACTIONS(2286), @@ -79108,6 +80370,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(2288), [anon_sym_while] = ACTIONS(2288), [anon_sym_extern] = ACTIONS(2288), + [anon_sym_safe] = ACTIONS(2288), [anon_sym_yield] = ACTIONS(2288), [anon_sym_move] = ACTIONS(2288), [anon_sym_try] = ACTIONS(2288), @@ -79116,8 +80379,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), [sym_self] = ACTIONS(2288), [sym_super] = ACTIONS(2288), [sym_crate] = ACTIONS(2288), @@ -79125,9 +80388,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2286), [sym_float_literal] = ACTIONS(2286), }, - [STATE(584)] = { - [sym_line_comment] = STATE(584), - [sym_block_comment] = STATE(584), + [STATE(595)] = { + [sym_line_comment] = STATE(595), + [sym_block_comment] = STATE(595), [ts_builtin_sym_end] = ACTIONS(2290), [sym_identifier] = ACTIONS(2292), [anon_sym_SEMI] = ACTIONS(2290), @@ -79189,6 +80452,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(2292), [anon_sym_while] = ACTIONS(2292), [anon_sym_extern] = ACTIONS(2292), + [anon_sym_safe] = ACTIONS(2292), [anon_sym_yield] = ACTIONS(2292), [anon_sym_move] = ACTIONS(2292), [anon_sym_try] = ACTIONS(2292), @@ -79197,8 +80461,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), [sym_self] = ACTIONS(2292), [sym_super] = ACTIONS(2292), [sym_crate] = ACTIONS(2292), @@ -79206,9 +80470,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2290), [sym_float_literal] = ACTIONS(2290), }, - [STATE(585)] = { - [sym_line_comment] = STATE(585), - [sym_block_comment] = STATE(585), + [STATE(596)] = { + [sym_line_comment] = STATE(596), + [sym_block_comment] = STATE(596), [ts_builtin_sym_end] = ACTIONS(2294), [sym_identifier] = ACTIONS(2296), [anon_sym_SEMI] = ACTIONS(2294), @@ -79270,6 +80534,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(2296), [anon_sym_while] = ACTIONS(2296), [anon_sym_extern] = ACTIONS(2296), + [anon_sym_safe] = ACTIONS(2296), [anon_sym_yield] = ACTIONS(2296), [anon_sym_move] = ACTIONS(2296), [anon_sym_try] = ACTIONS(2296), @@ -79278,8 +80543,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), [sym_self] = ACTIONS(2296), [sym_super] = ACTIONS(2296), [sym_crate] = ACTIONS(2296), @@ -79287,9 +80552,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2294), [sym_float_literal] = ACTIONS(2294), }, - [STATE(586)] = { - [sym_line_comment] = STATE(586), - [sym_block_comment] = STATE(586), + [STATE(597)] = { + [sym_line_comment] = STATE(597), + [sym_block_comment] = STATE(597), [ts_builtin_sym_end] = ACTIONS(2298), [sym_identifier] = ACTIONS(2300), [anon_sym_SEMI] = ACTIONS(2298), @@ -79351,6 +80616,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(2300), [anon_sym_while] = ACTIONS(2300), [anon_sym_extern] = ACTIONS(2300), + [anon_sym_safe] = ACTIONS(2300), [anon_sym_yield] = ACTIONS(2300), [anon_sym_move] = ACTIONS(2300), [anon_sym_try] = ACTIONS(2300), @@ -79359,8 +80625,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), [sym_self] = ACTIONS(2300), [sym_super] = ACTIONS(2300), [sym_crate] = ACTIONS(2300), @@ -79368,9 +80634,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2298), [sym_float_literal] = ACTIONS(2298), }, - [STATE(587)] = { - [sym_line_comment] = STATE(587), - [sym_block_comment] = STATE(587), + [STATE(598)] = { + [sym_line_comment] = STATE(598), + [sym_block_comment] = STATE(598), [ts_builtin_sym_end] = ACTIONS(2302), [sym_identifier] = ACTIONS(2304), [anon_sym_SEMI] = ACTIONS(2302), @@ -79432,6 +80698,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(2304), [anon_sym_while] = ACTIONS(2304), [anon_sym_extern] = ACTIONS(2304), + [anon_sym_safe] = ACTIONS(2304), [anon_sym_yield] = ACTIONS(2304), [anon_sym_move] = ACTIONS(2304), [anon_sym_try] = ACTIONS(2304), @@ -79440,8 +80707,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), [sym_self] = ACTIONS(2304), [sym_super] = ACTIONS(2304), [sym_crate] = ACTIONS(2304), @@ -79449,9 +80716,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2302), [sym_float_literal] = ACTIONS(2302), }, - [STATE(588)] = { - [sym_line_comment] = STATE(588), - [sym_block_comment] = STATE(588), + [STATE(599)] = { + [sym_line_comment] = STATE(599), + [sym_block_comment] = STATE(599), [ts_builtin_sym_end] = ACTIONS(2306), [sym_identifier] = ACTIONS(2308), [anon_sym_SEMI] = ACTIONS(2306), @@ -79513,6 +80780,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(2308), [anon_sym_while] = ACTIONS(2308), [anon_sym_extern] = ACTIONS(2308), + [anon_sym_safe] = ACTIONS(2308), [anon_sym_yield] = ACTIONS(2308), [anon_sym_move] = ACTIONS(2308), [anon_sym_try] = ACTIONS(2308), @@ -79521,8 +80789,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), [sym_self] = ACTIONS(2308), [sym_super] = ACTIONS(2308), [sym_crate] = ACTIONS(2308), @@ -79530,9 +80798,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2306), [sym_float_literal] = ACTIONS(2306), }, - [STATE(589)] = { - [sym_line_comment] = STATE(589), - [sym_block_comment] = STATE(589), + [STATE(600)] = { + [sym_line_comment] = STATE(600), + [sym_block_comment] = STATE(600), [ts_builtin_sym_end] = ACTIONS(2310), [sym_identifier] = ACTIONS(2312), [anon_sym_SEMI] = ACTIONS(2310), @@ -79594,6 +80862,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(2312), [anon_sym_while] = ACTIONS(2312), [anon_sym_extern] = ACTIONS(2312), + [anon_sym_safe] = ACTIONS(2312), [anon_sym_yield] = ACTIONS(2312), [anon_sym_move] = ACTIONS(2312), [anon_sym_try] = ACTIONS(2312), @@ -79602,8 +80871,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), [sym_self] = ACTIONS(2312), [sym_super] = ACTIONS(2312), [sym_crate] = ACTIONS(2312), @@ -79611,9 +80880,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2310), [sym_float_literal] = ACTIONS(2310), }, - [STATE(590)] = { - [sym_line_comment] = STATE(590), - [sym_block_comment] = STATE(590), + [STATE(601)] = { + [sym_line_comment] = STATE(601), + [sym_block_comment] = STATE(601), [ts_builtin_sym_end] = ACTIONS(2314), [sym_identifier] = ACTIONS(2316), [anon_sym_SEMI] = ACTIONS(2314), @@ -79675,6 +80944,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(2316), [anon_sym_while] = ACTIONS(2316), [anon_sym_extern] = ACTIONS(2316), + [anon_sym_safe] = ACTIONS(2316), [anon_sym_yield] = ACTIONS(2316), [anon_sym_move] = ACTIONS(2316), [anon_sym_try] = ACTIONS(2316), @@ -79683,8 +80953,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), [sym_self] = ACTIONS(2316), [sym_super] = ACTIONS(2316), [sym_crate] = ACTIONS(2316), @@ -79692,9 +80962,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2314), [sym_float_literal] = ACTIONS(2314), }, - [STATE(591)] = { - [sym_line_comment] = STATE(591), - [sym_block_comment] = STATE(591), + [STATE(602)] = { + [sym_line_comment] = STATE(602), + [sym_block_comment] = STATE(602), [ts_builtin_sym_end] = ACTIONS(2318), [sym_identifier] = ACTIONS(2320), [anon_sym_SEMI] = ACTIONS(2318), @@ -79756,6 +81026,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(2320), [anon_sym_while] = ACTIONS(2320), [anon_sym_extern] = ACTIONS(2320), + [anon_sym_safe] = ACTIONS(2320), [anon_sym_yield] = ACTIONS(2320), [anon_sym_move] = ACTIONS(2320), [anon_sym_try] = ACTIONS(2320), @@ -79764,8 +81035,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), [sym_self] = ACTIONS(2320), [sym_super] = ACTIONS(2320), [sym_crate] = ACTIONS(2320), @@ -79773,9 +81044,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2318), [sym_float_literal] = ACTIONS(2318), }, - [STATE(592)] = { - [sym_line_comment] = STATE(592), - [sym_block_comment] = STATE(592), + [STATE(603)] = { + [sym_line_comment] = STATE(603), + [sym_block_comment] = STATE(603), [ts_builtin_sym_end] = ACTIONS(2322), [sym_identifier] = ACTIONS(2324), [anon_sym_SEMI] = ACTIONS(2322), @@ -79837,6 +81108,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(2324), [anon_sym_while] = ACTIONS(2324), [anon_sym_extern] = ACTIONS(2324), + [anon_sym_safe] = ACTIONS(2324), [anon_sym_yield] = ACTIONS(2324), [anon_sym_move] = ACTIONS(2324), [anon_sym_try] = ACTIONS(2324), @@ -79845,8 +81117,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), [sym_self] = ACTIONS(2324), [sym_super] = ACTIONS(2324), [sym_crate] = ACTIONS(2324), @@ -79854,90 +81126,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2322), [sym_float_literal] = ACTIONS(2322), }, - [STATE(593)] = { - [sym_line_comment] = STATE(593), - [sym_block_comment] = STATE(593), - [ts_builtin_sym_end] = ACTIONS(1453), - [sym_identifier] = ACTIONS(1455), - [anon_sym_SEMI] = ACTIONS(1453), - [anon_sym_macro_rules_BANG] = ACTIONS(1453), - [anon_sym_LPAREN] = ACTIONS(1453), - [anon_sym_LBRACK] = ACTIONS(1453), - [anon_sym_LBRACE] = ACTIONS(1453), - [anon_sym_RBRACE] = ACTIONS(1453), - [anon_sym_STAR] = ACTIONS(1453), - [anon_sym_u8] = ACTIONS(1455), - [anon_sym_i8] = ACTIONS(1455), - [anon_sym_u16] = ACTIONS(1455), - [anon_sym_i16] = ACTIONS(1455), - [anon_sym_u32] = ACTIONS(1455), - [anon_sym_i32] = ACTIONS(1455), - [anon_sym_u64] = ACTIONS(1455), - [anon_sym_i64] = ACTIONS(1455), - [anon_sym_u128] = ACTIONS(1455), - [anon_sym_i128] = ACTIONS(1455), - [anon_sym_isize] = ACTIONS(1455), - [anon_sym_usize] = ACTIONS(1455), - [anon_sym_f32] = ACTIONS(1455), - [anon_sym_f64] = ACTIONS(1455), - [anon_sym_bool] = ACTIONS(1455), - [anon_sym_str] = ACTIONS(1455), - [anon_sym_char] = ACTIONS(1455), - [anon_sym_DASH] = ACTIONS(1453), - [anon_sym_BANG] = ACTIONS(1453), - [anon_sym_AMP] = ACTIONS(1453), - [anon_sym_PIPE] = ACTIONS(1453), - [anon_sym_LT] = ACTIONS(1453), - [anon_sym_DOT_DOT] = ACTIONS(1453), - [anon_sym_COLON_COLON] = ACTIONS(1453), - [anon_sym_POUND] = ACTIONS(1453), - [anon_sym_SQUOTE] = ACTIONS(1455), - [anon_sym_async] = ACTIONS(1455), - [anon_sym_break] = ACTIONS(1455), - [anon_sym_const] = ACTIONS(1455), - [anon_sym_continue] = ACTIONS(1455), - [anon_sym_default] = ACTIONS(1455), - [anon_sym_enum] = ACTIONS(1455), - [anon_sym_fn] = ACTIONS(1455), - [anon_sym_for] = ACTIONS(1455), - [anon_sym_gen] = ACTIONS(1455), - [anon_sym_if] = ACTIONS(1455), - [anon_sym_impl] = ACTIONS(1455), - [anon_sym_let] = ACTIONS(1455), - [anon_sym_loop] = ACTIONS(1455), - [anon_sym_match] = ACTIONS(1455), - [anon_sym_mod] = ACTIONS(1455), - [anon_sym_pub] = ACTIONS(1455), - [anon_sym_return] = ACTIONS(1455), - [anon_sym_static] = ACTIONS(1455), - [anon_sym_struct] = ACTIONS(1455), - [anon_sym_trait] = ACTIONS(1455), - [anon_sym_type] = ACTIONS(1455), - [anon_sym_union] = ACTIONS(1455), - [anon_sym_unsafe] = ACTIONS(1455), - [anon_sym_use] = ACTIONS(1455), - [anon_sym_while] = ACTIONS(1455), - [anon_sym_extern] = ACTIONS(1455), - [anon_sym_yield] = ACTIONS(1455), - [anon_sym_move] = ACTIONS(1455), - [anon_sym_try] = ACTIONS(1455), - [sym_integer_literal] = ACTIONS(1453), - [aux_sym_string_literal_token1] = ACTIONS(1453), - [sym_char_literal] = ACTIONS(1453), - [anon_sym_true] = ACTIONS(1455), - [anon_sym_false] = ACTIONS(1455), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1455), - [sym_super] = ACTIONS(1455), - [sym_crate] = ACTIONS(1455), - [sym_metavariable] = ACTIONS(1453), - [sym__raw_string_literal_start] = ACTIONS(1453), - [sym_float_literal] = ACTIONS(1453), - }, - [STATE(594)] = { - [sym_line_comment] = STATE(594), - [sym_block_comment] = STATE(594), + [STATE(604)] = { + [sym_line_comment] = STATE(604), + [sym_block_comment] = STATE(604), [ts_builtin_sym_end] = ACTIONS(2326), [sym_identifier] = ACTIONS(2328), [anon_sym_SEMI] = ACTIONS(2326), @@ -79999,6 +81190,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(2328), [anon_sym_while] = ACTIONS(2328), [anon_sym_extern] = ACTIONS(2328), + [anon_sym_safe] = ACTIONS(2328), [anon_sym_yield] = ACTIONS(2328), [anon_sym_move] = ACTIONS(2328), [anon_sym_try] = ACTIONS(2328), @@ -80007,8 +81199,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), [sym_self] = ACTIONS(2328), [sym_super] = ACTIONS(2328), [sym_crate] = ACTIONS(2328), @@ -80016,9 +81208,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2326), [sym_float_literal] = ACTIONS(2326), }, - [STATE(595)] = { - [sym_line_comment] = STATE(595), - [sym_block_comment] = STATE(595), + [STATE(605)] = { + [sym_line_comment] = STATE(605), + [sym_block_comment] = STATE(605), [ts_builtin_sym_end] = ACTIONS(2330), [sym_identifier] = ACTIONS(2332), [anon_sym_SEMI] = ACTIONS(2330), @@ -80080,6 +81272,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(2332), [anon_sym_while] = ACTIONS(2332), [anon_sym_extern] = ACTIONS(2332), + [anon_sym_safe] = ACTIONS(2332), [anon_sym_yield] = ACTIONS(2332), [anon_sym_move] = ACTIONS(2332), [anon_sym_try] = ACTIONS(2332), @@ -80088,8 +81281,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), [sym_self] = ACTIONS(2332), [sym_super] = ACTIONS(2332), [sym_crate] = ACTIONS(2332), @@ -80097,9 +81290,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2330), [sym_float_literal] = ACTIONS(2330), }, - [STATE(596)] = { - [sym_line_comment] = STATE(596), - [sym_block_comment] = STATE(596), + [STATE(606)] = { + [sym_line_comment] = STATE(606), + [sym_block_comment] = STATE(606), [ts_builtin_sym_end] = ACTIONS(2334), [sym_identifier] = ACTIONS(2336), [anon_sym_SEMI] = ACTIONS(2334), @@ -80161,6 +81354,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(2336), [anon_sym_while] = ACTIONS(2336), [anon_sym_extern] = ACTIONS(2336), + [anon_sym_safe] = ACTIONS(2336), [anon_sym_yield] = ACTIONS(2336), [anon_sym_move] = ACTIONS(2336), [anon_sym_try] = ACTIONS(2336), @@ -80169,8 +81363,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), [sym_self] = ACTIONS(2336), [sym_super] = ACTIONS(2336), [sym_crate] = ACTIONS(2336), @@ -80178,9 +81372,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2334), [sym_float_literal] = ACTIONS(2334), }, - [STATE(597)] = { - [sym_line_comment] = STATE(597), - [sym_block_comment] = STATE(597), + [STATE(607)] = { + [sym_line_comment] = STATE(607), + [sym_block_comment] = STATE(607), [ts_builtin_sym_end] = ACTIONS(2338), [sym_identifier] = ACTIONS(2340), [anon_sym_SEMI] = ACTIONS(2338), @@ -80242,6 +81436,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(2340), [anon_sym_while] = ACTIONS(2340), [anon_sym_extern] = ACTIONS(2340), + [anon_sym_safe] = ACTIONS(2340), [anon_sym_yield] = ACTIONS(2340), [anon_sym_move] = ACTIONS(2340), [anon_sym_try] = ACTIONS(2340), @@ -80250,8 +81445,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), [sym_self] = ACTIONS(2340), [sym_super] = ACTIONS(2340), [sym_crate] = ACTIONS(2340), @@ -80259,9 +81454,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2338), [sym_float_literal] = ACTIONS(2338), }, - [STATE(598)] = { - [sym_line_comment] = STATE(598), - [sym_block_comment] = STATE(598), + [STATE(608)] = { + [sym_line_comment] = STATE(608), + [sym_block_comment] = STATE(608), [ts_builtin_sym_end] = ACTIONS(2342), [sym_identifier] = ACTIONS(2344), [anon_sym_SEMI] = ACTIONS(2342), @@ -80323,6 +81518,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(2344), [anon_sym_while] = ACTIONS(2344), [anon_sym_extern] = ACTIONS(2344), + [anon_sym_safe] = ACTIONS(2344), [anon_sym_yield] = ACTIONS(2344), [anon_sym_move] = ACTIONS(2344), [anon_sym_try] = ACTIONS(2344), @@ -80331,8 +81527,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), [sym_self] = ACTIONS(2344), [sym_super] = ACTIONS(2344), [sym_crate] = ACTIONS(2344), @@ -80340,9 +81536,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2342), [sym_float_literal] = ACTIONS(2342), }, - [STATE(599)] = { - [sym_line_comment] = STATE(599), - [sym_block_comment] = STATE(599), + [STATE(609)] = { + [sym_line_comment] = STATE(609), + [sym_block_comment] = STATE(609), [ts_builtin_sym_end] = ACTIONS(2346), [sym_identifier] = ACTIONS(2348), [anon_sym_SEMI] = ACTIONS(2346), @@ -80404,6 +81600,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(2348), [anon_sym_while] = ACTIONS(2348), [anon_sym_extern] = ACTIONS(2348), + [anon_sym_safe] = ACTIONS(2348), [anon_sym_yield] = ACTIONS(2348), [anon_sym_move] = ACTIONS(2348), [anon_sym_try] = ACTIONS(2348), @@ -80412,8 +81609,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), [sym_self] = ACTIONS(2348), [sym_super] = ACTIONS(2348), [sym_crate] = ACTIONS(2348), @@ -80421,2196 +81618,829 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2346), [sym_float_literal] = ACTIONS(2346), }, - [STATE(600)] = { - [sym_line_comment] = STATE(600), - [sym_block_comment] = STATE(600), - [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_STAR] = 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(1437), - [anon_sym_BANG] = ACTIONS(1437), - [anon_sym_AMP] = ACTIONS(1437), - [anon_sym_PIPE] = ACTIONS(1437), - [anon_sym_LT] = ACTIONS(1437), - [anon_sym_DOT_DOT] = ACTIONS(1437), - [anon_sym_COLON_COLON] = ACTIONS(1437), - [anon_sym_POUND] = ACTIONS(1437), - [anon_sym_SQUOTE] = 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), - }, - [STATE(601)] = { - [sym_line_comment] = STATE(601), - [sym_block_comment] = STATE(601), - [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), - }, - [STATE(602)] = { - [sym_line_comment] = STATE(602), - [sym_block_comment] = STATE(602), - [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), - }, - [STATE(603)] = { - [sym_line_comment] = STATE(603), - [sym_block_comment] = STATE(603), - [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), - }, - [STATE(604)] = { - [sym_line_comment] = STATE(604), - [sym_block_comment] = STATE(604), - [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), - }, - [STATE(605)] = { - [sym_line_comment] = STATE(605), - [sym_block_comment] = STATE(605), - [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), - }, - [STATE(606)] = { - [sym_line_comment] = STATE(606), - [sym_block_comment] = STATE(606), - [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), - }, - [STATE(607)] = { - [sym_line_comment] = STATE(607), - [sym_block_comment] = STATE(607), - [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(608)] = { - [sym_line_comment] = STATE(608), - [sym_block_comment] = STATE(608), - [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(609)] = { - [sym_line_comment] = STATE(609), - [sym_block_comment] = STATE(609), - [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(610)] = { [sym_line_comment] = STATE(610), [sym_block_comment] = STATE(610), - [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), + [ts_builtin_sym_end] = ACTIONS(1438), + [sym_identifier] = ACTIONS(1440), + [anon_sym_SEMI] = ACTIONS(1438), + [anon_sym_macro_rules_BANG] = ACTIONS(1438), + [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_LBRACK] = ACTIONS(1438), + [anon_sym_LBRACE] = ACTIONS(1438), + [anon_sym_RBRACE] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1438), + [anon_sym_u8] = ACTIONS(1440), + [anon_sym_i8] = ACTIONS(1440), + [anon_sym_u16] = ACTIONS(1440), + [anon_sym_i16] = ACTIONS(1440), + [anon_sym_u32] = ACTIONS(1440), + [anon_sym_i32] = ACTIONS(1440), + [anon_sym_u64] = ACTIONS(1440), + [anon_sym_i64] = ACTIONS(1440), + [anon_sym_u128] = ACTIONS(1440), + [anon_sym_i128] = ACTIONS(1440), + [anon_sym_isize] = ACTIONS(1440), + [anon_sym_usize] = ACTIONS(1440), + [anon_sym_f32] = ACTIONS(1440), + [anon_sym_f64] = ACTIONS(1440), + [anon_sym_bool] = ACTIONS(1440), + [anon_sym_str] = ACTIONS(1440), + [anon_sym_char] = ACTIONS(1440), + [anon_sym_DASH] = ACTIONS(1438), + [anon_sym_BANG] = ACTIONS(1438), + [anon_sym_AMP] = ACTIONS(1438), + [anon_sym_PIPE] = ACTIONS(1438), + [anon_sym_LT] = ACTIONS(1438), + [anon_sym_DOT_DOT] = ACTIONS(1438), + [anon_sym_COLON_COLON] = ACTIONS(1438), + [anon_sym_POUND] = ACTIONS(1438), + [anon_sym_SQUOTE] = ACTIONS(1440), + [anon_sym_async] = ACTIONS(1440), + [anon_sym_break] = ACTIONS(1440), + [anon_sym_const] = ACTIONS(1440), + [anon_sym_continue] = ACTIONS(1440), + [anon_sym_default] = ACTIONS(1440), + [anon_sym_enum] = ACTIONS(1440), + [anon_sym_fn] = ACTIONS(1440), + [anon_sym_for] = ACTIONS(1440), + [anon_sym_gen] = ACTIONS(1440), + [anon_sym_if] = ACTIONS(1440), + [anon_sym_impl] = ACTIONS(1440), + [anon_sym_let] = ACTIONS(1440), + [anon_sym_loop] = ACTIONS(1440), + [anon_sym_match] = ACTIONS(1440), + [anon_sym_mod] = ACTIONS(1440), + [anon_sym_pub] = ACTIONS(1440), + [anon_sym_return] = ACTIONS(1440), + [anon_sym_static] = ACTIONS(1440), + [anon_sym_struct] = ACTIONS(1440), + [anon_sym_trait] = ACTIONS(1440), + [anon_sym_type] = ACTIONS(1440), + [anon_sym_union] = ACTIONS(1440), + [anon_sym_unsafe] = ACTIONS(1440), + [anon_sym_use] = ACTIONS(1440), + [anon_sym_while] = ACTIONS(1440), + [anon_sym_extern] = ACTIONS(1440), + [anon_sym_safe] = ACTIONS(1440), + [anon_sym_yield] = ACTIONS(1440), + [anon_sym_move] = ACTIONS(1440), + [anon_sym_try] = ACTIONS(1440), + [sym_integer_literal] = ACTIONS(1438), + [aux_sym_string_literal_token1] = ACTIONS(1438), + [sym_char_literal] = ACTIONS(1438), + [anon_sym_true] = ACTIONS(1440), + [anon_sym_false] = ACTIONS(1440), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1440), + [sym_super] = ACTIONS(1440), + [sym_crate] = ACTIONS(1440), + [sym_metavariable] = ACTIONS(1438), + [sym__raw_string_literal_start] = ACTIONS(1438), + [sym_float_literal] = ACTIONS(1438), }, [STATE(611)] = { - [sym_bracketed_type] = STATE(3674), - [sym_generic_type] = STATE(3711), - [sym_generic_type_with_turbofish] = STATE(3231), - [sym_macro_invocation] = STATE(2221), - [sym_scoped_identifier] = STATE(2035), - [sym_scoped_type_identifier] = STATE(3055), - [sym_const_block] = STATE(2221), - [sym_closure_expression] = STATE(3249), - [sym_closure_parameters] = STATE(217), - [sym__pattern] = STATE(2952), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), + [sym_bracketed_type] = STATE(3756), + [sym_generic_type] = STATE(3622), + [sym_generic_type_with_turbofish] = STATE(3514), + [sym_macro_invocation] = STATE(2197), + [sym_scoped_identifier] = STATE(2056), + [sym_scoped_type_identifier] = STATE(2926), + [sym_const_block] = STATE(2197), + [sym_closure_expression] = STATE(3473), + [sym_closure_parameters] = STATE(221), + [sym__pattern] = STATE(3188), + [sym_generic_pattern] = STATE(2197), + [sym_tuple_pattern] = STATE(2197), + [sym_slice_pattern] = STATE(2197), + [sym_tuple_struct_pattern] = STATE(2197), + [sym_struct_pattern] = STATE(2197), + [sym_remaining_field_pattern] = STATE(2197), + [sym_mut_pattern] = STATE(2197), + [sym_range_pattern] = STATE(2197), + [sym_ref_pattern] = STATE(2197), + [sym_captured_pattern] = STATE(2197), + [sym_reference_pattern] = STATE(2197), + [sym_or_pattern] = STATE(2197), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2129), + [sym_string_literal] = STATE(2129), + [sym_raw_string_literal] = STATE(2129), + [sym_boolean_literal] = STATE(2129), [sym_line_comment] = STATE(611), [sym_block_comment] = STATE(611), - [sym_identifier] = ACTIONS(1725), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_LBRACK] = ACTIONS(1731), - [anon_sym_u8] = ACTIONS(1733), - [anon_sym_i8] = ACTIONS(1733), - [anon_sym_u16] = ACTIONS(1733), - [anon_sym_i16] = ACTIONS(1733), - [anon_sym_u32] = ACTIONS(1733), - [anon_sym_i32] = ACTIONS(1733), - [anon_sym_u64] = ACTIONS(1733), - [anon_sym_i64] = ACTIONS(1733), - [anon_sym_u128] = ACTIONS(1733), - [anon_sym_i128] = ACTIONS(1733), - [anon_sym_isize] = ACTIONS(1733), - [anon_sym_usize] = ACTIONS(1733), - [anon_sym_f32] = ACTIONS(1733), - [anon_sym_f64] = ACTIONS(1733), - [anon_sym_bool] = ACTIONS(1733), - [anon_sym_str] = ACTIONS(1733), - [anon_sym_char] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_AMP] = ACTIONS(1735), - [anon_sym_PIPE] = ACTIONS(1415), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1417), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COLON_COLON] = ACTIONS(1739), - [anon_sym_async] = ACTIONS(1741), - [anon_sym_const] = ACTIONS(1743), - [anon_sym_default] = ACTIONS(1745), - [anon_sym_gen] = ACTIONS(1745), - [anon_sym_static] = ACTIONS(1423), - [anon_sym_union] = ACTIONS(1745), - [anon_sym_ref] = ACTIONS(1159), - [sym_mutable_specifier] = ACTIONS(1425), - [anon_sym_move] = ACTIONS(1427), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1747), - [sym_super] = ACTIONS(1747), - [sym_crate] = ACTIONS(1747), - [sym_metavariable] = ACTIONS(1749), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), + [sym_identifier] = ACTIONS(1730), + [anon_sym_LPAREN] = ACTIONS(1732), + [anon_sym_RPAREN] = ACTIONS(2350), + [anon_sym_LBRACK] = ACTIONS(1736), + [anon_sym_u8] = ACTIONS(1738), + [anon_sym_i8] = ACTIONS(1738), + [anon_sym_u16] = ACTIONS(1738), + [anon_sym_i16] = ACTIONS(1738), + [anon_sym_u32] = ACTIONS(1738), + [anon_sym_i32] = ACTIONS(1738), + [anon_sym_u64] = ACTIONS(1738), + [anon_sym_i64] = ACTIONS(1738), + [anon_sym_u128] = ACTIONS(1738), + [anon_sym_i128] = ACTIONS(1738), + [anon_sym_isize] = ACTIONS(1738), + [anon_sym_usize] = ACTIONS(1738), + [anon_sym_f32] = ACTIONS(1738), + [anon_sym_f64] = ACTIONS(1738), + [anon_sym_bool] = ACTIONS(1738), + [anon_sym_str] = ACTIONS(1738), + [anon_sym_char] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1064), + [anon_sym_AMP] = ACTIONS(1740), + [anon_sym_PIPE] = ACTIONS(1390), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1392), + [anon_sym_DOT_DOT] = ACTIONS(1074), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1078), + [anon_sym_COLON_COLON] = ACTIONS(1744), + [anon_sym_async] = ACTIONS(1746), + [anon_sym_const] = ACTIONS(1748), + [anon_sym_default] = ACTIONS(1750), + [anon_sym_gen] = ACTIONS(1750), + [anon_sym_static] = ACTIONS(1398), + [anon_sym_union] = ACTIONS(1750), + [anon_sym_ref] = ACTIONS(1106), + [sym_mutable_specifier] = ACTIONS(1400), + [anon_sym_move] = ACTIONS(1402), + [sym_integer_literal] = ACTIONS(1112), + [aux_sym_string_literal_token1] = ACTIONS(1114), + [sym_char_literal] = ACTIONS(1112), + [anon_sym_true] = ACTIONS(1116), + [anon_sym_false] = ACTIONS(1116), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1752), + [sym_super] = ACTIONS(1752), + [sym_crate] = ACTIONS(1752), + [sym_metavariable] = ACTIONS(1754), + [sym__raw_string_literal_start] = ACTIONS(1124), + [sym_float_literal] = ACTIONS(1112), }, [STATE(612)] = { [sym_line_comment] = STATE(612), [sym_block_comment] = STATE(612), - [ts_builtin_sym_end] = ACTIONS(1445), - [sym_identifier] = ACTIONS(1447), - [anon_sym_SEMI] = ACTIONS(1445), - [anon_sym_macro_rules_BANG] = ACTIONS(1445), - [anon_sym_LPAREN] = ACTIONS(1445), - [anon_sym_LBRACK] = ACTIONS(1445), - [anon_sym_LBRACE] = ACTIONS(1445), - [anon_sym_RBRACE] = ACTIONS(1445), - [anon_sym_STAR] = ACTIONS(1445), - [anon_sym_u8] = ACTIONS(1447), - [anon_sym_i8] = ACTIONS(1447), - [anon_sym_u16] = ACTIONS(1447), - [anon_sym_i16] = ACTIONS(1447), - [anon_sym_u32] = ACTIONS(1447), - [anon_sym_i32] = ACTIONS(1447), - [anon_sym_u64] = ACTIONS(1447), - [anon_sym_i64] = ACTIONS(1447), - [anon_sym_u128] = ACTIONS(1447), - [anon_sym_i128] = ACTIONS(1447), - [anon_sym_isize] = ACTIONS(1447), - [anon_sym_usize] = ACTIONS(1447), - [anon_sym_f32] = ACTIONS(1447), - [anon_sym_f64] = ACTIONS(1447), - [anon_sym_bool] = ACTIONS(1447), - [anon_sym_str] = ACTIONS(1447), - [anon_sym_char] = ACTIONS(1447), - [anon_sym_DASH] = ACTIONS(1445), - [anon_sym_BANG] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(1445), - [anon_sym_PIPE] = ACTIONS(1445), - [anon_sym_LT] = ACTIONS(1445), - [anon_sym_DOT_DOT] = ACTIONS(1445), - [anon_sym_COLON_COLON] = ACTIONS(1445), - [anon_sym_POUND] = ACTIONS(1445), - [anon_sym_SQUOTE] = ACTIONS(1447), - [anon_sym_async] = ACTIONS(1447), - [anon_sym_break] = ACTIONS(1447), - [anon_sym_const] = ACTIONS(1447), - [anon_sym_continue] = ACTIONS(1447), - [anon_sym_default] = ACTIONS(1447), - [anon_sym_enum] = ACTIONS(1447), - [anon_sym_fn] = ACTIONS(1447), - [anon_sym_for] = ACTIONS(1447), - [anon_sym_gen] = ACTIONS(1447), - [anon_sym_if] = ACTIONS(1447), - [anon_sym_impl] = ACTIONS(1447), - [anon_sym_let] = ACTIONS(1447), - [anon_sym_loop] = ACTIONS(1447), - [anon_sym_match] = ACTIONS(1447), - [anon_sym_mod] = ACTIONS(1447), - [anon_sym_pub] = ACTIONS(1447), - [anon_sym_return] = ACTIONS(1447), - [anon_sym_static] = ACTIONS(1447), - [anon_sym_struct] = ACTIONS(1447), - [anon_sym_trait] = ACTIONS(1447), - [anon_sym_type] = ACTIONS(1447), - [anon_sym_union] = ACTIONS(1447), - [anon_sym_unsafe] = ACTIONS(1447), - [anon_sym_use] = ACTIONS(1447), - [anon_sym_while] = ACTIONS(1447), - [anon_sym_extern] = ACTIONS(1447), - [anon_sym_yield] = ACTIONS(1447), - [anon_sym_move] = ACTIONS(1447), - [anon_sym_try] = ACTIONS(1447), - [sym_integer_literal] = ACTIONS(1445), - [aux_sym_string_literal_token1] = ACTIONS(1445), - [sym_char_literal] = ACTIONS(1445), - [anon_sym_true] = ACTIONS(1447), - [anon_sym_false] = ACTIONS(1447), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1447), - [sym_super] = ACTIONS(1447), - [sym_crate] = ACTIONS(1447), - [sym_metavariable] = ACTIONS(1445), - [sym__raw_string_literal_start] = ACTIONS(1445), - [sym_float_literal] = ACTIONS(1445), + [ts_builtin_sym_end] = ACTIONS(2352), + [sym_identifier] = ACTIONS(2354), + [anon_sym_SEMI] = ACTIONS(2352), + [anon_sym_macro_rules_BANG] = ACTIONS(2352), + [anon_sym_LPAREN] = ACTIONS(2352), + [anon_sym_LBRACK] = ACTIONS(2352), + [anon_sym_LBRACE] = ACTIONS(2352), + [anon_sym_RBRACE] = ACTIONS(2352), + [anon_sym_STAR] = ACTIONS(2352), + [anon_sym_u8] = ACTIONS(2354), + [anon_sym_i8] = ACTIONS(2354), + [anon_sym_u16] = ACTIONS(2354), + [anon_sym_i16] = ACTIONS(2354), + [anon_sym_u32] = ACTIONS(2354), + [anon_sym_i32] = ACTIONS(2354), + [anon_sym_u64] = ACTIONS(2354), + [anon_sym_i64] = ACTIONS(2354), + [anon_sym_u128] = ACTIONS(2354), + [anon_sym_i128] = ACTIONS(2354), + [anon_sym_isize] = ACTIONS(2354), + [anon_sym_usize] = ACTIONS(2354), + [anon_sym_f32] = ACTIONS(2354), + [anon_sym_f64] = ACTIONS(2354), + [anon_sym_bool] = ACTIONS(2354), + [anon_sym_str] = ACTIONS(2354), + [anon_sym_char] = ACTIONS(2354), + [anon_sym_DASH] = ACTIONS(2352), + [anon_sym_BANG] = ACTIONS(2352), + [anon_sym_AMP] = ACTIONS(2352), + [anon_sym_PIPE] = ACTIONS(2352), + [anon_sym_LT] = ACTIONS(2352), + [anon_sym_DOT_DOT] = ACTIONS(2352), + [anon_sym_COLON_COLON] = ACTIONS(2352), + [anon_sym_POUND] = ACTIONS(2352), + [anon_sym_SQUOTE] = ACTIONS(2354), + [anon_sym_async] = ACTIONS(2354), + [anon_sym_break] = ACTIONS(2354), + [anon_sym_const] = ACTIONS(2354), + [anon_sym_continue] = ACTIONS(2354), + [anon_sym_default] = ACTIONS(2354), + [anon_sym_enum] = ACTIONS(2354), + [anon_sym_fn] = ACTIONS(2354), + [anon_sym_for] = ACTIONS(2354), + [anon_sym_gen] = ACTIONS(2354), + [anon_sym_if] = ACTIONS(2354), + [anon_sym_impl] = ACTIONS(2354), + [anon_sym_let] = ACTIONS(2354), + [anon_sym_loop] = ACTIONS(2354), + [anon_sym_match] = ACTIONS(2354), + [anon_sym_mod] = ACTIONS(2354), + [anon_sym_pub] = ACTIONS(2354), + [anon_sym_return] = ACTIONS(2354), + [anon_sym_static] = ACTIONS(2354), + [anon_sym_struct] = ACTIONS(2354), + [anon_sym_trait] = ACTIONS(2354), + [anon_sym_type] = ACTIONS(2354), + [anon_sym_union] = ACTIONS(2354), + [anon_sym_unsafe] = ACTIONS(2354), + [anon_sym_use] = ACTIONS(2354), + [anon_sym_while] = ACTIONS(2354), + [anon_sym_extern] = ACTIONS(2354), + [anon_sym_safe] = ACTIONS(2354), + [anon_sym_yield] = ACTIONS(2354), + [anon_sym_move] = ACTIONS(2354), + [anon_sym_try] = ACTIONS(2354), + [sym_integer_literal] = ACTIONS(2352), + [aux_sym_string_literal_token1] = ACTIONS(2352), + [sym_char_literal] = ACTIONS(2352), + [anon_sym_true] = ACTIONS(2354), + [anon_sym_false] = ACTIONS(2354), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2354), + [sym_super] = ACTIONS(2354), + [sym_crate] = ACTIONS(2354), + [sym_metavariable] = ACTIONS(2352), + [sym__raw_string_literal_start] = ACTIONS(2352), + [sym_float_literal] = ACTIONS(2352), }, [STATE(613)] = { [sym_line_comment] = STATE(613), [sym_block_comment] = STATE(613), - [ts_builtin_sym_end] = ACTIONS(2390), - [sym_identifier] = ACTIONS(2392), - [anon_sym_SEMI] = ACTIONS(2390), - [anon_sym_macro_rules_BANG] = ACTIONS(2390), - [anon_sym_LPAREN] = ACTIONS(2390), - [anon_sym_LBRACK] = ACTIONS(2390), - [anon_sym_LBRACE] = ACTIONS(2390), - [anon_sym_RBRACE] = ACTIONS(2390), - [anon_sym_STAR] = ACTIONS(2390), - [anon_sym_u8] = ACTIONS(2392), - [anon_sym_i8] = ACTIONS(2392), - [anon_sym_u16] = ACTIONS(2392), - [anon_sym_i16] = ACTIONS(2392), - [anon_sym_u32] = ACTIONS(2392), - [anon_sym_i32] = ACTIONS(2392), - [anon_sym_u64] = ACTIONS(2392), - [anon_sym_i64] = ACTIONS(2392), - [anon_sym_u128] = ACTIONS(2392), - [anon_sym_i128] = ACTIONS(2392), - [anon_sym_isize] = ACTIONS(2392), - [anon_sym_usize] = ACTIONS(2392), - [anon_sym_f32] = ACTIONS(2392), - [anon_sym_f64] = ACTIONS(2392), - [anon_sym_bool] = ACTIONS(2392), - [anon_sym_str] = ACTIONS(2392), - [anon_sym_char] = ACTIONS(2392), - [anon_sym_DASH] = ACTIONS(2390), - [anon_sym_BANG] = ACTIONS(2390), - [anon_sym_AMP] = ACTIONS(2390), - [anon_sym_PIPE] = ACTIONS(2390), - [anon_sym_LT] = ACTIONS(2390), - [anon_sym_DOT_DOT] = ACTIONS(2390), - [anon_sym_COLON_COLON] = ACTIONS(2390), - [anon_sym_POUND] = ACTIONS(2390), - [anon_sym_SQUOTE] = ACTIONS(2392), - [anon_sym_async] = ACTIONS(2392), - [anon_sym_break] = ACTIONS(2392), - [anon_sym_const] = ACTIONS(2392), - [anon_sym_continue] = ACTIONS(2392), - [anon_sym_default] = ACTIONS(2392), - [anon_sym_enum] = ACTIONS(2392), - [anon_sym_fn] = ACTIONS(2392), - [anon_sym_for] = ACTIONS(2392), - [anon_sym_gen] = ACTIONS(2392), - [anon_sym_if] = ACTIONS(2392), - [anon_sym_impl] = ACTIONS(2392), - [anon_sym_let] = ACTIONS(2392), - [anon_sym_loop] = ACTIONS(2392), - [anon_sym_match] = ACTIONS(2392), - [anon_sym_mod] = ACTIONS(2392), - [anon_sym_pub] = ACTIONS(2392), - [anon_sym_return] = ACTIONS(2392), - [anon_sym_static] = ACTIONS(2392), - [anon_sym_struct] = ACTIONS(2392), - [anon_sym_trait] = ACTIONS(2392), - [anon_sym_type] = ACTIONS(2392), - [anon_sym_union] = ACTIONS(2392), - [anon_sym_unsafe] = ACTIONS(2392), - [anon_sym_use] = ACTIONS(2392), - [anon_sym_while] = ACTIONS(2392), - [anon_sym_extern] = ACTIONS(2392), - [anon_sym_yield] = ACTIONS(2392), - [anon_sym_move] = ACTIONS(2392), - [anon_sym_try] = ACTIONS(2392), - [sym_integer_literal] = ACTIONS(2390), - [aux_sym_string_literal_token1] = ACTIONS(2390), - [sym_char_literal] = ACTIONS(2390), - [anon_sym_true] = ACTIONS(2392), - [anon_sym_false] = ACTIONS(2392), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2392), - [sym_super] = ACTIONS(2392), - [sym_crate] = ACTIONS(2392), - [sym_metavariable] = ACTIONS(2390), - [sym__raw_string_literal_start] = ACTIONS(2390), - [sym_float_literal] = ACTIONS(2390), + [ts_builtin_sym_end] = ACTIONS(2356), + [sym_identifier] = ACTIONS(2358), + [anon_sym_SEMI] = ACTIONS(2356), + [anon_sym_macro_rules_BANG] = ACTIONS(2356), + [anon_sym_LPAREN] = ACTIONS(2356), + [anon_sym_LBRACK] = ACTIONS(2356), + [anon_sym_LBRACE] = ACTIONS(2356), + [anon_sym_RBRACE] = ACTIONS(2356), + [anon_sym_STAR] = ACTIONS(2356), + [anon_sym_u8] = ACTIONS(2358), + [anon_sym_i8] = ACTIONS(2358), + [anon_sym_u16] = ACTIONS(2358), + [anon_sym_i16] = ACTIONS(2358), + [anon_sym_u32] = ACTIONS(2358), + [anon_sym_i32] = ACTIONS(2358), + [anon_sym_u64] = ACTIONS(2358), + [anon_sym_i64] = ACTIONS(2358), + [anon_sym_u128] = ACTIONS(2358), + [anon_sym_i128] = ACTIONS(2358), + [anon_sym_isize] = ACTIONS(2358), + [anon_sym_usize] = ACTIONS(2358), + [anon_sym_f32] = ACTIONS(2358), + [anon_sym_f64] = ACTIONS(2358), + [anon_sym_bool] = ACTIONS(2358), + [anon_sym_str] = ACTIONS(2358), + [anon_sym_char] = ACTIONS(2358), + [anon_sym_DASH] = ACTIONS(2356), + [anon_sym_BANG] = ACTIONS(2356), + [anon_sym_AMP] = ACTIONS(2356), + [anon_sym_PIPE] = ACTIONS(2356), + [anon_sym_LT] = ACTIONS(2356), + [anon_sym_DOT_DOT] = ACTIONS(2356), + [anon_sym_COLON_COLON] = ACTIONS(2356), + [anon_sym_POUND] = ACTIONS(2356), + [anon_sym_SQUOTE] = ACTIONS(2358), + [anon_sym_async] = ACTIONS(2358), + [anon_sym_break] = ACTIONS(2358), + [anon_sym_const] = ACTIONS(2358), + [anon_sym_continue] = ACTIONS(2358), + [anon_sym_default] = ACTIONS(2358), + [anon_sym_enum] = ACTIONS(2358), + [anon_sym_fn] = ACTIONS(2358), + [anon_sym_for] = ACTIONS(2358), + [anon_sym_gen] = ACTIONS(2358), + [anon_sym_if] = ACTIONS(2358), + [anon_sym_impl] = ACTIONS(2358), + [anon_sym_let] = ACTIONS(2358), + [anon_sym_loop] = ACTIONS(2358), + [anon_sym_match] = ACTIONS(2358), + [anon_sym_mod] = ACTIONS(2358), + [anon_sym_pub] = ACTIONS(2358), + [anon_sym_return] = ACTIONS(2358), + [anon_sym_static] = ACTIONS(2358), + [anon_sym_struct] = ACTIONS(2358), + [anon_sym_trait] = ACTIONS(2358), + [anon_sym_type] = ACTIONS(2358), + [anon_sym_union] = ACTIONS(2358), + [anon_sym_unsafe] = ACTIONS(2358), + [anon_sym_use] = ACTIONS(2358), + [anon_sym_while] = ACTIONS(2358), + [anon_sym_extern] = ACTIONS(2358), + [anon_sym_safe] = ACTIONS(2358), + [anon_sym_yield] = ACTIONS(2358), + [anon_sym_move] = ACTIONS(2358), + [anon_sym_try] = ACTIONS(2358), + [sym_integer_literal] = ACTIONS(2356), + [aux_sym_string_literal_token1] = ACTIONS(2356), + [sym_char_literal] = ACTIONS(2356), + [anon_sym_true] = ACTIONS(2358), + [anon_sym_false] = ACTIONS(2358), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2358), + [sym_super] = ACTIONS(2358), + [sym_crate] = ACTIONS(2358), + [sym_metavariable] = ACTIONS(2356), + [sym__raw_string_literal_start] = ACTIONS(2356), + [sym_float_literal] = ACTIONS(2356), }, [STATE(614)] = { [sym_line_comment] = STATE(614), [sym_block_comment] = STATE(614), - [ts_builtin_sym_end] = ACTIONS(1449), - [sym_identifier] = ACTIONS(1451), - [anon_sym_SEMI] = ACTIONS(1449), - [anon_sym_macro_rules_BANG] = ACTIONS(1449), - [anon_sym_LPAREN] = ACTIONS(1449), - [anon_sym_LBRACK] = ACTIONS(1449), - [anon_sym_LBRACE] = ACTIONS(1449), - [anon_sym_RBRACE] = ACTIONS(1449), - [anon_sym_STAR] = ACTIONS(1449), - [anon_sym_u8] = ACTIONS(1451), - [anon_sym_i8] = ACTIONS(1451), - [anon_sym_u16] = ACTIONS(1451), - [anon_sym_i16] = ACTIONS(1451), - [anon_sym_u32] = ACTIONS(1451), - [anon_sym_i32] = ACTIONS(1451), - [anon_sym_u64] = ACTIONS(1451), - [anon_sym_i64] = ACTIONS(1451), - [anon_sym_u128] = ACTIONS(1451), - [anon_sym_i128] = ACTIONS(1451), - [anon_sym_isize] = ACTIONS(1451), - [anon_sym_usize] = ACTIONS(1451), - [anon_sym_f32] = ACTIONS(1451), - [anon_sym_f64] = ACTIONS(1451), - [anon_sym_bool] = ACTIONS(1451), - [anon_sym_str] = ACTIONS(1451), - [anon_sym_char] = ACTIONS(1451), - [anon_sym_DASH] = ACTIONS(1449), - [anon_sym_BANG] = ACTIONS(1449), - [anon_sym_AMP] = ACTIONS(1449), - [anon_sym_PIPE] = ACTIONS(1449), - [anon_sym_LT] = ACTIONS(1449), - [anon_sym_DOT_DOT] = ACTIONS(1449), - [anon_sym_COLON_COLON] = ACTIONS(1449), - [anon_sym_POUND] = ACTIONS(1449), - [anon_sym_SQUOTE] = ACTIONS(1451), - [anon_sym_async] = ACTIONS(1451), - [anon_sym_break] = ACTIONS(1451), - [anon_sym_const] = ACTIONS(1451), - [anon_sym_continue] = ACTIONS(1451), - [anon_sym_default] = ACTIONS(1451), - [anon_sym_enum] = ACTIONS(1451), - [anon_sym_fn] = ACTIONS(1451), - [anon_sym_for] = ACTIONS(1451), - [anon_sym_gen] = ACTIONS(1451), - [anon_sym_if] = ACTIONS(1451), - [anon_sym_impl] = ACTIONS(1451), - [anon_sym_let] = ACTIONS(1451), - [anon_sym_loop] = ACTIONS(1451), - [anon_sym_match] = ACTIONS(1451), - [anon_sym_mod] = ACTIONS(1451), - [anon_sym_pub] = ACTIONS(1451), - [anon_sym_return] = ACTIONS(1451), - [anon_sym_static] = ACTIONS(1451), - [anon_sym_struct] = ACTIONS(1451), - [anon_sym_trait] = ACTIONS(1451), - [anon_sym_type] = ACTIONS(1451), - [anon_sym_union] = ACTIONS(1451), - [anon_sym_unsafe] = ACTIONS(1451), - [anon_sym_use] = ACTIONS(1451), - [anon_sym_while] = ACTIONS(1451), - [anon_sym_extern] = ACTIONS(1451), - [anon_sym_yield] = ACTIONS(1451), - [anon_sym_move] = ACTIONS(1451), - [anon_sym_try] = ACTIONS(1451), - [sym_integer_literal] = ACTIONS(1449), - [aux_sym_string_literal_token1] = ACTIONS(1449), - [sym_char_literal] = ACTIONS(1449), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1451), - [sym_super] = ACTIONS(1451), - [sym_crate] = ACTIONS(1451), - [sym_metavariable] = ACTIONS(1449), - [sym__raw_string_literal_start] = ACTIONS(1449), - [sym_float_literal] = ACTIONS(1449), + [ts_builtin_sym_end] = ACTIONS(2360), + [sym_identifier] = ACTIONS(2362), + [anon_sym_SEMI] = ACTIONS(2360), + [anon_sym_macro_rules_BANG] = ACTIONS(2360), + [anon_sym_LPAREN] = ACTIONS(2360), + [anon_sym_LBRACK] = ACTIONS(2360), + [anon_sym_LBRACE] = ACTIONS(2360), + [anon_sym_RBRACE] = ACTIONS(2360), + [anon_sym_STAR] = ACTIONS(2360), + [anon_sym_u8] = ACTIONS(2362), + [anon_sym_i8] = ACTIONS(2362), + [anon_sym_u16] = ACTIONS(2362), + [anon_sym_i16] = ACTIONS(2362), + [anon_sym_u32] = ACTIONS(2362), + [anon_sym_i32] = ACTIONS(2362), + [anon_sym_u64] = ACTIONS(2362), + [anon_sym_i64] = ACTIONS(2362), + [anon_sym_u128] = ACTIONS(2362), + [anon_sym_i128] = ACTIONS(2362), + [anon_sym_isize] = ACTIONS(2362), + [anon_sym_usize] = ACTIONS(2362), + [anon_sym_f32] = ACTIONS(2362), + [anon_sym_f64] = ACTIONS(2362), + [anon_sym_bool] = ACTIONS(2362), + [anon_sym_str] = ACTIONS(2362), + [anon_sym_char] = ACTIONS(2362), + [anon_sym_DASH] = ACTIONS(2360), + [anon_sym_BANG] = ACTIONS(2360), + [anon_sym_AMP] = ACTIONS(2360), + [anon_sym_PIPE] = ACTIONS(2360), + [anon_sym_LT] = ACTIONS(2360), + [anon_sym_DOT_DOT] = ACTIONS(2360), + [anon_sym_COLON_COLON] = ACTIONS(2360), + [anon_sym_POUND] = ACTIONS(2360), + [anon_sym_SQUOTE] = ACTIONS(2362), + [anon_sym_async] = ACTIONS(2362), + [anon_sym_break] = ACTIONS(2362), + [anon_sym_const] = ACTIONS(2362), + [anon_sym_continue] = ACTIONS(2362), + [anon_sym_default] = ACTIONS(2362), + [anon_sym_enum] = ACTIONS(2362), + [anon_sym_fn] = ACTIONS(2362), + [anon_sym_for] = ACTIONS(2362), + [anon_sym_gen] = ACTIONS(2362), + [anon_sym_if] = ACTIONS(2362), + [anon_sym_impl] = ACTIONS(2362), + [anon_sym_let] = ACTIONS(2362), + [anon_sym_loop] = ACTIONS(2362), + [anon_sym_match] = ACTIONS(2362), + [anon_sym_mod] = ACTIONS(2362), + [anon_sym_pub] = ACTIONS(2362), + [anon_sym_return] = ACTIONS(2362), + [anon_sym_static] = ACTIONS(2362), + [anon_sym_struct] = ACTIONS(2362), + [anon_sym_trait] = ACTIONS(2362), + [anon_sym_type] = ACTIONS(2362), + [anon_sym_union] = ACTIONS(2362), + [anon_sym_unsafe] = ACTIONS(2362), + [anon_sym_use] = ACTIONS(2362), + [anon_sym_while] = ACTIONS(2362), + [anon_sym_extern] = ACTIONS(2362), + [anon_sym_safe] = ACTIONS(2362), + [anon_sym_yield] = ACTIONS(2362), + [anon_sym_move] = ACTIONS(2362), + [anon_sym_try] = ACTIONS(2362), + [sym_integer_literal] = ACTIONS(2360), + [aux_sym_string_literal_token1] = ACTIONS(2360), + [sym_char_literal] = ACTIONS(2360), + [anon_sym_true] = ACTIONS(2362), + [anon_sym_false] = ACTIONS(2362), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2362), + [sym_super] = ACTIONS(2362), + [sym_crate] = ACTIONS(2362), + [sym_metavariable] = ACTIONS(2360), + [sym__raw_string_literal_start] = ACTIONS(2360), + [sym_float_literal] = ACTIONS(2360), }, [STATE(615)] = { [sym_line_comment] = STATE(615), [sym_block_comment] = STATE(615), - [ts_builtin_sym_end] = ACTIONS(2394), - [sym_identifier] = ACTIONS(2396), - [anon_sym_SEMI] = ACTIONS(2394), - [anon_sym_macro_rules_BANG] = ACTIONS(2394), - [anon_sym_LPAREN] = ACTIONS(2394), - [anon_sym_LBRACK] = ACTIONS(2394), - [anon_sym_LBRACE] = ACTIONS(2394), - [anon_sym_RBRACE] = ACTIONS(2394), - [anon_sym_STAR] = ACTIONS(2394), - [anon_sym_u8] = ACTIONS(2396), - [anon_sym_i8] = ACTIONS(2396), - [anon_sym_u16] = ACTIONS(2396), - [anon_sym_i16] = ACTIONS(2396), - [anon_sym_u32] = ACTIONS(2396), - [anon_sym_i32] = ACTIONS(2396), - [anon_sym_u64] = ACTIONS(2396), - [anon_sym_i64] = ACTIONS(2396), - [anon_sym_u128] = ACTIONS(2396), - [anon_sym_i128] = ACTIONS(2396), - [anon_sym_isize] = ACTIONS(2396), - [anon_sym_usize] = ACTIONS(2396), - [anon_sym_f32] = ACTIONS(2396), - [anon_sym_f64] = ACTIONS(2396), - [anon_sym_bool] = ACTIONS(2396), - [anon_sym_str] = ACTIONS(2396), - [anon_sym_char] = ACTIONS(2396), - [anon_sym_DASH] = ACTIONS(2394), - [anon_sym_BANG] = ACTIONS(2394), - [anon_sym_AMP] = ACTIONS(2394), - [anon_sym_PIPE] = ACTIONS(2394), - [anon_sym_LT] = ACTIONS(2394), - [anon_sym_DOT_DOT] = ACTIONS(2394), - [anon_sym_COLON_COLON] = ACTIONS(2394), - [anon_sym_POUND] = ACTIONS(2394), - [anon_sym_SQUOTE] = ACTIONS(2396), - [anon_sym_async] = ACTIONS(2396), - [anon_sym_break] = ACTIONS(2396), - [anon_sym_const] = ACTIONS(2396), - [anon_sym_continue] = ACTIONS(2396), - [anon_sym_default] = ACTIONS(2396), - [anon_sym_enum] = ACTIONS(2396), - [anon_sym_fn] = ACTIONS(2396), - [anon_sym_for] = ACTIONS(2396), - [anon_sym_gen] = ACTIONS(2396), - [anon_sym_if] = ACTIONS(2396), - [anon_sym_impl] = ACTIONS(2396), - [anon_sym_let] = ACTIONS(2396), - [anon_sym_loop] = ACTIONS(2396), - [anon_sym_match] = ACTIONS(2396), - [anon_sym_mod] = ACTIONS(2396), - [anon_sym_pub] = ACTIONS(2396), - [anon_sym_return] = ACTIONS(2396), - [anon_sym_static] = ACTIONS(2396), - [anon_sym_struct] = ACTIONS(2396), - [anon_sym_trait] = ACTIONS(2396), - [anon_sym_type] = ACTIONS(2396), - [anon_sym_union] = ACTIONS(2396), - [anon_sym_unsafe] = ACTIONS(2396), - [anon_sym_use] = ACTIONS(2396), - [anon_sym_while] = ACTIONS(2396), - [anon_sym_extern] = ACTIONS(2396), - [anon_sym_yield] = ACTIONS(2396), - [anon_sym_move] = ACTIONS(2396), - [anon_sym_try] = ACTIONS(2396), - [sym_integer_literal] = ACTIONS(2394), - [aux_sym_string_literal_token1] = ACTIONS(2394), - [sym_char_literal] = ACTIONS(2394), - [anon_sym_true] = ACTIONS(2396), - [anon_sym_false] = ACTIONS(2396), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2396), - [sym_super] = ACTIONS(2396), - [sym_crate] = ACTIONS(2396), - [sym_metavariable] = ACTIONS(2394), - [sym__raw_string_literal_start] = ACTIONS(2394), - [sym_float_literal] = ACTIONS(2394), + [ts_builtin_sym_end] = ACTIONS(2364), + [sym_identifier] = ACTIONS(2366), + [anon_sym_SEMI] = ACTIONS(2364), + [anon_sym_macro_rules_BANG] = ACTIONS(2364), + [anon_sym_LPAREN] = ACTIONS(2364), + [anon_sym_LBRACK] = ACTIONS(2364), + [anon_sym_LBRACE] = ACTIONS(2364), + [anon_sym_RBRACE] = ACTIONS(2364), + [anon_sym_STAR] = ACTIONS(2364), + [anon_sym_u8] = ACTIONS(2366), + [anon_sym_i8] = ACTIONS(2366), + [anon_sym_u16] = ACTIONS(2366), + [anon_sym_i16] = ACTIONS(2366), + [anon_sym_u32] = ACTIONS(2366), + [anon_sym_i32] = ACTIONS(2366), + [anon_sym_u64] = ACTIONS(2366), + [anon_sym_i64] = ACTIONS(2366), + [anon_sym_u128] = ACTIONS(2366), + [anon_sym_i128] = ACTIONS(2366), + [anon_sym_isize] = ACTIONS(2366), + [anon_sym_usize] = ACTIONS(2366), + [anon_sym_f32] = ACTIONS(2366), + [anon_sym_f64] = ACTIONS(2366), + [anon_sym_bool] = ACTIONS(2366), + [anon_sym_str] = ACTIONS(2366), + [anon_sym_char] = ACTIONS(2366), + [anon_sym_DASH] = ACTIONS(2364), + [anon_sym_BANG] = ACTIONS(2364), + [anon_sym_AMP] = ACTIONS(2364), + [anon_sym_PIPE] = ACTIONS(2364), + [anon_sym_LT] = ACTIONS(2364), + [anon_sym_DOT_DOT] = ACTIONS(2364), + [anon_sym_COLON_COLON] = ACTIONS(2364), + [anon_sym_POUND] = ACTIONS(2364), + [anon_sym_SQUOTE] = ACTIONS(2366), + [anon_sym_async] = ACTIONS(2366), + [anon_sym_break] = ACTIONS(2366), + [anon_sym_const] = ACTIONS(2366), + [anon_sym_continue] = ACTIONS(2366), + [anon_sym_default] = ACTIONS(2366), + [anon_sym_enum] = ACTIONS(2366), + [anon_sym_fn] = ACTIONS(2366), + [anon_sym_for] = ACTIONS(2366), + [anon_sym_gen] = ACTIONS(2366), + [anon_sym_if] = ACTIONS(2366), + [anon_sym_impl] = ACTIONS(2366), + [anon_sym_let] = ACTIONS(2366), + [anon_sym_loop] = ACTIONS(2366), + [anon_sym_match] = ACTIONS(2366), + [anon_sym_mod] = ACTIONS(2366), + [anon_sym_pub] = ACTIONS(2366), + [anon_sym_return] = ACTIONS(2366), + [anon_sym_static] = ACTIONS(2366), + [anon_sym_struct] = ACTIONS(2366), + [anon_sym_trait] = ACTIONS(2366), + [anon_sym_type] = ACTIONS(2366), + [anon_sym_union] = ACTIONS(2366), + [anon_sym_unsafe] = ACTIONS(2366), + [anon_sym_use] = ACTIONS(2366), + [anon_sym_while] = ACTIONS(2366), + [anon_sym_extern] = ACTIONS(2366), + [anon_sym_safe] = ACTIONS(2366), + [anon_sym_yield] = ACTIONS(2366), + [anon_sym_move] = ACTIONS(2366), + [anon_sym_try] = ACTIONS(2366), + [sym_integer_literal] = ACTIONS(2364), + [aux_sym_string_literal_token1] = ACTIONS(2364), + [sym_char_literal] = ACTIONS(2364), + [anon_sym_true] = ACTIONS(2366), + [anon_sym_false] = ACTIONS(2366), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2366), + [sym_super] = ACTIONS(2366), + [sym_crate] = ACTIONS(2366), + [sym_metavariable] = ACTIONS(2364), + [sym__raw_string_literal_start] = ACTIONS(2364), + [sym_float_literal] = ACTIONS(2364), }, [STATE(616)] = { [sym_line_comment] = STATE(616), [sym_block_comment] = STATE(616), - [ts_builtin_sym_end] = ACTIONS(1433), - [sym_identifier] = ACTIONS(1435), - [anon_sym_SEMI] = ACTIONS(1433), - [anon_sym_macro_rules_BANG] = ACTIONS(1433), - [anon_sym_LPAREN] = ACTIONS(1433), - [anon_sym_LBRACK] = ACTIONS(1433), - [anon_sym_LBRACE] = ACTIONS(1433), - [anon_sym_RBRACE] = ACTIONS(1433), - [anon_sym_STAR] = ACTIONS(1433), - [anon_sym_u8] = ACTIONS(1435), - [anon_sym_i8] = ACTIONS(1435), - [anon_sym_u16] = ACTIONS(1435), - [anon_sym_i16] = ACTIONS(1435), - [anon_sym_u32] = ACTIONS(1435), - [anon_sym_i32] = ACTIONS(1435), - [anon_sym_u64] = ACTIONS(1435), - [anon_sym_i64] = ACTIONS(1435), - [anon_sym_u128] = ACTIONS(1435), - [anon_sym_i128] = ACTIONS(1435), - [anon_sym_isize] = ACTIONS(1435), - [anon_sym_usize] = ACTIONS(1435), - [anon_sym_f32] = ACTIONS(1435), - [anon_sym_f64] = ACTIONS(1435), - [anon_sym_bool] = ACTIONS(1435), - [anon_sym_str] = ACTIONS(1435), - [anon_sym_char] = ACTIONS(1435), - [anon_sym_DASH] = ACTIONS(1433), - [anon_sym_BANG] = ACTIONS(1433), - [anon_sym_AMP] = ACTIONS(1433), - [anon_sym_PIPE] = ACTIONS(1433), - [anon_sym_LT] = ACTIONS(1433), - [anon_sym_DOT_DOT] = ACTIONS(1433), - [anon_sym_COLON_COLON] = ACTIONS(1433), - [anon_sym_POUND] = ACTIONS(1433), - [anon_sym_SQUOTE] = ACTIONS(1435), - [anon_sym_async] = ACTIONS(1435), - [anon_sym_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), + [ts_builtin_sym_end] = ACTIONS(2368), + [sym_identifier] = ACTIONS(2370), + [anon_sym_SEMI] = ACTIONS(2368), + [anon_sym_macro_rules_BANG] = ACTIONS(2368), + [anon_sym_LPAREN] = ACTIONS(2368), + [anon_sym_LBRACK] = ACTIONS(2368), + [anon_sym_LBRACE] = ACTIONS(2368), + [anon_sym_RBRACE] = ACTIONS(2368), + [anon_sym_STAR] = ACTIONS(2368), + [anon_sym_u8] = ACTIONS(2370), + [anon_sym_i8] = ACTIONS(2370), + [anon_sym_u16] = ACTIONS(2370), + [anon_sym_i16] = ACTIONS(2370), + [anon_sym_u32] = ACTIONS(2370), + [anon_sym_i32] = ACTIONS(2370), + [anon_sym_u64] = ACTIONS(2370), + [anon_sym_i64] = ACTIONS(2370), + [anon_sym_u128] = ACTIONS(2370), + [anon_sym_i128] = ACTIONS(2370), + [anon_sym_isize] = ACTIONS(2370), + [anon_sym_usize] = ACTIONS(2370), + [anon_sym_f32] = ACTIONS(2370), + [anon_sym_f64] = ACTIONS(2370), + [anon_sym_bool] = ACTIONS(2370), + [anon_sym_str] = ACTIONS(2370), + [anon_sym_char] = ACTIONS(2370), + [anon_sym_DASH] = ACTIONS(2368), + [anon_sym_BANG] = ACTIONS(2368), + [anon_sym_AMP] = ACTIONS(2368), + [anon_sym_PIPE] = ACTIONS(2368), + [anon_sym_LT] = ACTIONS(2368), + [anon_sym_DOT_DOT] = ACTIONS(2368), + [anon_sym_COLON_COLON] = ACTIONS(2368), + [anon_sym_POUND] = ACTIONS(2368), + [anon_sym_SQUOTE] = ACTIONS(2370), + [anon_sym_async] = ACTIONS(2370), + [anon_sym_break] = ACTIONS(2370), + [anon_sym_const] = ACTIONS(2370), + [anon_sym_continue] = ACTIONS(2370), + [anon_sym_default] = ACTIONS(2370), + [anon_sym_enum] = ACTIONS(2370), + [anon_sym_fn] = ACTIONS(2370), + [anon_sym_for] = ACTIONS(2370), + [anon_sym_gen] = ACTIONS(2370), + [anon_sym_if] = ACTIONS(2370), + [anon_sym_impl] = ACTIONS(2370), + [anon_sym_let] = ACTIONS(2370), + [anon_sym_loop] = ACTIONS(2370), + [anon_sym_match] = ACTIONS(2370), + [anon_sym_mod] = ACTIONS(2370), + [anon_sym_pub] = ACTIONS(2370), + [anon_sym_return] = ACTIONS(2370), + [anon_sym_static] = ACTIONS(2370), + [anon_sym_struct] = ACTIONS(2370), + [anon_sym_trait] = ACTIONS(2370), + [anon_sym_type] = ACTIONS(2370), + [anon_sym_union] = ACTIONS(2370), + [anon_sym_unsafe] = ACTIONS(2370), + [anon_sym_use] = ACTIONS(2370), + [anon_sym_while] = ACTIONS(2370), + [anon_sym_extern] = ACTIONS(2370), + [anon_sym_safe] = ACTIONS(2370), + [anon_sym_yield] = ACTIONS(2370), + [anon_sym_move] = ACTIONS(2370), + [anon_sym_try] = ACTIONS(2370), + [sym_integer_literal] = ACTIONS(2368), + [aux_sym_string_literal_token1] = ACTIONS(2368), + [sym_char_literal] = ACTIONS(2368), + [anon_sym_true] = ACTIONS(2370), + [anon_sym_false] = ACTIONS(2370), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2370), + [sym_super] = ACTIONS(2370), + [sym_crate] = ACTIONS(2370), + [sym_metavariable] = ACTIONS(2368), + [sym__raw_string_literal_start] = ACTIONS(2368), + [sym_float_literal] = ACTIONS(2368), }, [STATE(617)] = { [sym_line_comment] = STATE(617), [sym_block_comment] = STATE(617), - [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_STAR] = 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(1441), - [anon_sym_BANG] = ACTIONS(1441), - [anon_sym_AMP] = ACTIONS(1441), - [anon_sym_PIPE] = ACTIONS(1441), - [anon_sym_LT] = ACTIONS(1441), - [anon_sym_DOT_DOT] = ACTIONS(1441), - [anon_sym_COLON_COLON] = ACTIONS(1441), - [anon_sym_POUND] = ACTIONS(1441), - [anon_sym_SQUOTE] = 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(2372), + [sym_identifier] = ACTIONS(2374), + [anon_sym_SEMI] = ACTIONS(2372), + [anon_sym_macro_rules_BANG] = ACTIONS(2372), + [anon_sym_LPAREN] = ACTIONS(2372), + [anon_sym_LBRACK] = ACTIONS(2372), + [anon_sym_LBRACE] = ACTIONS(2372), + [anon_sym_RBRACE] = ACTIONS(2372), + [anon_sym_STAR] = ACTIONS(2372), + [anon_sym_u8] = ACTIONS(2374), + [anon_sym_i8] = ACTIONS(2374), + [anon_sym_u16] = ACTIONS(2374), + [anon_sym_i16] = ACTIONS(2374), + [anon_sym_u32] = ACTIONS(2374), + [anon_sym_i32] = ACTIONS(2374), + [anon_sym_u64] = ACTIONS(2374), + [anon_sym_i64] = ACTIONS(2374), + [anon_sym_u128] = ACTIONS(2374), + [anon_sym_i128] = ACTIONS(2374), + [anon_sym_isize] = ACTIONS(2374), + [anon_sym_usize] = ACTIONS(2374), + [anon_sym_f32] = ACTIONS(2374), + [anon_sym_f64] = ACTIONS(2374), + [anon_sym_bool] = ACTIONS(2374), + [anon_sym_str] = ACTIONS(2374), + [anon_sym_char] = ACTIONS(2374), + [anon_sym_DASH] = ACTIONS(2372), + [anon_sym_BANG] = ACTIONS(2372), + [anon_sym_AMP] = ACTIONS(2372), + [anon_sym_PIPE] = ACTIONS(2372), + [anon_sym_LT] = ACTIONS(2372), + [anon_sym_DOT_DOT] = ACTIONS(2372), + [anon_sym_COLON_COLON] = ACTIONS(2372), + [anon_sym_POUND] = ACTIONS(2372), + [anon_sym_SQUOTE] = ACTIONS(2374), + [anon_sym_async] = ACTIONS(2374), + [anon_sym_break] = ACTIONS(2374), + [anon_sym_const] = ACTIONS(2374), + [anon_sym_continue] = ACTIONS(2374), + [anon_sym_default] = ACTIONS(2374), + [anon_sym_enum] = ACTIONS(2374), + [anon_sym_fn] = ACTIONS(2374), + [anon_sym_for] = ACTIONS(2374), + [anon_sym_gen] = ACTIONS(2374), + [anon_sym_if] = ACTIONS(2374), + [anon_sym_impl] = ACTIONS(2374), + [anon_sym_let] = ACTIONS(2374), + [anon_sym_loop] = ACTIONS(2374), + [anon_sym_match] = ACTIONS(2374), + [anon_sym_mod] = ACTIONS(2374), + [anon_sym_pub] = ACTIONS(2374), + [anon_sym_return] = ACTIONS(2374), + [anon_sym_static] = ACTIONS(2374), + [anon_sym_struct] = ACTIONS(2374), + [anon_sym_trait] = ACTIONS(2374), + [anon_sym_type] = ACTIONS(2374), + [anon_sym_union] = ACTIONS(2374), + [anon_sym_unsafe] = ACTIONS(2374), + [anon_sym_use] = ACTIONS(2374), + [anon_sym_while] = ACTIONS(2374), + [anon_sym_extern] = ACTIONS(2374), + [anon_sym_safe] = ACTIONS(2374), + [anon_sym_yield] = ACTIONS(2374), + [anon_sym_move] = ACTIONS(2374), + [anon_sym_try] = ACTIONS(2374), + [sym_integer_literal] = ACTIONS(2372), + [aux_sym_string_literal_token1] = ACTIONS(2372), + [sym_char_literal] = ACTIONS(2372), + [anon_sym_true] = ACTIONS(2374), + [anon_sym_false] = ACTIONS(2374), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2374), + [sym_super] = ACTIONS(2374), + [sym_crate] = ACTIONS(2374), + [sym_metavariable] = ACTIONS(2372), + [sym__raw_string_literal_start] = ACTIONS(2372), + [sym_float_literal] = ACTIONS(2372), }, [STATE(618)] = { [sym_line_comment] = STATE(618), [sym_block_comment] = STATE(618), - [ts_builtin_sym_end] = ACTIONS(2398), - [sym_identifier] = ACTIONS(2400), - [anon_sym_SEMI] = ACTIONS(2398), - [anon_sym_macro_rules_BANG] = ACTIONS(2398), - [anon_sym_LPAREN] = ACTIONS(2398), - [anon_sym_LBRACK] = ACTIONS(2398), - [anon_sym_LBRACE] = ACTIONS(2398), - [anon_sym_RBRACE] = ACTIONS(2398), - [anon_sym_STAR] = ACTIONS(2398), - [anon_sym_u8] = ACTIONS(2400), - [anon_sym_i8] = ACTIONS(2400), - [anon_sym_u16] = ACTIONS(2400), - [anon_sym_i16] = ACTIONS(2400), - [anon_sym_u32] = ACTIONS(2400), - [anon_sym_i32] = ACTIONS(2400), - [anon_sym_u64] = ACTIONS(2400), - [anon_sym_i64] = ACTIONS(2400), - [anon_sym_u128] = ACTIONS(2400), - [anon_sym_i128] = ACTIONS(2400), - [anon_sym_isize] = ACTIONS(2400), - [anon_sym_usize] = ACTIONS(2400), - [anon_sym_f32] = ACTIONS(2400), - [anon_sym_f64] = ACTIONS(2400), - [anon_sym_bool] = ACTIONS(2400), - [anon_sym_str] = ACTIONS(2400), - [anon_sym_char] = ACTIONS(2400), - [anon_sym_DASH] = ACTIONS(2398), - [anon_sym_BANG] = ACTIONS(2398), - [anon_sym_AMP] = ACTIONS(2398), - [anon_sym_PIPE] = ACTIONS(2398), - [anon_sym_LT] = ACTIONS(2398), - [anon_sym_DOT_DOT] = ACTIONS(2398), - [anon_sym_COLON_COLON] = ACTIONS(2398), - [anon_sym_POUND] = ACTIONS(2398), - [anon_sym_SQUOTE] = ACTIONS(2400), - [anon_sym_async] = ACTIONS(2400), - [anon_sym_break] = ACTIONS(2400), - [anon_sym_const] = ACTIONS(2400), - [anon_sym_continue] = ACTIONS(2400), - [anon_sym_default] = ACTIONS(2400), - [anon_sym_enum] = ACTIONS(2400), - [anon_sym_fn] = ACTIONS(2400), - [anon_sym_for] = ACTIONS(2400), - [anon_sym_gen] = ACTIONS(2400), - [anon_sym_if] = ACTIONS(2400), - [anon_sym_impl] = ACTIONS(2400), - [anon_sym_let] = ACTIONS(2400), - [anon_sym_loop] = ACTIONS(2400), - [anon_sym_match] = ACTIONS(2400), - [anon_sym_mod] = ACTIONS(2400), - [anon_sym_pub] = ACTIONS(2400), - [anon_sym_return] = ACTIONS(2400), - [anon_sym_static] = ACTIONS(2400), - [anon_sym_struct] = ACTIONS(2400), - [anon_sym_trait] = ACTIONS(2400), - [anon_sym_type] = ACTIONS(2400), - [anon_sym_union] = ACTIONS(2400), - [anon_sym_unsafe] = ACTIONS(2400), - [anon_sym_use] = ACTIONS(2400), - [anon_sym_while] = ACTIONS(2400), - [anon_sym_extern] = ACTIONS(2400), - [anon_sym_yield] = ACTIONS(2400), - [anon_sym_move] = ACTIONS(2400), - [anon_sym_try] = ACTIONS(2400), - [sym_integer_literal] = ACTIONS(2398), - [aux_sym_string_literal_token1] = ACTIONS(2398), - [sym_char_literal] = ACTIONS(2398), - [anon_sym_true] = ACTIONS(2400), - [anon_sym_false] = ACTIONS(2400), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2400), - [sym_super] = ACTIONS(2400), - [sym_crate] = ACTIONS(2400), - [sym_metavariable] = ACTIONS(2398), - [sym__raw_string_literal_start] = ACTIONS(2398), - [sym_float_literal] = ACTIONS(2398), + [ts_builtin_sym_end] = ACTIONS(2376), + [sym_identifier] = ACTIONS(2378), + [anon_sym_SEMI] = ACTIONS(2376), + [anon_sym_macro_rules_BANG] = ACTIONS(2376), + [anon_sym_LPAREN] = ACTIONS(2376), + [anon_sym_LBRACK] = ACTIONS(2376), + [anon_sym_LBRACE] = ACTIONS(2376), + [anon_sym_RBRACE] = ACTIONS(2376), + [anon_sym_STAR] = ACTIONS(2376), + [anon_sym_u8] = ACTIONS(2378), + [anon_sym_i8] = ACTIONS(2378), + [anon_sym_u16] = ACTIONS(2378), + [anon_sym_i16] = ACTIONS(2378), + [anon_sym_u32] = ACTIONS(2378), + [anon_sym_i32] = ACTIONS(2378), + [anon_sym_u64] = ACTIONS(2378), + [anon_sym_i64] = ACTIONS(2378), + [anon_sym_u128] = ACTIONS(2378), + [anon_sym_i128] = ACTIONS(2378), + [anon_sym_isize] = ACTIONS(2378), + [anon_sym_usize] = ACTIONS(2378), + [anon_sym_f32] = ACTIONS(2378), + [anon_sym_f64] = ACTIONS(2378), + [anon_sym_bool] = ACTIONS(2378), + [anon_sym_str] = ACTIONS(2378), + [anon_sym_char] = ACTIONS(2378), + [anon_sym_DASH] = ACTIONS(2376), + [anon_sym_BANG] = ACTIONS(2376), + [anon_sym_AMP] = ACTIONS(2376), + [anon_sym_PIPE] = ACTIONS(2376), + [anon_sym_LT] = ACTIONS(2376), + [anon_sym_DOT_DOT] = ACTIONS(2376), + [anon_sym_COLON_COLON] = ACTIONS(2376), + [anon_sym_POUND] = ACTIONS(2376), + [anon_sym_SQUOTE] = ACTIONS(2378), + [anon_sym_async] = ACTIONS(2378), + [anon_sym_break] = ACTIONS(2378), + [anon_sym_const] = ACTIONS(2378), + [anon_sym_continue] = ACTIONS(2378), + [anon_sym_default] = ACTIONS(2378), + [anon_sym_enum] = ACTIONS(2378), + [anon_sym_fn] = ACTIONS(2378), + [anon_sym_for] = ACTIONS(2378), + [anon_sym_gen] = ACTIONS(2378), + [anon_sym_if] = ACTIONS(2378), + [anon_sym_impl] = ACTIONS(2378), + [anon_sym_let] = ACTIONS(2378), + [anon_sym_loop] = ACTIONS(2378), + [anon_sym_match] = ACTIONS(2378), + [anon_sym_mod] = ACTIONS(2378), + [anon_sym_pub] = ACTIONS(2378), + [anon_sym_return] = ACTIONS(2378), + [anon_sym_static] = ACTIONS(2378), + [anon_sym_struct] = ACTIONS(2378), + [anon_sym_trait] = ACTIONS(2378), + [anon_sym_type] = ACTIONS(2378), + [anon_sym_union] = ACTIONS(2378), + [anon_sym_unsafe] = ACTIONS(2378), + [anon_sym_use] = ACTIONS(2378), + [anon_sym_while] = ACTIONS(2378), + [anon_sym_extern] = ACTIONS(2378), + [anon_sym_safe] = ACTIONS(2378), + [anon_sym_yield] = ACTIONS(2378), + [anon_sym_move] = ACTIONS(2378), + [anon_sym_try] = ACTIONS(2378), + [sym_integer_literal] = ACTIONS(2376), + [aux_sym_string_literal_token1] = ACTIONS(2376), + [sym_char_literal] = ACTIONS(2376), + [anon_sym_true] = ACTIONS(2378), + [anon_sym_false] = ACTIONS(2378), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2378), + [sym_super] = ACTIONS(2378), + [sym_crate] = ACTIONS(2378), + [sym_metavariable] = ACTIONS(2376), + [sym__raw_string_literal_start] = ACTIONS(2376), + [sym_float_literal] = ACTIONS(2376), }, [STATE(619)] = { + [sym_empty_statement] = STATE(1308), + [sym_macro_definition] = STATE(1308), + [sym_attribute_item] = STATE(1308), + [sym_inner_attribute_item] = STATE(1308), + [sym_mod_item] = STATE(1308), + [sym_foreign_mod_item] = STATE(1308), + [sym_struct_item] = STATE(1308), + [sym_union_item] = STATE(1308), + [sym_enum_item] = STATE(1308), + [sym_extern_crate_declaration] = STATE(1308), + [sym_const_item] = STATE(1308), + [sym_static_item] = STATE(1308), + [sym_type_item] = STATE(1308), + [sym_function_item] = STATE(1308), + [sym_function_signature_item] = STATE(1308), + [sym_function_modifiers] = STATE(3814), + [aux_sym__item_modifiers] = STATE(2286), + [sym_impl_item] = STATE(1308), + [sym_trait_item] = STATE(1308), + [sym_associated_type] = STATE(1308), + [sym_let_declaration] = STATE(1308), + [sym_use_declaration] = STATE(1308), + [sym_extern_modifier] = STATE(2646), + [sym_visibility_modifier] = STATE(2028), + [sym_bracketed_type] = STATE(3790), + [sym_generic_type_with_turbofish] = STATE(3839), + [sym_macro_invocation] = STATE(1308), + [sym_scoped_identifier] = STATE(3324), [sym_line_comment] = STATE(619), [sym_block_comment] = STATE(619), - [ts_builtin_sym_end] = ACTIONS(2402), - [sym_identifier] = ACTIONS(2404), - [anon_sym_SEMI] = ACTIONS(2402), - [anon_sym_macro_rules_BANG] = ACTIONS(2402), - [anon_sym_LPAREN] = ACTIONS(2402), - [anon_sym_LBRACK] = ACTIONS(2402), - [anon_sym_LBRACE] = ACTIONS(2402), - [anon_sym_RBRACE] = ACTIONS(2402), - [anon_sym_STAR] = ACTIONS(2402), - [anon_sym_u8] = ACTIONS(2404), - [anon_sym_i8] = ACTIONS(2404), - [anon_sym_u16] = ACTIONS(2404), - [anon_sym_i16] = ACTIONS(2404), - [anon_sym_u32] = ACTIONS(2404), - [anon_sym_i32] = ACTIONS(2404), - [anon_sym_u64] = ACTIONS(2404), - [anon_sym_i64] = ACTIONS(2404), - [anon_sym_u128] = ACTIONS(2404), - [anon_sym_i128] = ACTIONS(2404), - [anon_sym_isize] = ACTIONS(2404), - [anon_sym_usize] = ACTIONS(2404), - [anon_sym_f32] = ACTIONS(2404), - [anon_sym_f64] = ACTIONS(2404), - [anon_sym_bool] = ACTIONS(2404), - [anon_sym_str] = ACTIONS(2404), - [anon_sym_char] = ACTIONS(2404), - [anon_sym_DASH] = ACTIONS(2402), - [anon_sym_BANG] = ACTIONS(2402), - [anon_sym_AMP] = ACTIONS(2402), - [anon_sym_PIPE] = ACTIONS(2402), - [anon_sym_LT] = ACTIONS(2402), - [anon_sym_DOT_DOT] = ACTIONS(2402), - [anon_sym_COLON_COLON] = ACTIONS(2402), - [anon_sym_POUND] = ACTIONS(2402), - [anon_sym_SQUOTE] = ACTIONS(2404), - [anon_sym_async] = ACTIONS(2404), - [anon_sym_break] = ACTIONS(2404), - [anon_sym_const] = ACTIONS(2404), - [anon_sym_continue] = ACTIONS(2404), - [anon_sym_default] = ACTIONS(2404), - [anon_sym_enum] = ACTIONS(2404), - [anon_sym_fn] = ACTIONS(2404), - [anon_sym_for] = ACTIONS(2404), - [anon_sym_gen] = ACTIONS(2404), - [anon_sym_if] = ACTIONS(2404), + [aux_sym_declaration_list_repeat1] = STATE(742), + [sym_identifier] = ACTIONS(2380), + [anon_sym_SEMI] = ACTIONS(2382), + [anon_sym_macro_rules_BANG] = ACTIONS(2384), + [anon_sym_RBRACE] = 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_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(2390), + [anon_sym_POUND] = ACTIONS(2392), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(2394), + [anon_sym_default] = ACTIONS(2396), + [anon_sym_enum] = ACTIONS(2398), + [anon_sym_fn] = ACTIONS(2400), + [anon_sym_gen] = ACTIONS(2402), [anon_sym_impl] = ACTIONS(2404), - [anon_sym_let] = ACTIONS(2404), - [anon_sym_loop] = ACTIONS(2404), - [anon_sym_match] = ACTIONS(2404), - [anon_sym_mod] = ACTIONS(2404), - [anon_sym_pub] = ACTIONS(2404), - [anon_sym_return] = ACTIONS(2404), - [anon_sym_static] = ACTIONS(2404), - [anon_sym_struct] = ACTIONS(2404), - [anon_sym_trait] = ACTIONS(2404), - [anon_sym_type] = ACTIONS(2404), - [anon_sym_union] = ACTIONS(2404), - [anon_sym_unsafe] = ACTIONS(2404), - [anon_sym_use] = ACTIONS(2404), - [anon_sym_while] = ACTIONS(2404), - [anon_sym_extern] = ACTIONS(2404), - [anon_sym_yield] = ACTIONS(2404), - [anon_sym_move] = ACTIONS(2404), - [anon_sym_try] = ACTIONS(2404), - [sym_integer_literal] = ACTIONS(2402), - [aux_sym_string_literal_token1] = ACTIONS(2402), - [sym_char_literal] = ACTIONS(2402), - [anon_sym_true] = ACTIONS(2404), - [anon_sym_false] = ACTIONS(2404), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2404), - [sym_super] = ACTIONS(2404), - [sym_crate] = ACTIONS(2404), - [sym_metavariable] = ACTIONS(2402), - [sym__raw_string_literal_start] = ACTIONS(2402), - [sym_float_literal] = ACTIONS(2402), - }, - [STATE(620)] = { - [sym_line_comment] = STATE(620), - [sym_block_comment] = STATE(620), - [ts_builtin_sym_end] = ACTIONS(2406), - [sym_identifier] = ACTIONS(2408), - [anon_sym_SEMI] = ACTIONS(2406), - [anon_sym_macro_rules_BANG] = ACTIONS(2406), - [anon_sym_LPAREN] = ACTIONS(2406), - [anon_sym_LBRACK] = ACTIONS(2406), - [anon_sym_LBRACE] = ACTIONS(2406), - [anon_sym_RBRACE] = ACTIONS(2406), - [anon_sym_STAR] = ACTIONS(2406), - [anon_sym_u8] = ACTIONS(2408), - [anon_sym_i8] = ACTIONS(2408), - [anon_sym_u16] = ACTIONS(2408), - [anon_sym_i16] = ACTIONS(2408), - [anon_sym_u32] = ACTIONS(2408), - [anon_sym_i32] = ACTIONS(2408), - [anon_sym_u64] = ACTIONS(2408), - [anon_sym_i64] = ACTIONS(2408), - [anon_sym_u128] = ACTIONS(2408), - [anon_sym_i128] = ACTIONS(2408), - [anon_sym_isize] = ACTIONS(2408), - [anon_sym_usize] = ACTIONS(2408), - [anon_sym_f32] = ACTIONS(2408), - [anon_sym_f64] = ACTIONS(2408), - [anon_sym_bool] = ACTIONS(2408), - [anon_sym_str] = ACTIONS(2408), - [anon_sym_char] = ACTIONS(2408), - [anon_sym_DASH] = ACTIONS(2406), - [anon_sym_BANG] = ACTIONS(2406), - [anon_sym_AMP] = ACTIONS(2406), - [anon_sym_PIPE] = ACTIONS(2406), - [anon_sym_LT] = ACTIONS(2406), - [anon_sym_DOT_DOT] = ACTIONS(2406), - [anon_sym_COLON_COLON] = ACTIONS(2406), - [anon_sym_POUND] = ACTIONS(2406), - [anon_sym_SQUOTE] = ACTIONS(2408), - [anon_sym_async] = ACTIONS(2408), - [anon_sym_break] = ACTIONS(2408), - [anon_sym_const] = ACTIONS(2408), - [anon_sym_continue] = ACTIONS(2408), - [anon_sym_default] = ACTIONS(2408), - [anon_sym_enum] = ACTIONS(2408), - [anon_sym_fn] = ACTIONS(2408), - [anon_sym_for] = ACTIONS(2408), - [anon_sym_gen] = ACTIONS(2408), - [anon_sym_if] = ACTIONS(2408), - [anon_sym_impl] = ACTIONS(2408), - [anon_sym_let] = ACTIONS(2408), - [anon_sym_loop] = ACTIONS(2408), - [anon_sym_match] = ACTIONS(2408), + [anon_sym_let] = ACTIONS(2406), [anon_sym_mod] = ACTIONS(2408), - [anon_sym_pub] = ACTIONS(2408), - [anon_sym_return] = ACTIONS(2408), - [anon_sym_static] = ACTIONS(2408), - [anon_sym_struct] = ACTIONS(2408), - [anon_sym_trait] = ACTIONS(2408), - [anon_sym_type] = ACTIONS(2408), - [anon_sym_union] = ACTIONS(2408), - [anon_sym_unsafe] = ACTIONS(2408), - [anon_sym_use] = ACTIONS(2408), - [anon_sym_while] = ACTIONS(2408), - [anon_sym_extern] = ACTIONS(2408), - [anon_sym_yield] = ACTIONS(2408), - [anon_sym_move] = ACTIONS(2408), - [anon_sym_try] = ACTIONS(2408), - [sym_integer_literal] = ACTIONS(2406), - [aux_sym_string_literal_token1] = ACTIONS(2406), - [sym_char_literal] = ACTIONS(2406), - [anon_sym_true] = ACTIONS(2408), - [anon_sym_false] = ACTIONS(2408), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2408), - [sym_super] = ACTIONS(2408), - [sym_crate] = ACTIONS(2408), - [sym_metavariable] = ACTIONS(2406), - [sym__raw_string_literal_start] = ACTIONS(2406), - [sym_float_literal] = ACTIONS(2406), - }, - [STATE(621)] = { - [sym_line_comment] = STATE(621), - [sym_block_comment] = STATE(621), - [ts_builtin_sym_end] = ACTIONS(2410), - [sym_identifier] = ACTIONS(2412), - [anon_sym_SEMI] = ACTIONS(2410), - [anon_sym_macro_rules_BANG] = ACTIONS(2410), - [anon_sym_LPAREN] = ACTIONS(2410), - [anon_sym_LBRACK] = ACTIONS(2410), - [anon_sym_LBRACE] = ACTIONS(2410), - [anon_sym_RBRACE] = ACTIONS(2410), - [anon_sym_STAR] = ACTIONS(2410), - [anon_sym_u8] = ACTIONS(2412), - [anon_sym_i8] = ACTIONS(2412), - [anon_sym_u16] = ACTIONS(2412), - [anon_sym_i16] = ACTIONS(2412), - [anon_sym_u32] = ACTIONS(2412), - [anon_sym_i32] = ACTIONS(2412), - [anon_sym_u64] = ACTIONS(2412), - [anon_sym_i64] = ACTIONS(2412), - [anon_sym_u128] = ACTIONS(2412), - [anon_sym_i128] = ACTIONS(2412), - [anon_sym_isize] = ACTIONS(2412), - [anon_sym_usize] = ACTIONS(2412), - [anon_sym_f32] = ACTIONS(2412), - [anon_sym_f64] = ACTIONS(2412), - [anon_sym_bool] = ACTIONS(2412), - [anon_sym_str] = ACTIONS(2412), - [anon_sym_char] = ACTIONS(2412), - [anon_sym_DASH] = ACTIONS(2410), - [anon_sym_BANG] = ACTIONS(2410), - [anon_sym_AMP] = ACTIONS(2410), - [anon_sym_PIPE] = ACTIONS(2410), - [anon_sym_LT] = ACTIONS(2410), - [anon_sym_DOT_DOT] = ACTIONS(2410), - [anon_sym_COLON_COLON] = ACTIONS(2410), - [anon_sym_POUND] = ACTIONS(2410), - [anon_sym_SQUOTE] = ACTIONS(2412), - [anon_sym_async] = ACTIONS(2412), - [anon_sym_break] = ACTIONS(2412), - [anon_sym_const] = ACTIONS(2412), - [anon_sym_continue] = ACTIONS(2412), - [anon_sym_default] = ACTIONS(2412), - [anon_sym_enum] = ACTIONS(2412), - [anon_sym_fn] = ACTIONS(2412), - [anon_sym_for] = ACTIONS(2412), - [anon_sym_gen] = ACTIONS(2412), - [anon_sym_if] = ACTIONS(2412), - [anon_sym_impl] = ACTIONS(2412), - [anon_sym_let] = ACTIONS(2412), - [anon_sym_loop] = ACTIONS(2412), - [anon_sym_match] = ACTIONS(2412), - [anon_sym_mod] = ACTIONS(2412), - [anon_sym_pub] = ACTIONS(2412), - [anon_sym_return] = ACTIONS(2412), - [anon_sym_static] = ACTIONS(2412), + [anon_sym_pub] = ACTIONS(69), + [anon_sym_static] = ACTIONS(2410), [anon_sym_struct] = ACTIONS(2412), - [anon_sym_trait] = ACTIONS(2412), - [anon_sym_type] = ACTIONS(2412), - [anon_sym_union] = ACTIONS(2412), - [anon_sym_unsafe] = ACTIONS(2412), - [anon_sym_use] = ACTIONS(2412), - [anon_sym_while] = ACTIONS(2412), - [anon_sym_extern] = ACTIONS(2412), - [anon_sym_yield] = ACTIONS(2412), - [anon_sym_move] = ACTIONS(2412), - [anon_sym_try] = ACTIONS(2412), - [sym_integer_literal] = ACTIONS(2410), - [aux_sym_string_literal_token1] = ACTIONS(2410), - [sym_char_literal] = ACTIONS(2410), - [anon_sym_true] = ACTIONS(2412), - [anon_sym_false] = ACTIONS(2412), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2412), - [sym_super] = ACTIONS(2412), - [sym_crate] = ACTIONS(2412), - [sym_metavariable] = ACTIONS(2410), - [sym__raw_string_literal_start] = ACTIONS(2410), - [sym_float_literal] = ACTIONS(2410), - }, - [STATE(622)] = { - [sym_line_comment] = STATE(622), - [sym_block_comment] = STATE(622), - [ts_builtin_sym_end] = ACTIONS(2414), - [sym_identifier] = ACTIONS(2416), - [anon_sym_SEMI] = ACTIONS(2414), - [anon_sym_macro_rules_BANG] = ACTIONS(2414), - [anon_sym_LPAREN] = ACTIONS(2414), - [anon_sym_LBRACK] = ACTIONS(2414), - [anon_sym_LBRACE] = ACTIONS(2414), - [anon_sym_RBRACE] = ACTIONS(2414), - [anon_sym_STAR] = ACTIONS(2414), - [anon_sym_u8] = ACTIONS(2416), - [anon_sym_i8] = ACTIONS(2416), - [anon_sym_u16] = ACTIONS(2416), - [anon_sym_i16] = ACTIONS(2416), - [anon_sym_u32] = ACTIONS(2416), - [anon_sym_i32] = ACTIONS(2416), - [anon_sym_u64] = ACTIONS(2416), - [anon_sym_i64] = ACTIONS(2416), - [anon_sym_u128] = ACTIONS(2416), - [anon_sym_i128] = ACTIONS(2416), - [anon_sym_isize] = ACTIONS(2416), - [anon_sym_usize] = ACTIONS(2416), - [anon_sym_f32] = ACTIONS(2416), - [anon_sym_f64] = ACTIONS(2416), - [anon_sym_bool] = ACTIONS(2416), - [anon_sym_str] = ACTIONS(2416), - [anon_sym_char] = ACTIONS(2416), - [anon_sym_DASH] = ACTIONS(2414), - [anon_sym_BANG] = ACTIONS(2414), - [anon_sym_AMP] = ACTIONS(2414), - [anon_sym_PIPE] = ACTIONS(2414), - [anon_sym_LT] = ACTIONS(2414), - [anon_sym_DOT_DOT] = ACTIONS(2414), - [anon_sym_COLON_COLON] = ACTIONS(2414), - [anon_sym_POUND] = ACTIONS(2414), - [anon_sym_SQUOTE] = ACTIONS(2416), - [anon_sym_async] = ACTIONS(2416), - [anon_sym_break] = ACTIONS(2416), - [anon_sym_const] = ACTIONS(2416), - [anon_sym_continue] = ACTIONS(2416), - [anon_sym_default] = ACTIONS(2416), - [anon_sym_enum] = ACTIONS(2416), - [anon_sym_fn] = ACTIONS(2416), - [anon_sym_for] = ACTIONS(2416), - [anon_sym_gen] = ACTIONS(2416), - [anon_sym_if] = ACTIONS(2416), - [anon_sym_impl] = ACTIONS(2416), - [anon_sym_let] = ACTIONS(2416), - [anon_sym_loop] = ACTIONS(2416), - [anon_sym_match] = ACTIONS(2416), - [anon_sym_mod] = ACTIONS(2416), - [anon_sym_pub] = ACTIONS(2416), - [anon_sym_return] = ACTIONS(2416), - [anon_sym_static] = ACTIONS(2416), - [anon_sym_struct] = ACTIONS(2416), - [anon_sym_trait] = ACTIONS(2416), + [anon_sym_trait] = ACTIONS(2414), [anon_sym_type] = ACTIONS(2416), - [anon_sym_union] = ACTIONS(2416), - [anon_sym_unsafe] = ACTIONS(2416), - [anon_sym_use] = ACTIONS(2416), - [anon_sym_while] = ACTIONS(2416), - [anon_sym_extern] = ACTIONS(2416), - [anon_sym_yield] = ACTIONS(2416), - [anon_sym_move] = ACTIONS(2416), - [anon_sym_try] = ACTIONS(2416), - [sym_integer_literal] = ACTIONS(2414), - [aux_sym_string_literal_token1] = ACTIONS(2414), - [sym_char_literal] = ACTIONS(2414), - [anon_sym_true] = ACTIONS(2416), - [anon_sym_false] = ACTIONS(2416), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2416), - [sym_super] = ACTIONS(2416), - [sym_crate] = ACTIONS(2416), - [sym_metavariable] = ACTIONS(2414), - [sym__raw_string_literal_start] = ACTIONS(2414), - [sym_float_literal] = ACTIONS(2414), - }, - [STATE(623)] = { - [sym_line_comment] = STATE(623), - [sym_block_comment] = STATE(623), - [ts_builtin_sym_end] = ACTIONS(2418), - [sym_identifier] = ACTIONS(2420), - [anon_sym_SEMI] = ACTIONS(2418), - [anon_sym_macro_rules_BANG] = ACTIONS(2418), - [anon_sym_LPAREN] = ACTIONS(2418), - [anon_sym_LBRACK] = ACTIONS(2418), - [anon_sym_LBRACE] = ACTIONS(2418), - [anon_sym_RBRACE] = ACTIONS(2418), - [anon_sym_STAR] = ACTIONS(2418), - [anon_sym_u8] = ACTIONS(2420), - [anon_sym_i8] = ACTIONS(2420), - [anon_sym_u16] = ACTIONS(2420), - [anon_sym_i16] = ACTIONS(2420), - [anon_sym_u32] = ACTIONS(2420), - [anon_sym_i32] = ACTIONS(2420), - [anon_sym_u64] = ACTIONS(2420), - [anon_sym_i64] = ACTIONS(2420), - [anon_sym_u128] = ACTIONS(2420), - [anon_sym_i128] = ACTIONS(2420), - [anon_sym_isize] = ACTIONS(2420), - [anon_sym_usize] = ACTIONS(2420), - [anon_sym_f32] = ACTIONS(2420), - [anon_sym_f64] = ACTIONS(2420), - [anon_sym_bool] = ACTIONS(2420), - [anon_sym_str] = ACTIONS(2420), - [anon_sym_char] = ACTIONS(2420), - [anon_sym_DASH] = ACTIONS(2418), - [anon_sym_BANG] = ACTIONS(2418), - [anon_sym_AMP] = ACTIONS(2418), - [anon_sym_PIPE] = ACTIONS(2418), - [anon_sym_LT] = ACTIONS(2418), - [anon_sym_DOT_DOT] = ACTIONS(2418), - [anon_sym_COLON_COLON] = ACTIONS(2418), - [anon_sym_POUND] = ACTIONS(2418), - [anon_sym_SQUOTE] = ACTIONS(2420), - [anon_sym_async] = ACTIONS(2420), - [anon_sym_break] = ACTIONS(2420), - [anon_sym_const] = ACTIONS(2420), - [anon_sym_continue] = ACTIONS(2420), - [anon_sym_default] = ACTIONS(2420), - [anon_sym_enum] = ACTIONS(2420), - [anon_sym_fn] = ACTIONS(2420), - [anon_sym_for] = ACTIONS(2420), - [anon_sym_gen] = ACTIONS(2420), - [anon_sym_if] = ACTIONS(2420), - [anon_sym_impl] = ACTIONS(2420), - [anon_sym_let] = ACTIONS(2420), - [anon_sym_loop] = ACTIONS(2420), - [anon_sym_match] = ACTIONS(2420), - [anon_sym_mod] = ACTIONS(2420), - [anon_sym_pub] = ACTIONS(2420), - [anon_sym_return] = ACTIONS(2420), - [anon_sym_static] = ACTIONS(2420), - [anon_sym_struct] = ACTIONS(2420), - [anon_sym_trait] = ACTIONS(2420), - [anon_sym_type] = ACTIONS(2420), - [anon_sym_union] = ACTIONS(2420), + [anon_sym_union] = ACTIONS(2418), [anon_sym_unsafe] = ACTIONS(2420), - [anon_sym_use] = ACTIONS(2420), - [anon_sym_while] = ACTIONS(2420), - [anon_sym_extern] = ACTIONS(2420), - [anon_sym_yield] = ACTIONS(2420), - [anon_sym_move] = ACTIONS(2420), - [anon_sym_try] = ACTIONS(2420), - [sym_integer_literal] = ACTIONS(2418), - [aux_sym_string_literal_token1] = ACTIONS(2418), - [sym_char_literal] = ACTIONS(2418), - [anon_sym_true] = ACTIONS(2420), - [anon_sym_false] = ACTIONS(2420), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2420), - [sym_super] = ACTIONS(2420), - [sym_crate] = ACTIONS(2420), - [sym_metavariable] = ACTIONS(2418), - [sym__raw_string_literal_start] = ACTIONS(2418), - [sym_float_literal] = ACTIONS(2418), - }, - [STATE(624)] = { - [sym_line_comment] = STATE(624), - [sym_block_comment] = STATE(624), - [ts_builtin_sym_end] = ACTIONS(2422), - [sym_identifier] = ACTIONS(2424), - [anon_sym_SEMI] = ACTIONS(2422), - [anon_sym_macro_rules_BANG] = ACTIONS(2422), - [anon_sym_LPAREN] = ACTIONS(2422), - [anon_sym_LBRACK] = ACTIONS(2422), - [anon_sym_LBRACE] = ACTIONS(2422), - [anon_sym_RBRACE] = ACTIONS(2422), - [anon_sym_STAR] = ACTIONS(2422), - [anon_sym_u8] = ACTIONS(2424), - [anon_sym_i8] = ACTIONS(2424), - [anon_sym_u16] = ACTIONS(2424), - [anon_sym_i16] = ACTIONS(2424), - [anon_sym_u32] = ACTIONS(2424), - [anon_sym_i32] = ACTIONS(2424), - [anon_sym_u64] = ACTIONS(2424), - [anon_sym_i64] = ACTIONS(2424), - [anon_sym_u128] = ACTIONS(2424), - [anon_sym_i128] = ACTIONS(2424), - [anon_sym_isize] = ACTIONS(2424), - [anon_sym_usize] = ACTIONS(2424), - [anon_sym_f32] = ACTIONS(2424), - [anon_sym_f64] = ACTIONS(2424), - [anon_sym_bool] = ACTIONS(2424), - [anon_sym_str] = ACTIONS(2424), - [anon_sym_char] = ACTIONS(2424), - [anon_sym_DASH] = ACTIONS(2422), - [anon_sym_BANG] = ACTIONS(2422), - [anon_sym_AMP] = ACTIONS(2422), - [anon_sym_PIPE] = ACTIONS(2422), - [anon_sym_LT] = ACTIONS(2422), - [anon_sym_DOT_DOT] = ACTIONS(2422), - [anon_sym_COLON_COLON] = ACTIONS(2422), - [anon_sym_POUND] = ACTIONS(2422), - [anon_sym_SQUOTE] = ACTIONS(2424), - [anon_sym_async] = ACTIONS(2424), - [anon_sym_break] = ACTIONS(2424), - [anon_sym_const] = ACTIONS(2424), - [anon_sym_continue] = ACTIONS(2424), - [anon_sym_default] = ACTIONS(2424), - [anon_sym_enum] = ACTIONS(2424), - [anon_sym_fn] = ACTIONS(2424), - [anon_sym_for] = ACTIONS(2424), - [anon_sym_gen] = ACTIONS(2424), - [anon_sym_if] = ACTIONS(2424), - [anon_sym_impl] = ACTIONS(2424), - [anon_sym_let] = ACTIONS(2424), - [anon_sym_loop] = ACTIONS(2424), - [anon_sym_match] = ACTIONS(2424), - [anon_sym_mod] = ACTIONS(2424), - [anon_sym_pub] = ACTIONS(2424), - [anon_sym_return] = ACTIONS(2424), - [anon_sym_static] = ACTIONS(2424), - [anon_sym_struct] = ACTIONS(2424), - [anon_sym_trait] = ACTIONS(2424), - [anon_sym_type] = ACTIONS(2424), - [anon_sym_union] = ACTIONS(2424), - [anon_sym_unsafe] = ACTIONS(2424), - [anon_sym_use] = ACTIONS(2424), - [anon_sym_while] = ACTIONS(2424), + [anon_sym_use] = ACTIONS(2422), [anon_sym_extern] = ACTIONS(2424), - [anon_sym_yield] = ACTIONS(2424), - [anon_sym_move] = ACTIONS(2424), - [anon_sym_try] = ACTIONS(2424), - [sym_integer_literal] = ACTIONS(2422), - [aux_sym_string_literal_token1] = ACTIONS(2422), - [sym_char_literal] = ACTIONS(2422), - [anon_sym_true] = ACTIONS(2424), - [anon_sym_false] = ACTIONS(2424), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2424), - [sym_super] = ACTIONS(2424), - [sym_crate] = ACTIONS(2424), - [sym_metavariable] = ACTIONS(2422), - [sym__raw_string_literal_start] = ACTIONS(2422), - [sym_float_literal] = ACTIONS(2422), - }, - [STATE(625)] = { - [sym_line_comment] = STATE(625), - [sym_block_comment] = STATE(625), - [ts_builtin_sym_end] = ACTIONS(2426), - [sym_identifier] = ACTIONS(2428), - [anon_sym_SEMI] = ACTIONS(2426), - [anon_sym_macro_rules_BANG] = ACTIONS(2426), - [anon_sym_LPAREN] = ACTIONS(2426), - [anon_sym_LBRACK] = ACTIONS(2426), - [anon_sym_LBRACE] = ACTIONS(2426), - [anon_sym_RBRACE] = ACTIONS(2426), - [anon_sym_STAR] = ACTIONS(2426), - [anon_sym_u8] = ACTIONS(2428), - [anon_sym_i8] = ACTIONS(2428), - [anon_sym_u16] = ACTIONS(2428), - [anon_sym_i16] = ACTIONS(2428), - [anon_sym_u32] = ACTIONS(2428), - [anon_sym_i32] = ACTIONS(2428), - [anon_sym_u64] = ACTIONS(2428), - [anon_sym_i64] = ACTIONS(2428), - [anon_sym_u128] = ACTIONS(2428), - [anon_sym_i128] = ACTIONS(2428), - [anon_sym_isize] = ACTIONS(2428), - [anon_sym_usize] = ACTIONS(2428), - [anon_sym_f32] = ACTIONS(2428), - [anon_sym_f64] = ACTIONS(2428), - [anon_sym_bool] = ACTIONS(2428), - [anon_sym_str] = ACTIONS(2428), - [anon_sym_char] = ACTIONS(2428), - [anon_sym_DASH] = ACTIONS(2426), - [anon_sym_BANG] = ACTIONS(2426), - [anon_sym_AMP] = ACTIONS(2426), - [anon_sym_PIPE] = ACTIONS(2426), - [anon_sym_LT] = ACTIONS(2426), - [anon_sym_DOT_DOT] = ACTIONS(2426), - [anon_sym_COLON_COLON] = ACTIONS(2426), - [anon_sym_POUND] = ACTIONS(2426), - [anon_sym_SQUOTE] = ACTIONS(2428), - [anon_sym_async] = ACTIONS(2428), - [anon_sym_break] = ACTIONS(2428), - [anon_sym_const] = ACTIONS(2428), - [anon_sym_continue] = ACTIONS(2428), - [anon_sym_default] = ACTIONS(2428), - [anon_sym_enum] = ACTIONS(2428), - [anon_sym_fn] = ACTIONS(2428), - [anon_sym_for] = ACTIONS(2428), - [anon_sym_gen] = ACTIONS(2428), - [anon_sym_if] = ACTIONS(2428), - [anon_sym_impl] = ACTIONS(2428), - [anon_sym_let] = ACTIONS(2428), - [anon_sym_loop] = ACTIONS(2428), - [anon_sym_match] = ACTIONS(2428), - [anon_sym_mod] = ACTIONS(2428), - [anon_sym_pub] = ACTIONS(2428), - [anon_sym_return] = ACTIONS(2428), - [anon_sym_static] = ACTIONS(2428), - [anon_sym_struct] = ACTIONS(2428), - [anon_sym_trait] = ACTIONS(2428), - [anon_sym_type] = ACTIONS(2428), - [anon_sym_union] = ACTIONS(2428), - [anon_sym_unsafe] = ACTIONS(2428), - [anon_sym_use] = ACTIONS(2428), - [anon_sym_while] = ACTIONS(2428), - [anon_sym_extern] = ACTIONS(2428), - [anon_sym_yield] = ACTIONS(2428), - [anon_sym_move] = ACTIONS(2428), - [anon_sym_try] = ACTIONS(2428), - [sym_integer_literal] = ACTIONS(2426), - [aux_sym_string_literal_token1] = ACTIONS(2426), - [sym_char_literal] = ACTIONS(2426), - [anon_sym_true] = ACTIONS(2428), - [anon_sym_false] = ACTIONS(2428), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), + [anon_sym_safe] = ACTIONS(2426), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), [sym_self] = ACTIONS(2428), [sym_super] = ACTIONS(2428), - [sym_crate] = ACTIONS(2428), - [sym_metavariable] = ACTIONS(2426), - [sym__raw_string_literal_start] = ACTIONS(2426), - [sym_float_literal] = ACTIONS(2426), - }, - [STATE(626)] = { - [sym_line_comment] = STATE(626), - [sym_block_comment] = STATE(626), - [ts_builtin_sym_end] = ACTIONS(2430), - [sym_identifier] = ACTIONS(2432), - [anon_sym_SEMI] = ACTIONS(2430), - [anon_sym_macro_rules_BANG] = ACTIONS(2430), - [anon_sym_LPAREN] = ACTIONS(2430), - [anon_sym_LBRACK] = ACTIONS(2430), - [anon_sym_LBRACE] = ACTIONS(2430), - [anon_sym_RBRACE] = ACTIONS(2430), - [anon_sym_STAR] = ACTIONS(2430), - [anon_sym_u8] = ACTIONS(2432), - [anon_sym_i8] = ACTIONS(2432), - [anon_sym_u16] = ACTIONS(2432), - [anon_sym_i16] = ACTIONS(2432), - [anon_sym_u32] = ACTIONS(2432), - [anon_sym_i32] = ACTIONS(2432), - [anon_sym_u64] = ACTIONS(2432), - [anon_sym_i64] = ACTIONS(2432), - [anon_sym_u128] = ACTIONS(2432), - [anon_sym_i128] = ACTIONS(2432), - [anon_sym_isize] = ACTIONS(2432), - [anon_sym_usize] = ACTIONS(2432), - [anon_sym_f32] = ACTIONS(2432), - [anon_sym_f64] = ACTIONS(2432), - [anon_sym_bool] = ACTIONS(2432), - [anon_sym_str] = ACTIONS(2432), - [anon_sym_char] = ACTIONS(2432), - [anon_sym_DASH] = ACTIONS(2430), - [anon_sym_BANG] = ACTIONS(2430), - [anon_sym_AMP] = ACTIONS(2430), - [anon_sym_PIPE] = ACTIONS(2430), - [anon_sym_LT] = ACTIONS(2430), - [anon_sym_DOT_DOT] = ACTIONS(2430), - [anon_sym_COLON_COLON] = ACTIONS(2430), - [anon_sym_POUND] = ACTIONS(2430), - [anon_sym_SQUOTE] = ACTIONS(2432), - [anon_sym_async] = ACTIONS(2432), - [anon_sym_break] = ACTIONS(2432), - [anon_sym_const] = ACTIONS(2432), - [anon_sym_continue] = ACTIONS(2432), - [anon_sym_default] = ACTIONS(2432), - [anon_sym_enum] = ACTIONS(2432), - [anon_sym_fn] = ACTIONS(2432), - [anon_sym_for] = ACTIONS(2432), - [anon_sym_gen] = ACTIONS(2432), - [anon_sym_if] = ACTIONS(2432), - [anon_sym_impl] = ACTIONS(2432), - [anon_sym_let] = ACTIONS(2432), - [anon_sym_loop] = ACTIONS(2432), - [anon_sym_match] = ACTIONS(2432), - [anon_sym_mod] = ACTIONS(2432), - [anon_sym_pub] = ACTIONS(2432), - [anon_sym_return] = ACTIONS(2432), - [anon_sym_static] = ACTIONS(2432), - [anon_sym_struct] = ACTIONS(2432), - [anon_sym_trait] = ACTIONS(2432), - [anon_sym_type] = ACTIONS(2432), - [anon_sym_union] = ACTIONS(2432), - [anon_sym_unsafe] = ACTIONS(2432), - [anon_sym_use] = ACTIONS(2432), - [anon_sym_while] = ACTIONS(2432), - [anon_sym_extern] = ACTIONS(2432), - [anon_sym_yield] = ACTIONS(2432), - [anon_sym_move] = ACTIONS(2432), - [anon_sym_try] = ACTIONS(2432), - [sym_integer_literal] = ACTIONS(2430), - [aux_sym_string_literal_token1] = ACTIONS(2430), - [sym_char_literal] = ACTIONS(2430), - [anon_sym_true] = ACTIONS(2432), - [anon_sym_false] = ACTIONS(2432), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2432), - [sym_super] = ACTIONS(2432), - [sym_crate] = ACTIONS(2432), - [sym_metavariable] = ACTIONS(2430), - [sym__raw_string_literal_start] = ACTIONS(2430), - [sym_float_literal] = ACTIONS(2430), + [sym_crate] = ACTIONS(2430), + [sym_metavariable] = ACTIONS(2432), }, - [STATE(627)] = { - [sym_line_comment] = STATE(627), - [sym_block_comment] = STATE(627), + [STATE(620)] = { + [sym_line_comment] = STATE(620), + [sym_block_comment] = STATE(620), [ts_builtin_sym_end] = ACTIONS(2434), [sym_identifier] = ACTIONS(2436), [anon_sym_SEMI] = ACTIONS(2434), @@ -82672,6 +82502,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(2436), [anon_sym_while] = ACTIONS(2436), [anon_sym_extern] = ACTIONS(2436), + [anon_sym_safe] = ACTIONS(2436), [anon_sym_yield] = ACTIONS(2436), [anon_sym_move] = ACTIONS(2436), [anon_sym_try] = ACTIONS(2436), @@ -82680,8 +82511,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2434), [anon_sym_true] = ACTIONS(2436), [anon_sym_false] = ACTIONS(2436), - [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(2436), [sym_super] = ACTIONS(2436), [sym_crate] = ACTIONS(2436), @@ -82689,9 +82520,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2434), [sym_float_literal] = ACTIONS(2434), }, - [STATE(628)] = { - [sym_line_comment] = STATE(628), - [sym_block_comment] = STATE(628), + [STATE(621)] = { + [sym_line_comment] = STATE(621), + [sym_block_comment] = STATE(621), [ts_builtin_sym_end] = ACTIONS(2438), [sym_identifier] = ACTIONS(2440), [anon_sym_SEMI] = ACTIONS(2438), @@ -82753,6 +82584,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(2440), [anon_sym_while] = ACTIONS(2440), [anon_sym_extern] = ACTIONS(2440), + [anon_sym_safe] = ACTIONS(2440), [anon_sym_yield] = ACTIONS(2440), [anon_sym_move] = ACTIONS(2440), [anon_sym_try] = ACTIONS(2440), @@ -82761,8 +82593,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2438), [anon_sym_true] = ACTIONS(2440), [anon_sym_false] = ACTIONS(2440), - [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(2440), [sym_super] = ACTIONS(2440), [sym_crate] = ACTIONS(2440), @@ -82770,9 +82602,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2438), [sym_float_literal] = ACTIONS(2438), }, - [STATE(629)] = { - [sym_line_comment] = STATE(629), - [sym_block_comment] = STATE(629), + [STATE(622)] = { + [sym_line_comment] = STATE(622), + [sym_block_comment] = STATE(622), + [ts_builtin_sym_end] = ACTIONS(1446), + [sym_identifier] = ACTIONS(1448), + [anon_sym_SEMI] = ACTIONS(1446), + [anon_sym_macro_rules_BANG] = ACTIONS(1446), + [anon_sym_LPAREN] = ACTIONS(1446), + [anon_sym_LBRACK] = ACTIONS(1446), + [anon_sym_LBRACE] = ACTIONS(1446), + [anon_sym_RBRACE] = ACTIONS(1446), + [anon_sym_STAR] = ACTIONS(1446), + [anon_sym_u8] = ACTIONS(1448), + [anon_sym_i8] = ACTIONS(1448), + [anon_sym_u16] = ACTIONS(1448), + [anon_sym_i16] = ACTIONS(1448), + [anon_sym_u32] = ACTIONS(1448), + [anon_sym_i32] = ACTIONS(1448), + [anon_sym_u64] = ACTIONS(1448), + [anon_sym_i64] = ACTIONS(1448), + [anon_sym_u128] = ACTIONS(1448), + [anon_sym_i128] = ACTIONS(1448), + [anon_sym_isize] = ACTIONS(1448), + [anon_sym_usize] = ACTIONS(1448), + [anon_sym_f32] = ACTIONS(1448), + [anon_sym_f64] = ACTIONS(1448), + [anon_sym_bool] = ACTIONS(1448), + [anon_sym_str] = ACTIONS(1448), + [anon_sym_char] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1446), + [anon_sym_BANG] = ACTIONS(1446), + [anon_sym_AMP] = ACTIONS(1446), + [anon_sym_PIPE] = ACTIONS(1446), + [anon_sym_LT] = ACTIONS(1446), + [anon_sym_DOT_DOT] = ACTIONS(1446), + [anon_sym_COLON_COLON] = ACTIONS(1446), + [anon_sym_POUND] = ACTIONS(1446), + [anon_sym_SQUOTE] = ACTIONS(1448), + [anon_sym_async] = ACTIONS(1448), + [anon_sym_break] = ACTIONS(1448), + [anon_sym_const] = ACTIONS(1448), + [anon_sym_continue] = ACTIONS(1448), + [anon_sym_default] = ACTIONS(1448), + [anon_sym_enum] = ACTIONS(1448), + [anon_sym_fn] = ACTIONS(1448), + [anon_sym_for] = ACTIONS(1448), + [anon_sym_gen] = ACTIONS(1448), + [anon_sym_if] = ACTIONS(1448), + [anon_sym_impl] = ACTIONS(1448), + [anon_sym_let] = ACTIONS(1448), + [anon_sym_loop] = ACTIONS(1448), + [anon_sym_match] = ACTIONS(1448), + [anon_sym_mod] = ACTIONS(1448), + [anon_sym_pub] = ACTIONS(1448), + [anon_sym_return] = ACTIONS(1448), + [anon_sym_static] = ACTIONS(1448), + [anon_sym_struct] = ACTIONS(1448), + [anon_sym_trait] = ACTIONS(1448), + [anon_sym_type] = ACTIONS(1448), + [anon_sym_union] = ACTIONS(1448), + [anon_sym_unsafe] = ACTIONS(1448), + [anon_sym_use] = ACTIONS(1448), + [anon_sym_while] = ACTIONS(1448), + [anon_sym_extern] = ACTIONS(1448), + [anon_sym_safe] = ACTIONS(1448), + [anon_sym_yield] = ACTIONS(1448), + [anon_sym_move] = ACTIONS(1448), + [anon_sym_try] = ACTIONS(1448), + [sym_integer_literal] = ACTIONS(1446), + [aux_sym_string_literal_token1] = ACTIONS(1446), + [sym_char_literal] = ACTIONS(1446), + [anon_sym_true] = ACTIONS(1448), + [anon_sym_false] = ACTIONS(1448), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1448), + [sym_super] = ACTIONS(1448), + [sym_crate] = ACTIONS(1448), + [sym_metavariable] = ACTIONS(1446), + [sym__raw_string_literal_start] = ACTIONS(1446), + [sym_float_literal] = ACTIONS(1446), + }, + [STATE(623)] = { + [sym_line_comment] = STATE(623), + [sym_block_comment] = STATE(623), [ts_builtin_sym_end] = ACTIONS(2442), [sym_identifier] = ACTIONS(2444), [anon_sym_SEMI] = ACTIONS(2442), @@ -82834,6 +82748,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(2444), [anon_sym_while] = ACTIONS(2444), [anon_sym_extern] = ACTIONS(2444), + [anon_sym_safe] = ACTIONS(2444), [anon_sym_yield] = ACTIONS(2444), [anon_sym_move] = ACTIONS(2444), [anon_sym_try] = ACTIONS(2444), @@ -82842,8 +82757,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2442), [anon_sym_true] = ACTIONS(2444), [anon_sym_false] = ACTIONS(2444), - [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(2444), [sym_super] = ACTIONS(2444), [sym_crate] = ACTIONS(2444), @@ -82851,9 +82766,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2442), [sym_float_literal] = ACTIONS(2442), }, - [STATE(630)] = { - [sym_line_comment] = STATE(630), - [sym_block_comment] = STATE(630), + [STATE(624)] = { + [sym_line_comment] = STATE(624), + [sym_block_comment] = STATE(624), [ts_builtin_sym_end] = ACTIONS(2446), [sym_identifier] = ACTIONS(2448), [anon_sym_SEMI] = ACTIONS(2446), @@ -82915,6 +82830,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(2448), [anon_sym_while] = ACTIONS(2448), [anon_sym_extern] = ACTIONS(2448), + [anon_sym_safe] = ACTIONS(2448), [anon_sym_yield] = ACTIONS(2448), [anon_sym_move] = ACTIONS(2448), [anon_sym_try] = ACTIONS(2448), @@ -82923,8 +82839,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2446), [anon_sym_true] = ACTIONS(2448), [anon_sym_false] = ACTIONS(2448), - [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(2448), [sym_super] = ACTIONS(2448), [sym_crate] = ACTIONS(2448), @@ -82932,9 +82848,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2446), [sym_float_literal] = ACTIONS(2446), }, - [STATE(631)] = { - [sym_line_comment] = STATE(631), - [sym_block_comment] = STATE(631), + [STATE(625)] = { + [sym_line_comment] = STATE(625), + [sym_block_comment] = STATE(625), [ts_builtin_sym_end] = ACTIONS(2450), [sym_identifier] = ACTIONS(2452), [anon_sym_SEMI] = ACTIONS(2450), @@ -82996,6 +82912,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(2452), [anon_sym_while] = ACTIONS(2452), [anon_sym_extern] = ACTIONS(2452), + [anon_sym_safe] = ACTIONS(2452), [anon_sym_yield] = ACTIONS(2452), [anon_sym_move] = ACTIONS(2452), [anon_sym_try] = ACTIONS(2452), @@ -83004,8 +82921,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2450), [anon_sym_true] = ACTIONS(2452), [anon_sym_false] = ACTIONS(2452), - [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(2452), [sym_super] = ACTIONS(2452), [sym_crate] = ACTIONS(2452), @@ -83013,9 +82930,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2450), [sym_float_literal] = ACTIONS(2450), }, - [STATE(632)] = { - [sym_line_comment] = STATE(632), - [sym_block_comment] = STATE(632), + [STATE(626)] = { + [sym_line_comment] = STATE(626), + [sym_block_comment] = STATE(626), + [ts_builtin_sym_end] = ACTIONS(1454), + [sym_identifier] = ACTIONS(1456), + [anon_sym_SEMI] = ACTIONS(1454), + [anon_sym_macro_rules_BANG] = ACTIONS(1454), + [anon_sym_LPAREN] = ACTIONS(1454), + [anon_sym_LBRACK] = ACTIONS(1454), + [anon_sym_LBRACE] = ACTIONS(1454), + [anon_sym_RBRACE] = ACTIONS(1454), + [anon_sym_STAR] = ACTIONS(1454), + [anon_sym_u8] = ACTIONS(1456), + [anon_sym_i8] = ACTIONS(1456), + [anon_sym_u16] = ACTIONS(1456), + [anon_sym_i16] = ACTIONS(1456), + [anon_sym_u32] = ACTIONS(1456), + [anon_sym_i32] = ACTIONS(1456), + [anon_sym_u64] = ACTIONS(1456), + [anon_sym_i64] = ACTIONS(1456), + [anon_sym_u128] = ACTIONS(1456), + [anon_sym_i128] = ACTIONS(1456), + [anon_sym_isize] = ACTIONS(1456), + [anon_sym_usize] = ACTIONS(1456), + [anon_sym_f32] = ACTIONS(1456), + [anon_sym_f64] = ACTIONS(1456), + [anon_sym_bool] = ACTIONS(1456), + [anon_sym_str] = ACTIONS(1456), + [anon_sym_char] = ACTIONS(1456), + [anon_sym_DASH] = ACTIONS(1454), + [anon_sym_BANG] = ACTIONS(1454), + [anon_sym_AMP] = ACTIONS(1454), + [anon_sym_PIPE] = ACTIONS(1454), + [anon_sym_LT] = ACTIONS(1454), + [anon_sym_DOT_DOT] = ACTIONS(1454), + [anon_sym_COLON_COLON] = ACTIONS(1454), + [anon_sym_POUND] = ACTIONS(1454), + [anon_sym_SQUOTE] = ACTIONS(1456), + [anon_sym_async] = ACTIONS(1456), + [anon_sym_break] = ACTIONS(1456), + [anon_sym_const] = ACTIONS(1456), + [anon_sym_continue] = ACTIONS(1456), + [anon_sym_default] = ACTIONS(1456), + [anon_sym_enum] = ACTIONS(1456), + [anon_sym_fn] = ACTIONS(1456), + [anon_sym_for] = ACTIONS(1456), + [anon_sym_gen] = ACTIONS(1456), + [anon_sym_if] = ACTIONS(1456), + [anon_sym_impl] = ACTIONS(1456), + [anon_sym_let] = ACTIONS(1456), + [anon_sym_loop] = ACTIONS(1456), + [anon_sym_match] = ACTIONS(1456), + [anon_sym_mod] = ACTIONS(1456), + [anon_sym_pub] = ACTIONS(1456), + [anon_sym_return] = ACTIONS(1456), + [anon_sym_static] = ACTIONS(1456), + [anon_sym_struct] = ACTIONS(1456), + [anon_sym_trait] = ACTIONS(1456), + [anon_sym_type] = ACTIONS(1456), + [anon_sym_union] = ACTIONS(1456), + [anon_sym_unsafe] = ACTIONS(1456), + [anon_sym_use] = ACTIONS(1456), + [anon_sym_while] = ACTIONS(1456), + [anon_sym_extern] = ACTIONS(1456), + [anon_sym_safe] = ACTIONS(1456), + [anon_sym_yield] = ACTIONS(1456), + [anon_sym_move] = ACTIONS(1456), + [anon_sym_try] = ACTIONS(1456), + [sym_integer_literal] = ACTIONS(1454), + [aux_sym_string_literal_token1] = ACTIONS(1454), + [sym_char_literal] = ACTIONS(1454), + [anon_sym_true] = ACTIONS(1456), + [anon_sym_false] = ACTIONS(1456), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1456), + [sym_super] = ACTIONS(1456), + [sym_crate] = ACTIONS(1456), + [sym_metavariable] = ACTIONS(1454), + [sym__raw_string_literal_start] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1454), + }, + [STATE(627)] = { + [sym_line_comment] = STATE(627), + [sym_block_comment] = STATE(627), [ts_builtin_sym_end] = ACTIONS(2454), [sym_identifier] = ACTIONS(2456), [anon_sym_SEMI] = ACTIONS(2454), @@ -83077,6 +83076,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(2456), [anon_sym_while] = ACTIONS(2456), [anon_sym_extern] = ACTIONS(2456), + [anon_sym_safe] = ACTIONS(2456), [anon_sym_yield] = ACTIONS(2456), [anon_sym_move] = ACTIONS(2456), [anon_sym_try] = ACTIONS(2456), @@ -83085,8 +83085,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2454), [anon_sym_true] = ACTIONS(2456), [anon_sym_false] = ACTIONS(2456), - [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(2456), [sym_super] = ACTIONS(2456), [sym_crate] = ACTIONS(2456), @@ -83094,9 +83094,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2454), [sym_float_literal] = ACTIONS(2454), }, - [STATE(633)] = { - [sym_line_comment] = STATE(633), - [sym_block_comment] = STATE(633), + [STATE(628)] = { + [sym_line_comment] = STATE(628), + [sym_block_comment] = STATE(628), [ts_builtin_sym_end] = ACTIONS(2458), [sym_identifier] = ACTIONS(2460), [anon_sym_SEMI] = ACTIONS(2458), @@ -83158,6 +83158,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(2460), [anon_sym_while] = ACTIONS(2460), [anon_sym_extern] = ACTIONS(2460), + [anon_sym_safe] = ACTIONS(2460), [anon_sym_yield] = ACTIONS(2460), [anon_sym_move] = ACTIONS(2460), [anon_sym_try] = ACTIONS(2460), @@ -83166,8 +83167,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2458), [anon_sym_true] = ACTIONS(2460), [anon_sym_false] = ACTIONS(2460), - [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(2460), [sym_super] = ACTIONS(2460), [sym_crate] = ACTIONS(2460), @@ -83175,9 +83176,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2458), [sym_float_literal] = ACTIONS(2458), }, - [STATE(634)] = { - [sym_line_comment] = STATE(634), - [sym_block_comment] = STATE(634), + [STATE(629)] = { + [sym_line_comment] = STATE(629), + [sym_block_comment] = STATE(629), [ts_builtin_sym_end] = ACTIONS(2462), [sym_identifier] = ACTIONS(2464), [anon_sym_SEMI] = ACTIONS(2462), @@ -83239,6 +83240,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(2464), [anon_sym_while] = ACTIONS(2464), [anon_sym_extern] = ACTIONS(2464), + [anon_sym_safe] = ACTIONS(2464), [anon_sym_yield] = ACTIONS(2464), [anon_sym_move] = ACTIONS(2464), [anon_sym_try] = ACTIONS(2464), @@ -83247,8 +83249,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2462), [anon_sym_true] = ACTIONS(2464), [anon_sym_false] = ACTIONS(2464), - [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(2464), [sym_super] = ACTIONS(2464), [sym_crate] = ACTIONS(2464), @@ -83256,9 +83258,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2462), [sym_float_literal] = ACTIONS(2462), }, - [STATE(635)] = { - [sym_line_comment] = STATE(635), - [sym_block_comment] = STATE(635), + [STATE(630)] = { + [sym_line_comment] = STATE(630), + [sym_block_comment] = STATE(630), [ts_builtin_sym_end] = ACTIONS(2466), [sym_identifier] = ACTIONS(2468), [anon_sym_SEMI] = ACTIONS(2466), @@ -83320,6 +83322,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(2468), [anon_sym_while] = ACTIONS(2468), [anon_sym_extern] = ACTIONS(2468), + [anon_sym_safe] = ACTIONS(2468), [anon_sym_yield] = ACTIONS(2468), [anon_sym_move] = ACTIONS(2468), [anon_sym_try] = ACTIONS(2468), @@ -83328,8 +83331,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2466), [anon_sym_true] = ACTIONS(2468), [anon_sym_false] = ACTIONS(2468), - [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(2468), [sym_super] = ACTIONS(2468), [sym_crate] = ACTIONS(2468), @@ -83337,9 +83340,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2466), [sym_float_literal] = ACTIONS(2466), }, - [STATE(636)] = { - [sym_line_comment] = STATE(636), - [sym_block_comment] = STATE(636), + [STATE(631)] = { + [sym_line_comment] = STATE(631), + [sym_block_comment] = STATE(631), + [ts_builtin_sym_end] = ACTIONS(1450), + [sym_identifier] = ACTIONS(1452), + [anon_sym_SEMI] = ACTIONS(1450), + [anon_sym_macro_rules_BANG] = ACTIONS(1450), + [anon_sym_LPAREN] = ACTIONS(1450), + [anon_sym_LBRACK] = ACTIONS(1450), + [anon_sym_LBRACE] = ACTIONS(1450), + [anon_sym_RBRACE] = ACTIONS(1450), + [anon_sym_STAR] = ACTIONS(1450), + [anon_sym_u8] = ACTIONS(1452), + [anon_sym_i8] = ACTIONS(1452), + [anon_sym_u16] = ACTIONS(1452), + [anon_sym_i16] = ACTIONS(1452), + [anon_sym_u32] = ACTIONS(1452), + [anon_sym_i32] = ACTIONS(1452), + [anon_sym_u64] = ACTIONS(1452), + [anon_sym_i64] = ACTIONS(1452), + [anon_sym_u128] = ACTIONS(1452), + [anon_sym_i128] = ACTIONS(1452), + [anon_sym_isize] = ACTIONS(1452), + [anon_sym_usize] = ACTIONS(1452), + [anon_sym_f32] = ACTIONS(1452), + [anon_sym_f64] = ACTIONS(1452), + [anon_sym_bool] = ACTIONS(1452), + [anon_sym_str] = ACTIONS(1452), + [anon_sym_char] = ACTIONS(1452), + [anon_sym_DASH] = ACTIONS(1450), + [anon_sym_BANG] = ACTIONS(1450), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_PIPE] = ACTIONS(1450), + [anon_sym_LT] = ACTIONS(1450), + [anon_sym_DOT_DOT] = ACTIONS(1450), + [anon_sym_COLON_COLON] = ACTIONS(1450), + [anon_sym_POUND] = ACTIONS(1450), + [anon_sym_SQUOTE] = ACTIONS(1452), + [anon_sym_async] = ACTIONS(1452), + [anon_sym_break] = ACTIONS(1452), + [anon_sym_const] = ACTIONS(1452), + [anon_sym_continue] = ACTIONS(1452), + [anon_sym_default] = ACTIONS(1452), + [anon_sym_enum] = ACTIONS(1452), + [anon_sym_fn] = ACTIONS(1452), + [anon_sym_for] = ACTIONS(1452), + [anon_sym_gen] = ACTIONS(1452), + [anon_sym_if] = ACTIONS(1452), + [anon_sym_impl] = ACTIONS(1452), + [anon_sym_let] = ACTIONS(1452), + [anon_sym_loop] = ACTIONS(1452), + [anon_sym_match] = ACTIONS(1452), + [anon_sym_mod] = ACTIONS(1452), + [anon_sym_pub] = ACTIONS(1452), + [anon_sym_return] = ACTIONS(1452), + [anon_sym_static] = ACTIONS(1452), + [anon_sym_struct] = ACTIONS(1452), + [anon_sym_trait] = ACTIONS(1452), + [anon_sym_type] = ACTIONS(1452), + [anon_sym_union] = ACTIONS(1452), + [anon_sym_unsafe] = ACTIONS(1452), + [anon_sym_use] = ACTIONS(1452), + [anon_sym_while] = ACTIONS(1452), + [anon_sym_extern] = ACTIONS(1452), + [anon_sym_safe] = ACTIONS(1452), + [anon_sym_yield] = ACTIONS(1452), + [anon_sym_move] = ACTIONS(1452), + [anon_sym_try] = ACTIONS(1452), + [sym_integer_literal] = ACTIONS(1450), + [aux_sym_string_literal_token1] = ACTIONS(1450), + [sym_char_literal] = ACTIONS(1450), + [anon_sym_true] = ACTIONS(1452), + [anon_sym_false] = ACTIONS(1452), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1452), + [sym_super] = ACTIONS(1452), + [sym_crate] = ACTIONS(1452), + [sym_metavariable] = ACTIONS(1450), + [sym__raw_string_literal_start] = ACTIONS(1450), + [sym_float_literal] = ACTIONS(1450), + }, + [STATE(632)] = { + [sym_line_comment] = STATE(632), + [sym_block_comment] = STATE(632), [ts_builtin_sym_end] = ACTIONS(2470), [sym_identifier] = ACTIONS(2472), [anon_sym_SEMI] = ACTIONS(2470), @@ -83401,6 +83486,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(2472), [anon_sym_while] = ACTIONS(2472), [anon_sym_extern] = ACTIONS(2472), + [anon_sym_safe] = ACTIONS(2472), [anon_sym_yield] = ACTIONS(2472), [anon_sym_move] = ACTIONS(2472), [anon_sym_try] = ACTIONS(2472), @@ -83409,8 +83495,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2470), [anon_sym_true] = ACTIONS(2472), [anon_sym_false] = ACTIONS(2472), - [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(2472), [sym_super] = ACTIONS(2472), [sym_crate] = ACTIONS(2472), @@ -83418,9 +83504,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2470), [sym_float_literal] = ACTIONS(2470), }, - [STATE(637)] = { - [sym_line_comment] = STATE(637), - [sym_block_comment] = STATE(637), + [STATE(633)] = { + [sym_line_comment] = STATE(633), + [sym_block_comment] = STATE(633), [ts_builtin_sym_end] = ACTIONS(2474), [sym_identifier] = ACTIONS(2476), [anon_sym_SEMI] = ACTIONS(2474), @@ -83482,6 +83568,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(2476), [anon_sym_while] = ACTIONS(2476), [anon_sym_extern] = ACTIONS(2476), + [anon_sym_safe] = ACTIONS(2476), [anon_sym_yield] = ACTIONS(2476), [anon_sym_move] = ACTIONS(2476), [anon_sym_try] = ACTIONS(2476), @@ -83490,8 +83577,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2474), [anon_sym_true] = ACTIONS(2476), [anon_sym_false] = ACTIONS(2476), - [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(2476), [sym_super] = ACTIONS(2476), [sym_crate] = ACTIONS(2476), @@ -83499,9 +83586,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2474), [sym_float_literal] = ACTIONS(2474), }, - [STATE(638)] = { - [sym_line_comment] = STATE(638), - [sym_block_comment] = STATE(638), + [STATE(634)] = { + [sym_line_comment] = STATE(634), + [sym_block_comment] = STATE(634), [ts_builtin_sym_end] = ACTIONS(2478), [sym_identifier] = ACTIONS(2480), [anon_sym_SEMI] = ACTIONS(2478), @@ -83563,6 +83650,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(2480), [anon_sym_while] = ACTIONS(2480), [anon_sym_extern] = ACTIONS(2480), + [anon_sym_safe] = ACTIONS(2480), [anon_sym_yield] = ACTIONS(2480), [anon_sym_move] = ACTIONS(2480), [anon_sym_try] = ACTIONS(2480), @@ -83571,8 +83659,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2478), [anon_sym_true] = ACTIONS(2480), [anon_sym_false] = ACTIONS(2480), - [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(2480), [sym_super] = ACTIONS(2480), [sym_crate] = ACTIONS(2480), @@ -83580,9 +83668,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2478), [sym_float_literal] = ACTIONS(2478), }, - [STATE(639)] = { - [sym_line_comment] = STATE(639), - [sym_block_comment] = STATE(639), + [STATE(635)] = { + [sym_line_comment] = STATE(635), + [sym_block_comment] = STATE(635), [ts_builtin_sym_end] = ACTIONS(2482), [sym_identifier] = ACTIONS(2484), [anon_sym_SEMI] = ACTIONS(2482), @@ -83644,6 +83732,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(2484), [anon_sym_while] = ACTIONS(2484), [anon_sym_extern] = ACTIONS(2484), + [anon_sym_safe] = ACTIONS(2484), [anon_sym_yield] = ACTIONS(2484), [anon_sym_move] = ACTIONS(2484), [anon_sym_try] = ACTIONS(2484), @@ -83652,8 +83741,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2482), [anon_sym_true] = ACTIONS(2484), [anon_sym_false] = ACTIONS(2484), - [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(2484), [sym_super] = ACTIONS(2484), [sym_crate] = ACTIONS(2484), @@ -83661,9 +83750,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2482), [sym_float_literal] = ACTIONS(2482), }, - [STATE(640)] = { - [sym_line_comment] = STATE(640), - [sym_block_comment] = STATE(640), + [STATE(636)] = { + [sym_line_comment] = STATE(636), + [sym_block_comment] = STATE(636), [ts_builtin_sym_end] = ACTIONS(2486), [sym_identifier] = ACTIONS(2488), [anon_sym_SEMI] = ACTIONS(2486), @@ -83725,6 +83814,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(2488), [anon_sym_while] = ACTIONS(2488), [anon_sym_extern] = ACTIONS(2488), + [anon_sym_safe] = ACTIONS(2488), [anon_sym_yield] = ACTIONS(2488), [anon_sym_move] = ACTIONS(2488), [anon_sym_try] = ACTIONS(2488), @@ -83733,8 +83823,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2486), [anon_sym_true] = ACTIONS(2488), [anon_sym_false] = ACTIONS(2488), - [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(2488), [sym_super] = ACTIONS(2488), [sym_crate] = ACTIONS(2488), @@ -83742,9 +83832,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2486), [sym_float_literal] = ACTIONS(2486), }, - [STATE(641)] = { - [sym_line_comment] = STATE(641), - [sym_block_comment] = STATE(641), + [STATE(637)] = { + [sym_line_comment] = STATE(637), + [sym_block_comment] = STATE(637), [ts_builtin_sym_end] = ACTIONS(2490), [sym_identifier] = ACTIONS(2492), [anon_sym_SEMI] = ACTIONS(2490), @@ -83806,6 +83896,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(2492), [anon_sym_while] = ACTIONS(2492), [anon_sym_extern] = ACTIONS(2492), + [anon_sym_safe] = ACTIONS(2492), [anon_sym_yield] = ACTIONS(2492), [anon_sym_move] = ACTIONS(2492), [anon_sym_try] = ACTIONS(2492), @@ -83814,8 +83905,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2490), [anon_sym_true] = ACTIONS(2492), [anon_sym_false] = ACTIONS(2492), - [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(2492), [sym_super] = ACTIONS(2492), [sym_crate] = ACTIONS(2492), @@ -83823,9 +83914,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2490), [sym_float_literal] = ACTIONS(2490), }, - [STATE(642)] = { - [sym_line_comment] = STATE(642), - [sym_block_comment] = STATE(642), + [STATE(638)] = { + [sym_line_comment] = STATE(638), + [sym_block_comment] = STATE(638), [ts_builtin_sym_end] = ACTIONS(2494), [sym_identifier] = ACTIONS(2496), [anon_sym_SEMI] = ACTIONS(2494), @@ -83887,6 +83978,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(2496), [anon_sym_while] = ACTIONS(2496), [anon_sym_extern] = ACTIONS(2496), + [anon_sym_safe] = ACTIONS(2496), [anon_sym_yield] = ACTIONS(2496), [anon_sym_move] = ACTIONS(2496), [anon_sym_try] = ACTIONS(2496), @@ -83895,8 +83987,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2494), [anon_sym_true] = ACTIONS(2496), [anon_sym_false] = ACTIONS(2496), - [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(2496), [sym_super] = ACTIONS(2496), [sym_crate] = ACTIONS(2496), @@ -83904,9 +83996,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2494), [sym_float_literal] = ACTIONS(2494), }, - [STATE(643)] = { - [sym_line_comment] = STATE(643), - [sym_block_comment] = STATE(643), + [STATE(639)] = { + [sym_line_comment] = STATE(639), + [sym_block_comment] = STATE(639), [ts_builtin_sym_end] = ACTIONS(2498), [sym_identifier] = ACTIONS(2500), [anon_sym_SEMI] = ACTIONS(2498), @@ -83968,6 +84060,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(2500), [anon_sym_while] = ACTIONS(2500), [anon_sym_extern] = ACTIONS(2500), + [anon_sym_safe] = ACTIONS(2500), [anon_sym_yield] = ACTIONS(2500), [anon_sym_move] = ACTIONS(2500), [anon_sym_try] = ACTIONS(2500), @@ -83976,8 +84069,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2498), [anon_sym_true] = ACTIONS(2500), [anon_sym_false] = ACTIONS(2500), - [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(2500), [sym_super] = ACTIONS(2500), [sym_crate] = ACTIONS(2500), @@ -83985,657 +84078,501 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2498), [sym_float_literal] = ACTIONS(2498), }, + [STATE(640)] = { + [sym_line_comment] = STATE(640), + [sym_block_comment] = STATE(640), + [ts_builtin_sym_end] = ACTIONS(2502), + [sym_identifier] = ACTIONS(2504), + [anon_sym_SEMI] = ACTIONS(2502), + [anon_sym_macro_rules_BANG] = ACTIONS(2502), + [anon_sym_LPAREN] = ACTIONS(2502), + [anon_sym_LBRACK] = ACTIONS(2502), + [anon_sym_LBRACE] = ACTIONS(2502), + [anon_sym_RBRACE] = ACTIONS(2502), + [anon_sym_STAR] = ACTIONS(2502), + [anon_sym_u8] = ACTIONS(2504), + [anon_sym_i8] = ACTIONS(2504), + [anon_sym_u16] = ACTIONS(2504), + [anon_sym_i16] = ACTIONS(2504), + [anon_sym_u32] = ACTIONS(2504), + [anon_sym_i32] = ACTIONS(2504), + [anon_sym_u64] = ACTIONS(2504), + [anon_sym_i64] = ACTIONS(2504), + [anon_sym_u128] = ACTIONS(2504), + [anon_sym_i128] = ACTIONS(2504), + [anon_sym_isize] = ACTIONS(2504), + [anon_sym_usize] = ACTIONS(2504), + [anon_sym_f32] = ACTIONS(2504), + [anon_sym_f64] = ACTIONS(2504), + [anon_sym_bool] = ACTIONS(2504), + [anon_sym_str] = ACTIONS(2504), + [anon_sym_char] = ACTIONS(2504), + [anon_sym_DASH] = ACTIONS(2502), + [anon_sym_BANG] = ACTIONS(2502), + [anon_sym_AMP] = ACTIONS(2502), + [anon_sym_PIPE] = ACTIONS(2502), + [anon_sym_LT] = ACTIONS(2502), + [anon_sym_DOT_DOT] = ACTIONS(2502), + [anon_sym_COLON_COLON] = ACTIONS(2502), + [anon_sym_POUND] = ACTIONS(2502), + [anon_sym_SQUOTE] = ACTIONS(2504), + [anon_sym_async] = ACTIONS(2504), + [anon_sym_break] = ACTIONS(2504), + [anon_sym_const] = ACTIONS(2504), + [anon_sym_continue] = ACTIONS(2504), + [anon_sym_default] = ACTIONS(2504), + [anon_sym_enum] = ACTIONS(2504), + [anon_sym_fn] = ACTIONS(2504), + [anon_sym_for] = ACTIONS(2504), + [anon_sym_gen] = ACTIONS(2504), + [anon_sym_if] = ACTIONS(2504), + [anon_sym_impl] = ACTIONS(2504), + [anon_sym_let] = ACTIONS(2504), + [anon_sym_loop] = ACTIONS(2504), + [anon_sym_match] = ACTIONS(2504), + [anon_sym_mod] = ACTIONS(2504), + [anon_sym_pub] = ACTIONS(2504), + [anon_sym_return] = ACTIONS(2504), + [anon_sym_static] = ACTIONS(2504), + [anon_sym_struct] = ACTIONS(2504), + [anon_sym_trait] = ACTIONS(2504), + [anon_sym_type] = ACTIONS(2504), + [anon_sym_union] = ACTIONS(2504), + [anon_sym_unsafe] = ACTIONS(2504), + [anon_sym_use] = ACTIONS(2504), + [anon_sym_while] = ACTIONS(2504), + [anon_sym_extern] = ACTIONS(2504), + [anon_sym_safe] = ACTIONS(2504), + [anon_sym_yield] = ACTIONS(2504), + [anon_sym_move] = ACTIONS(2504), + [anon_sym_try] = ACTIONS(2504), + [sym_integer_literal] = ACTIONS(2502), + [aux_sym_string_literal_token1] = ACTIONS(2502), + [sym_char_literal] = ACTIONS(2502), + [anon_sym_true] = ACTIONS(2504), + [anon_sym_false] = ACTIONS(2504), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2504), + [sym_super] = ACTIONS(2504), + [sym_crate] = ACTIONS(2504), + [sym_metavariable] = ACTIONS(2502), + [sym__raw_string_literal_start] = ACTIONS(2502), + [sym_float_literal] = ACTIONS(2502), + }, + [STATE(641)] = { + [sym_line_comment] = STATE(641), + [sym_block_comment] = STATE(641), + [ts_builtin_sym_end] = ACTIONS(2506), + [sym_identifier] = ACTIONS(2508), + [anon_sym_SEMI] = ACTIONS(2506), + [anon_sym_macro_rules_BANG] = ACTIONS(2506), + [anon_sym_LPAREN] = ACTIONS(2506), + [anon_sym_LBRACK] = ACTIONS(2506), + [anon_sym_LBRACE] = ACTIONS(2506), + [anon_sym_RBRACE] = ACTIONS(2506), + [anon_sym_STAR] = ACTIONS(2506), + [anon_sym_u8] = ACTIONS(2508), + [anon_sym_i8] = ACTIONS(2508), + [anon_sym_u16] = ACTIONS(2508), + [anon_sym_i16] = ACTIONS(2508), + [anon_sym_u32] = ACTIONS(2508), + [anon_sym_i32] = ACTIONS(2508), + [anon_sym_u64] = ACTIONS(2508), + [anon_sym_i64] = ACTIONS(2508), + [anon_sym_u128] = ACTIONS(2508), + [anon_sym_i128] = ACTIONS(2508), + [anon_sym_isize] = ACTIONS(2508), + [anon_sym_usize] = ACTIONS(2508), + [anon_sym_f32] = ACTIONS(2508), + [anon_sym_f64] = ACTIONS(2508), + [anon_sym_bool] = ACTIONS(2508), + [anon_sym_str] = ACTIONS(2508), + [anon_sym_char] = ACTIONS(2508), + [anon_sym_DASH] = ACTIONS(2506), + [anon_sym_BANG] = ACTIONS(2506), + [anon_sym_AMP] = ACTIONS(2506), + [anon_sym_PIPE] = ACTIONS(2506), + [anon_sym_LT] = ACTIONS(2506), + [anon_sym_DOT_DOT] = ACTIONS(2506), + [anon_sym_COLON_COLON] = ACTIONS(2506), + [anon_sym_POUND] = ACTIONS(2506), + [anon_sym_SQUOTE] = ACTIONS(2508), + [anon_sym_async] = ACTIONS(2508), + [anon_sym_break] = ACTIONS(2508), + [anon_sym_const] = ACTIONS(2508), + [anon_sym_continue] = ACTIONS(2508), + [anon_sym_default] = ACTIONS(2508), + [anon_sym_enum] = ACTIONS(2508), + [anon_sym_fn] = ACTIONS(2508), + [anon_sym_for] = ACTIONS(2508), + [anon_sym_gen] = ACTIONS(2508), + [anon_sym_if] = ACTIONS(2508), + [anon_sym_impl] = ACTIONS(2508), + [anon_sym_let] = ACTIONS(2508), + [anon_sym_loop] = ACTIONS(2508), + [anon_sym_match] = ACTIONS(2508), + [anon_sym_mod] = ACTIONS(2508), + [anon_sym_pub] = ACTIONS(2508), + [anon_sym_return] = ACTIONS(2508), + [anon_sym_static] = ACTIONS(2508), + [anon_sym_struct] = ACTIONS(2508), + [anon_sym_trait] = ACTIONS(2508), + [anon_sym_type] = ACTIONS(2508), + [anon_sym_union] = ACTIONS(2508), + [anon_sym_unsafe] = ACTIONS(2508), + [anon_sym_use] = ACTIONS(2508), + [anon_sym_while] = ACTIONS(2508), + [anon_sym_extern] = ACTIONS(2508), + [anon_sym_safe] = ACTIONS(2508), + [anon_sym_yield] = ACTIONS(2508), + [anon_sym_move] = ACTIONS(2508), + [anon_sym_try] = ACTIONS(2508), + [sym_integer_literal] = ACTIONS(2506), + [aux_sym_string_literal_token1] = ACTIONS(2506), + [sym_char_literal] = ACTIONS(2506), + [anon_sym_true] = ACTIONS(2508), + [anon_sym_false] = ACTIONS(2508), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2508), + [sym_super] = ACTIONS(2508), + [sym_crate] = ACTIONS(2508), + [sym_metavariable] = ACTIONS(2506), + [sym__raw_string_literal_start] = ACTIONS(2506), + [sym_float_literal] = ACTIONS(2506), + }, + [STATE(642)] = { + [sym_line_comment] = STATE(642), + [sym_block_comment] = STATE(642), + [ts_builtin_sym_end] = ACTIONS(2510), + [sym_identifier] = ACTIONS(2512), + [anon_sym_SEMI] = ACTIONS(2510), + [anon_sym_macro_rules_BANG] = ACTIONS(2510), + [anon_sym_LPAREN] = ACTIONS(2510), + [anon_sym_LBRACK] = ACTIONS(2510), + [anon_sym_LBRACE] = ACTIONS(2510), + [anon_sym_RBRACE] = ACTIONS(2510), + [anon_sym_STAR] = ACTIONS(2510), + [anon_sym_u8] = ACTIONS(2512), + [anon_sym_i8] = ACTIONS(2512), + [anon_sym_u16] = ACTIONS(2512), + [anon_sym_i16] = ACTIONS(2512), + [anon_sym_u32] = ACTIONS(2512), + [anon_sym_i32] = ACTIONS(2512), + [anon_sym_u64] = ACTIONS(2512), + [anon_sym_i64] = ACTIONS(2512), + [anon_sym_u128] = ACTIONS(2512), + [anon_sym_i128] = ACTIONS(2512), + [anon_sym_isize] = ACTIONS(2512), + [anon_sym_usize] = ACTIONS(2512), + [anon_sym_f32] = ACTIONS(2512), + [anon_sym_f64] = ACTIONS(2512), + [anon_sym_bool] = ACTIONS(2512), + [anon_sym_str] = ACTIONS(2512), + [anon_sym_char] = ACTIONS(2512), + [anon_sym_DASH] = ACTIONS(2510), + [anon_sym_BANG] = ACTIONS(2510), + [anon_sym_AMP] = ACTIONS(2510), + [anon_sym_PIPE] = ACTIONS(2510), + [anon_sym_LT] = ACTIONS(2510), + [anon_sym_DOT_DOT] = ACTIONS(2510), + [anon_sym_COLON_COLON] = ACTIONS(2510), + [anon_sym_POUND] = ACTIONS(2510), + [anon_sym_SQUOTE] = ACTIONS(2512), + [anon_sym_async] = ACTIONS(2512), + [anon_sym_break] = ACTIONS(2512), + [anon_sym_const] = ACTIONS(2512), + [anon_sym_continue] = ACTIONS(2512), + [anon_sym_default] = ACTIONS(2512), + [anon_sym_enum] = ACTIONS(2512), + [anon_sym_fn] = ACTIONS(2512), + [anon_sym_for] = ACTIONS(2512), + [anon_sym_gen] = ACTIONS(2512), + [anon_sym_if] = ACTIONS(2512), + [anon_sym_impl] = ACTIONS(2512), + [anon_sym_let] = ACTIONS(2512), + [anon_sym_loop] = ACTIONS(2512), + [anon_sym_match] = ACTIONS(2512), + [anon_sym_mod] = ACTIONS(2512), + [anon_sym_pub] = ACTIONS(2512), + [anon_sym_return] = ACTIONS(2512), + [anon_sym_static] = ACTIONS(2512), + [anon_sym_struct] = ACTIONS(2512), + [anon_sym_trait] = ACTIONS(2512), + [anon_sym_type] = ACTIONS(2512), + [anon_sym_union] = ACTIONS(2512), + [anon_sym_unsafe] = ACTIONS(2512), + [anon_sym_use] = ACTIONS(2512), + [anon_sym_while] = ACTIONS(2512), + [anon_sym_extern] = ACTIONS(2512), + [anon_sym_safe] = ACTIONS(2512), + [anon_sym_yield] = ACTIONS(2512), + [anon_sym_move] = ACTIONS(2512), + [anon_sym_try] = ACTIONS(2512), + [sym_integer_literal] = ACTIONS(2510), + [aux_sym_string_literal_token1] = ACTIONS(2510), + [sym_char_literal] = ACTIONS(2510), + [anon_sym_true] = ACTIONS(2512), + [anon_sym_false] = ACTIONS(2512), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2512), + [sym_super] = ACTIONS(2512), + [sym_crate] = ACTIONS(2512), + [sym_metavariable] = ACTIONS(2510), + [sym__raw_string_literal_start] = ACTIONS(2510), + [sym_float_literal] = ACTIONS(2510), + }, + [STATE(643)] = { + [sym_line_comment] = STATE(643), + [sym_block_comment] = STATE(643), + [ts_builtin_sym_end] = ACTIONS(2514), + [sym_identifier] = ACTIONS(2516), + [anon_sym_SEMI] = ACTIONS(2514), + [anon_sym_macro_rules_BANG] = ACTIONS(2514), + [anon_sym_LPAREN] = ACTIONS(2514), + [anon_sym_LBRACK] = ACTIONS(2514), + [anon_sym_LBRACE] = ACTIONS(2514), + [anon_sym_RBRACE] = ACTIONS(2514), + [anon_sym_STAR] = ACTIONS(2514), + [anon_sym_u8] = ACTIONS(2516), + [anon_sym_i8] = ACTIONS(2516), + [anon_sym_u16] = ACTIONS(2516), + [anon_sym_i16] = ACTIONS(2516), + [anon_sym_u32] = ACTIONS(2516), + [anon_sym_i32] = ACTIONS(2516), + [anon_sym_u64] = ACTIONS(2516), + [anon_sym_i64] = ACTIONS(2516), + [anon_sym_u128] = ACTIONS(2516), + [anon_sym_i128] = ACTIONS(2516), + [anon_sym_isize] = ACTIONS(2516), + [anon_sym_usize] = ACTIONS(2516), + [anon_sym_f32] = ACTIONS(2516), + [anon_sym_f64] = ACTIONS(2516), + [anon_sym_bool] = ACTIONS(2516), + [anon_sym_str] = ACTIONS(2516), + [anon_sym_char] = ACTIONS(2516), + [anon_sym_DASH] = ACTIONS(2514), + [anon_sym_BANG] = ACTIONS(2514), + [anon_sym_AMP] = ACTIONS(2514), + [anon_sym_PIPE] = ACTIONS(2514), + [anon_sym_LT] = ACTIONS(2514), + [anon_sym_DOT_DOT] = ACTIONS(2514), + [anon_sym_COLON_COLON] = ACTIONS(2514), + [anon_sym_POUND] = ACTIONS(2514), + [anon_sym_SQUOTE] = ACTIONS(2516), + [anon_sym_async] = ACTIONS(2516), + [anon_sym_break] = ACTIONS(2516), + [anon_sym_const] = ACTIONS(2516), + [anon_sym_continue] = ACTIONS(2516), + [anon_sym_default] = ACTIONS(2516), + [anon_sym_enum] = ACTIONS(2516), + [anon_sym_fn] = ACTIONS(2516), + [anon_sym_for] = ACTIONS(2516), + [anon_sym_gen] = ACTIONS(2516), + [anon_sym_if] = ACTIONS(2516), + [anon_sym_impl] = ACTIONS(2516), + [anon_sym_let] = ACTIONS(2516), + [anon_sym_loop] = ACTIONS(2516), + [anon_sym_match] = ACTIONS(2516), + [anon_sym_mod] = ACTIONS(2516), + [anon_sym_pub] = ACTIONS(2516), + [anon_sym_return] = ACTIONS(2516), + [anon_sym_static] = ACTIONS(2516), + [anon_sym_struct] = ACTIONS(2516), + [anon_sym_trait] = ACTIONS(2516), + [anon_sym_type] = ACTIONS(2516), + [anon_sym_union] = ACTIONS(2516), + [anon_sym_unsafe] = ACTIONS(2516), + [anon_sym_use] = ACTIONS(2516), + [anon_sym_while] = ACTIONS(2516), + [anon_sym_extern] = ACTIONS(2516), + [anon_sym_safe] = ACTIONS(2516), + [anon_sym_yield] = ACTIONS(2516), + [anon_sym_move] = ACTIONS(2516), + [anon_sym_try] = ACTIONS(2516), + [sym_integer_literal] = ACTIONS(2514), + [aux_sym_string_literal_token1] = ACTIONS(2514), + [sym_char_literal] = ACTIONS(2514), + [anon_sym_true] = ACTIONS(2516), + [anon_sym_false] = ACTIONS(2516), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2516), + [sym_super] = ACTIONS(2516), + [sym_crate] = ACTIONS(2516), + [sym_metavariable] = ACTIONS(2514), + [sym__raw_string_literal_start] = ACTIONS(2514), + [sym_float_literal] = ACTIONS(2514), + }, [STATE(644)] = { - [sym_attribute_item] = STATE(1145), - [sym_inner_attribute_item] = STATE(1145), - [sym_bracketed_type] = STATE(3695), - [sym_generic_type] = STATE(3711), - [sym_generic_type_with_turbofish] = STATE(3416), - [sym_macro_invocation] = STATE(2883), - [sym_scoped_identifier] = STATE(2241), - [sym_scoped_type_identifier] = STATE(3110), - [sym_match_pattern] = STATE(3708), - [sym_const_block] = STATE(2883), - [sym__pattern] = STATE(2909), - [sym_generic_pattern] = STATE(2883), - [sym_tuple_pattern] = STATE(2883), - [sym_slice_pattern] = STATE(2883), - [sym_tuple_struct_pattern] = STATE(2883), - [sym_struct_pattern] = STATE(2883), - [sym_remaining_field_pattern] = STATE(2883), - [sym_mut_pattern] = STATE(2883), - [sym_range_pattern] = STATE(2883), - [sym_ref_pattern] = STATE(2883), - [sym_captured_pattern] = STATE(2883), - [sym_reference_pattern] = STATE(2883), - [sym_or_pattern] = STATE(2883), - [sym__literal_pattern] = STATE(2449), - [sym_negative_literal] = STATE(2408), - [sym_string_literal] = STATE(2408), - [sym_raw_string_literal] = STATE(2408), - [sym_boolean_literal] = STATE(2408), [sym_line_comment] = STATE(644), [sym_block_comment] = STATE(644), - [aux_sym_match_arm_repeat1] = STATE(1077), - [sym_identifier] = ACTIONS(1671), - [anon_sym_LPAREN] = ACTIONS(1673), - [anon_sym_LBRACK] = ACTIONS(1675), - [anon_sym_u8] = ACTIONS(1679), - [anon_sym_i8] = ACTIONS(1679), - [anon_sym_u16] = ACTIONS(1679), - [anon_sym_i16] = ACTIONS(1679), - [anon_sym_u32] = ACTIONS(1679), - [anon_sym_i32] = ACTIONS(1679), - [anon_sym_u64] = ACTIONS(1679), - [anon_sym_i64] = ACTIONS(1679), - [anon_sym_u128] = ACTIONS(1679), - [anon_sym_i128] = ACTIONS(1679), - [anon_sym_isize] = ACTIONS(1679), - [anon_sym_usize] = ACTIONS(1679), - [anon_sym_f32] = ACTIONS(1679), - [anon_sym_f64] = ACTIONS(1679), - [anon_sym_bool] = ACTIONS(1679), - [anon_sym_str] = ACTIONS(1679), - [anon_sym_char] = ACTIONS(1679), - [anon_sym_DASH] = ACTIONS(1681), - [anon_sym_AMP] = ACTIONS(1683), - [anon_sym_PIPE] = ACTIONS(1685), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1687), - [anon_sym_DOT_DOT] = ACTIONS(1689), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1691), - [anon_sym_COLON_COLON] = ACTIONS(1693), - [anon_sym_POUND] = ACTIONS(1695), - [anon_sym_const] = ACTIONS(1697), - [anon_sym_default] = ACTIONS(1699), - [anon_sym_gen] = ACTIONS(1699), - [anon_sym_union] = ACTIONS(1699), - [anon_sym_ref] = ACTIONS(1701), - [sym_mutable_specifier] = ACTIONS(1703), - [sym_integer_literal] = ACTIONS(1705), - [aux_sym_string_literal_token1] = ACTIONS(1707), - [sym_char_literal] = ACTIONS(1705), - [anon_sym_true] = ACTIONS(1709), - [anon_sym_false] = ACTIONS(1709), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1711), - [sym_super] = ACTIONS(1711), - [sym_crate] = ACTIONS(1711), - [sym_metavariable] = ACTIONS(1713), - [sym__raw_string_literal_start] = ACTIONS(1715), - [sym_float_literal] = ACTIONS(1705), + [ts_builtin_sym_end] = ACTIONS(2518), + [sym_identifier] = ACTIONS(2520), + [anon_sym_SEMI] = ACTIONS(2518), + [anon_sym_macro_rules_BANG] = ACTIONS(2518), + [anon_sym_LPAREN] = ACTIONS(2518), + [anon_sym_LBRACK] = ACTIONS(2518), + [anon_sym_LBRACE] = ACTIONS(2518), + [anon_sym_RBRACE] = ACTIONS(2518), + [anon_sym_STAR] = ACTIONS(2518), + [anon_sym_u8] = ACTIONS(2520), + [anon_sym_i8] = ACTIONS(2520), + [anon_sym_u16] = ACTIONS(2520), + [anon_sym_i16] = ACTIONS(2520), + [anon_sym_u32] = ACTIONS(2520), + [anon_sym_i32] = ACTIONS(2520), + [anon_sym_u64] = ACTIONS(2520), + [anon_sym_i64] = ACTIONS(2520), + [anon_sym_u128] = ACTIONS(2520), + [anon_sym_i128] = ACTIONS(2520), + [anon_sym_isize] = ACTIONS(2520), + [anon_sym_usize] = ACTIONS(2520), + [anon_sym_f32] = ACTIONS(2520), + [anon_sym_f64] = ACTIONS(2520), + [anon_sym_bool] = ACTIONS(2520), + [anon_sym_str] = ACTIONS(2520), + [anon_sym_char] = ACTIONS(2520), + [anon_sym_DASH] = ACTIONS(2518), + [anon_sym_BANG] = ACTIONS(2518), + [anon_sym_AMP] = ACTIONS(2518), + [anon_sym_PIPE] = ACTIONS(2518), + [anon_sym_LT] = ACTIONS(2518), + [anon_sym_DOT_DOT] = ACTIONS(2518), + [anon_sym_COLON_COLON] = ACTIONS(2518), + [anon_sym_POUND] = ACTIONS(2518), + [anon_sym_SQUOTE] = ACTIONS(2520), + [anon_sym_async] = ACTIONS(2520), + [anon_sym_break] = ACTIONS(2520), + [anon_sym_const] = ACTIONS(2520), + [anon_sym_continue] = ACTIONS(2520), + [anon_sym_default] = ACTIONS(2520), + [anon_sym_enum] = ACTIONS(2520), + [anon_sym_fn] = ACTIONS(2520), + [anon_sym_for] = ACTIONS(2520), + [anon_sym_gen] = ACTIONS(2520), + [anon_sym_if] = ACTIONS(2520), + [anon_sym_impl] = ACTIONS(2520), + [anon_sym_let] = ACTIONS(2520), + [anon_sym_loop] = ACTIONS(2520), + [anon_sym_match] = ACTIONS(2520), + [anon_sym_mod] = ACTIONS(2520), + [anon_sym_pub] = ACTIONS(2520), + [anon_sym_return] = ACTIONS(2520), + [anon_sym_static] = ACTIONS(2520), + [anon_sym_struct] = ACTIONS(2520), + [anon_sym_trait] = ACTIONS(2520), + [anon_sym_type] = ACTIONS(2520), + [anon_sym_union] = ACTIONS(2520), + [anon_sym_unsafe] = ACTIONS(2520), + [anon_sym_use] = ACTIONS(2520), + [anon_sym_while] = ACTIONS(2520), + [anon_sym_extern] = ACTIONS(2520), + [anon_sym_safe] = ACTIONS(2520), + [anon_sym_yield] = ACTIONS(2520), + [anon_sym_move] = ACTIONS(2520), + [anon_sym_try] = ACTIONS(2520), + [sym_integer_literal] = ACTIONS(2518), + [aux_sym_string_literal_token1] = ACTIONS(2518), + [sym_char_literal] = ACTIONS(2518), + [anon_sym_true] = ACTIONS(2520), + [anon_sym_false] = ACTIONS(2520), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2520), + [sym_super] = ACTIONS(2520), + [sym_crate] = ACTIONS(2520), + [sym_metavariable] = ACTIONS(2518), + [sym__raw_string_literal_start] = ACTIONS(2518), + [sym_float_literal] = ACTIONS(2518), }, [STATE(645)] = { - [sym_empty_statement] = STATE(1170), - [sym_macro_definition] = STATE(1170), - [sym_attribute_item] = STATE(1170), - [sym_inner_attribute_item] = STATE(1170), - [sym_mod_item] = STATE(1170), - [sym_foreign_mod_item] = STATE(1170), - [sym_struct_item] = STATE(1170), - [sym_union_item] = STATE(1170), - [sym_enum_item] = STATE(1170), - [sym_extern_crate_declaration] = STATE(1170), - [sym_const_item] = STATE(1170), - [sym_static_item] = STATE(1170), - [sym_type_item] = STATE(1170), - [sym_function_item] = STATE(1170), - [sym_function_signature_item] = STATE(1170), - [sym_function_modifiers] = STATE(3781), - [sym_impl_item] = STATE(1170), - [sym_trait_item] = STATE(1170), - [sym_associated_type] = STATE(1170), - [sym_let_declaration] = STATE(1170), - [sym_use_declaration] = STATE(1170), - [sym_extern_modifier] = STATE(2235), - [sym_visibility_modifier] = STATE(2021), - [sym_bracketed_type] = STATE(3732), - [sym_generic_type_with_turbofish] = STATE(3800), - [sym_macro_invocation] = STATE(1170), - [sym_scoped_identifier] = STATE(3326), [sym_line_comment] = STATE(645), [sym_block_comment] = STATE(645), - [aux_sym_declaration_list_repeat1] = STATE(651), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2090), - [anon_sym_macro_rules_BANG] = ACTIONS(2092), - [anon_sym_RBRACE] = ACTIONS(2502), - [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_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(2098), - [anon_sym_POUND] = ACTIONS(2100), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(2102), - [anon_sym_default] = ACTIONS(2104), - [anon_sym_enum] = ACTIONS(2106), - [anon_sym_fn] = ACTIONS(2108), - [anon_sym_gen] = ACTIONS(2110), - [anon_sym_impl] = ACTIONS(2112), - [anon_sym_let] = ACTIONS(2114), - [anon_sym_mod] = ACTIONS(2116), - [anon_sym_pub] = ACTIONS(69), - [anon_sym_static] = ACTIONS(2118), - [anon_sym_struct] = ACTIONS(2120), - [anon_sym_trait] = ACTIONS(2122), - [anon_sym_type] = ACTIONS(2124), - [anon_sym_union] = ACTIONS(2126), - [anon_sym_unsafe] = ACTIONS(2128), - [anon_sym_use] = ACTIONS(2130), - [anon_sym_extern] = ACTIONS(2132), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2134), - [sym_super] = ACTIONS(2134), - [sym_crate] = ACTIONS(2136), - [sym_metavariable] = ACTIONS(2138), + [ts_builtin_sym_end] = ACTIONS(2522), + [sym_identifier] = ACTIONS(2524), + [anon_sym_SEMI] = ACTIONS(2522), + [anon_sym_macro_rules_BANG] = ACTIONS(2522), + [anon_sym_LPAREN] = ACTIONS(2522), + [anon_sym_LBRACK] = ACTIONS(2522), + [anon_sym_LBRACE] = ACTIONS(2522), + [anon_sym_RBRACE] = ACTIONS(2522), + [anon_sym_STAR] = ACTIONS(2522), + [anon_sym_u8] = ACTIONS(2524), + [anon_sym_i8] = ACTIONS(2524), + [anon_sym_u16] = ACTIONS(2524), + [anon_sym_i16] = ACTIONS(2524), + [anon_sym_u32] = ACTIONS(2524), + [anon_sym_i32] = ACTIONS(2524), + [anon_sym_u64] = ACTIONS(2524), + [anon_sym_i64] = ACTIONS(2524), + [anon_sym_u128] = ACTIONS(2524), + [anon_sym_i128] = ACTIONS(2524), + [anon_sym_isize] = ACTIONS(2524), + [anon_sym_usize] = ACTIONS(2524), + [anon_sym_f32] = ACTIONS(2524), + [anon_sym_f64] = ACTIONS(2524), + [anon_sym_bool] = ACTIONS(2524), + [anon_sym_str] = ACTIONS(2524), + [anon_sym_char] = ACTIONS(2524), + [anon_sym_DASH] = ACTIONS(2522), + [anon_sym_BANG] = ACTIONS(2522), + [anon_sym_AMP] = ACTIONS(2522), + [anon_sym_PIPE] = ACTIONS(2522), + [anon_sym_LT] = ACTIONS(2522), + [anon_sym_DOT_DOT] = ACTIONS(2522), + [anon_sym_COLON_COLON] = ACTIONS(2522), + [anon_sym_POUND] = ACTIONS(2522), + [anon_sym_SQUOTE] = ACTIONS(2524), + [anon_sym_async] = ACTIONS(2524), + [anon_sym_break] = ACTIONS(2524), + [anon_sym_const] = ACTIONS(2524), + [anon_sym_continue] = ACTIONS(2524), + [anon_sym_default] = ACTIONS(2524), + [anon_sym_enum] = ACTIONS(2524), + [anon_sym_fn] = ACTIONS(2524), + [anon_sym_for] = ACTIONS(2524), + [anon_sym_gen] = ACTIONS(2524), + [anon_sym_if] = ACTIONS(2524), + [anon_sym_impl] = ACTIONS(2524), + [anon_sym_let] = ACTIONS(2524), + [anon_sym_loop] = ACTIONS(2524), + [anon_sym_match] = ACTIONS(2524), + [anon_sym_mod] = ACTIONS(2524), + [anon_sym_pub] = ACTIONS(2524), + [anon_sym_return] = ACTIONS(2524), + [anon_sym_static] = ACTIONS(2524), + [anon_sym_struct] = ACTIONS(2524), + [anon_sym_trait] = ACTIONS(2524), + [anon_sym_type] = ACTIONS(2524), + [anon_sym_union] = ACTIONS(2524), + [anon_sym_unsafe] = ACTIONS(2524), + [anon_sym_use] = ACTIONS(2524), + [anon_sym_while] = ACTIONS(2524), + [anon_sym_extern] = ACTIONS(2524), + [anon_sym_safe] = ACTIONS(2524), + [anon_sym_yield] = ACTIONS(2524), + [anon_sym_move] = ACTIONS(2524), + [anon_sym_try] = ACTIONS(2524), + [sym_integer_literal] = ACTIONS(2522), + [aux_sym_string_literal_token1] = ACTIONS(2522), + [sym_char_literal] = ACTIONS(2522), + [anon_sym_true] = ACTIONS(2524), + [anon_sym_false] = ACTIONS(2524), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2524), + [sym_super] = ACTIONS(2524), + [sym_crate] = ACTIONS(2524), + [sym_metavariable] = ACTIONS(2522), + [sym__raw_string_literal_start] = ACTIONS(2522), + [sym_float_literal] = ACTIONS(2522), }, [STATE(646)] = { [sym_line_comment] = STATE(646), [sym_block_comment] = STATE(646), - [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), - }, - [STATE(647)] = { - [sym_line_comment] = STATE(647), - [sym_block_comment] = STATE(647), - [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), - }, - [STATE(648)] = { - [sym_line_comment] = STATE(648), - [sym_block_comment] = STATE(648), - [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), - }, - [STATE(649)] = { - [sym_line_comment] = STATE(649), - [sym_block_comment] = STATE(649), - [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), - }, - [STATE(650)] = { - [sym_line_comment] = STATE(650), - [sym_block_comment] = STATE(650), - [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), - }, - [STATE(651)] = { - [sym_empty_statement] = STATE(1170), - [sym_macro_definition] = STATE(1170), - [sym_attribute_item] = STATE(1170), - [sym_inner_attribute_item] = STATE(1170), - [sym_mod_item] = STATE(1170), - [sym_foreign_mod_item] = STATE(1170), - [sym_struct_item] = STATE(1170), - [sym_union_item] = STATE(1170), - [sym_enum_item] = STATE(1170), - [sym_extern_crate_declaration] = STATE(1170), - [sym_const_item] = STATE(1170), - [sym_static_item] = STATE(1170), - [sym_type_item] = STATE(1170), - [sym_function_item] = STATE(1170), - [sym_function_signature_item] = STATE(1170), - [sym_function_modifiers] = STATE(3781), - [sym_impl_item] = STATE(1170), - [sym_trait_item] = STATE(1170), - [sym_associated_type] = STATE(1170), - [sym_let_declaration] = STATE(1170), - [sym_use_declaration] = STATE(1170), - [sym_extern_modifier] = STATE(2235), - [sym_visibility_modifier] = STATE(2021), - [sym_bracketed_type] = STATE(3732), - [sym_generic_type_with_turbofish] = STATE(3800), - [sym_macro_invocation] = STATE(1170), - [sym_scoped_identifier] = STATE(3326), - [sym_line_comment] = STATE(651), - [sym_block_comment] = STATE(651), - [aux_sym_declaration_list_repeat1] = STATE(531), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2090), - [anon_sym_macro_rules_BANG] = ACTIONS(2092), - [anon_sym_RBRACE] = ACTIONS(2524), - [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_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(2098), - [anon_sym_POUND] = ACTIONS(2100), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(2102), - [anon_sym_default] = ACTIONS(2104), - [anon_sym_enum] = ACTIONS(2106), - [anon_sym_fn] = ACTIONS(2108), - [anon_sym_gen] = ACTIONS(2110), - [anon_sym_impl] = ACTIONS(2112), - [anon_sym_let] = ACTIONS(2114), - [anon_sym_mod] = ACTIONS(2116), - [anon_sym_pub] = ACTIONS(69), - [anon_sym_static] = ACTIONS(2118), - [anon_sym_struct] = ACTIONS(2120), - [anon_sym_trait] = ACTIONS(2122), - [anon_sym_type] = ACTIONS(2124), - [anon_sym_union] = ACTIONS(2126), - [anon_sym_unsafe] = ACTIONS(2128), - [anon_sym_use] = ACTIONS(2130), - [anon_sym_extern] = ACTIONS(2132), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2134), - [sym_super] = ACTIONS(2134), - [sym_crate] = ACTIONS(2136), - [sym_metavariable] = ACTIONS(2138), - }, - [STATE(652)] = { - [sym_line_comment] = STATE(652), - [sym_block_comment] = STATE(652), [ts_builtin_sym_end] = ACTIONS(2526), [sym_identifier] = ACTIONS(2528), [anon_sym_SEMI] = ACTIONS(2526), @@ -84697,6 +84634,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(2528), [anon_sym_while] = ACTIONS(2528), [anon_sym_extern] = ACTIONS(2528), + [anon_sym_safe] = ACTIONS(2528), [anon_sym_yield] = ACTIONS(2528), [anon_sym_move] = ACTIONS(2528), [anon_sym_try] = ACTIONS(2528), @@ -84705,8 +84643,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2526), [anon_sym_true] = ACTIONS(2528), [anon_sym_false] = ACTIONS(2528), - [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(2528), [sym_super] = ACTIONS(2528), [sym_crate] = ACTIONS(2528), @@ -84714,9 +84652,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2526), [sym_float_literal] = ACTIONS(2526), }, - [STATE(653)] = { - [sym_line_comment] = STATE(653), - [sym_block_comment] = STATE(653), + [STATE(647)] = { + [sym_line_comment] = STATE(647), + [sym_block_comment] = STATE(647), [ts_builtin_sym_end] = ACTIONS(2530), [sym_identifier] = ACTIONS(2532), [anon_sym_SEMI] = ACTIONS(2530), @@ -84778,6 +84716,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(2532), [anon_sym_while] = ACTIONS(2532), [anon_sym_extern] = ACTIONS(2532), + [anon_sym_safe] = ACTIONS(2532), [anon_sym_yield] = ACTIONS(2532), [anon_sym_move] = ACTIONS(2532), [anon_sym_try] = ACTIONS(2532), @@ -84786,8 +84725,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2530), [anon_sym_true] = ACTIONS(2532), [anon_sym_false] = ACTIONS(2532), - [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(2532), [sym_super] = ACTIONS(2532), [sym_crate] = ACTIONS(2532), @@ -84795,9 +84734,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2530), [sym_float_literal] = ACTIONS(2530), }, - [STATE(654)] = { - [sym_line_comment] = STATE(654), - [sym_block_comment] = STATE(654), + [STATE(648)] = { + [sym_line_comment] = STATE(648), + [sym_block_comment] = STATE(648), [ts_builtin_sym_end] = ACTIONS(2534), [sym_identifier] = ACTIONS(2536), [anon_sym_SEMI] = ACTIONS(2534), @@ -84859,6 +84798,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(2536), [anon_sym_while] = ACTIONS(2536), [anon_sym_extern] = ACTIONS(2536), + [anon_sym_safe] = ACTIONS(2536), [anon_sym_yield] = ACTIONS(2536), [anon_sym_move] = ACTIONS(2536), [anon_sym_try] = ACTIONS(2536), @@ -84867,8 +84807,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2534), [anon_sym_true] = ACTIONS(2536), [anon_sym_false] = ACTIONS(2536), - [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(2536), [sym_super] = ACTIONS(2536), [sym_crate] = ACTIONS(2536), @@ -84876,9 +84816,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2534), [sym_float_literal] = ACTIONS(2534), }, - [STATE(655)] = { - [sym_line_comment] = STATE(655), - [sym_block_comment] = STATE(655), + [STATE(649)] = { + [sym_line_comment] = STATE(649), + [sym_block_comment] = STATE(649), [ts_builtin_sym_end] = ACTIONS(2538), [sym_identifier] = ACTIONS(2540), [anon_sym_SEMI] = ACTIONS(2538), @@ -84940,6 +84880,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(2540), [anon_sym_while] = ACTIONS(2540), [anon_sym_extern] = ACTIONS(2540), + [anon_sym_safe] = ACTIONS(2540), [anon_sym_yield] = ACTIONS(2540), [anon_sym_move] = ACTIONS(2540), [anon_sym_try] = ACTIONS(2540), @@ -84948,8 +84889,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2538), [anon_sym_true] = ACTIONS(2540), [anon_sym_false] = ACTIONS(2540), - [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(2540), [sym_super] = ACTIONS(2540), [sym_crate] = ACTIONS(2540), @@ -84957,9 +84898,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2538), [sym_float_literal] = ACTIONS(2538), }, - [STATE(656)] = { - [sym_line_comment] = STATE(656), - [sym_block_comment] = STATE(656), + [STATE(650)] = { + [sym_line_comment] = STATE(650), + [sym_block_comment] = STATE(650), [ts_builtin_sym_end] = ACTIONS(2542), [sym_identifier] = ACTIONS(2544), [anon_sym_SEMI] = ACTIONS(2542), @@ -85021,6 +84962,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(2544), [anon_sym_while] = ACTIONS(2544), [anon_sym_extern] = ACTIONS(2544), + [anon_sym_safe] = ACTIONS(2544), [anon_sym_yield] = ACTIONS(2544), [anon_sym_move] = ACTIONS(2544), [anon_sym_try] = ACTIONS(2544), @@ -85029,8 +84971,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2542), [anon_sym_true] = ACTIONS(2544), [anon_sym_false] = ACTIONS(2544), - [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(2544), [sym_super] = ACTIONS(2544), [sym_crate] = ACTIONS(2544), @@ -85038,9 +84980,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2542), [sym_float_literal] = ACTIONS(2542), }, - [STATE(657)] = { - [sym_line_comment] = STATE(657), - [sym_block_comment] = STATE(657), + [STATE(651)] = { + [sym_line_comment] = STATE(651), + [sym_block_comment] = STATE(651), [ts_builtin_sym_end] = ACTIONS(2546), [sym_identifier] = ACTIONS(2548), [anon_sym_SEMI] = ACTIONS(2546), @@ -85102,6 +85044,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -85110,8 +85053,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2546), [anon_sym_true] = ACTIONS(2548), [anon_sym_false] = ACTIONS(2548), - [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(2548), [sym_super] = ACTIONS(2548), [sym_crate] = ACTIONS(2548), @@ -85119,9 +85062,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2546), [sym_float_literal] = ACTIONS(2546), }, - [STATE(658)] = { - [sym_line_comment] = STATE(658), - [sym_block_comment] = STATE(658), + [STATE(652)] = { + [sym_line_comment] = STATE(652), + [sym_block_comment] = STATE(652), [ts_builtin_sym_end] = ACTIONS(2550), [sym_identifier] = ACTIONS(2552), [anon_sym_SEMI] = ACTIONS(2550), @@ -85183,6 +85126,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -85191,8 +85135,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2550), [anon_sym_true] = ACTIONS(2552), [anon_sym_false] = ACTIONS(2552), - [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(2552), [sym_super] = ACTIONS(2552), [sym_crate] = ACTIONS(2552), @@ -85200,9 +85144,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2550), [sym_float_literal] = ACTIONS(2550), }, - [STATE(659)] = { - [sym_line_comment] = STATE(659), - [sym_block_comment] = STATE(659), + [STATE(653)] = { + [sym_line_comment] = STATE(653), + [sym_block_comment] = STATE(653), [ts_builtin_sym_end] = ACTIONS(2554), [sym_identifier] = ACTIONS(2556), [anon_sym_SEMI] = ACTIONS(2554), @@ -85264,6 +85208,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -85272,8 +85217,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2554), [anon_sym_true] = ACTIONS(2556), [anon_sym_false] = ACTIONS(2556), - [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(2556), [sym_super] = ACTIONS(2556), [sym_crate] = ACTIONS(2556), @@ -85281,9 +85226,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2554), [sym_float_literal] = ACTIONS(2554), }, - [STATE(660)] = { - [sym_line_comment] = STATE(660), - [sym_block_comment] = STATE(660), + [STATE(654)] = { + [sym_line_comment] = STATE(654), + [sym_block_comment] = STATE(654), [ts_builtin_sym_end] = ACTIONS(2558), [sym_identifier] = ACTIONS(2560), [anon_sym_SEMI] = ACTIONS(2558), @@ -85345,6 +85290,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -85353,8 +85299,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2558), [anon_sym_true] = ACTIONS(2560), [anon_sym_false] = ACTIONS(2560), - [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(2560), [sym_super] = ACTIONS(2560), [sym_crate] = ACTIONS(2560), @@ -85362,9 +85308,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2558), [sym_float_literal] = ACTIONS(2558), }, - [STATE(661)] = { - [sym_line_comment] = STATE(661), - [sym_block_comment] = STATE(661), + [STATE(655)] = { + [sym_line_comment] = STATE(655), + [sym_block_comment] = STATE(655), [ts_builtin_sym_end] = ACTIONS(2562), [sym_identifier] = ACTIONS(2564), [anon_sym_SEMI] = ACTIONS(2562), @@ -85426,6 +85372,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -85434,8 +85381,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2562), [anon_sym_true] = ACTIONS(2564), [anon_sym_false] = ACTIONS(2564), - [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(2564), [sym_super] = ACTIONS(2564), [sym_crate] = ACTIONS(2564), @@ -85443,657 +85390,747 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2562), [sym_float_literal] = ACTIONS(2562), }, + [STATE(656)] = { + [sym_empty_statement] = STATE(1308), + [sym_macro_definition] = STATE(1308), + [sym_attribute_item] = STATE(1308), + [sym_inner_attribute_item] = STATE(1308), + [sym_mod_item] = STATE(1308), + [sym_foreign_mod_item] = STATE(1308), + [sym_struct_item] = STATE(1308), + [sym_union_item] = STATE(1308), + [sym_enum_item] = STATE(1308), + [sym_extern_crate_declaration] = STATE(1308), + [sym_const_item] = STATE(1308), + [sym_static_item] = STATE(1308), + [sym_type_item] = STATE(1308), + [sym_function_item] = STATE(1308), + [sym_function_signature_item] = STATE(1308), + [sym_function_modifiers] = STATE(3814), + [aux_sym__item_modifiers] = STATE(2286), + [sym_impl_item] = STATE(1308), + [sym_trait_item] = STATE(1308), + [sym_associated_type] = STATE(1308), + [sym_let_declaration] = STATE(1308), + [sym_use_declaration] = STATE(1308), + [sym_extern_modifier] = STATE(2646), + [sym_visibility_modifier] = STATE(2028), + [sym_bracketed_type] = STATE(3790), + [sym_generic_type_with_turbofish] = STATE(3839), + [sym_macro_invocation] = STATE(1308), + [sym_scoped_identifier] = STATE(3324), + [sym_line_comment] = STATE(656), + [sym_block_comment] = STATE(656), + [aux_sym_declaration_list_repeat1] = STATE(664), + [sym_identifier] = ACTIONS(2380), + [anon_sym_SEMI] = ACTIONS(2382), + [anon_sym_macro_rules_BANG] = ACTIONS(2384), + [anon_sym_RBRACE] = ACTIONS(2566), + [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_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(2390), + [anon_sym_POUND] = ACTIONS(2392), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(2394), + [anon_sym_default] = ACTIONS(2396), + [anon_sym_enum] = ACTIONS(2398), + [anon_sym_fn] = ACTIONS(2400), + [anon_sym_gen] = ACTIONS(2402), + [anon_sym_impl] = ACTIONS(2404), + [anon_sym_let] = ACTIONS(2406), + [anon_sym_mod] = ACTIONS(2408), + [anon_sym_pub] = ACTIONS(69), + [anon_sym_static] = ACTIONS(2410), + [anon_sym_struct] = ACTIONS(2412), + [anon_sym_trait] = ACTIONS(2414), + [anon_sym_type] = ACTIONS(2416), + [anon_sym_union] = ACTIONS(2418), + [anon_sym_unsafe] = ACTIONS(2420), + [anon_sym_use] = ACTIONS(2422), + [anon_sym_extern] = ACTIONS(2424), + [anon_sym_safe] = ACTIONS(2426), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2428), + [sym_super] = ACTIONS(2428), + [sym_crate] = ACTIONS(2430), + [sym_metavariable] = ACTIONS(2432), + }, + [STATE(657)] = { + [sym_line_comment] = STATE(657), + [sym_block_comment] = STATE(657), + [ts_builtin_sym_end] = ACTIONS(2568), + [sym_identifier] = ACTIONS(2570), + [anon_sym_SEMI] = ACTIONS(2568), + [anon_sym_macro_rules_BANG] = ACTIONS(2568), + [anon_sym_LPAREN] = ACTIONS(2568), + [anon_sym_LBRACK] = ACTIONS(2568), + [anon_sym_LBRACE] = ACTIONS(2568), + [anon_sym_RBRACE] = ACTIONS(2568), + [anon_sym_STAR] = ACTIONS(2568), + [anon_sym_u8] = ACTIONS(2570), + [anon_sym_i8] = ACTIONS(2570), + [anon_sym_u16] = ACTIONS(2570), + [anon_sym_i16] = ACTIONS(2570), + [anon_sym_u32] = ACTIONS(2570), + [anon_sym_i32] = ACTIONS(2570), + [anon_sym_u64] = ACTIONS(2570), + [anon_sym_i64] = ACTIONS(2570), + [anon_sym_u128] = ACTIONS(2570), + [anon_sym_i128] = ACTIONS(2570), + [anon_sym_isize] = ACTIONS(2570), + [anon_sym_usize] = ACTIONS(2570), + [anon_sym_f32] = ACTIONS(2570), + [anon_sym_f64] = ACTIONS(2570), + [anon_sym_bool] = ACTIONS(2570), + [anon_sym_str] = ACTIONS(2570), + [anon_sym_char] = ACTIONS(2570), + [anon_sym_DASH] = ACTIONS(2568), + [anon_sym_BANG] = ACTIONS(2568), + [anon_sym_AMP] = ACTIONS(2568), + [anon_sym_PIPE] = ACTIONS(2568), + [anon_sym_LT] = ACTIONS(2568), + [anon_sym_DOT_DOT] = ACTIONS(2568), + [anon_sym_COLON_COLON] = ACTIONS(2568), + [anon_sym_POUND] = ACTIONS(2568), + [anon_sym_SQUOTE] = ACTIONS(2570), + [anon_sym_async] = ACTIONS(2570), + [anon_sym_break] = ACTIONS(2570), + [anon_sym_const] = ACTIONS(2570), + [anon_sym_continue] = ACTIONS(2570), + [anon_sym_default] = ACTIONS(2570), + [anon_sym_enum] = ACTIONS(2570), + [anon_sym_fn] = ACTIONS(2570), + [anon_sym_for] = ACTIONS(2570), + [anon_sym_gen] = ACTIONS(2570), + [anon_sym_if] = ACTIONS(2570), + [anon_sym_impl] = ACTIONS(2570), + [anon_sym_let] = ACTIONS(2570), + [anon_sym_loop] = ACTIONS(2570), + [anon_sym_match] = ACTIONS(2570), + [anon_sym_mod] = ACTIONS(2570), + [anon_sym_pub] = ACTIONS(2570), + [anon_sym_return] = ACTIONS(2570), + [anon_sym_static] = ACTIONS(2570), + [anon_sym_struct] = ACTIONS(2570), + [anon_sym_trait] = ACTIONS(2570), + [anon_sym_type] = ACTIONS(2570), + [anon_sym_union] = ACTIONS(2570), + [anon_sym_unsafe] = ACTIONS(2570), + [anon_sym_use] = ACTIONS(2570), + [anon_sym_while] = ACTIONS(2570), + [anon_sym_extern] = ACTIONS(2570), + [anon_sym_safe] = ACTIONS(2570), + [anon_sym_yield] = ACTIONS(2570), + [anon_sym_move] = ACTIONS(2570), + [anon_sym_try] = ACTIONS(2570), + [sym_integer_literal] = ACTIONS(2568), + [aux_sym_string_literal_token1] = ACTIONS(2568), + [sym_char_literal] = ACTIONS(2568), + [anon_sym_true] = ACTIONS(2570), + [anon_sym_false] = ACTIONS(2570), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2570), + [sym_super] = ACTIONS(2570), + [sym_crate] = ACTIONS(2570), + [sym_metavariable] = ACTIONS(2568), + [sym__raw_string_literal_start] = ACTIONS(2568), + [sym_float_literal] = ACTIONS(2568), + }, + [STATE(658)] = { + [sym_line_comment] = STATE(658), + [sym_block_comment] = STATE(658), + [ts_builtin_sym_end] = ACTIONS(2572), + [sym_identifier] = ACTIONS(2574), + [anon_sym_SEMI] = ACTIONS(2572), + [anon_sym_macro_rules_BANG] = ACTIONS(2572), + [anon_sym_LPAREN] = ACTIONS(2572), + [anon_sym_LBRACK] = ACTIONS(2572), + [anon_sym_LBRACE] = ACTIONS(2572), + [anon_sym_RBRACE] = ACTIONS(2572), + [anon_sym_STAR] = ACTIONS(2572), + [anon_sym_u8] = ACTIONS(2574), + [anon_sym_i8] = ACTIONS(2574), + [anon_sym_u16] = ACTIONS(2574), + [anon_sym_i16] = ACTIONS(2574), + [anon_sym_u32] = ACTIONS(2574), + [anon_sym_i32] = ACTIONS(2574), + [anon_sym_u64] = ACTIONS(2574), + [anon_sym_i64] = ACTIONS(2574), + [anon_sym_u128] = ACTIONS(2574), + [anon_sym_i128] = ACTIONS(2574), + [anon_sym_isize] = ACTIONS(2574), + [anon_sym_usize] = ACTIONS(2574), + [anon_sym_f32] = ACTIONS(2574), + [anon_sym_f64] = ACTIONS(2574), + [anon_sym_bool] = ACTIONS(2574), + [anon_sym_str] = ACTIONS(2574), + [anon_sym_char] = ACTIONS(2574), + [anon_sym_DASH] = ACTIONS(2572), + [anon_sym_BANG] = ACTIONS(2572), + [anon_sym_AMP] = ACTIONS(2572), + [anon_sym_PIPE] = ACTIONS(2572), + [anon_sym_LT] = ACTIONS(2572), + [anon_sym_DOT_DOT] = ACTIONS(2572), + [anon_sym_COLON_COLON] = ACTIONS(2572), + [anon_sym_POUND] = ACTIONS(2572), + [anon_sym_SQUOTE] = ACTIONS(2574), + [anon_sym_async] = ACTIONS(2574), + [anon_sym_break] = ACTIONS(2574), + [anon_sym_const] = ACTIONS(2574), + [anon_sym_continue] = ACTIONS(2574), + [anon_sym_default] = ACTIONS(2574), + [anon_sym_enum] = ACTIONS(2574), + [anon_sym_fn] = ACTIONS(2574), + [anon_sym_for] = ACTIONS(2574), + [anon_sym_gen] = ACTIONS(2574), + [anon_sym_if] = ACTIONS(2574), + [anon_sym_impl] = ACTIONS(2574), + [anon_sym_let] = ACTIONS(2574), + [anon_sym_loop] = ACTIONS(2574), + [anon_sym_match] = ACTIONS(2574), + [anon_sym_mod] = ACTIONS(2574), + [anon_sym_pub] = ACTIONS(2574), + [anon_sym_return] = ACTIONS(2574), + [anon_sym_static] = ACTIONS(2574), + [anon_sym_struct] = ACTIONS(2574), + [anon_sym_trait] = ACTIONS(2574), + [anon_sym_type] = ACTIONS(2574), + [anon_sym_union] = ACTIONS(2574), + [anon_sym_unsafe] = ACTIONS(2574), + [anon_sym_use] = ACTIONS(2574), + [anon_sym_while] = ACTIONS(2574), + [anon_sym_extern] = ACTIONS(2574), + [anon_sym_safe] = ACTIONS(2574), + [anon_sym_yield] = ACTIONS(2574), + [anon_sym_move] = ACTIONS(2574), + [anon_sym_try] = ACTIONS(2574), + [sym_integer_literal] = ACTIONS(2572), + [aux_sym_string_literal_token1] = ACTIONS(2572), + [sym_char_literal] = ACTIONS(2572), + [anon_sym_true] = ACTIONS(2574), + [anon_sym_false] = ACTIONS(2574), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2574), + [sym_super] = ACTIONS(2574), + [sym_crate] = ACTIONS(2574), + [sym_metavariable] = ACTIONS(2572), + [sym__raw_string_literal_start] = ACTIONS(2572), + [sym_float_literal] = ACTIONS(2572), + }, + [STATE(659)] = { + [sym_line_comment] = STATE(659), + [sym_block_comment] = STATE(659), + [ts_builtin_sym_end] = ACTIONS(2576), + [sym_identifier] = ACTIONS(2578), + [anon_sym_SEMI] = ACTIONS(2576), + [anon_sym_macro_rules_BANG] = ACTIONS(2576), + [anon_sym_LPAREN] = ACTIONS(2576), + [anon_sym_LBRACK] = ACTIONS(2576), + [anon_sym_LBRACE] = ACTIONS(2576), + [anon_sym_RBRACE] = ACTIONS(2576), + [anon_sym_STAR] = ACTIONS(2576), + [anon_sym_u8] = ACTIONS(2578), + [anon_sym_i8] = ACTIONS(2578), + [anon_sym_u16] = ACTIONS(2578), + [anon_sym_i16] = ACTIONS(2578), + [anon_sym_u32] = ACTIONS(2578), + [anon_sym_i32] = ACTIONS(2578), + [anon_sym_u64] = ACTIONS(2578), + [anon_sym_i64] = ACTIONS(2578), + [anon_sym_u128] = ACTIONS(2578), + [anon_sym_i128] = ACTIONS(2578), + [anon_sym_isize] = ACTIONS(2578), + [anon_sym_usize] = ACTIONS(2578), + [anon_sym_f32] = ACTIONS(2578), + [anon_sym_f64] = ACTIONS(2578), + [anon_sym_bool] = ACTIONS(2578), + [anon_sym_str] = ACTIONS(2578), + [anon_sym_char] = ACTIONS(2578), + [anon_sym_DASH] = ACTIONS(2576), + [anon_sym_BANG] = ACTIONS(2576), + [anon_sym_AMP] = ACTIONS(2576), + [anon_sym_PIPE] = ACTIONS(2576), + [anon_sym_LT] = ACTIONS(2576), + [anon_sym_DOT_DOT] = ACTIONS(2576), + [anon_sym_COLON_COLON] = ACTIONS(2576), + [anon_sym_POUND] = ACTIONS(2576), + [anon_sym_SQUOTE] = ACTIONS(2578), + [anon_sym_async] = ACTIONS(2578), + [anon_sym_break] = ACTIONS(2578), + [anon_sym_const] = ACTIONS(2578), + [anon_sym_continue] = ACTIONS(2578), + [anon_sym_default] = ACTIONS(2578), + [anon_sym_enum] = ACTIONS(2578), + [anon_sym_fn] = ACTIONS(2578), + [anon_sym_for] = ACTIONS(2578), + [anon_sym_gen] = ACTIONS(2578), + [anon_sym_if] = ACTIONS(2578), + [anon_sym_impl] = ACTIONS(2578), + [anon_sym_let] = ACTIONS(2578), + [anon_sym_loop] = ACTIONS(2578), + [anon_sym_match] = ACTIONS(2578), + [anon_sym_mod] = ACTIONS(2578), + [anon_sym_pub] = ACTIONS(2578), + [anon_sym_return] = ACTIONS(2578), + [anon_sym_static] = ACTIONS(2578), + [anon_sym_struct] = ACTIONS(2578), + [anon_sym_trait] = ACTIONS(2578), + [anon_sym_type] = ACTIONS(2578), + [anon_sym_union] = ACTIONS(2578), + [anon_sym_unsafe] = ACTIONS(2578), + [anon_sym_use] = ACTIONS(2578), + [anon_sym_while] = ACTIONS(2578), + [anon_sym_extern] = ACTIONS(2578), + [anon_sym_safe] = ACTIONS(2578), + [anon_sym_yield] = ACTIONS(2578), + [anon_sym_move] = ACTIONS(2578), + [anon_sym_try] = ACTIONS(2578), + [sym_integer_literal] = ACTIONS(2576), + [aux_sym_string_literal_token1] = ACTIONS(2576), + [sym_char_literal] = ACTIONS(2576), + [anon_sym_true] = ACTIONS(2578), + [anon_sym_false] = ACTIONS(2578), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2578), + [sym_super] = ACTIONS(2578), + [sym_crate] = ACTIONS(2578), + [sym_metavariable] = ACTIONS(2576), + [sym__raw_string_literal_start] = ACTIONS(2576), + [sym_float_literal] = ACTIONS(2576), + }, + [STATE(660)] = { + [sym_line_comment] = STATE(660), + [sym_block_comment] = STATE(660), + [ts_builtin_sym_end] = ACTIONS(2580), + [sym_identifier] = ACTIONS(2582), + [anon_sym_SEMI] = ACTIONS(2580), + [anon_sym_macro_rules_BANG] = ACTIONS(2580), + [anon_sym_LPAREN] = ACTIONS(2580), + [anon_sym_LBRACK] = ACTIONS(2580), + [anon_sym_LBRACE] = ACTIONS(2580), + [anon_sym_RBRACE] = ACTIONS(2580), + [anon_sym_STAR] = ACTIONS(2580), + [anon_sym_u8] = ACTIONS(2582), + [anon_sym_i8] = ACTIONS(2582), + [anon_sym_u16] = ACTIONS(2582), + [anon_sym_i16] = ACTIONS(2582), + [anon_sym_u32] = ACTIONS(2582), + [anon_sym_i32] = ACTIONS(2582), + [anon_sym_u64] = ACTIONS(2582), + [anon_sym_i64] = ACTIONS(2582), + [anon_sym_u128] = ACTIONS(2582), + [anon_sym_i128] = ACTIONS(2582), + [anon_sym_isize] = ACTIONS(2582), + [anon_sym_usize] = ACTIONS(2582), + [anon_sym_f32] = ACTIONS(2582), + [anon_sym_f64] = ACTIONS(2582), + [anon_sym_bool] = ACTIONS(2582), + [anon_sym_str] = ACTIONS(2582), + [anon_sym_char] = ACTIONS(2582), + [anon_sym_DASH] = ACTIONS(2580), + [anon_sym_BANG] = ACTIONS(2580), + [anon_sym_AMP] = ACTIONS(2580), + [anon_sym_PIPE] = ACTIONS(2580), + [anon_sym_LT] = ACTIONS(2580), + [anon_sym_DOT_DOT] = ACTIONS(2580), + [anon_sym_COLON_COLON] = ACTIONS(2580), + [anon_sym_POUND] = ACTIONS(2580), + [anon_sym_SQUOTE] = ACTIONS(2582), + [anon_sym_async] = ACTIONS(2582), + [anon_sym_break] = ACTIONS(2582), + [anon_sym_const] = ACTIONS(2582), + [anon_sym_continue] = ACTIONS(2582), + [anon_sym_default] = ACTIONS(2582), + [anon_sym_enum] = ACTIONS(2582), + [anon_sym_fn] = ACTIONS(2582), + [anon_sym_for] = ACTIONS(2582), + [anon_sym_gen] = ACTIONS(2582), + [anon_sym_if] = ACTIONS(2582), + [anon_sym_impl] = ACTIONS(2582), + [anon_sym_let] = ACTIONS(2582), + [anon_sym_loop] = ACTIONS(2582), + [anon_sym_match] = ACTIONS(2582), + [anon_sym_mod] = ACTIONS(2582), + [anon_sym_pub] = ACTIONS(2582), + [anon_sym_return] = ACTIONS(2582), + [anon_sym_static] = ACTIONS(2582), + [anon_sym_struct] = ACTIONS(2582), + [anon_sym_trait] = ACTIONS(2582), + [anon_sym_type] = ACTIONS(2582), + [anon_sym_union] = ACTIONS(2582), + [anon_sym_unsafe] = ACTIONS(2582), + [anon_sym_use] = ACTIONS(2582), + [anon_sym_while] = ACTIONS(2582), + [anon_sym_extern] = ACTIONS(2582), + [anon_sym_safe] = ACTIONS(2582), + [anon_sym_yield] = ACTIONS(2582), + [anon_sym_move] = ACTIONS(2582), + [anon_sym_try] = ACTIONS(2582), + [sym_integer_literal] = ACTIONS(2580), + [aux_sym_string_literal_token1] = ACTIONS(2580), + [sym_char_literal] = ACTIONS(2580), + [anon_sym_true] = ACTIONS(2582), + [anon_sym_false] = ACTIONS(2582), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2582), + [sym_super] = ACTIONS(2582), + [sym_crate] = ACTIONS(2582), + [sym_metavariable] = ACTIONS(2580), + [sym__raw_string_literal_start] = ACTIONS(2580), + [sym_float_literal] = ACTIONS(2580), + }, + [STATE(661)] = { + [sym_line_comment] = STATE(661), + [sym_block_comment] = STATE(661), + [ts_builtin_sym_end] = ACTIONS(2584), + [sym_identifier] = ACTIONS(2586), + [anon_sym_SEMI] = ACTIONS(2584), + [anon_sym_macro_rules_BANG] = ACTIONS(2584), + [anon_sym_LPAREN] = ACTIONS(2584), + [anon_sym_LBRACK] = ACTIONS(2584), + [anon_sym_LBRACE] = ACTIONS(2584), + [anon_sym_RBRACE] = ACTIONS(2584), + [anon_sym_STAR] = ACTIONS(2584), + [anon_sym_u8] = ACTIONS(2586), + [anon_sym_i8] = ACTIONS(2586), + [anon_sym_u16] = ACTIONS(2586), + [anon_sym_i16] = ACTIONS(2586), + [anon_sym_u32] = ACTIONS(2586), + [anon_sym_i32] = ACTIONS(2586), + [anon_sym_u64] = ACTIONS(2586), + [anon_sym_i64] = ACTIONS(2586), + [anon_sym_u128] = ACTIONS(2586), + [anon_sym_i128] = ACTIONS(2586), + [anon_sym_isize] = ACTIONS(2586), + [anon_sym_usize] = ACTIONS(2586), + [anon_sym_f32] = ACTIONS(2586), + [anon_sym_f64] = ACTIONS(2586), + [anon_sym_bool] = ACTIONS(2586), + [anon_sym_str] = ACTIONS(2586), + [anon_sym_char] = ACTIONS(2586), + [anon_sym_DASH] = ACTIONS(2584), + [anon_sym_BANG] = ACTIONS(2584), + [anon_sym_AMP] = ACTIONS(2584), + [anon_sym_PIPE] = ACTIONS(2584), + [anon_sym_LT] = ACTIONS(2584), + [anon_sym_DOT_DOT] = ACTIONS(2584), + [anon_sym_COLON_COLON] = ACTIONS(2584), + [anon_sym_POUND] = ACTIONS(2584), + [anon_sym_SQUOTE] = ACTIONS(2586), + [anon_sym_async] = ACTIONS(2586), + [anon_sym_break] = ACTIONS(2586), + [anon_sym_const] = ACTIONS(2586), + [anon_sym_continue] = ACTIONS(2586), + [anon_sym_default] = ACTIONS(2586), + [anon_sym_enum] = ACTIONS(2586), + [anon_sym_fn] = ACTIONS(2586), + [anon_sym_for] = ACTIONS(2586), + [anon_sym_gen] = ACTIONS(2586), + [anon_sym_if] = ACTIONS(2586), + [anon_sym_impl] = ACTIONS(2586), + [anon_sym_let] = ACTIONS(2586), + [anon_sym_loop] = ACTIONS(2586), + [anon_sym_match] = ACTIONS(2586), + [anon_sym_mod] = ACTIONS(2586), + [anon_sym_pub] = ACTIONS(2586), + [anon_sym_return] = ACTIONS(2586), + [anon_sym_static] = ACTIONS(2586), + [anon_sym_struct] = ACTIONS(2586), + [anon_sym_trait] = ACTIONS(2586), + [anon_sym_type] = ACTIONS(2586), + [anon_sym_union] = ACTIONS(2586), + [anon_sym_unsafe] = ACTIONS(2586), + [anon_sym_use] = ACTIONS(2586), + [anon_sym_while] = ACTIONS(2586), + [anon_sym_extern] = ACTIONS(2586), + [anon_sym_safe] = ACTIONS(2586), + [anon_sym_yield] = ACTIONS(2586), + [anon_sym_move] = ACTIONS(2586), + [anon_sym_try] = ACTIONS(2586), + [sym_integer_literal] = ACTIONS(2584), + [aux_sym_string_literal_token1] = ACTIONS(2584), + [sym_char_literal] = ACTIONS(2584), + [anon_sym_true] = ACTIONS(2586), + [anon_sym_false] = ACTIONS(2586), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2586), + [sym_super] = ACTIONS(2586), + [sym_crate] = ACTIONS(2586), + [sym_metavariable] = ACTIONS(2584), + [sym__raw_string_literal_start] = ACTIONS(2584), + [sym_float_literal] = ACTIONS(2584), + }, [STATE(662)] = { [sym_line_comment] = STATE(662), [sym_block_comment] = STATE(662), - [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_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(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [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), + [ts_builtin_sym_end] = ACTIONS(2588), + [sym_identifier] = ACTIONS(2590), + [anon_sym_SEMI] = ACTIONS(2588), + [anon_sym_macro_rules_BANG] = ACTIONS(2588), + [anon_sym_LPAREN] = ACTIONS(2588), + [anon_sym_LBRACK] = ACTIONS(2588), + [anon_sym_LBRACE] = ACTIONS(2588), + [anon_sym_RBRACE] = ACTIONS(2588), + [anon_sym_STAR] = ACTIONS(2588), + [anon_sym_u8] = ACTIONS(2590), + [anon_sym_i8] = ACTIONS(2590), + [anon_sym_u16] = ACTIONS(2590), + [anon_sym_i16] = ACTIONS(2590), + [anon_sym_u32] = ACTIONS(2590), + [anon_sym_i32] = ACTIONS(2590), + [anon_sym_u64] = ACTIONS(2590), + [anon_sym_i64] = ACTIONS(2590), + [anon_sym_u128] = ACTIONS(2590), + [anon_sym_i128] = ACTIONS(2590), + [anon_sym_isize] = ACTIONS(2590), + [anon_sym_usize] = ACTIONS(2590), + [anon_sym_f32] = ACTIONS(2590), + [anon_sym_f64] = ACTIONS(2590), + [anon_sym_bool] = ACTIONS(2590), + [anon_sym_str] = ACTIONS(2590), + [anon_sym_char] = ACTIONS(2590), + [anon_sym_DASH] = ACTIONS(2588), + [anon_sym_BANG] = ACTIONS(2588), + [anon_sym_AMP] = ACTIONS(2588), + [anon_sym_PIPE] = ACTIONS(2588), + [anon_sym_LT] = ACTIONS(2588), + [anon_sym_DOT_DOT] = ACTIONS(2588), + [anon_sym_COLON_COLON] = ACTIONS(2588), + [anon_sym_POUND] = ACTIONS(2588), + [anon_sym_SQUOTE] = ACTIONS(2590), + [anon_sym_async] = ACTIONS(2590), + [anon_sym_break] = ACTIONS(2590), + [anon_sym_const] = ACTIONS(2590), + [anon_sym_continue] = ACTIONS(2590), + [anon_sym_default] = ACTIONS(2590), + [anon_sym_enum] = ACTIONS(2590), + [anon_sym_fn] = ACTIONS(2590), + [anon_sym_for] = ACTIONS(2590), + [anon_sym_gen] = ACTIONS(2590), + [anon_sym_if] = ACTIONS(2590), + [anon_sym_impl] = ACTIONS(2590), + [anon_sym_let] = ACTIONS(2590), + [anon_sym_loop] = ACTIONS(2590), + [anon_sym_match] = ACTIONS(2590), + [anon_sym_mod] = ACTIONS(2590), + [anon_sym_pub] = ACTIONS(2590), + [anon_sym_return] = ACTIONS(2590), + [anon_sym_static] = ACTIONS(2590), + [anon_sym_struct] = ACTIONS(2590), + [anon_sym_trait] = ACTIONS(2590), + [anon_sym_type] = ACTIONS(2590), + [anon_sym_union] = ACTIONS(2590), + [anon_sym_unsafe] = ACTIONS(2590), + [anon_sym_use] = ACTIONS(2590), + [anon_sym_while] = ACTIONS(2590), + [anon_sym_extern] = ACTIONS(2590), + [anon_sym_safe] = ACTIONS(2590), + [anon_sym_yield] = ACTIONS(2590), + [anon_sym_move] = ACTIONS(2590), + [anon_sym_try] = ACTIONS(2590), + [sym_integer_literal] = ACTIONS(2588), + [aux_sym_string_literal_token1] = ACTIONS(2588), + [sym_char_literal] = ACTIONS(2588), + [anon_sym_true] = ACTIONS(2590), + [anon_sym_false] = ACTIONS(2590), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2590), + [sym_super] = ACTIONS(2590), + [sym_crate] = ACTIONS(2590), + [sym_metavariable] = ACTIONS(2588), + [sym__raw_string_literal_start] = ACTIONS(2588), + [sym_float_literal] = ACTIONS(2588), }, [STATE(663)] = { [sym_line_comment] = STATE(663), [sym_block_comment] = STATE(663), - [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_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(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [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), + [ts_builtin_sym_end] = ACTIONS(2592), + [sym_identifier] = ACTIONS(2594), + [anon_sym_SEMI] = ACTIONS(2592), + [anon_sym_macro_rules_BANG] = ACTIONS(2592), + [anon_sym_LPAREN] = ACTIONS(2592), + [anon_sym_LBRACK] = ACTIONS(2592), + [anon_sym_LBRACE] = ACTIONS(2592), + [anon_sym_RBRACE] = ACTIONS(2592), + [anon_sym_STAR] = ACTIONS(2592), + [anon_sym_u8] = ACTIONS(2594), + [anon_sym_i8] = ACTIONS(2594), + [anon_sym_u16] = ACTIONS(2594), + [anon_sym_i16] = ACTIONS(2594), + [anon_sym_u32] = ACTIONS(2594), + [anon_sym_i32] = ACTIONS(2594), + [anon_sym_u64] = ACTIONS(2594), + [anon_sym_i64] = ACTIONS(2594), + [anon_sym_u128] = ACTIONS(2594), + [anon_sym_i128] = ACTIONS(2594), + [anon_sym_isize] = ACTIONS(2594), + [anon_sym_usize] = ACTIONS(2594), + [anon_sym_f32] = ACTIONS(2594), + [anon_sym_f64] = ACTIONS(2594), + [anon_sym_bool] = ACTIONS(2594), + [anon_sym_str] = ACTIONS(2594), + [anon_sym_char] = ACTIONS(2594), + [anon_sym_DASH] = ACTIONS(2592), + [anon_sym_BANG] = ACTIONS(2592), + [anon_sym_AMP] = ACTIONS(2592), + [anon_sym_PIPE] = ACTIONS(2592), + [anon_sym_LT] = ACTIONS(2592), + [anon_sym_DOT_DOT] = ACTIONS(2592), + [anon_sym_COLON_COLON] = ACTIONS(2592), + [anon_sym_POUND] = ACTIONS(2592), + [anon_sym_SQUOTE] = ACTIONS(2594), + [anon_sym_async] = ACTIONS(2594), + [anon_sym_break] = ACTIONS(2594), + [anon_sym_const] = ACTIONS(2594), + [anon_sym_continue] = ACTIONS(2594), + [anon_sym_default] = ACTIONS(2594), + [anon_sym_enum] = ACTIONS(2594), + [anon_sym_fn] = ACTIONS(2594), + [anon_sym_for] = ACTIONS(2594), + [anon_sym_gen] = ACTIONS(2594), + [anon_sym_if] = ACTIONS(2594), + [anon_sym_impl] = ACTIONS(2594), + [anon_sym_let] = ACTIONS(2594), + [anon_sym_loop] = ACTIONS(2594), + [anon_sym_match] = ACTIONS(2594), + [anon_sym_mod] = ACTIONS(2594), + [anon_sym_pub] = ACTIONS(2594), + [anon_sym_return] = ACTIONS(2594), + [anon_sym_static] = ACTIONS(2594), + [anon_sym_struct] = ACTIONS(2594), + [anon_sym_trait] = ACTIONS(2594), + [anon_sym_type] = ACTIONS(2594), + [anon_sym_union] = ACTIONS(2594), + [anon_sym_unsafe] = ACTIONS(2594), + [anon_sym_use] = ACTIONS(2594), + [anon_sym_while] = ACTIONS(2594), + [anon_sym_extern] = ACTIONS(2594), + [anon_sym_safe] = ACTIONS(2594), + [anon_sym_yield] = ACTIONS(2594), + [anon_sym_move] = ACTIONS(2594), + [anon_sym_try] = ACTIONS(2594), + [sym_integer_literal] = ACTIONS(2592), + [aux_sym_string_literal_token1] = ACTIONS(2592), + [sym_char_literal] = ACTIONS(2592), + [anon_sym_true] = ACTIONS(2594), + [anon_sym_false] = ACTIONS(2594), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2594), + [sym_super] = ACTIONS(2594), + [sym_crate] = ACTIONS(2594), + [sym_metavariable] = ACTIONS(2592), + [sym__raw_string_literal_start] = ACTIONS(2592), + [sym_float_literal] = ACTIONS(2592), }, [STATE(664)] = { + [sym_empty_statement] = STATE(1308), + [sym_macro_definition] = STATE(1308), + [sym_attribute_item] = STATE(1308), + [sym_inner_attribute_item] = STATE(1308), + [sym_mod_item] = STATE(1308), + [sym_foreign_mod_item] = STATE(1308), + [sym_struct_item] = STATE(1308), + [sym_union_item] = STATE(1308), + [sym_enum_item] = STATE(1308), + [sym_extern_crate_declaration] = STATE(1308), + [sym_const_item] = STATE(1308), + [sym_static_item] = STATE(1308), + [sym_type_item] = STATE(1308), + [sym_function_item] = STATE(1308), + [sym_function_signature_item] = STATE(1308), + [sym_function_modifiers] = STATE(3814), + [aux_sym__item_modifiers] = STATE(2286), + [sym_impl_item] = STATE(1308), + [sym_trait_item] = STATE(1308), + [sym_associated_type] = STATE(1308), + [sym_let_declaration] = STATE(1308), + [sym_use_declaration] = STATE(1308), + [sym_extern_modifier] = STATE(2646), + [sym_visibility_modifier] = STATE(2028), + [sym_bracketed_type] = STATE(3790), + [sym_generic_type_with_turbofish] = STATE(3839), + [sym_macro_invocation] = STATE(1308), + [sym_scoped_identifier] = STATE(3324), [sym_line_comment] = STATE(664), [sym_block_comment] = STATE(664), - [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(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_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(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [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), + [aux_sym_declaration_list_repeat1] = STATE(580), + [sym_identifier] = ACTIONS(2380), + [anon_sym_SEMI] = ACTIONS(2382), + [anon_sym_macro_rules_BANG] = ACTIONS(2384), + [anon_sym_RBRACE] = ACTIONS(2596), + [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_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(2390), + [anon_sym_POUND] = ACTIONS(2392), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(2394), + [anon_sym_default] = ACTIONS(2396), + [anon_sym_enum] = ACTIONS(2398), + [anon_sym_fn] = ACTIONS(2400), + [anon_sym_gen] = ACTIONS(2402), + [anon_sym_impl] = ACTIONS(2404), + [anon_sym_let] = ACTIONS(2406), + [anon_sym_mod] = ACTIONS(2408), + [anon_sym_pub] = ACTIONS(69), + [anon_sym_static] = ACTIONS(2410), + [anon_sym_struct] = ACTIONS(2412), + [anon_sym_trait] = ACTIONS(2414), + [anon_sym_type] = ACTIONS(2416), + [anon_sym_union] = ACTIONS(2418), + [anon_sym_unsafe] = ACTIONS(2420), + [anon_sym_use] = ACTIONS(2422), + [anon_sym_extern] = ACTIONS(2424), + [anon_sym_safe] = ACTIONS(2426), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2428), + [sym_super] = ACTIONS(2428), + [sym_crate] = ACTIONS(2430), + [sym_metavariable] = ACTIONS(2432), }, [STATE(665)] = { [sym_line_comment] = STATE(665), [sym_block_comment] = STATE(665), - [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_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(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [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(666)] = { - [sym_line_comment] = STATE(666), - [sym_block_comment] = STATE(666), - [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_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(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [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(667)] = { - [sym_line_comment] = STATE(667), - [sym_block_comment] = STATE(667), - [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_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(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [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(668)] = { - [sym_line_comment] = STATE(668), - [sym_block_comment] = STATE(668), - [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_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(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [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(669)] = { - [sym_line_comment] = STATE(669), - [sym_block_comment] = STATE(669), - [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_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(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [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(670)] = { - [sym_line_comment] = STATE(670), - [sym_block_comment] = STATE(670), [ts_builtin_sym_end] = ACTIONS(2598), [sym_identifier] = ACTIONS(2600), [anon_sym_SEMI] = ACTIONS(2598), @@ -86155,6 +86192,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -86163,8 +86201,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2598), [anon_sym_true] = ACTIONS(2600), [anon_sym_false] = ACTIONS(2600), - [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(2600), [sym_super] = ACTIONS(2600), [sym_crate] = ACTIONS(2600), @@ -86172,9 +86210,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2598), [sym_float_literal] = ACTIONS(2598), }, - [STATE(671)] = { - [sym_line_comment] = STATE(671), - [sym_block_comment] = STATE(671), + [STATE(666)] = { + [sym_line_comment] = STATE(666), + [sym_block_comment] = STATE(666), [ts_builtin_sym_end] = ACTIONS(2602), [sym_identifier] = ACTIONS(2604), [anon_sym_SEMI] = ACTIONS(2602), @@ -86236,6 +86274,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -86244,8 +86283,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2602), [anon_sym_true] = ACTIONS(2604), [anon_sym_false] = ACTIONS(2604), - [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(2604), [sym_super] = ACTIONS(2604), [sym_crate] = ACTIONS(2604), @@ -86253,9 +86292,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2602), [sym_float_literal] = ACTIONS(2602), }, - [STATE(672)] = { - [sym_line_comment] = STATE(672), - [sym_block_comment] = STATE(672), + [STATE(667)] = { + [sym_line_comment] = STATE(667), + [sym_block_comment] = STATE(667), [ts_builtin_sym_end] = ACTIONS(2606), [sym_identifier] = ACTIONS(2608), [anon_sym_SEMI] = ACTIONS(2606), @@ -86317,6 +86356,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), @@ -86325,8 +86365,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), @@ -86334,9 +86374,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(673)] = { - [sym_line_comment] = STATE(673), - [sym_block_comment] = STATE(673), + [STATE(668)] = { + [sym_line_comment] = STATE(668), + [sym_block_comment] = STATE(668), [ts_builtin_sym_end] = ACTIONS(2610), [sym_identifier] = ACTIONS(2612), [anon_sym_SEMI] = ACTIONS(2610), @@ -86398,6 +86438,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), @@ -86406,8 +86447,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), @@ -86415,9 +86456,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(674)] = { - [sym_line_comment] = STATE(674), - [sym_block_comment] = STATE(674), + [STATE(669)] = { + [sym_line_comment] = STATE(669), + [sym_block_comment] = STATE(669), [ts_builtin_sym_end] = ACTIONS(2614), [sym_identifier] = ACTIONS(2616), [anon_sym_SEMI] = ACTIONS(2614), @@ -86479,6 +86520,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), @@ -86487,8 +86529,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), @@ -86496,9 +86538,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(675)] = { - [sym_line_comment] = STATE(675), - [sym_block_comment] = STATE(675), + [STATE(670)] = { + [sym_line_comment] = STATE(670), + [sym_block_comment] = STATE(670), [ts_builtin_sym_end] = ACTIONS(2618), [sym_identifier] = ACTIONS(2620), [anon_sym_SEMI] = ACTIONS(2618), @@ -86560,6 +86602,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), @@ -86568,8 +86611,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), @@ -86577,9 +86620,9 @@ 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(676)] = { - [sym_line_comment] = STATE(676), - [sym_block_comment] = STATE(676), + [STATE(671)] = { + [sym_line_comment] = STATE(671), + [sym_block_comment] = STATE(671), [ts_builtin_sym_end] = ACTIONS(2622), [sym_identifier] = ACTIONS(2624), [anon_sym_SEMI] = ACTIONS(2622), @@ -86641,6 +86684,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), @@ -86649,8 +86693,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), @@ -86658,1062 +86702,1075 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2622), [sym_float_literal] = ACTIONS(2622), }, + [STATE(672)] = { + [sym_bracketed_type] = STATE(3756), + [sym_generic_type] = STATE(3622), + [sym_generic_type_with_turbofish] = STATE(3514), + [sym_macro_invocation] = STATE(2197), + [sym_scoped_identifier] = STATE(2056), + [sym_scoped_type_identifier] = STATE(2926), + [sym_const_block] = STATE(2197), + [sym_closure_expression] = STATE(3473), + [sym_closure_parameters] = STATE(221), + [sym__pattern] = STATE(3188), + [sym_generic_pattern] = STATE(2197), + [sym_tuple_pattern] = STATE(2197), + [sym_slice_pattern] = STATE(2197), + [sym_tuple_struct_pattern] = STATE(2197), + [sym_struct_pattern] = STATE(2197), + [sym_remaining_field_pattern] = STATE(2197), + [sym_mut_pattern] = STATE(2197), + [sym_range_pattern] = STATE(2197), + [sym_ref_pattern] = STATE(2197), + [sym_captured_pattern] = STATE(2197), + [sym_reference_pattern] = STATE(2197), + [sym_or_pattern] = STATE(2197), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2129), + [sym_string_literal] = STATE(2129), + [sym_raw_string_literal] = STATE(2129), + [sym_boolean_literal] = STATE(2129), + [sym_line_comment] = STATE(672), + [sym_block_comment] = STATE(672), + [sym_identifier] = ACTIONS(1730), + [anon_sym_LPAREN] = ACTIONS(1732), + [anon_sym_RPAREN] = ACTIONS(2626), + [anon_sym_LBRACK] = ACTIONS(1736), + [anon_sym_u8] = ACTIONS(1738), + [anon_sym_i8] = ACTIONS(1738), + [anon_sym_u16] = ACTIONS(1738), + [anon_sym_i16] = ACTIONS(1738), + [anon_sym_u32] = ACTIONS(1738), + [anon_sym_i32] = ACTIONS(1738), + [anon_sym_u64] = ACTIONS(1738), + [anon_sym_i64] = ACTIONS(1738), + [anon_sym_u128] = ACTIONS(1738), + [anon_sym_i128] = ACTIONS(1738), + [anon_sym_isize] = ACTIONS(1738), + [anon_sym_usize] = ACTIONS(1738), + [anon_sym_f32] = ACTIONS(1738), + [anon_sym_f64] = ACTIONS(1738), + [anon_sym_bool] = ACTIONS(1738), + [anon_sym_str] = ACTIONS(1738), + [anon_sym_char] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1064), + [anon_sym_AMP] = ACTIONS(1740), + [anon_sym_PIPE] = ACTIONS(1390), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1392), + [anon_sym_DOT_DOT] = ACTIONS(1074), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1078), + [anon_sym_COLON_COLON] = ACTIONS(1744), + [anon_sym_async] = ACTIONS(1746), + [anon_sym_const] = ACTIONS(1748), + [anon_sym_default] = ACTIONS(1750), + [anon_sym_gen] = ACTIONS(1750), + [anon_sym_static] = ACTIONS(1398), + [anon_sym_union] = ACTIONS(1750), + [anon_sym_ref] = ACTIONS(1106), + [sym_mutable_specifier] = ACTIONS(1400), + [anon_sym_move] = ACTIONS(1402), + [sym_integer_literal] = ACTIONS(1112), + [aux_sym_string_literal_token1] = ACTIONS(1114), + [sym_char_literal] = ACTIONS(1112), + [anon_sym_true] = ACTIONS(1116), + [anon_sym_false] = ACTIONS(1116), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1752), + [sym_super] = ACTIONS(1752), + [sym_crate] = ACTIONS(1752), + [sym_metavariable] = ACTIONS(1754), + [sym__raw_string_literal_start] = ACTIONS(1124), + [sym_float_literal] = ACTIONS(1112), + }, + [STATE(673)] = { + [sym_line_comment] = STATE(673), + [sym_block_comment] = STATE(673), + [ts_builtin_sym_end] = ACTIONS(2628), + [sym_identifier] = ACTIONS(2630), + [anon_sym_SEMI] = ACTIONS(2628), + [anon_sym_macro_rules_BANG] = ACTIONS(2628), + [anon_sym_LPAREN] = ACTIONS(2628), + [anon_sym_LBRACK] = ACTIONS(2628), + [anon_sym_LBRACE] = ACTIONS(2628), + [anon_sym_RBRACE] = ACTIONS(2628), + [anon_sym_STAR] = ACTIONS(2628), + [anon_sym_u8] = ACTIONS(2630), + [anon_sym_i8] = ACTIONS(2630), + [anon_sym_u16] = ACTIONS(2630), + [anon_sym_i16] = ACTIONS(2630), + [anon_sym_u32] = ACTIONS(2630), + [anon_sym_i32] = ACTIONS(2630), + [anon_sym_u64] = ACTIONS(2630), + [anon_sym_i64] = ACTIONS(2630), + [anon_sym_u128] = ACTIONS(2630), + [anon_sym_i128] = ACTIONS(2630), + [anon_sym_isize] = ACTIONS(2630), + [anon_sym_usize] = ACTIONS(2630), + [anon_sym_f32] = ACTIONS(2630), + [anon_sym_f64] = ACTIONS(2630), + [anon_sym_bool] = ACTIONS(2630), + [anon_sym_str] = ACTIONS(2630), + [anon_sym_char] = ACTIONS(2630), + [anon_sym_DASH] = ACTIONS(2628), + [anon_sym_BANG] = ACTIONS(2628), + [anon_sym_AMP] = ACTIONS(2628), + [anon_sym_PIPE] = ACTIONS(2628), + [anon_sym_LT] = ACTIONS(2628), + [anon_sym_DOT_DOT] = ACTIONS(2628), + [anon_sym_COLON_COLON] = ACTIONS(2628), + [anon_sym_POUND] = ACTIONS(2628), + [anon_sym_SQUOTE] = ACTIONS(2630), + [anon_sym_async] = ACTIONS(2630), + [anon_sym_break] = ACTIONS(2630), + [anon_sym_const] = ACTIONS(2630), + [anon_sym_continue] = ACTIONS(2630), + [anon_sym_default] = ACTIONS(2630), + [anon_sym_enum] = ACTIONS(2630), + [anon_sym_fn] = ACTIONS(2630), + [anon_sym_for] = ACTIONS(2630), + [anon_sym_gen] = ACTIONS(2630), + [anon_sym_if] = ACTIONS(2630), + [anon_sym_impl] = ACTIONS(2630), + [anon_sym_let] = ACTIONS(2630), + [anon_sym_loop] = ACTIONS(2630), + [anon_sym_match] = ACTIONS(2630), + [anon_sym_mod] = ACTIONS(2630), + [anon_sym_pub] = ACTIONS(2630), + [anon_sym_return] = ACTIONS(2630), + [anon_sym_static] = ACTIONS(2630), + [anon_sym_struct] = ACTIONS(2630), + [anon_sym_trait] = ACTIONS(2630), + [anon_sym_type] = ACTIONS(2630), + [anon_sym_union] = ACTIONS(2630), + [anon_sym_unsafe] = ACTIONS(2630), + [anon_sym_use] = ACTIONS(2630), + [anon_sym_while] = ACTIONS(2630), + [anon_sym_extern] = ACTIONS(2630), + [anon_sym_safe] = ACTIONS(2630), + [anon_sym_yield] = ACTIONS(2630), + [anon_sym_move] = ACTIONS(2630), + [anon_sym_try] = ACTIONS(2630), + [sym_integer_literal] = ACTIONS(2628), + [aux_sym_string_literal_token1] = ACTIONS(2628), + [sym_char_literal] = ACTIONS(2628), + [anon_sym_true] = ACTIONS(2630), + [anon_sym_false] = ACTIONS(2630), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2630), + [sym_super] = ACTIONS(2630), + [sym_crate] = ACTIONS(2630), + [sym_metavariable] = ACTIONS(2628), + [sym__raw_string_literal_start] = ACTIONS(2628), + [sym_float_literal] = ACTIONS(2628), + }, + [STATE(674)] = { + [sym_line_comment] = STATE(674), + [sym_block_comment] = STATE(674), + [ts_builtin_sym_end] = ACTIONS(2632), + [sym_identifier] = ACTIONS(2634), + [anon_sym_SEMI] = ACTIONS(2632), + [anon_sym_macro_rules_BANG] = ACTIONS(2632), + [anon_sym_LPAREN] = ACTIONS(2632), + [anon_sym_LBRACK] = ACTIONS(2632), + [anon_sym_LBRACE] = ACTIONS(2632), + [anon_sym_RBRACE] = ACTIONS(2632), + [anon_sym_STAR] = ACTIONS(2632), + [anon_sym_u8] = ACTIONS(2634), + [anon_sym_i8] = ACTIONS(2634), + [anon_sym_u16] = ACTIONS(2634), + [anon_sym_i16] = ACTIONS(2634), + [anon_sym_u32] = ACTIONS(2634), + [anon_sym_i32] = ACTIONS(2634), + [anon_sym_u64] = ACTIONS(2634), + [anon_sym_i64] = ACTIONS(2634), + [anon_sym_u128] = ACTIONS(2634), + [anon_sym_i128] = ACTIONS(2634), + [anon_sym_isize] = ACTIONS(2634), + [anon_sym_usize] = ACTIONS(2634), + [anon_sym_f32] = ACTIONS(2634), + [anon_sym_f64] = ACTIONS(2634), + [anon_sym_bool] = ACTIONS(2634), + [anon_sym_str] = ACTIONS(2634), + [anon_sym_char] = ACTIONS(2634), + [anon_sym_DASH] = ACTIONS(2632), + [anon_sym_BANG] = ACTIONS(2632), + [anon_sym_AMP] = ACTIONS(2632), + [anon_sym_PIPE] = ACTIONS(2632), + [anon_sym_LT] = ACTIONS(2632), + [anon_sym_DOT_DOT] = ACTIONS(2632), + [anon_sym_COLON_COLON] = ACTIONS(2632), + [anon_sym_POUND] = ACTIONS(2632), + [anon_sym_SQUOTE] = ACTIONS(2634), + [anon_sym_async] = ACTIONS(2634), + [anon_sym_break] = ACTIONS(2634), + [anon_sym_const] = ACTIONS(2634), + [anon_sym_continue] = ACTIONS(2634), + [anon_sym_default] = ACTIONS(2634), + [anon_sym_enum] = ACTIONS(2634), + [anon_sym_fn] = ACTIONS(2634), + [anon_sym_for] = ACTIONS(2634), + [anon_sym_gen] = ACTIONS(2634), + [anon_sym_if] = ACTIONS(2634), + [anon_sym_impl] = ACTIONS(2634), + [anon_sym_let] = ACTIONS(2634), + [anon_sym_loop] = ACTIONS(2634), + [anon_sym_match] = ACTIONS(2634), + [anon_sym_mod] = ACTIONS(2634), + [anon_sym_pub] = ACTIONS(2634), + [anon_sym_return] = ACTIONS(2634), + [anon_sym_static] = ACTIONS(2634), + [anon_sym_struct] = ACTIONS(2634), + [anon_sym_trait] = ACTIONS(2634), + [anon_sym_type] = ACTIONS(2634), + [anon_sym_union] = ACTIONS(2634), + [anon_sym_unsafe] = ACTIONS(2634), + [anon_sym_use] = ACTIONS(2634), + [anon_sym_while] = ACTIONS(2634), + [anon_sym_extern] = ACTIONS(2634), + [anon_sym_safe] = ACTIONS(2634), + [anon_sym_yield] = ACTIONS(2634), + [anon_sym_move] = ACTIONS(2634), + [anon_sym_try] = ACTIONS(2634), + [sym_integer_literal] = ACTIONS(2632), + [aux_sym_string_literal_token1] = ACTIONS(2632), + [sym_char_literal] = ACTIONS(2632), + [anon_sym_true] = ACTIONS(2634), + [anon_sym_false] = ACTIONS(2634), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2634), + [sym_super] = ACTIONS(2634), + [sym_crate] = ACTIONS(2634), + [sym_metavariable] = ACTIONS(2632), + [sym__raw_string_literal_start] = ACTIONS(2632), + [sym_float_literal] = ACTIONS(2632), + }, + [STATE(675)] = { + [sym_line_comment] = STATE(675), + [sym_block_comment] = STATE(675), + [ts_builtin_sym_end] = ACTIONS(2636), + [sym_identifier] = ACTIONS(2638), + [anon_sym_SEMI] = ACTIONS(2636), + [anon_sym_macro_rules_BANG] = ACTIONS(2636), + [anon_sym_LPAREN] = ACTIONS(2636), + [anon_sym_LBRACK] = ACTIONS(2636), + [anon_sym_LBRACE] = ACTIONS(2636), + [anon_sym_RBRACE] = ACTIONS(2636), + [anon_sym_STAR] = ACTIONS(2636), + [anon_sym_u8] = ACTIONS(2638), + [anon_sym_i8] = ACTIONS(2638), + [anon_sym_u16] = ACTIONS(2638), + [anon_sym_i16] = ACTIONS(2638), + [anon_sym_u32] = ACTIONS(2638), + [anon_sym_i32] = ACTIONS(2638), + [anon_sym_u64] = ACTIONS(2638), + [anon_sym_i64] = ACTIONS(2638), + [anon_sym_u128] = ACTIONS(2638), + [anon_sym_i128] = ACTIONS(2638), + [anon_sym_isize] = ACTIONS(2638), + [anon_sym_usize] = ACTIONS(2638), + [anon_sym_f32] = ACTIONS(2638), + [anon_sym_f64] = ACTIONS(2638), + [anon_sym_bool] = ACTIONS(2638), + [anon_sym_str] = ACTIONS(2638), + [anon_sym_char] = ACTIONS(2638), + [anon_sym_DASH] = ACTIONS(2636), + [anon_sym_BANG] = ACTIONS(2636), + [anon_sym_AMP] = ACTIONS(2636), + [anon_sym_PIPE] = ACTIONS(2636), + [anon_sym_LT] = ACTIONS(2636), + [anon_sym_DOT_DOT] = ACTIONS(2636), + [anon_sym_COLON_COLON] = ACTIONS(2636), + [anon_sym_POUND] = ACTIONS(2636), + [anon_sym_SQUOTE] = ACTIONS(2638), + [anon_sym_async] = ACTIONS(2638), + [anon_sym_break] = ACTIONS(2638), + [anon_sym_const] = ACTIONS(2638), + [anon_sym_continue] = ACTIONS(2638), + [anon_sym_default] = ACTIONS(2638), + [anon_sym_enum] = ACTIONS(2638), + [anon_sym_fn] = ACTIONS(2638), + [anon_sym_for] = ACTIONS(2638), + [anon_sym_gen] = ACTIONS(2638), + [anon_sym_if] = ACTIONS(2638), + [anon_sym_impl] = ACTIONS(2638), + [anon_sym_let] = ACTIONS(2638), + [anon_sym_loop] = ACTIONS(2638), + [anon_sym_match] = ACTIONS(2638), + [anon_sym_mod] = ACTIONS(2638), + [anon_sym_pub] = ACTIONS(2638), + [anon_sym_return] = ACTIONS(2638), + [anon_sym_static] = ACTIONS(2638), + [anon_sym_struct] = ACTIONS(2638), + [anon_sym_trait] = ACTIONS(2638), + [anon_sym_type] = ACTIONS(2638), + [anon_sym_union] = ACTIONS(2638), + [anon_sym_unsafe] = ACTIONS(2638), + [anon_sym_use] = ACTIONS(2638), + [anon_sym_while] = ACTIONS(2638), + [anon_sym_extern] = ACTIONS(2638), + [anon_sym_safe] = ACTIONS(2638), + [anon_sym_yield] = ACTIONS(2638), + [anon_sym_move] = ACTIONS(2638), + [anon_sym_try] = ACTIONS(2638), + [sym_integer_literal] = ACTIONS(2636), + [aux_sym_string_literal_token1] = ACTIONS(2636), + [sym_char_literal] = ACTIONS(2636), + [anon_sym_true] = ACTIONS(2638), + [anon_sym_false] = ACTIONS(2638), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2638), + [sym_super] = ACTIONS(2638), + [sym_crate] = ACTIONS(2638), + [sym_metavariable] = ACTIONS(2636), + [sym__raw_string_literal_start] = ACTIONS(2636), + [sym_float_literal] = ACTIONS(2636), + }, + [STATE(676)] = { + [sym_line_comment] = STATE(676), + [sym_block_comment] = STATE(676), + [ts_builtin_sym_end] = ACTIONS(2640), + [sym_identifier] = ACTIONS(2642), + [anon_sym_SEMI] = ACTIONS(2640), + [anon_sym_macro_rules_BANG] = ACTIONS(2640), + [anon_sym_LPAREN] = ACTIONS(2640), + [anon_sym_LBRACK] = ACTIONS(2640), + [anon_sym_LBRACE] = ACTIONS(2640), + [anon_sym_RBRACE] = ACTIONS(2640), + [anon_sym_STAR] = ACTIONS(2640), + [anon_sym_u8] = ACTIONS(2642), + [anon_sym_i8] = ACTIONS(2642), + [anon_sym_u16] = ACTIONS(2642), + [anon_sym_i16] = ACTIONS(2642), + [anon_sym_u32] = ACTIONS(2642), + [anon_sym_i32] = ACTIONS(2642), + [anon_sym_u64] = ACTIONS(2642), + [anon_sym_i64] = ACTIONS(2642), + [anon_sym_u128] = ACTIONS(2642), + [anon_sym_i128] = ACTIONS(2642), + [anon_sym_isize] = ACTIONS(2642), + [anon_sym_usize] = ACTIONS(2642), + [anon_sym_f32] = ACTIONS(2642), + [anon_sym_f64] = ACTIONS(2642), + [anon_sym_bool] = ACTIONS(2642), + [anon_sym_str] = ACTIONS(2642), + [anon_sym_char] = ACTIONS(2642), + [anon_sym_DASH] = ACTIONS(2640), + [anon_sym_BANG] = ACTIONS(2640), + [anon_sym_AMP] = ACTIONS(2640), + [anon_sym_PIPE] = ACTIONS(2640), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_DOT_DOT] = ACTIONS(2640), + [anon_sym_COLON_COLON] = ACTIONS(2640), + [anon_sym_POUND] = ACTIONS(2640), + [anon_sym_SQUOTE] = ACTIONS(2642), + [anon_sym_async] = ACTIONS(2642), + [anon_sym_break] = ACTIONS(2642), + [anon_sym_const] = ACTIONS(2642), + [anon_sym_continue] = ACTIONS(2642), + [anon_sym_default] = ACTIONS(2642), + [anon_sym_enum] = ACTIONS(2642), + [anon_sym_fn] = ACTIONS(2642), + [anon_sym_for] = ACTIONS(2642), + [anon_sym_gen] = ACTIONS(2642), + [anon_sym_if] = ACTIONS(2642), + [anon_sym_impl] = ACTIONS(2642), + [anon_sym_let] = ACTIONS(2642), + [anon_sym_loop] = ACTIONS(2642), + [anon_sym_match] = ACTIONS(2642), + [anon_sym_mod] = ACTIONS(2642), + [anon_sym_pub] = ACTIONS(2642), + [anon_sym_return] = ACTIONS(2642), + [anon_sym_static] = ACTIONS(2642), + [anon_sym_struct] = ACTIONS(2642), + [anon_sym_trait] = ACTIONS(2642), + [anon_sym_type] = ACTIONS(2642), + [anon_sym_union] = ACTIONS(2642), + [anon_sym_unsafe] = ACTIONS(2642), + [anon_sym_use] = ACTIONS(2642), + [anon_sym_while] = ACTIONS(2642), + [anon_sym_extern] = ACTIONS(2642), + [anon_sym_safe] = ACTIONS(2642), + [anon_sym_yield] = ACTIONS(2642), + [anon_sym_move] = ACTIONS(2642), + [anon_sym_try] = ACTIONS(2642), + [sym_integer_literal] = ACTIONS(2640), + [aux_sym_string_literal_token1] = ACTIONS(2640), + [sym_char_literal] = ACTIONS(2640), + [anon_sym_true] = ACTIONS(2642), + [anon_sym_false] = ACTIONS(2642), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2642), + [sym_super] = ACTIONS(2642), + [sym_crate] = ACTIONS(2642), + [sym_metavariable] = ACTIONS(2640), + [sym__raw_string_literal_start] = ACTIONS(2640), + [sym_float_literal] = ACTIONS(2640), + }, [STATE(677)] = { [sym_line_comment] = STATE(677), [sym_block_comment] = STATE(677), - [ts_builtin_sym_end] = ACTIONS(2626), - [sym_identifier] = ACTIONS(2628), - [anon_sym_SEMI] = ACTIONS(2626), - [anon_sym_macro_rules_BANG] = ACTIONS(2626), - [anon_sym_LPAREN] = ACTIONS(2626), - [anon_sym_LBRACK] = ACTIONS(2626), - [anon_sym_LBRACE] = ACTIONS(2626), - [anon_sym_RBRACE] = ACTIONS(2626), - [anon_sym_STAR] = ACTIONS(2626), - [anon_sym_u8] = ACTIONS(2628), - [anon_sym_i8] = ACTIONS(2628), - [anon_sym_u16] = ACTIONS(2628), - [anon_sym_i16] = ACTIONS(2628), - [anon_sym_u32] = ACTIONS(2628), - [anon_sym_i32] = ACTIONS(2628), - [anon_sym_u64] = ACTIONS(2628), - [anon_sym_i64] = ACTIONS(2628), - [anon_sym_u128] = ACTIONS(2628), - [anon_sym_i128] = ACTIONS(2628), - [anon_sym_isize] = ACTIONS(2628), - [anon_sym_usize] = ACTIONS(2628), - [anon_sym_f32] = ACTIONS(2628), - [anon_sym_f64] = ACTIONS(2628), - [anon_sym_bool] = ACTIONS(2628), - [anon_sym_str] = ACTIONS(2628), - [anon_sym_char] = ACTIONS(2628), - [anon_sym_DASH] = ACTIONS(2626), - [anon_sym_BANG] = ACTIONS(2626), - [anon_sym_AMP] = ACTIONS(2626), - [anon_sym_PIPE] = ACTIONS(2626), - [anon_sym_LT] = ACTIONS(2626), - [anon_sym_DOT_DOT] = ACTIONS(2626), - [anon_sym_COLON_COLON] = ACTIONS(2626), - [anon_sym_POUND] = ACTIONS(2626), - [anon_sym_SQUOTE] = ACTIONS(2628), - [anon_sym_async] = ACTIONS(2628), - [anon_sym_break] = ACTIONS(2628), - [anon_sym_const] = ACTIONS(2628), - [anon_sym_continue] = ACTIONS(2628), - [anon_sym_default] = ACTIONS(2628), - [anon_sym_enum] = ACTIONS(2628), - [anon_sym_fn] = ACTIONS(2628), - [anon_sym_for] = ACTIONS(2628), - [anon_sym_gen] = ACTIONS(2628), - [anon_sym_if] = ACTIONS(2628), - [anon_sym_impl] = ACTIONS(2628), - [anon_sym_let] = ACTIONS(2628), - [anon_sym_loop] = ACTIONS(2628), - [anon_sym_match] = ACTIONS(2628), - [anon_sym_mod] = ACTIONS(2628), - [anon_sym_pub] = ACTIONS(2628), - [anon_sym_return] = ACTIONS(2628), - [anon_sym_static] = ACTIONS(2628), - [anon_sym_struct] = ACTIONS(2628), - [anon_sym_trait] = ACTIONS(2628), - [anon_sym_type] = ACTIONS(2628), - [anon_sym_union] = ACTIONS(2628), - [anon_sym_unsafe] = ACTIONS(2628), - [anon_sym_use] = ACTIONS(2628), - [anon_sym_while] = ACTIONS(2628), - [anon_sym_extern] = ACTIONS(2628), - [anon_sym_yield] = ACTIONS(2628), - [anon_sym_move] = ACTIONS(2628), - [anon_sym_try] = ACTIONS(2628), - [sym_integer_literal] = ACTIONS(2626), - [aux_sym_string_literal_token1] = ACTIONS(2626), - [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), - [sym_self] = ACTIONS(2628), - [sym_super] = ACTIONS(2628), - [sym_crate] = ACTIONS(2628), - [sym_metavariable] = ACTIONS(2626), - [sym__raw_string_literal_start] = ACTIONS(2626), - [sym_float_literal] = ACTIONS(2626), + [ts_builtin_sym_end] = ACTIONS(2644), + [sym_identifier] = ACTIONS(2646), + [anon_sym_SEMI] = ACTIONS(2644), + [anon_sym_macro_rules_BANG] = ACTIONS(2644), + [anon_sym_LPAREN] = ACTIONS(2644), + [anon_sym_LBRACK] = ACTIONS(2644), + [anon_sym_LBRACE] = ACTIONS(2644), + [anon_sym_RBRACE] = ACTIONS(2644), + [anon_sym_STAR] = ACTIONS(2644), + [anon_sym_u8] = ACTIONS(2646), + [anon_sym_i8] = ACTIONS(2646), + [anon_sym_u16] = ACTIONS(2646), + [anon_sym_i16] = ACTIONS(2646), + [anon_sym_u32] = ACTIONS(2646), + [anon_sym_i32] = ACTIONS(2646), + [anon_sym_u64] = ACTIONS(2646), + [anon_sym_i64] = ACTIONS(2646), + [anon_sym_u128] = ACTIONS(2646), + [anon_sym_i128] = ACTIONS(2646), + [anon_sym_isize] = ACTIONS(2646), + [anon_sym_usize] = ACTIONS(2646), + [anon_sym_f32] = ACTIONS(2646), + [anon_sym_f64] = ACTIONS(2646), + [anon_sym_bool] = ACTIONS(2646), + [anon_sym_str] = ACTIONS(2646), + [anon_sym_char] = ACTIONS(2646), + [anon_sym_DASH] = ACTIONS(2644), + [anon_sym_BANG] = ACTIONS(2644), + [anon_sym_AMP] = ACTIONS(2644), + [anon_sym_PIPE] = ACTIONS(2644), + [anon_sym_LT] = ACTIONS(2644), + [anon_sym_DOT_DOT] = ACTIONS(2644), + [anon_sym_COLON_COLON] = ACTIONS(2644), + [anon_sym_POUND] = ACTIONS(2644), + [anon_sym_SQUOTE] = ACTIONS(2646), + [anon_sym_async] = ACTIONS(2646), + [anon_sym_break] = ACTIONS(2646), + [anon_sym_const] = ACTIONS(2646), + [anon_sym_continue] = ACTIONS(2646), + [anon_sym_default] = ACTIONS(2646), + [anon_sym_enum] = ACTIONS(2646), + [anon_sym_fn] = ACTIONS(2646), + [anon_sym_for] = ACTIONS(2646), + [anon_sym_gen] = ACTIONS(2646), + [anon_sym_if] = ACTIONS(2646), + [anon_sym_impl] = ACTIONS(2646), + [anon_sym_let] = ACTIONS(2646), + [anon_sym_loop] = ACTIONS(2646), + [anon_sym_match] = ACTIONS(2646), + [anon_sym_mod] = ACTIONS(2646), + [anon_sym_pub] = ACTIONS(2646), + [anon_sym_return] = ACTIONS(2646), + [anon_sym_static] = ACTIONS(2646), + [anon_sym_struct] = ACTIONS(2646), + [anon_sym_trait] = ACTIONS(2646), + [anon_sym_type] = ACTIONS(2646), + [anon_sym_union] = ACTIONS(2646), + [anon_sym_unsafe] = ACTIONS(2646), + [anon_sym_use] = ACTIONS(2646), + [anon_sym_while] = ACTIONS(2646), + [anon_sym_extern] = ACTIONS(2646), + [anon_sym_safe] = ACTIONS(2646), + [anon_sym_yield] = ACTIONS(2646), + [anon_sym_move] = ACTIONS(2646), + [anon_sym_try] = ACTIONS(2646), + [sym_integer_literal] = ACTIONS(2644), + [aux_sym_string_literal_token1] = ACTIONS(2644), + [sym_char_literal] = ACTIONS(2644), + [anon_sym_true] = ACTIONS(2646), + [anon_sym_false] = ACTIONS(2646), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2646), + [sym_super] = ACTIONS(2646), + [sym_crate] = ACTIONS(2646), + [sym_metavariable] = ACTIONS(2644), + [sym__raw_string_literal_start] = ACTIONS(2644), + [sym_float_literal] = ACTIONS(2644), }, [STATE(678)] = { [sym_line_comment] = STATE(678), [sym_block_comment] = STATE(678), - [ts_builtin_sym_end] = ACTIONS(2630), - [sym_identifier] = ACTIONS(2632), - [anon_sym_SEMI] = ACTIONS(2630), - [anon_sym_macro_rules_BANG] = ACTIONS(2630), - [anon_sym_LPAREN] = ACTIONS(2630), - [anon_sym_LBRACK] = ACTIONS(2630), - [anon_sym_LBRACE] = ACTIONS(2630), - [anon_sym_RBRACE] = ACTIONS(2630), - [anon_sym_STAR] = ACTIONS(2630), - [anon_sym_u8] = ACTIONS(2632), - [anon_sym_i8] = ACTIONS(2632), - [anon_sym_u16] = ACTIONS(2632), - [anon_sym_i16] = ACTIONS(2632), - [anon_sym_u32] = ACTIONS(2632), - [anon_sym_i32] = ACTIONS(2632), - [anon_sym_u64] = ACTIONS(2632), - [anon_sym_i64] = ACTIONS(2632), - [anon_sym_u128] = ACTIONS(2632), - [anon_sym_i128] = ACTIONS(2632), - [anon_sym_isize] = ACTIONS(2632), - [anon_sym_usize] = ACTIONS(2632), - [anon_sym_f32] = ACTIONS(2632), - [anon_sym_f64] = ACTIONS(2632), - [anon_sym_bool] = ACTIONS(2632), - [anon_sym_str] = ACTIONS(2632), - [anon_sym_char] = ACTIONS(2632), - [anon_sym_DASH] = ACTIONS(2630), - [anon_sym_BANG] = ACTIONS(2630), - [anon_sym_AMP] = ACTIONS(2630), - [anon_sym_PIPE] = ACTIONS(2630), - [anon_sym_LT] = ACTIONS(2630), - [anon_sym_DOT_DOT] = ACTIONS(2630), - [anon_sym_COLON_COLON] = ACTIONS(2630), - [anon_sym_POUND] = ACTIONS(2630), - [anon_sym_SQUOTE] = ACTIONS(2632), - [anon_sym_async] = ACTIONS(2632), - [anon_sym_break] = ACTIONS(2632), - [anon_sym_const] = ACTIONS(2632), - [anon_sym_continue] = ACTIONS(2632), - [anon_sym_default] = ACTIONS(2632), - [anon_sym_enum] = ACTIONS(2632), - [anon_sym_fn] = ACTIONS(2632), - [anon_sym_for] = ACTIONS(2632), - [anon_sym_gen] = ACTIONS(2632), - [anon_sym_if] = ACTIONS(2632), - [anon_sym_impl] = ACTIONS(2632), - [anon_sym_let] = ACTIONS(2632), - [anon_sym_loop] = ACTIONS(2632), - [anon_sym_match] = ACTIONS(2632), - [anon_sym_mod] = ACTIONS(2632), - [anon_sym_pub] = ACTIONS(2632), - [anon_sym_return] = ACTIONS(2632), - [anon_sym_static] = ACTIONS(2632), - [anon_sym_struct] = ACTIONS(2632), - [anon_sym_trait] = ACTIONS(2632), - [anon_sym_type] = ACTIONS(2632), - [anon_sym_union] = ACTIONS(2632), - [anon_sym_unsafe] = ACTIONS(2632), - [anon_sym_use] = ACTIONS(2632), - [anon_sym_while] = ACTIONS(2632), - [anon_sym_extern] = ACTIONS(2632), - [anon_sym_yield] = ACTIONS(2632), - [anon_sym_move] = ACTIONS(2632), - [anon_sym_try] = ACTIONS(2632), - [sym_integer_literal] = ACTIONS(2630), - [aux_sym_string_literal_token1] = ACTIONS(2630), - [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), - [sym_self] = ACTIONS(2632), - [sym_super] = ACTIONS(2632), - [sym_crate] = ACTIONS(2632), - [sym_metavariable] = ACTIONS(2630), - [sym__raw_string_literal_start] = ACTIONS(2630), - [sym_float_literal] = ACTIONS(2630), + [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(679)] = { [sym_line_comment] = STATE(679), [sym_block_comment] = STATE(679), - [ts_builtin_sym_end] = ACTIONS(2634), - [sym_identifier] = ACTIONS(2636), - [anon_sym_SEMI] = ACTIONS(2634), - [anon_sym_macro_rules_BANG] = ACTIONS(2634), - [anon_sym_LPAREN] = ACTIONS(2634), - [anon_sym_LBRACK] = ACTIONS(2634), - [anon_sym_LBRACE] = ACTIONS(2634), - [anon_sym_RBRACE] = ACTIONS(2634), - [anon_sym_STAR] = ACTIONS(2634), - [anon_sym_u8] = ACTIONS(2636), - [anon_sym_i8] = ACTIONS(2636), - [anon_sym_u16] = ACTIONS(2636), - [anon_sym_i16] = ACTIONS(2636), - [anon_sym_u32] = ACTIONS(2636), - [anon_sym_i32] = ACTIONS(2636), - [anon_sym_u64] = ACTIONS(2636), - [anon_sym_i64] = ACTIONS(2636), - [anon_sym_u128] = ACTIONS(2636), - [anon_sym_i128] = ACTIONS(2636), - [anon_sym_isize] = ACTIONS(2636), - [anon_sym_usize] = ACTIONS(2636), - [anon_sym_f32] = ACTIONS(2636), - [anon_sym_f64] = ACTIONS(2636), - [anon_sym_bool] = ACTIONS(2636), - [anon_sym_str] = ACTIONS(2636), - [anon_sym_char] = ACTIONS(2636), - [anon_sym_DASH] = ACTIONS(2634), - [anon_sym_BANG] = ACTIONS(2634), - [anon_sym_AMP] = ACTIONS(2634), - [anon_sym_PIPE] = ACTIONS(2634), - [anon_sym_LT] = ACTIONS(2634), - [anon_sym_DOT_DOT] = ACTIONS(2634), - [anon_sym_COLON_COLON] = ACTIONS(2634), - [anon_sym_POUND] = ACTIONS(2634), - [anon_sym_SQUOTE] = ACTIONS(2636), - [anon_sym_async] = ACTIONS(2636), - [anon_sym_break] = ACTIONS(2636), - [anon_sym_const] = ACTIONS(2636), - [anon_sym_continue] = ACTIONS(2636), - [anon_sym_default] = ACTIONS(2636), - [anon_sym_enum] = ACTIONS(2636), - [anon_sym_fn] = ACTIONS(2636), - [anon_sym_for] = ACTIONS(2636), - [anon_sym_gen] = ACTIONS(2636), - [anon_sym_if] = ACTIONS(2636), - [anon_sym_impl] = ACTIONS(2636), - [anon_sym_let] = ACTIONS(2636), - [anon_sym_loop] = ACTIONS(2636), - [anon_sym_match] = ACTIONS(2636), - [anon_sym_mod] = ACTIONS(2636), - [anon_sym_pub] = ACTIONS(2636), - [anon_sym_return] = ACTIONS(2636), - [anon_sym_static] = ACTIONS(2636), - [anon_sym_struct] = ACTIONS(2636), - [anon_sym_trait] = ACTIONS(2636), - [anon_sym_type] = ACTIONS(2636), - [anon_sym_union] = ACTIONS(2636), - [anon_sym_unsafe] = ACTIONS(2636), - [anon_sym_use] = ACTIONS(2636), - [anon_sym_while] = ACTIONS(2636), - [anon_sym_extern] = ACTIONS(2636), - [anon_sym_yield] = ACTIONS(2636), - [anon_sym_move] = ACTIONS(2636), - [anon_sym_try] = ACTIONS(2636), - [sym_integer_literal] = ACTIONS(2634), - [aux_sym_string_literal_token1] = ACTIONS(2634), - [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), - [sym_self] = ACTIONS(2636), - [sym_super] = ACTIONS(2636), - [sym_crate] = ACTIONS(2636), - [sym_metavariable] = ACTIONS(2634), - [sym__raw_string_literal_start] = ACTIONS(2634), - [sym_float_literal] = ACTIONS(2634), + [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(680)] = { [sym_line_comment] = STATE(680), [sym_block_comment] = STATE(680), - [ts_builtin_sym_end] = ACTIONS(2638), - [sym_identifier] = ACTIONS(2640), - [anon_sym_SEMI] = ACTIONS(2638), - [anon_sym_macro_rules_BANG] = ACTIONS(2638), - [anon_sym_LPAREN] = ACTIONS(2638), - [anon_sym_LBRACK] = ACTIONS(2638), - [anon_sym_LBRACE] = ACTIONS(2638), - [anon_sym_RBRACE] = ACTIONS(2638), - [anon_sym_STAR] = ACTIONS(2638), - [anon_sym_u8] = ACTIONS(2640), - [anon_sym_i8] = ACTIONS(2640), - [anon_sym_u16] = ACTIONS(2640), - [anon_sym_i16] = ACTIONS(2640), - [anon_sym_u32] = ACTIONS(2640), - [anon_sym_i32] = ACTIONS(2640), - [anon_sym_u64] = ACTIONS(2640), - [anon_sym_i64] = ACTIONS(2640), - [anon_sym_u128] = ACTIONS(2640), - [anon_sym_i128] = ACTIONS(2640), - [anon_sym_isize] = ACTIONS(2640), - [anon_sym_usize] = ACTIONS(2640), - [anon_sym_f32] = ACTIONS(2640), - [anon_sym_f64] = ACTIONS(2640), - [anon_sym_bool] = ACTIONS(2640), - [anon_sym_str] = ACTIONS(2640), - [anon_sym_char] = ACTIONS(2640), - [anon_sym_DASH] = ACTIONS(2638), - [anon_sym_BANG] = ACTIONS(2638), - [anon_sym_AMP] = ACTIONS(2638), - [anon_sym_PIPE] = ACTIONS(2638), - [anon_sym_LT] = ACTIONS(2638), - [anon_sym_DOT_DOT] = ACTIONS(2638), - [anon_sym_COLON_COLON] = ACTIONS(2638), - [anon_sym_POUND] = ACTIONS(2638), - [anon_sym_SQUOTE] = ACTIONS(2640), - [anon_sym_async] = ACTIONS(2640), - [anon_sym_break] = ACTIONS(2640), - [anon_sym_const] = ACTIONS(2640), - [anon_sym_continue] = ACTIONS(2640), - [anon_sym_default] = ACTIONS(2640), - [anon_sym_enum] = ACTIONS(2640), - [anon_sym_fn] = ACTIONS(2640), - [anon_sym_for] = ACTIONS(2640), - [anon_sym_gen] = ACTIONS(2640), - [anon_sym_if] = ACTIONS(2640), - [anon_sym_impl] = ACTIONS(2640), - [anon_sym_let] = ACTIONS(2640), - [anon_sym_loop] = ACTIONS(2640), - [anon_sym_match] = ACTIONS(2640), - [anon_sym_mod] = ACTIONS(2640), - [anon_sym_pub] = ACTIONS(2640), - [anon_sym_return] = ACTIONS(2640), - [anon_sym_static] = ACTIONS(2640), - [anon_sym_struct] = ACTIONS(2640), - [anon_sym_trait] = ACTIONS(2640), - [anon_sym_type] = ACTIONS(2640), - [anon_sym_union] = ACTIONS(2640), - [anon_sym_unsafe] = ACTIONS(2640), - [anon_sym_use] = ACTIONS(2640), - [anon_sym_while] = ACTIONS(2640), - [anon_sym_extern] = ACTIONS(2640), - [anon_sym_yield] = ACTIONS(2640), - [anon_sym_move] = ACTIONS(2640), - [anon_sym_try] = ACTIONS(2640), - [sym_integer_literal] = ACTIONS(2638), - [aux_sym_string_literal_token1] = ACTIONS(2638), - [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), - [sym_self] = ACTIONS(2640), - [sym_super] = ACTIONS(2640), - [sym_crate] = ACTIONS(2640), - [sym_metavariable] = ACTIONS(2638), - [sym__raw_string_literal_start] = ACTIONS(2638), - [sym_float_literal] = ACTIONS(2638), + [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(681)] = { [sym_line_comment] = STATE(681), [sym_block_comment] = STATE(681), - [ts_builtin_sym_end] = ACTIONS(2642), - [sym_identifier] = ACTIONS(2644), - [anon_sym_SEMI] = ACTIONS(2642), - [anon_sym_macro_rules_BANG] = ACTIONS(2642), - [anon_sym_LPAREN] = ACTIONS(2642), - [anon_sym_LBRACK] = ACTIONS(2642), - [anon_sym_LBRACE] = ACTIONS(2642), - [anon_sym_RBRACE] = ACTIONS(2642), - [anon_sym_STAR] = ACTIONS(2642), - [anon_sym_u8] = ACTIONS(2644), - [anon_sym_i8] = ACTIONS(2644), - [anon_sym_u16] = ACTIONS(2644), - [anon_sym_i16] = ACTIONS(2644), - [anon_sym_u32] = ACTIONS(2644), - [anon_sym_i32] = ACTIONS(2644), - [anon_sym_u64] = ACTIONS(2644), - [anon_sym_i64] = ACTIONS(2644), - [anon_sym_u128] = ACTIONS(2644), - [anon_sym_i128] = ACTIONS(2644), - [anon_sym_isize] = ACTIONS(2644), - [anon_sym_usize] = ACTIONS(2644), - [anon_sym_f32] = ACTIONS(2644), - [anon_sym_f64] = ACTIONS(2644), - [anon_sym_bool] = ACTIONS(2644), - [anon_sym_str] = ACTIONS(2644), - [anon_sym_char] = ACTIONS(2644), - [anon_sym_DASH] = ACTIONS(2642), - [anon_sym_BANG] = ACTIONS(2642), - [anon_sym_AMP] = ACTIONS(2642), - [anon_sym_PIPE] = ACTIONS(2642), - [anon_sym_LT] = ACTIONS(2642), - [anon_sym_DOT_DOT] = ACTIONS(2642), - [anon_sym_COLON_COLON] = ACTIONS(2642), - [anon_sym_POUND] = ACTIONS(2642), - [anon_sym_SQUOTE] = ACTIONS(2644), - [anon_sym_async] = ACTIONS(2644), - [anon_sym_break] = ACTIONS(2644), - [anon_sym_const] = ACTIONS(2644), - [anon_sym_continue] = ACTIONS(2644), - [anon_sym_default] = ACTIONS(2644), - [anon_sym_enum] = ACTIONS(2644), - [anon_sym_fn] = ACTIONS(2644), - [anon_sym_for] = ACTIONS(2644), - [anon_sym_gen] = ACTIONS(2644), - [anon_sym_if] = ACTIONS(2644), - [anon_sym_impl] = ACTIONS(2644), - [anon_sym_let] = ACTIONS(2644), - [anon_sym_loop] = ACTIONS(2644), - [anon_sym_match] = ACTIONS(2644), - [anon_sym_mod] = ACTIONS(2644), - [anon_sym_pub] = ACTIONS(2644), - [anon_sym_return] = ACTIONS(2644), - [anon_sym_static] = ACTIONS(2644), - [anon_sym_struct] = ACTIONS(2644), - [anon_sym_trait] = ACTIONS(2644), - [anon_sym_type] = ACTIONS(2644), - [anon_sym_union] = ACTIONS(2644), - [anon_sym_unsafe] = ACTIONS(2644), - [anon_sym_use] = ACTIONS(2644), - [anon_sym_while] = ACTIONS(2644), - [anon_sym_extern] = ACTIONS(2644), - [anon_sym_yield] = ACTIONS(2644), - [anon_sym_move] = ACTIONS(2644), - [anon_sym_try] = ACTIONS(2644), - [sym_integer_literal] = ACTIONS(2642), - [aux_sym_string_literal_token1] = ACTIONS(2642), - [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), - [sym_self] = ACTIONS(2644), - [sym_super] = ACTIONS(2644), - [sym_crate] = ACTIONS(2644), - [sym_metavariable] = ACTIONS(2642), - [sym__raw_string_literal_start] = ACTIONS(2642), - [sym_float_literal] = ACTIONS(2642), + [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(682)] = { [sym_line_comment] = STATE(682), [sym_block_comment] = STATE(682), - [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), + [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(683)] = { [sym_line_comment] = STATE(683), [sym_block_comment] = STATE(683), - [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(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(684)] = { - [sym_attribute_item] = STATE(1145), - [sym_inner_attribute_item] = STATE(1145), - [sym_bracketed_type] = STATE(3695), - [sym_generic_type] = STATE(3711), - [sym_generic_type_with_turbofish] = STATE(3416), - [sym_macro_invocation] = STATE(2883), - [sym_scoped_identifier] = STATE(2241), - [sym_scoped_type_identifier] = STATE(3110), - [sym_match_pattern] = STATE(3647), - [sym_const_block] = STATE(2883), - [sym__pattern] = STATE(2909), - [sym_generic_pattern] = STATE(2883), - [sym_tuple_pattern] = STATE(2883), - [sym_slice_pattern] = STATE(2883), - [sym_tuple_struct_pattern] = STATE(2883), - [sym_struct_pattern] = STATE(2883), - [sym_remaining_field_pattern] = STATE(2883), - [sym_mut_pattern] = STATE(2883), - [sym_range_pattern] = STATE(2883), - [sym_ref_pattern] = STATE(2883), - [sym_captured_pattern] = STATE(2883), - [sym_reference_pattern] = STATE(2883), - [sym_or_pattern] = STATE(2883), - [sym__literal_pattern] = STATE(2449), - [sym_negative_literal] = STATE(2408), - [sym_string_literal] = STATE(2408), - [sym_raw_string_literal] = STATE(2408), - [sym_boolean_literal] = STATE(2408), + [sym_bracketed_type] = STATE(3756), + [sym_generic_type] = STATE(3622), + [sym_generic_type_with_turbofish] = STATE(3514), + [sym_macro_invocation] = STATE(2197), + [sym_scoped_identifier] = STATE(2056), + [sym_scoped_type_identifier] = STATE(2926), + [sym_const_block] = STATE(2197), + [sym_closure_expression] = STATE(3473), + [sym_closure_parameters] = STATE(221), + [sym__pattern] = STATE(3188), + [sym_generic_pattern] = STATE(2197), + [sym_tuple_pattern] = STATE(2197), + [sym_slice_pattern] = STATE(2197), + [sym_tuple_struct_pattern] = STATE(2197), + [sym_struct_pattern] = STATE(2197), + [sym_remaining_field_pattern] = STATE(2197), + [sym_mut_pattern] = STATE(2197), + [sym_range_pattern] = STATE(2197), + [sym_ref_pattern] = STATE(2197), + [sym_captured_pattern] = STATE(2197), + [sym_reference_pattern] = STATE(2197), + [sym_or_pattern] = STATE(2197), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2129), + [sym_string_literal] = STATE(2129), + [sym_raw_string_literal] = STATE(2129), + [sym_boolean_literal] = STATE(2129), [sym_line_comment] = STATE(684), [sym_block_comment] = STATE(684), - [aux_sym_match_arm_repeat1] = STATE(1077), - [sym_identifier] = ACTIONS(1671), - [anon_sym_LPAREN] = ACTIONS(1673), - [anon_sym_LBRACK] = ACTIONS(1675), - [anon_sym_u8] = ACTIONS(1679), - [anon_sym_i8] = ACTIONS(1679), - [anon_sym_u16] = ACTIONS(1679), - [anon_sym_i16] = ACTIONS(1679), - [anon_sym_u32] = ACTIONS(1679), - [anon_sym_i32] = ACTIONS(1679), - [anon_sym_u64] = ACTIONS(1679), - [anon_sym_i64] = ACTIONS(1679), - [anon_sym_u128] = ACTIONS(1679), - [anon_sym_i128] = ACTIONS(1679), - [anon_sym_isize] = ACTIONS(1679), - [anon_sym_usize] = ACTIONS(1679), - [anon_sym_f32] = ACTIONS(1679), - [anon_sym_f64] = ACTIONS(1679), - [anon_sym_bool] = ACTIONS(1679), - [anon_sym_str] = ACTIONS(1679), - [anon_sym_char] = ACTIONS(1679), - [anon_sym_DASH] = ACTIONS(1681), - [anon_sym_AMP] = ACTIONS(1683), - [anon_sym_PIPE] = ACTIONS(1685), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1687), - [anon_sym_DOT_DOT] = ACTIONS(1689), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1691), - [anon_sym_COLON_COLON] = ACTIONS(1693), - [anon_sym_POUND] = ACTIONS(1695), - [anon_sym_const] = ACTIONS(1697), - [anon_sym_default] = ACTIONS(1699), - [anon_sym_gen] = ACTIONS(1699), - [anon_sym_union] = ACTIONS(1699), - [anon_sym_ref] = ACTIONS(1701), - [sym_mutable_specifier] = ACTIONS(1703), - [sym_integer_literal] = ACTIONS(1705), - [aux_sym_string_literal_token1] = ACTIONS(1707), - [sym_char_literal] = ACTIONS(1705), - [anon_sym_true] = ACTIONS(1709), - [anon_sym_false] = ACTIONS(1709), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1711), - [sym_super] = ACTIONS(1711), - [sym_crate] = ACTIONS(1711), - [sym_metavariable] = ACTIONS(1713), - [sym__raw_string_literal_start] = ACTIONS(1715), - [sym_float_literal] = ACTIONS(1705), + [sym_identifier] = ACTIONS(1730), + [anon_sym_LPAREN] = ACTIONS(1732), + [anon_sym_RPAREN] = ACTIONS(2672), + [anon_sym_LBRACK] = ACTIONS(1736), + [anon_sym_u8] = ACTIONS(1738), + [anon_sym_i8] = ACTIONS(1738), + [anon_sym_u16] = ACTIONS(1738), + [anon_sym_i16] = ACTIONS(1738), + [anon_sym_u32] = ACTIONS(1738), + [anon_sym_i32] = ACTIONS(1738), + [anon_sym_u64] = ACTIONS(1738), + [anon_sym_i64] = ACTIONS(1738), + [anon_sym_u128] = ACTIONS(1738), + [anon_sym_i128] = ACTIONS(1738), + [anon_sym_isize] = ACTIONS(1738), + [anon_sym_usize] = ACTIONS(1738), + [anon_sym_f32] = ACTIONS(1738), + [anon_sym_f64] = ACTIONS(1738), + [anon_sym_bool] = ACTIONS(1738), + [anon_sym_str] = ACTIONS(1738), + [anon_sym_char] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1064), + [anon_sym_AMP] = ACTIONS(1740), + [anon_sym_PIPE] = ACTIONS(1390), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1392), + [anon_sym_DOT_DOT] = ACTIONS(1074), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1078), + [anon_sym_COLON_COLON] = ACTIONS(1744), + [anon_sym_async] = ACTIONS(1746), + [anon_sym_const] = ACTIONS(1748), + [anon_sym_default] = ACTIONS(1750), + [anon_sym_gen] = ACTIONS(1750), + [anon_sym_static] = ACTIONS(1398), + [anon_sym_union] = ACTIONS(1750), + [anon_sym_ref] = ACTIONS(1106), + [sym_mutable_specifier] = ACTIONS(1400), + [anon_sym_move] = ACTIONS(1402), + [sym_integer_literal] = ACTIONS(1112), + [aux_sym_string_literal_token1] = ACTIONS(1114), + [sym_char_literal] = ACTIONS(1112), + [anon_sym_true] = ACTIONS(1116), + [anon_sym_false] = ACTIONS(1116), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1752), + [sym_super] = ACTIONS(1752), + [sym_crate] = ACTIONS(1752), + [sym_metavariable] = ACTIONS(1754), + [sym__raw_string_literal_start] = ACTIONS(1124), + [sym_float_literal] = ACTIONS(1112), }, [STATE(685)] = { [sym_line_comment] = STATE(685), [sym_block_comment] = STATE(685), - [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), - }, - [STATE(686)] = { - [sym_line_comment] = STATE(686), - [sym_block_comment] = STATE(686), - [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), - }, - [STATE(687)] = { - [sym_line_comment] = STATE(687), - [sym_block_comment] = STATE(687), - [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), - }, - [STATE(688)] = { - [sym_line_comment] = STATE(688), - [sym_block_comment] = STATE(688), - [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), - }, - [STATE(689)] = { - [sym_line_comment] = STATE(689), - [sym_block_comment] = STATE(689), - [ts_builtin_sym_end] = ACTIONS(2670), - [sym_identifier] = ACTIONS(2672), - [anon_sym_SEMI] = ACTIONS(2670), - [anon_sym_macro_rules_BANG] = ACTIONS(2670), - [anon_sym_LPAREN] = ACTIONS(2670), - [anon_sym_LBRACK] = ACTIONS(2670), - [anon_sym_LBRACE] = ACTIONS(2670), - [anon_sym_RBRACE] = ACTIONS(2670), - [anon_sym_STAR] = ACTIONS(2670), - [anon_sym_u8] = ACTIONS(2672), - [anon_sym_i8] = ACTIONS(2672), - [anon_sym_u16] = ACTIONS(2672), - [anon_sym_i16] = ACTIONS(2672), - [anon_sym_u32] = ACTIONS(2672), - [anon_sym_i32] = ACTIONS(2672), - [anon_sym_u64] = ACTIONS(2672), - [anon_sym_i64] = ACTIONS(2672), - [anon_sym_u128] = ACTIONS(2672), - [anon_sym_i128] = ACTIONS(2672), - [anon_sym_isize] = ACTIONS(2672), - [anon_sym_usize] = ACTIONS(2672), - [anon_sym_f32] = ACTIONS(2672), - [anon_sym_f64] = ACTIONS(2672), - [anon_sym_bool] = ACTIONS(2672), - [anon_sym_str] = ACTIONS(2672), - [anon_sym_char] = ACTIONS(2672), - [anon_sym_DASH] = ACTIONS(2670), - [anon_sym_BANG] = ACTIONS(2670), - [anon_sym_AMP] = ACTIONS(2670), - [anon_sym_PIPE] = ACTIONS(2670), - [anon_sym_LT] = ACTIONS(2670), - [anon_sym_DOT_DOT] = ACTIONS(2670), - [anon_sym_COLON_COLON] = ACTIONS(2670), - [anon_sym_POUND] = ACTIONS(2670), - [anon_sym_SQUOTE] = ACTIONS(2672), - [anon_sym_async] = ACTIONS(2672), - [anon_sym_break] = ACTIONS(2672), - [anon_sym_const] = ACTIONS(2672), - [anon_sym_continue] = ACTIONS(2672), - [anon_sym_default] = ACTIONS(2672), - [anon_sym_enum] = ACTIONS(2672), - [anon_sym_fn] = ACTIONS(2672), - [anon_sym_for] = ACTIONS(2672), - [anon_sym_gen] = ACTIONS(2672), - [anon_sym_if] = ACTIONS(2672), - [anon_sym_impl] = ACTIONS(2672), - [anon_sym_let] = ACTIONS(2672), - [anon_sym_loop] = ACTIONS(2672), - [anon_sym_match] = ACTIONS(2672), - [anon_sym_mod] = ACTIONS(2672), - [anon_sym_pub] = ACTIONS(2672), - [anon_sym_return] = ACTIONS(2672), - [anon_sym_static] = ACTIONS(2672), - [anon_sym_struct] = ACTIONS(2672), - [anon_sym_trait] = ACTIONS(2672), - [anon_sym_type] = ACTIONS(2672), - [anon_sym_union] = ACTIONS(2672), - [anon_sym_unsafe] = ACTIONS(2672), - [anon_sym_use] = ACTIONS(2672), - [anon_sym_while] = ACTIONS(2672), - [anon_sym_extern] = ACTIONS(2672), - [anon_sym_yield] = ACTIONS(2672), - [anon_sym_move] = ACTIONS(2672), - [anon_sym_try] = ACTIONS(2672), - [sym_integer_literal] = ACTIONS(2670), - [aux_sym_string_literal_token1] = ACTIONS(2670), - [sym_char_literal] = ACTIONS(2670), - [anon_sym_true] = ACTIONS(2672), - [anon_sym_false] = ACTIONS(2672), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2672), - [sym_super] = ACTIONS(2672), - [sym_crate] = ACTIONS(2672), - [sym_metavariable] = ACTIONS(2670), - [sym__raw_string_literal_start] = ACTIONS(2670), - [sym_float_literal] = ACTIONS(2670), - }, - [STATE(690)] = { - [sym_line_comment] = STATE(690), - [sym_block_comment] = STATE(690), [ts_builtin_sym_end] = ACTIONS(2674), [sym_identifier] = ACTIONS(2676), [anon_sym_SEMI] = ACTIONS(2674), @@ -87775,6 +87832,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(2676), [anon_sym_while] = ACTIONS(2676), [anon_sym_extern] = ACTIONS(2676), + [anon_sym_safe] = ACTIONS(2676), [anon_sym_yield] = ACTIONS(2676), [anon_sym_move] = ACTIONS(2676), [anon_sym_try] = ACTIONS(2676), @@ -87783,8 +87841,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2674), [anon_sym_true] = ACTIONS(2676), [anon_sym_false] = ACTIONS(2676), - [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(2676), [sym_super] = ACTIONS(2676), [sym_crate] = ACTIONS(2676), @@ -87792,9 +87850,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2674), [sym_float_literal] = ACTIONS(2674), }, - [STATE(691)] = { - [sym_line_comment] = STATE(691), - [sym_block_comment] = STATE(691), + [STATE(686)] = { + [sym_line_comment] = STATE(686), + [sym_block_comment] = STATE(686), [ts_builtin_sym_end] = ACTIONS(2678), [sym_identifier] = ACTIONS(2680), [anon_sym_SEMI] = ACTIONS(2678), @@ -87856,6 +87914,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(2680), [anon_sym_while] = ACTIONS(2680), [anon_sym_extern] = ACTIONS(2680), + [anon_sym_safe] = ACTIONS(2680), [anon_sym_yield] = ACTIONS(2680), [anon_sym_move] = ACTIONS(2680), [anon_sym_try] = ACTIONS(2680), @@ -87864,8 +87923,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2678), [anon_sym_true] = ACTIONS(2680), [anon_sym_false] = ACTIONS(2680), - [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(2680), [sym_super] = ACTIONS(2680), [sym_crate] = ACTIONS(2680), @@ -87873,9 +87932,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2678), [sym_float_literal] = ACTIONS(2678), }, - [STATE(692)] = { - [sym_line_comment] = STATE(692), - [sym_block_comment] = STATE(692), + [STATE(687)] = { + [sym_line_comment] = STATE(687), + [sym_block_comment] = STATE(687), [ts_builtin_sym_end] = ACTIONS(2682), [sym_identifier] = ACTIONS(2684), [anon_sym_SEMI] = ACTIONS(2682), @@ -87937,6 +87996,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(2684), [anon_sym_while] = ACTIONS(2684), [anon_sym_extern] = ACTIONS(2684), + [anon_sym_safe] = ACTIONS(2684), [anon_sym_yield] = ACTIONS(2684), [anon_sym_move] = ACTIONS(2684), [anon_sym_try] = ACTIONS(2684), @@ -87945,8 +88005,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), [sym_self] = ACTIONS(2684), [sym_super] = ACTIONS(2684), [sym_crate] = ACTIONS(2684), @@ -87954,9 +88014,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2682), [sym_float_literal] = ACTIONS(2682), }, - [STATE(693)] = { - [sym_line_comment] = STATE(693), - [sym_block_comment] = STATE(693), + [STATE(688)] = { + [sym_line_comment] = STATE(688), + [sym_block_comment] = STATE(688), [ts_builtin_sym_end] = ACTIONS(2686), [sym_identifier] = ACTIONS(2688), [anon_sym_SEMI] = ACTIONS(2686), @@ -88018,6 +88078,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(2688), [anon_sym_while] = ACTIONS(2688), [anon_sym_extern] = ACTIONS(2688), + [anon_sym_safe] = ACTIONS(2688), [anon_sym_yield] = ACTIONS(2688), [anon_sym_move] = ACTIONS(2688), [anon_sym_try] = ACTIONS(2688), @@ -88026,8 +88087,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), [sym_self] = ACTIONS(2688), [sym_super] = ACTIONS(2688), [sym_crate] = ACTIONS(2688), @@ -88035,9 +88096,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2686), [sym_float_literal] = ACTIONS(2686), }, - [STATE(694)] = { - [sym_line_comment] = STATE(694), - [sym_block_comment] = STATE(694), + [STATE(689)] = { + [sym_line_comment] = STATE(689), + [sym_block_comment] = STATE(689), [ts_builtin_sym_end] = ACTIONS(2690), [sym_identifier] = ACTIONS(2692), [anon_sym_SEMI] = ACTIONS(2690), @@ -88099,6 +88160,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(2692), [anon_sym_while] = ACTIONS(2692), [anon_sym_extern] = ACTIONS(2692), + [anon_sym_safe] = ACTIONS(2692), [anon_sym_yield] = ACTIONS(2692), [anon_sym_move] = ACTIONS(2692), [anon_sym_try] = ACTIONS(2692), @@ -88107,8 +88169,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), [sym_self] = ACTIONS(2692), [sym_super] = ACTIONS(2692), [sym_crate] = ACTIONS(2692), @@ -88116,9 +88178,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2690), [sym_float_literal] = ACTIONS(2690), }, - [STATE(695)] = { - [sym_line_comment] = STATE(695), - [sym_block_comment] = STATE(695), + [STATE(690)] = { + [sym_line_comment] = STATE(690), + [sym_block_comment] = STATE(690), [ts_builtin_sym_end] = ACTIONS(2694), [sym_identifier] = ACTIONS(2696), [anon_sym_SEMI] = ACTIONS(2694), @@ -88180,6 +88242,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(2696), [anon_sym_while] = ACTIONS(2696), [anon_sym_extern] = ACTIONS(2696), + [anon_sym_safe] = ACTIONS(2696), [anon_sym_yield] = ACTIONS(2696), [anon_sym_move] = ACTIONS(2696), [anon_sym_try] = ACTIONS(2696), @@ -88188,8 +88251,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), [sym_self] = ACTIONS(2696), [sym_super] = ACTIONS(2696), [sym_crate] = ACTIONS(2696), @@ -88197,9 +88260,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2694), [sym_float_literal] = ACTIONS(2694), }, - [STATE(696)] = { - [sym_line_comment] = STATE(696), - [sym_block_comment] = STATE(696), + [STATE(691)] = { + [sym_line_comment] = STATE(691), + [sym_block_comment] = STATE(691), [ts_builtin_sym_end] = ACTIONS(2698), [sym_identifier] = ACTIONS(2700), [anon_sym_SEMI] = ACTIONS(2698), @@ -88261,6 +88324,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(2700), [anon_sym_while] = ACTIONS(2700), [anon_sym_extern] = ACTIONS(2700), + [anon_sym_safe] = ACTIONS(2700), [anon_sym_yield] = ACTIONS(2700), [anon_sym_move] = ACTIONS(2700), [anon_sym_try] = ACTIONS(2700), @@ -88269,8 +88333,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2698), [anon_sym_true] = ACTIONS(2700), [anon_sym_false] = ACTIONS(2700), - [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(2700), [sym_super] = ACTIONS(2700), [sym_crate] = ACTIONS(2700), @@ -88278,9 +88342,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2698), [sym_float_literal] = ACTIONS(2698), }, - [STATE(697)] = { - [sym_line_comment] = STATE(697), - [sym_block_comment] = STATE(697), + [STATE(692)] = { + [sym_line_comment] = STATE(692), + [sym_block_comment] = STATE(692), [ts_builtin_sym_end] = ACTIONS(2702), [sym_identifier] = ACTIONS(2704), [anon_sym_SEMI] = ACTIONS(2702), @@ -88342,6 +88406,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(2704), [anon_sym_while] = ACTIONS(2704), [anon_sym_extern] = ACTIONS(2704), + [anon_sym_safe] = ACTIONS(2704), [anon_sym_yield] = ACTIONS(2704), [anon_sym_move] = ACTIONS(2704), [anon_sym_try] = ACTIONS(2704), @@ -88350,8 +88415,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2702), [anon_sym_true] = ACTIONS(2704), [anon_sym_false] = ACTIONS(2704), - [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(2704), [sym_super] = ACTIONS(2704), [sym_crate] = ACTIONS(2704), @@ -88359,9 +88424,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2702), [sym_float_literal] = ACTIONS(2702), }, - [STATE(698)] = { - [sym_line_comment] = STATE(698), - [sym_block_comment] = STATE(698), + [STATE(693)] = { + [sym_line_comment] = STATE(693), + [sym_block_comment] = STATE(693), [ts_builtin_sym_end] = ACTIONS(2706), [sym_identifier] = ACTIONS(2708), [anon_sym_SEMI] = ACTIONS(2706), @@ -88423,6 +88488,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(2708), [anon_sym_while] = ACTIONS(2708), [anon_sym_extern] = ACTIONS(2708), + [anon_sym_safe] = ACTIONS(2708), [anon_sym_yield] = ACTIONS(2708), [anon_sym_move] = ACTIONS(2708), [anon_sym_try] = ACTIONS(2708), @@ -88431,8 +88497,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2706), [anon_sym_true] = ACTIONS(2708), [anon_sym_false] = ACTIONS(2708), - [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(2708), [sym_super] = ACTIONS(2708), [sym_crate] = ACTIONS(2708), @@ -88440,9 +88506,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2706), [sym_float_literal] = ACTIONS(2706), }, - [STATE(699)] = { - [sym_line_comment] = STATE(699), - [sym_block_comment] = STATE(699), + [STATE(694)] = { + [sym_line_comment] = STATE(694), + [sym_block_comment] = STATE(694), [ts_builtin_sym_end] = ACTIONS(2710), [sym_identifier] = ACTIONS(2712), [anon_sym_SEMI] = ACTIONS(2710), @@ -88504,6 +88570,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(2712), [anon_sym_while] = ACTIONS(2712), [anon_sym_extern] = ACTIONS(2712), + [anon_sym_safe] = ACTIONS(2712), [anon_sym_yield] = ACTIONS(2712), [anon_sym_move] = ACTIONS(2712), [anon_sym_try] = ACTIONS(2712), @@ -88512,8 +88579,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), [sym_self] = ACTIONS(2712), [sym_super] = ACTIONS(2712), [sym_crate] = ACTIONS(2712), @@ -88521,9 +88588,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2710), [sym_float_literal] = ACTIONS(2710), }, - [STATE(700)] = { - [sym_line_comment] = STATE(700), - [sym_block_comment] = STATE(700), + [STATE(695)] = { + [sym_line_comment] = STATE(695), + [sym_block_comment] = STATE(695), [ts_builtin_sym_end] = ACTIONS(2714), [sym_identifier] = ACTIONS(2716), [anon_sym_SEMI] = ACTIONS(2714), @@ -88585,6 +88652,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(2716), [anon_sym_while] = ACTIONS(2716), [anon_sym_extern] = ACTIONS(2716), + [anon_sym_safe] = ACTIONS(2716), [anon_sym_yield] = ACTIONS(2716), [anon_sym_move] = ACTIONS(2716), [anon_sym_try] = ACTIONS(2716), @@ -88593,8 +88661,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), [sym_self] = ACTIONS(2716), [sym_super] = ACTIONS(2716), [sym_crate] = ACTIONS(2716), @@ -88602,9 +88670,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2714), [sym_float_literal] = ACTIONS(2714), }, - [STATE(701)] = { - [sym_line_comment] = STATE(701), - [sym_block_comment] = STATE(701), + [STATE(696)] = { + [sym_line_comment] = STATE(696), + [sym_block_comment] = STATE(696), [ts_builtin_sym_end] = ACTIONS(2718), [sym_identifier] = ACTIONS(2720), [anon_sym_SEMI] = ACTIONS(2718), @@ -88666,6 +88734,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(2720), [anon_sym_while] = ACTIONS(2720), [anon_sym_extern] = ACTIONS(2720), + [anon_sym_safe] = ACTIONS(2720), [anon_sym_yield] = ACTIONS(2720), [anon_sym_move] = ACTIONS(2720), [anon_sym_try] = ACTIONS(2720), @@ -88674,8 +88743,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), [sym_self] = ACTIONS(2720), [sym_super] = ACTIONS(2720), [sym_crate] = ACTIONS(2720), @@ -88683,9 +88752,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2718), [sym_float_literal] = ACTIONS(2718), }, - [STATE(702)] = { - [sym_line_comment] = STATE(702), - [sym_block_comment] = STATE(702), + [STATE(697)] = { + [sym_line_comment] = STATE(697), + [sym_block_comment] = STATE(697), [ts_builtin_sym_end] = ACTIONS(2722), [sym_identifier] = ACTIONS(2724), [anon_sym_SEMI] = ACTIONS(2722), @@ -88747,6 +88816,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(2724), [anon_sym_while] = ACTIONS(2724), [anon_sym_extern] = ACTIONS(2724), + [anon_sym_safe] = ACTIONS(2724), [anon_sym_yield] = ACTIONS(2724), [anon_sym_move] = ACTIONS(2724), [anon_sym_try] = ACTIONS(2724), @@ -88755,8 +88825,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2722), [anon_sym_true] = ACTIONS(2724), [anon_sym_false] = ACTIONS(2724), - [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(2724), [sym_super] = ACTIONS(2724), [sym_crate] = ACTIONS(2724), @@ -88764,9 +88834,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2722), [sym_float_literal] = ACTIONS(2722), }, - [STATE(703)] = { - [sym_line_comment] = STATE(703), - [sym_block_comment] = STATE(703), + [STATE(698)] = { + [sym_line_comment] = STATE(698), + [sym_block_comment] = STATE(698), [ts_builtin_sym_end] = ACTIONS(2726), [sym_identifier] = ACTIONS(2728), [anon_sym_SEMI] = ACTIONS(2726), @@ -88828,6 +88898,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(2728), [anon_sym_while] = ACTIONS(2728), [anon_sym_extern] = ACTIONS(2728), + [anon_sym_safe] = ACTIONS(2728), [anon_sym_yield] = ACTIONS(2728), [anon_sym_move] = ACTIONS(2728), [anon_sym_try] = ACTIONS(2728), @@ -88836,8 +88907,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2726), [anon_sym_true] = ACTIONS(2728), [anon_sym_false] = ACTIONS(2728), - [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(2728), [sym_super] = ACTIONS(2728), [sym_crate] = ACTIONS(2728), @@ -88845,9 +88916,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2726), [sym_float_literal] = ACTIONS(2726), }, - [STATE(704)] = { - [sym_line_comment] = STATE(704), - [sym_block_comment] = STATE(704), + [STATE(699)] = { + [sym_line_comment] = STATE(699), + [sym_block_comment] = STATE(699), [ts_builtin_sym_end] = ACTIONS(2730), [sym_identifier] = ACTIONS(2732), [anon_sym_SEMI] = ACTIONS(2730), @@ -88909,6 +88980,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(2732), [anon_sym_while] = ACTIONS(2732), [anon_sym_extern] = ACTIONS(2732), + [anon_sym_safe] = ACTIONS(2732), [anon_sym_yield] = ACTIONS(2732), [anon_sym_move] = ACTIONS(2732), [anon_sym_try] = ACTIONS(2732), @@ -88917,8 +88989,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), [sym_self] = ACTIONS(2732), [sym_super] = ACTIONS(2732), [sym_crate] = ACTIONS(2732), @@ -88926,9 +88998,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2730), [sym_float_literal] = ACTIONS(2730), }, - [STATE(705)] = { - [sym_line_comment] = STATE(705), - [sym_block_comment] = STATE(705), + [STATE(700)] = { + [sym_line_comment] = STATE(700), + [sym_block_comment] = STATE(700), [ts_builtin_sym_end] = ACTIONS(2734), [sym_identifier] = ACTIONS(2736), [anon_sym_SEMI] = ACTIONS(2734), @@ -88990,6 +89062,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(2736), [anon_sym_while] = ACTIONS(2736), [anon_sym_extern] = ACTIONS(2736), + [anon_sym_safe] = ACTIONS(2736), [anon_sym_yield] = ACTIONS(2736), [anon_sym_move] = ACTIONS(2736), [anon_sym_try] = ACTIONS(2736), @@ -88998,8 +89071,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), [sym_self] = ACTIONS(2736), [sym_super] = ACTIONS(2736), [sym_crate] = ACTIONS(2736), @@ -89007,9 +89080,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2734), [sym_float_literal] = ACTIONS(2734), }, - [STATE(706)] = { - [sym_line_comment] = STATE(706), - [sym_block_comment] = STATE(706), + [STATE(701)] = { + [sym_line_comment] = STATE(701), + [sym_block_comment] = STATE(701), [ts_builtin_sym_end] = ACTIONS(2738), [sym_identifier] = ACTIONS(2740), [anon_sym_SEMI] = ACTIONS(2738), @@ -89071,6 +89144,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(2740), [anon_sym_while] = ACTIONS(2740), [anon_sym_extern] = ACTIONS(2740), + [anon_sym_safe] = ACTIONS(2740), [anon_sym_yield] = ACTIONS(2740), [anon_sym_move] = ACTIONS(2740), [anon_sym_try] = ACTIONS(2740), @@ -89079,8 +89153,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), [sym_self] = ACTIONS(2740), [sym_super] = ACTIONS(2740), [sym_crate] = ACTIONS(2740), @@ -89088,9 +89162,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2738), [sym_float_literal] = ACTIONS(2738), }, - [STATE(707)] = { - [sym_line_comment] = STATE(707), - [sym_block_comment] = STATE(707), + [STATE(702)] = { + [sym_line_comment] = STATE(702), + [sym_block_comment] = STATE(702), [ts_builtin_sym_end] = ACTIONS(2742), [sym_identifier] = ACTIONS(2744), [anon_sym_SEMI] = ACTIONS(2742), @@ -89152,6 +89226,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(2744), [anon_sym_while] = ACTIONS(2744), [anon_sym_extern] = ACTIONS(2744), + [anon_sym_safe] = ACTIONS(2744), [anon_sym_yield] = ACTIONS(2744), [anon_sym_move] = ACTIONS(2744), [anon_sym_try] = ACTIONS(2744), @@ -89160,8 +89235,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), [sym_self] = ACTIONS(2744), [sym_super] = ACTIONS(2744), [sym_crate] = ACTIONS(2744), @@ -89169,9 +89244,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2742), [sym_float_literal] = ACTIONS(2742), }, - [STATE(708)] = { - [sym_line_comment] = STATE(708), - [sym_block_comment] = STATE(708), + [STATE(703)] = { + [sym_line_comment] = STATE(703), + [sym_block_comment] = STATE(703), [ts_builtin_sym_end] = ACTIONS(2746), [sym_identifier] = ACTIONS(2748), [anon_sym_SEMI] = ACTIONS(2746), @@ -89233,6 +89308,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(2748), [anon_sym_while] = ACTIONS(2748), [anon_sym_extern] = ACTIONS(2748), + [anon_sym_safe] = ACTIONS(2748), [anon_sym_yield] = ACTIONS(2748), [anon_sym_move] = ACTIONS(2748), [anon_sym_try] = ACTIONS(2748), @@ -89241,8 +89317,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), [sym_self] = ACTIONS(2748), [sym_super] = ACTIONS(2748), [sym_crate] = ACTIONS(2748), @@ -89250,9 +89326,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2746), [sym_float_literal] = ACTIONS(2746), }, - [STATE(709)] = { - [sym_line_comment] = STATE(709), - [sym_block_comment] = STATE(709), + [STATE(704)] = { + [sym_line_comment] = STATE(704), + [sym_block_comment] = STATE(704), [ts_builtin_sym_end] = ACTIONS(2750), [sym_identifier] = ACTIONS(2752), [anon_sym_SEMI] = ACTIONS(2750), @@ -89314,6 +89390,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(2752), [anon_sym_while] = ACTIONS(2752), [anon_sym_extern] = ACTIONS(2752), + [anon_sym_safe] = ACTIONS(2752), [anon_sym_yield] = ACTIONS(2752), [anon_sym_move] = ACTIONS(2752), [anon_sym_try] = ACTIONS(2752), @@ -89322,8 +89399,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), [sym_self] = ACTIONS(2752), [sym_super] = ACTIONS(2752), [sym_crate] = ACTIONS(2752), @@ -89331,9 +89408,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2750), [sym_float_literal] = ACTIONS(2750), }, - [STATE(710)] = { - [sym_line_comment] = STATE(710), - [sym_block_comment] = STATE(710), + [STATE(705)] = { + [sym_line_comment] = STATE(705), + [sym_block_comment] = STATE(705), [ts_builtin_sym_end] = ACTIONS(2754), [sym_identifier] = ACTIONS(2756), [anon_sym_SEMI] = ACTIONS(2754), @@ -89395,6 +89472,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(2756), [anon_sym_while] = ACTIONS(2756), [anon_sym_extern] = ACTIONS(2756), + [anon_sym_safe] = ACTIONS(2756), [anon_sym_yield] = ACTIONS(2756), [anon_sym_move] = ACTIONS(2756), [anon_sym_try] = ACTIONS(2756), @@ -89403,8 +89481,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), [sym_self] = ACTIONS(2756), [sym_super] = ACTIONS(2756), [sym_crate] = ACTIONS(2756), @@ -89412,9 +89490,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2754), [sym_float_literal] = ACTIONS(2754), }, - [STATE(711)] = { - [sym_line_comment] = STATE(711), - [sym_block_comment] = STATE(711), + [STATE(706)] = { + [sym_line_comment] = STATE(706), + [sym_block_comment] = STATE(706), [ts_builtin_sym_end] = ACTIONS(2758), [sym_identifier] = ACTIONS(2760), [anon_sym_SEMI] = ACTIONS(2758), @@ -89476,6 +89554,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(2760), [anon_sym_while] = ACTIONS(2760), [anon_sym_extern] = ACTIONS(2760), + [anon_sym_safe] = ACTIONS(2760), [anon_sym_yield] = ACTIONS(2760), [anon_sym_move] = ACTIONS(2760), [anon_sym_try] = ACTIONS(2760), @@ -89484,8 +89563,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), [sym_self] = ACTIONS(2760), [sym_super] = ACTIONS(2760), [sym_crate] = ACTIONS(2760), @@ -89493,9 +89572,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2758), [sym_float_literal] = ACTIONS(2758), }, - [STATE(712)] = { - [sym_line_comment] = STATE(712), - [sym_block_comment] = STATE(712), + [STATE(707)] = { + [sym_line_comment] = STATE(707), + [sym_block_comment] = STATE(707), [ts_builtin_sym_end] = ACTIONS(2762), [sym_identifier] = ACTIONS(2764), [anon_sym_SEMI] = ACTIONS(2762), @@ -89557,6 +89636,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(2764), [anon_sym_while] = ACTIONS(2764), [anon_sym_extern] = ACTIONS(2764), + [anon_sym_safe] = ACTIONS(2764), [anon_sym_yield] = ACTIONS(2764), [anon_sym_move] = ACTIONS(2764), [anon_sym_try] = ACTIONS(2764), @@ -89565,8 +89645,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), [sym_self] = ACTIONS(2764), [sym_super] = ACTIONS(2764), [sym_crate] = ACTIONS(2764), @@ -89574,9 +89654,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2762), [sym_float_literal] = ACTIONS(2762), }, - [STATE(713)] = { - [sym_line_comment] = STATE(713), - [sym_block_comment] = STATE(713), + [STATE(708)] = { + [sym_line_comment] = STATE(708), + [sym_block_comment] = STATE(708), [ts_builtin_sym_end] = ACTIONS(2766), [sym_identifier] = ACTIONS(2768), [anon_sym_SEMI] = ACTIONS(2766), @@ -89638,6 +89718,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(2768), [anon_sym_while] = ACTIONS(2768), [anon_sym_extern] = ACTIONS(2768), + [anon_sym_safe] = ACTIONS(2768), [anon_sym_yield] = ACTIONS(2768), [anon_sym_move] = ACTIONS(2768), [anon_sym_try] = ACTIONS(2768), @@ -89646,8 +89727,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), [sym_self] = ACTIONS(2768), [sym_super] = ACTIONS(2768), [sym_crate] = ACTIONS(2768), @@ -89655,9 +89736,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2766), [sym_float_literal] = ACTIONS(2766), }, - [STATE(714)] = { - [sym_line_comment] = STATE(714), - [sym_block_comment] = STATE(714), + [STATE(709)] = { + [sym_line_comment] = STATE(709), + [sym_block_comment] = STATE(709), [ts_builtin_sym_end] = ACTIONS(2770), [sym_identifier] = ACTIONS(2772), [anon_sym_SEMI] = ACTIONS(2770), @@ -89719,6 +89800,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(2772), [anon_sym_while] = ACTIONS(2772), [anon_sym_extern] = ACTIONS(2772), + [anon_sym_safe] = ACTIONS(2772), [anon_sym_yield] = ACTIONS(2772), [anon_sym_move] = ACTIONS(2772), [anon_sym_try] = ACTIONS(2772), @@ -89727,8 +89809,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), [sym_self] = ACTIONS(2772), [sym_super] = ACTIONS(2772), [sym_crate] = ACTIONS(2772), @@ -89736,9 +89818,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2770), [sym_float_literal] = ACTIONS(2770), }, - [STATE(715)] = { - [sym_line_comment] = STATE(715), - [sym_block_comment] = STATE(715), + [STATE(710)] = { + [sym_line_comment] = STATE(710), + [sym_block_comment] = STATE(710), [ts_builtin_sym_end] = ACTIONS(2774), [sym_identifier] = ACTIONS(2776), [anon_sym_SEMI] = ACTIONS(2774), @@ -89800,6 +89882,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(2776), [anon_sym_while] = ACTIONS(2776), [anon_sym_extern] = ACTIONS(2776), + [anon_sym_safe] = ACTIONS(2776), [anon_sym_yield] = ACTIONS(2776), [anon_sym_move] = ACTIONS(2776), [anon_sym_try] = ACTIONS(2776), @@ -89808,8 +89891,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), [sym_self] = ACTIONS(2776), [sym_super] = ACTIONS(2776), [sym_crate] = ACTIONS(2776), @@ -89817,9 +89900,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2774), [sym_float_literal] = ACTIONS(2774), }, - [STATE(716)] = { - [sym_line_comment] = STATE(716), - [sym_block_comment] = STATE(716), + [STATE(711)] = { + [sym_line_comment] = STATE(711), + [sym_block_comment] = STATE(711), [ts_builtin_sym_end] = ACTIONS(2778), [sym_identifier] = ACTIONS(2780), [anon_sym_SEMI] = ACTIONS(2778), @@ -89881,6 +89964,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(2780), [anon_sym_while] = ACTIONS(2780), [anon_sym_extern] = ACTIONS(2780), + [anon_sym_safe] = ACTIONS(2780), [anon_sym_yield] = ACTIONS(2780), [anon_sym_move] = ACTIONS(2780), [anon_sym_try] = ACTIONS(2780), @@ -89889,8 +89973,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), [sym_self] = ACTIONS(2780), [sym_super] = ACTIONS(2780), [sym_crate] = ACTIONS(2780), @@ -89898,9 +89982,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2778), [sym_float_literal] = ACTIONS(2778), }, - [STATE(717)] = { - [sym_line_comment] = STATE(717), - [sym_block_comment] = STATE(717), + [STATE(712)] = { + [sym_line_comment] = STATE(712), + [sym_block_comment] = STATE(712), [ts_builtin_sym_end] = ACTIONS(2782), [sym_identifier] = ACTIONS(2784), [anon_sym_SEMI] = ACTIONS(2782), @@ -89962,6 +90046,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(2784), [anon_sym_while] = ACTIONS(2784), [anon_sym_extern] = ACTIONS(2784), + [anon_sym_safe] = ACTIONS(2784), [anon_sym_yield] = ACTIONS(2784), [anon_sym_move] = ACTIONS(2784), [anon_sym_try] = ACTIONS(2784), @@ -89970,8 +90055,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), [sym_self] = ACTIONS(2784), [sym_super] = ACTIONS(2784), [sym_crate] = ACTIONS(2784), @@ -89979,9 +90064,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2782), [sym_float_literal] = ACTIONS(2782), }, - [STATE(718)] = { - [sym_line_comment] = STATE(718), - [sym_block_comment] = STATE(718), + [STATE(713)] = { + [sym_line_comment] = STATE(713), + [sym_block_comment] = STATE(713), [ts_builtin_sym_end] = ACTIONS(2786), [sym_identifier] = ACTIONS(2788), [anon_sym_SEMI] = ACTIONS(2786), @@ -90043,6 +90128,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(2788), [anon_sym_while] = ACTIONS(2788), [anon_sym_extern] = ACTIONS(2788), + [anon_sym_safe] = ACTIONS(2788), [anon_sym_yield] = ACTIONS(2788), [anon_sym_move] = ACTIONS(2788), [anon_sym_try] = ACTIONS(2788), @@ -90051,8 +90137,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), [sym_self] = ACTIONS(2788), [sym_super] = ACTIONS(2788), [sym_crate] = ACTIONS(2788), @@ -90060,9 +90146,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2786), [sym_float_literal] = ACTIONS(2786), }, - [STATE(719)] = { - [sym_line_comment] = STATE(719), - [sym_block_comment] = STATE(719), + [STATE(714)] = { + [sym_line_comment] = STATE(714), + [sym_block_comment] = STATE(714), [ts_builtin_sym_end] = ACTIONS(2790), [sym_identifier] = ACTIONS(2792), [anon_sym_SEMI] = ACTIONS(2790), @@ -90124,6 +90210,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(2792), [anon_sym_while] = ACTIONS(2792), [anon_sym_extern] = ACTIONS(2792), + [anon_sym_safe] = ACTIONS(2792), [anon_sym_yield] = ACTIONS(2792), [anon_sym_move] = ACTIONS(2792), [anon_sym_try] = ACTIONS(2792), @@ -90132,8 +90219,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), [sym_self] = ACTIONS(2792), [sym_super] = ACTIONS(2792), [sym_crate] = ACTIONS(2792), @@ -90141,9 +90228,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2790), [sym_float_literal] = ACTIONS(2790), }, - [STATE(720)] = { - [sym_line_comment] = STATE(720), - [sym_block_comment] = STATE(720), + [STATE(715)] = { + [sym_line_comment] = STATE(715), + [sym_block_comment] = STATE(715), [ts_builtin_sym_end] = ACTIONS(2794), [sym_identifier] = ACTIONS(2796), [anon_sym_SEMI] = ACTIONS(2794), @@ -90205,6 +90292,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(2796), [anon_sym_while] = ACTIONS(2796), [anon_sym_extern] = ACTIONS(2796), + [anon_sym_safe] = ACTIONS(2796), [anon_sym_yield] = ACTIONS(2796), [anon_sym_move] = ACTIONS(2796), [anon_sym_try] = ACTIONS(2796), @@ -90213,8 +90301,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), [sym_self] = ACTIONS(2796), [sym_super] = ACTIONS(2796), [sym_crate] = ACTIONS(2796), @@ -90222,9 +90310,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2794), [sym_float_literal] = ACTIONS(2794), }, - [STATE(721)] = { - [sym_line_comment] = STATE(721), - [sym_block_comment] = STATE(721), + [STATE(716)] = { + [sym_line_comment] = STATE(716), + [sym_block_comment] = STATE(716), [ts_builtin_sym_end] = ACTIONS(2798), [sym_identifier] = ACTIONS(2800), [anon_sym_SEMI] = ACTIONS(2798), @@ -90286,6 +90374,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(2800), [anon_sym_while] = ACTIONS(2800), [anon_sym_extern] = ACTIONS(2800), + [anon_sym_safe] = ACTIONS(2800), [anon_sym_yield] = ACTIONS(2800), [anon_sym_move] = ACTIONS(2800), [anon_sym_try] = ACTIONS(2800), @@ -90294,8 +90383,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), [sym_self] = ACTIONS(2800), [sym_super] = ACTIONS(2800), [sym_crate] = ACTIONS(2800), @@ -90303,9 +90392,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2798), [sym_float_literal] = ACTIONS(2798), }, - [STATE(722)] = { - [sym_line_comment] = STATE(722), - [sym_block_comment] = STATE(722), + [STATE(717)] = { + [sym_line_comment] = STATE(717), + [sym_block_comment] = STATE(717), [ts_builtin_sym_end] = ACTIONS(2802), [sym_identifier] = ACTIONS(2804), [anon_sym_SEMI] = ACTIONS(2802), @@ -90367,6 +90456,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(2804), [anon_sym_while] = ACTIONS(2804), [anon_sym_extern] = ACTIONS(2804), + [anon_sym_safe] = ACTIONS(2804), [anon_sym_yield] = ACTIONS(2804), [anon_sym_move] = ACTIONS(2804), [anon_sym_try] = ACTIONS(2804), @@ -90375,8 +90465,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), [sym_self] = ACTIONS(2804), [sym_super] = ACTIONS(2804), [sym_crate] = ACTIONS(2804), @@ -90384,9 +90474,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2802), [sym_float_literal] = ACTIONS(2802), }, - [STATE(723)] = { - [sym_line_comment] = STATE(723), - [sym_block_comment] = STATE(723), + [STATE(718)] = { + [sym_line_comment] = STATE(718), + [sym_block_comment] = STATE(718), [ts_builtin_sym_end] = ACTIONS(2806), [sym_identifier] = ACTIONS(2808), [anon_sym_SEMI] = ACTIONS(2806), @@ -90448,6 +90538,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(2808), [anon_sym_while] = ACTIONS(2808), [anon_sym_extern] = ACTIONS(2808), + [anon_sym_safe] = ACTIONS(2808), [anon_sym_yield] = ACTIONS(2808), [anon_sym_move] = ACTIONS(2808), [anon_sym_try] = ACTIONS(2808), @@ -90456,8 +90547,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), [sym_self] = ACTIONS(2808), [sym_super] = ACTIONS(2808), [sym_crate] = ACTIONS(2808), @@ -90465,9 +90556,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2806), [sym_float_literal] = ACTIONS(2806), }, - [STATE(724)] = { - [sym_line_comment] = STATE(724), - [sym_block_comment] = STATE(724), + [STATE(719)] = { + [sym_line_comment] = STATE(719), + [sym_block_comment] = STATE(719), [ts_builtin_sym_end] = ACTIONS(2810), [sym_identifier] = ACTIONS(2812), [anon_sym_SEMI] = ACTIONS(2810), @@ -90529,6 +90620,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(2812), [anon_sym_while] = ACTIONS(2812), [anon_sym_extern] = ACTIONS(2812), + [anon_sym_safe] = ACTIONS(2812), [anon_sym_yield] = ACTIONS(2812), [anon_sym_move] = ACTIONS(2812), [anon_sym_try] = ACTIONS(2812), @@ -90537,8 +90629,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), [sym_self] = ACTIONS(2812), [sym_super] = ACTIONS(2812), [sym_crate] = ACTIONS(2812), @@ -90546,9 +90638,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2810), [sym_float_literal] = ACTIONS(2810), }, - [STATE(725)] = { - [sym_line_comment] = STATE(725), - [sym_block_comment] = STATE(725), + [STATE(720)] = { + [sym_line_comment] = STATE(720), + [sym_block_comment] = STATE(720), [ts_builtin_sym_end] = ACTIONS(2814), [sym_identifier] = ACTIONS(2816), [anon_sym_SEMI] = ACTIONS(2814), @@ -90610,6 +90702,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(2816), [anon_sym_while] = ACTIONS(2816), [anon_sym_extern] = ACTIONS(2816), + [anon_sym_safe] = ACTIONS(2816), [anon_sym_yield] = ACTIONS(2816), [anon_sym_move] = ACTIONS(2816), [anon_sym_try] = ACTIONS(2816), @@ -90618,8 +90711,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), [sym_self] = ACTIONS(2816), [sym_super] = ACTIONS(2816), [sym_crate] = ACTIONS(2816), @@ -90627,9 +90720,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2814), [sym_float_literal] = ACTIONS(2814), }, - [STATE(726)] = { - [sym_line_comment] = STATE(726), - [sym_block_comment] = STATE(726), + [STATE(721)] = { + [sym_line_comment] = STATE(721), + [sym_block_comment] = STATE(721), [ts_builtin_sym_end] = ACTIONS(2818), [sym_identifier] = ACTIONS(2820), [anon_sym_SEMI] = ACTIONS(2818), @@ -90691,6 +90784,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(2820), [anon_sym_while] = ACTIONS(2820), [anon_sym_extern] = ACTIONS(2820), + [anon_sym_safe] = ACTIONS(2820), [anon_sym_yield] = ACTIONS(2820), [anon_sym_move] = ACTIONS(2820), [anon_sym_try] = ACTIONS(2820), @@ -90699,8 +90793,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), [sym_self] = ACTIONS(2820), [sym_super] = ACTIONS(2820), [sym_crate] = ACTIONS(2820), @@ -90708,9 +90802,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2818), [sym_float_literal] = ACTIONS(2818), }, - [STATE(727)] = { - [sym_line_comment] = STATE(727), - [sym_block_comment] = STATE(727), + [STATE(722)] = { + [sym_line_comment] = STATE(722), + [sym_block_comment] = STATE(722), [ts_builtin_sym_end] = ACTIONS(2822), [sym_identifier] = ACTIONS(2824), [anon_sym_SEMI] = ACTIONS(2822), @@ -90772,6 +90866,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(2824), [anon_sym_while] = ACTIONS(2824), [anon_sym_extern] = ACTIONS(2824), + [anon_sym_safe] = ACTIONS(2824), [anon_sym_yield] = ACTIONS(2824), [anon_sym_move] = ACTIONS(2824), [anon_sym_try] = ACTIONS(2824), @@ -90780,8 +90875,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), [sym_self] = ACTIONS(2824), [sym_super] = ACTIONS(2824), [sym_crate] = ACTIONS(2824), @@ -90789,9 +90884,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2822), [sym_float_literal] = ACTIONS(2822), }, - [STATE(728)] = { - [sym_line_comment] = STATE(728), - [sym_block_comment] = STATE(728), + [STATE(723)] = { + [sym_line_comment] = STATE(723), + [sym_block_comment] = STATE(723), [ts_builtin_sym_end] = ACTIONS(2826), [sym_identifier] = ACTIONS(2828), [anon_sym_SEMI] = ACTIONS(2826), @@ -90853,6 +90948,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(2828), [anon_sym_while] = ACTIONS(2828), [anon_sym_extern] = ACTIONS(2828), + [anon_sym_safe] = ACTIONS(2828), [anon_sym_yield] = ACTIONS(2828), [anon_sym_move] = ACTIONS(2828), [anon_sym_try] = ACTIONS(2828), @@ -90861,8 +90957,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), [sym_self] = ACTIONS(2828), [sym_super] = ACTIONS(2828), [sym_crate] = ACTIONS(2828), @@ -90870,9 +90966,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2826), [sym_float_literal] = ACTIONS(2826), }, - [STATE(729)] = { - [sym_line_comment] = STATE(729), - [sym_block_comment] = STATE(729), + [STATE(724)] = { + [sym_line_comment] = STATE(724), + [sym_block_comment] = STATE(724), [ts_builtin_sym_end] = ACTIONS(2830), [sym_identifier] = ACTIONS(2832), [anon_sym_SEMI] = ACTIONS(2830), @@ -90934,6 +91030,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(2832), [anon_sym_while] = ACTIONS(2832), [anon_sym_extern] = ACTIONS(2832), + [anon_sym_safe] = ACTIONS(2832), [anon_sym_yield] = ACTIONS(2832), [anon_sym_move] = ACTIONS(2832), [anon_sym_try] = ACTIONS(2832), @@ -90942,8 +91039,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), [sym_self] = ACTIONS(2832), [sym_super] = ACTIONS(2832), [sym_crate] = ACTIONS(2832), @@ -90951,9 +91048,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2830), [sym_float_literal] = ACTIONS(2830), }, - [STATE(730)] = { - [sym_line_comment] = STATE(730), - [sym_block_comment] = STATE(730), + [STATE(725)] = { + [sym_line_comment] = STATE(725), + [sym_block_comment] = STATE(725), [ts_builtin_sym_end] = ACTIONS(2834), [sym_identifier] = ACTIONS(2836), [anon_sym_SEMI] = ACTIONS(2834), @@ -91015,6 +91112,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(2836), [anon_sym_while] = ACTIONS(2836), [anon_sym_extern] = ACTIONS(2836), + [anon_sym_safe] = ACTIONS(2836), [anon_sym_yield] = ACTIONS(2836), [anon_sym_move] = ACTIONS(2836), [anon_sym_try] = ACTIONS(2836), @@ -91023,8 +91121,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), [sym_self] = ACTIONS(2836), [sym_super] = ACTIONS(2836), [sym_crate] = ACTIONS(2836), @@ -91032,9 +91130,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2834), [sym_float_literal] = ACTIONS(2834), }, - [STATE(731)] = { - [sym_line_comment] = STATE(731), - [sym_block_comment] = STATE(731), + [STATE(726)] = { + [sym_line_comment] = STATE(726), + [sym_block_comment] = STATE(726), [ts_builtin_sym_end] = ACTIONS(2838), [sym_identifier] = ACTIONS(2840), [anon_sym_SEMI] = ACTIONS(2838), @@ -91096,6 +91194,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(2840), [anon_sym_while] = ACTIONS(2840), [anon_sym_extern] = ACTIONS(2840), + [anon_sym_safe] = ACTIONS(2840), [anon_sym_yield] = ACTIONS(2840), [anon_sym_move] = ACTIONS(2840), [anon_sym_try] = ACTIONS(2840), @@ -91104,8 +91203,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), [sym_self] = ACTIONS(2840), [sym_super] = ACTIONS(2840), [sym_crate] = ACTIONS(2840), @@ -91113,9 +91212,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2838), [sym_float_literal] = ACTIONS(2838), }, - [STATE(732)] = { - [sym_line_comment] = STATE(732), - [sym_block_comment] = STATE(732), + [STATE(727)] = { + [sym_line_comment] = STATE(727), + [sym_block_comment] = STATE(727), [ts_builtin_sym_end] = ACTIONS(2842), [sym_identifier] = ACTIONS(2844), [anon_sym_SEMI] = ACTIONS(2842), @@ -91177,6 +91276,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(2844), [anon_sym_while] = ACTIONS(2844), [anon_sym_extern] = ACTIONS(2844), + [anon_sym_safe] = ACTIONS(2844), [anon_sym_yield] = ACTIONS(2844), [anon_sym_move] = ACTIONS(2844), [anon_sym_try] = ACTIONS(2844), @@ -91185,8 +91285,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), [sym_self] = ACTIONS(2844), [sym_super] = ACTIONS(2844), [sym_crate] = ACTIONS(2844), @@ -91194,9 +91294,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2842), [sym_float_literal] = ACTIONS(2842), }, - [STATE(733)] = { - [sym_line_comment] = STATE(733), - [sym_block_comment] = STATE(733), + [STATE(728)] = { + [sym_line_comment] = STATE(728), + [sym_block_comment] = STATE(728), [ts_builtin_sym_end] = ACTIONS(2846), [sym_identifier] = ACTIONS(2848), [anon_sym_SEMI] = ACTIONS(2846), @@ -91258,6 +91358,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(2848), [anon_sym_while] = ACTIONS(2848), [anon_sym_extern] = ACTIONS(2848), + [anon_sym_safe] = ACTIONS(2848), [anon_sym_yield] = ACTIONS(2848), [anon_sym_move] = ACTIONS(2848), [anon_sym_try] = ACTIONS(2848), @@ -91266,8 +91367,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), [sym_self] = ACTIONS(2848), [sym_super] = ACTIONS(2848), [sym_crate] = ACTIONS(2848), @@ -91275,9 +91376,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2846), [sym_float_literal] = ACTIONS(2846), }, - [STATE(734)] = { - [sym_line_comment] = STATE(734), - [sym_block_comment] = STATE(734), + [STATE(729)] = { + [sym_line_comment] = STATE(729), + [sym_block_comment] = STATE(729), [ts_builtin_sym_end] = ACTIONS(2850), [sym_identifier] = ACTIONS(2852), [anon_sym_SEMI] = ACTIONS(2850), @@ -91339,6 +91440,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(2852), [anon_sym_while] = ACTIONS(2852), [anon_sym_extern] = ACTIONS(2852), + [anon_sym_safe] = ACTIONS(2852), [anon_sym_yield] = ACTIONS(2852), [anon_sym_move] = ACTIONS(2852), [anon_sym_try] = ACTIONS(2852), @@ -91347,8 +91449,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), [sym_self] = ACTIONS(2852), [sym_super] = ACTIONS(2852), [sym_crate] = ACTIONS(2852), @@ -91356,9 +91458,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2850), [sym_float_literal] = ACTIONS(2850), }, - [STATE(735)] = { - [sym_line_comment] = STATE(735), - [sym_block_comment] = STATE(735), + [STATE(730)] = { + [sym_line_comment] = STATE(730), + [sym_block_comment] = STATE(730), [ts_builtin_sym_end] = ACTIONS(2854), [sym_identifier] = ACTIONS(2856), [anon_sym_SEMI] = ACTIONS(2854), @@ -91420,6 +91522,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(2856), [anon_sym_while] = ACTIONS(2856), [anon_sym_extern] = ACTIONS(2856), + [anon_sym_safe] = ACTIONS(2856), [anon_sym_yield] = ACTIONS(2856), [anon_sym_move] = ACTIONS(2856), [anon_sym_try] = ACTIONS(2856), @@ -91428,8 +91531,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), [sym_self] = ACTIONS(2856), [sym_super] = ACTIONS(2856), [sym_crate] = ACTIONS(2856), @@ -91437,9 +91540,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2854), [sym_float_literal] = ACTIONS(2854), }, - [STATE(736)] = { - [sym_line_comment] = STATE(736), - [sym_block_comment] = STATE(736), + [STATE(731)] = { + [sym_line_comment] = STATE(731), + [sym_block_comment] = STATE(731), [ts_builtin_sym_end] = ACTIONS(2858), [sym_identifier] = ACTIONS(2860), [anon_sym_SEMI] = ACTIONS(2858), @@ -91501,6 +91604,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(2860), [anon_sym_while] = ACTIONS(2860), [anon_sym_extern] = ACTIONS(2860), + [anon_sym_safe] = ACTIONS(2860), [anon_sym_yield] = ACTIONS(2860), [anon_sym_move] = ACTIONS(2860), [anon_sym_try] = ACTIONS(2860), @@ -91509,8 +91613,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), [sym_self] = ACTIONS(2860), [sym_super] = ACTIONS(2860), [sym_crate] = ACTIONS(2860), @@ -91518,9 +91622,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2858), [sym_float_literal] = ACTIONS(2858), }, - [STATE(737)] = { - [sym_line_comment] = STATE(737), - [sym_block_comment] = STATE(737), + [STATE(732)] = { + [sym_line_comment] = STATE(732), + [sym_block_comment] = STATE(732), [ts_builtin_sym_end] = ACTIONS(2862), [sym_identifier] = ACTIONS(2864), [anon_sym_SEMI] = ACTIONS(2862), @@ -91582,6 +91686,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(2864), [anon_sym_while] = ACTIONS(2864), [anon_sym_extern] = ACTIONS(2864), + [anon_sym_safe] = ACTIONS(2864), [anon_sym_yield] = ACTIONS(2864), [anon_sym_move] = ACTIONS(2864), [anon_sym_try] = ACTIONS(2864), @@ -91590,8 +91695,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), [sym_self] = ACTIONS(2864), [sym_super] = ACTIONS(2864), [sym_crate] = ACTIONS(2864), @@ -91599,9 +91704,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2862), [sym_float_literal] = ACTIONS(2862), }, - [STATE(738)] = { - [sym_line_comment] = STATE(738), - [sym_block_comment] = STATE(738), + [STATE(733)] = { + [sym_line_comment] = STATE(733), + [sym_block_comment] = STATE(733), [ts_builtin_sym_end] = ACTIONS(2866), [sym_identifier] = ACTIONS(2868), [anon_sym_SEMI] = ACTIONS(2866), @@ -91663,6 +91768,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(2868), [anon_sym_while] = ACTIONS(2868), [anon_sym_extern] = ACTIONS(2868), + [anon_sym_safe] = ACTIONS(2868), [anon_sym_yield] = ACTIONS(2868), [anon_sym_move] = ACTIONS(2868), [anon_sym_try] = ACTIONS(2868), @@ -91671,8 +91777,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), [sym_self] = ACTIONS(2868), [sym_super] = ACTIONS(2868), [sym_crate] = ACTIONS(2868), @@ -91680,9 +91786,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2866), [sym_float_literal] = ACTIONS(2866), }, - [STATE(739)] = { - [sym_line_comment] = STATE(739), - [sym_block_comment] = STATE(739), + [STATE(734)] = { + [sym_line_comment] = STATE(734), + [sym_block_comment] = STATE(734), [ts_builtin_sym_end] = ACTIONS(2870), [sym_identifier] = ACTIONS(2872), [anon_sym_SEMI] = ACTIONS(2870), @@ -91744,6 +91850,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(2872), [anon_sym_while] = ACTIONS(2872), [anon_sym_extern] = ACTIONS(2872), + [anon_sym_safe] = ACTIONS(2872), [anon_sym_yield] = ACTIONS(2872), [anon_sym_move] = ACTIONS(2872), [anon_sym_try] = ACTIONS(2872), @@ -91752,8 +91859,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), [sym_self] = ACTIONS(2872), [sym_super] = ACTIONS(2872), [sym_crate] = ACTIONS(2872), @@ -91761,9 +91868,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2870), [sym_float_literal] = ACTIONS(2870), }, - [STATE(740)] = { - [sym_line_comment] = STATE(740), - [sym_block_comment] = STATE(740), + [STATE(735)] = { + [sym_line_comment] = STATE(735), + [sym_block_comment] = STATE(735), [ts_builtin_sym_end] = ACTIONS(2874), [sym_identifier] = ACTIONS(2876), [anon_sym_SEMI] = ACTIONS(2874), @@ -91825,6 +91932,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(2876), [anon_sym_while] = ACTIONS(2876), [anon_sym_extern] = ACTIONS(2876), + [anon_sym_safe] = ACTIONS(2876), [anon_sym_yield] = ACTIONS(2876), [anon_sym_move] = ACTIONS(2876), [anon_sym_try] = ACTIONS(2876), @@ -91833,8 +91941,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), [sym_self] = ACTIONS(2876), [sym_super] = ACTIONS(2876), [sym_crate] = ACTIONS(2876), @@ -91842,9 +91950,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2874), [sym_float_literal] = ACTIONS(2874), }, - [STATE(741)] = { - [sym_line_comment] = STATE(741), - [sym_block_comment] = STATE(741), + [STATE(736)] = { + [sym_line_comment] = STATE(736), + [sym_block_comment] = STATE(736), [ts_builtin_sym_end] = ACTIONS(2878), [sym_identifier] = ACTIONS(2880), [anon_sym_SEMI] = ACTIONS(2878), @@ -91906,6 +92014,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(2880), [anon_sym_while] = ACTIONS(2880), [anon_sym_extern] = ACTIONS(2880), + [anon_sym_safe] = ACTIONS(2880), [anon_sym_yield] = ACTIONS(2880), [anon_sym_move] = ACTIONS(2880), [anon_sym_try] = ACTIONS(2880), @@ -91914,8 +92023,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), [sym_self] = ACTIONS(2880), [sym_super] = ACTIONS(2880), [sym_crate] = ACTIONS(2880), @@ -91923,9 +92032,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2878), [sym_float_literal] = ACTIONS(2878), }, - [STATE(742)] = { - [sym_line_comment] = STATE(742), - [sym_block_comment] = STATE(742), + [STATE(737)] = { + [sym_line_comment] = STATE(737), + [sym_block_comment] = STATE(737), [ts_builtin_sym_end] = ACTIONS(2882), [sym_identifier] = ACTIONS(2884), [anon_sym_SEMI] = ACTIONS(2882), @@ -91987,6 +92096,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(2884), [anon_sym_while] = ACTIONS(2884), [anon_sym_extern] = ACTIONS(2884), + [anon_sym_safe] = ACTIONS(2884), [anon_sym_yield] = ACTIONS(2884), [anon_sym_move] = ACTIONS(2884), [anon_sym_try] = ACTIONS(2884), @@ -91995,8 +92105,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), [sym_self] = ACTIONS(2884), [sym_super] = ACTIONS(2884), [sym_crate] = ACTIONS(2884), @@ -92004,9 +92114,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2882), [sym_float_literal] = ACTIONS(2882), }, - [STATE(743)] = { - [sym_line_comment] = STATE(743), - [sym_block_comment] = STATE(743), + [STATE(738)] = { + [sym_line_comment] = STATE(738), + [sym_block_comment] = STATE(738), [ts_builtin_sym_end] = ACTIONS(2886), [sym_identifier] = ACTIONS(2888), [anon_sym_SEMI] = ACTIONS(2886), @@ -92068,6 +92178,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(2888), [anon_sym_while] = ACTIONS(2888), [anon_sym_extern] = ACTIONS(2888), + [anon_sym_safe] = ACTIONS(2888), [anon_sym_yield] = ACTIONS(2888), [anon_sym_move] = ACTIONS(2888), [anon_sym_try] = ACTIONS(2888), @@ -92076,8 +92187,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), [sym_self] = ACTIONS(2888), [sym_super] = ACTIONS(2888), [sym_crate] = ACTIONS(2888), @@ -92085,9 +92196,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2886), [sym_float_literal] = ACTIONS(2886), }, - [STATE(744)] = { - [sym_line_comment] = STATE(744), - [sym_block_comment] = STATE(744), + [STATE(739)] = { + [sym_line_comment] = STATE(739), + [sym_block_comment] = STATE(739), [ts_builtin_sym_end] = ACTIONS(2890), [sym_identifier] = ACTIONS(2892), [anon_sym_SEMI] = ACTIONS(2890), @@ -92149,6 +92260,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(2892), [anon_sym_while] = ACTIONS(2892), [anon_sym_extern] = ACTIONS(2892), + [anon_sym_safe] = ACTIONS(2892), [anon_sym_yield] = ACTIONS(2892), [anon_sym_move] = ACTIONS(2892), [anon_sym_try] = ACTIONS(2892), @@ -92157,8 +92269,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), [sym_self] = ACTIONS(2892), [sym_super] = ACTIONS(2892), [sym_crate] = ACTIONS(2892), @@ -92166,9 +92278,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2890), [sym_float_literal] = ACTIONS(2890), }, - [STATE(745)] = { - [sym_line_comment] = STATE(745), - [sym_block_comment] = STATE(745), + [STATE(740)] = { + [sym_line_comment] = STATE(740), + [sym_block_comment] = STATE(740), [ts_builtin_sym_end] = ACTIONS(2894), [sym_identifier] = ACTIONS(2896), [anon_sym_SEMI] = ACTIONS(2894), @@ -92230,6 +92342,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(2896), [anon_sym_while] = ACTIONS(2896), [anon_sym_extern] = ACTIONS(2896), + [anon_sym_safe] = ACTIONS(2896), [anon_sym_yield] = ACTIONS(2896), [anon_sym_move] = ACTIONS(2896), [anon_sym_try] = ACTIONS(2896), @@ -92238,8 +92351,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), [sym_self] = ACTIONS(2896), [sym_super] = ACTIONS(2896), [sym_crate] = ACTIONS(2896), @@ -92247,9 +92360,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2894), [sym_float_literal] = ACTIONS(2894), }, - [STATE(746)] = { - [sym_line_comment] = STATE(746), - [sym_block_comment] = STATE(746), + [STATE(741)] = { + [sym_line_comment] = STATE(741), + [sym_block_comment] = STATE(741), [ts_builtin_sym_end] = ACTIONS(2898), [sym_identifier] = ACTIONS(2900), [anon_sym_SEMI] = ACTIONS(2898), @@ -92311,6 +92424,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(2900), [anon_sym_while] = ACTIONS(2900), [anon_sym_extern] = ACTIONS(2900), + [anon_sym_safe] = ACTIONS(2900), [anon_sym_yield] = ACTIONS(2900), [anon_sym_move] = ACTIONS(2900), [anon_sym_try] = ACTIONS(2900), @@ -92319,8 +92433,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), [sym_self] = ACTIONS(2900), [sym_super] = ACTIONS(2900), [sym_crate] = ACTIONS(2900), @@ -92328,23685 +92442,24988 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2898), [sym_float_literal] = ACTIONS(2898), }, + [STATE(742)] = { + [sym_empty_statement] = STATE(1308), + [sym_macro_definition] = STATE(1308), + [sym_attribute_item] = STATE(1308), + [sym_inner_attribute_item] = STATE(1308), + [sym_mod_item] = STATE(1308), + [sym_foreign_mod_item] = STATE(1308), + [sym_struct_item] = STATE(1308), + [sym_union_item] = STATE(1308), + [sym_enum_item] = STATE(1308), + [sym_extern_crate_declaration] = STATE(1308), + [sym_const_item] = STATE(1308), + [sym_static_item] = STATE(1308), + [sym_type_item] = STATE(1308), + [sym_function_item] = STATE(1308), + [sym_function_signature_item] = STATE(1308), + [sym_function_modifiers] = STATE(3814), + [aux_sym__item_modifiers] = STATE(2286), + [sym_impl_item] = STATE(1308), + [sym_trait_item] = STATE(1308), + [sym_associated_type] = STATE(1308), + [sym_let_declaration] = STATE(1308), + [sym_use_declaration] = STATE(1308), + [sym_extern_modifier] = STATE(2646), + [sym_visibility_modifier] = STATE(2028), + [sym_bracketed_type] = STATE(3790), + [sym_generic_type_with_turbofish] = STATE(3839), + [sym_macro_invocation] = STATE(1308), + [sym_scoped_identifier] = STATE(3324), + [sym_line_comment] = STATE(742), + [sym_block_comment] = STATE(742), + [aux_sym_declaration_list_repeat1] = STATE(580), + [sym_identifier] = ACTIONS(2380), + [anon_sym_SEMI] = ACTIONS(2382), + [anon_sym_macro_rules_BANG] = ACTIONS(2384), + [anon_sym_RBRACE] = ACTIONS(2902), + [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_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(2390), + [anon_sym_POUND] = ACTIONS(2392), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(2394), + [anon_sym_default] = ACTIONS(2396), + [anon_sym_enum] = ACTIONS(2398), + [anon_sym_fn] = ACTIONS(2400), + [anon_sym_gen] = ACTIONS(2402), + [anon_sym_impl] = ACTIONS(2404), + [anon_sym_let] = ACTIONS(2406), + [anon_sym_mod] = ACTIONS(2408), + [anon_sym_pub] = ACTIONS(69), + [anon_sym_static] = ACTIONS(2410), + [anon_sym_struct] = ACTIONS(2412), + [anon_sym_trait] = ACTIONS(2414), + [anon_sym_type] = ACTIONS(2416), + [anon_sym_union] = ACTIONS(2418), + [anon_sym_unsafe] = ACTIONS(2420), + [anon_sym_use] = ACTIONS(2422), + [anon_sym_extern] = ACTIONS(2424), + [anon_sym_safe] = ACTIONS(2426), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2428), + [sym_super] = ACTIONS(2428), + [sym_crate] = ACTIONS(2430), + [sym_metavariable] = ACTIONS(2432), + }, + [STATE(743)] = { + [sym_line_comment] = STATE(743), + [sym_block_comment] = STATE(743), + [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(744)] = { + [sym_line_comment] = STATE(744), + [sym_block_comment] = STATE(744), + [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(745)] = { + [sym_line_comment] = STATE(745), + [sym_block_comment] = STATE(745), + [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(746)] = { + [sym_line_comment] = STATE(746), + [sym_block_comment] = STATE(746), + [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(747)] = { [sym_line_comment] = STATE(747), [sym_block_comment] = STATE(747), - [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(748)] = { [sym_line_comment] = STATE(748), [sym_block_comment] = STATE(748), - [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(749)] = { [sym_line_comment] = STATE(749), [sym_block_comment] = STATE(749), - [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(750)] = { [sym_line_comment] = STATE(750), [sym_block_comment] = STATE(750), - [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(751)] = { [sym_line_comment] = STATE(751), [sym_block_comment] = STATE(751), - [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(752)] = { [sym_line_comment] = STATE(752), [sym_block_comment] = STATE(752), - [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(753)] = { [sym_line_comment] = STATE(753), [sym_block_comment] = STATE(753), - [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(754)] = { [sym_line_comment] = STATE(754), [sym_block_comment] = STATE(754), - [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(755)] = { [sym_line_comment] = STATE(755), [sym_block_comment] = STATE(755), - [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(756)] = { [sym_line_comment] = STATE(756), [sym_block_comment] = STATE(756), - [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(757)] = { [sym_line_comment] = STATE(757), [sym_block_comment] = STATE(757), - [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(758)] = { [sym_line_comment] = STATE(758), [sym_block_comment] = STATE(758), - [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(759)] = { [sym_line_comment] = STATE(759), [sym_block_comment] = STATE(759), - [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(760)] = { [sym_line_comment] = STATE(760), [sym_block_comment] = STATE(760), - [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(761)] = { [sym_line_comment] = STATE(761), [sym_block_comment] = STATE(761), - [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(762)] = { [sym_line_comment] = STATE(762), [sym_block_comment] = STATE(762), - [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(763)] = { [sym_line_comment] = STATE(763), [sym_block_comment] = STATE(763), - [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(764)] = { [sym_line_comment] = STATE(764), [sym_block_comment] = STATE(764), - [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(765)] = { [sym_line_comment] = STATE(765), [sym_block_comment] = STATE(765), - [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(766)] = { [sym_line_comment] = STATE(766), [sym_block_comment] = STATE(766), - [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(767)] = { [sym_line_comment] = STATE(767), [sym_block_comment] = STATE(767), - [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(768)] = { [sym_line_comment] = STATE(768), [sym_block_comment] = STATE(768), - [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(769)] = { [sym_line_comment] = STATE(769), [sym_block_comment] = STATE(769), - [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(770)] = { [sym_line_comment] = STATE(770), [sym_block_comment] = STATE(770), - [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(771)] = { [sym_line_comment] = STATE(771), [sym_block_comment] = STATE(771), - [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(772)] = { [sym_line_comment] = STATE(772), [sym_block_comment] = STATE(772), - [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(773)] = { [sym_line_comment] = STATE(773), [sym_block_comment] = STATE(773), - [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(774)] = { [sym_line_comment] = STATE(774), [sym_block_comment] = STATE(774), - [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(775)] = { [sym_line_comment] = STATE(775), [sym_block_comment] = STATE(775), - [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(776)] = { [sym_line_comment] = STATE(776), [sym_block_comment] = STATE(776), - [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(777)] = { [sym_line_comment] = STATE(777), [sym_block_comment] = STATE(777), - [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(778)] = { [sym_line_comment] = STATE(778), [sym_block_comment] = STATE(778), - [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(779)] = { [sym_line_comment] = STATE(779), [sym_block_comment] = STATE(779), - [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(780)] = { [sym_line_comment] = STATE(780), [sym_block_comment] = STATE(780), - [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(781)] = { [sym_line_comment] = STATE(781), [sym_block_comment] = STATE(781), - [ts_builtin_sym_end] = ACTIONS(3038), - [sym_identifier] = ACTIONS(3040), - [anon_sym_SEMI] = ACTIONS(3038), - [anon_sym_macro_rules_BANG] = ACTIONS(3038), - [anon_sym_LPAREN] = ACTIONS(3038), - [anon_sym_LBRACK] = ACTIONS(3038), - [anon_sym_LBRACE] = ACTIONS(3038), - [anon_sym_RBRACE] = ACTIONS(3038), - [anon_sym_STAR] = ACTIONS(3038), - [anon_sym_u8] = ACTIONS(3040), - [anon_sym_i8] = ACTIONS(3040), - [anon_sym_u16] = ACTIONS(3040), - [anon_sym_i16] = ACTIONS(3040), - [anon_sym_u32] = ACTIONS(3040), - [anon_sym_i32] = ACTIONS(3040), - [anon_sym_u64] = ACTIONS(3040), - [anon_sym_i64] = ACTIONS(3040), - [anon_sym_u128] = ACTIONS(3040), - [anon_sym_i128] = ACTIONS(3040), - [anon_sym_isize] = ACTIONS(3040), - [anon_sym_usize] = ACTIONS(3040), - [anon_sym_f32] = ACTIONS(3040), - [anon_sym_f64] = ACTIONS(3040), - [anon_sym_bool] = ACTIONS(3040), - [anon_sym_str] = ACTIONS(3040), - [anon_sym_char] = ACTIONS(3040), - [anon_sym_DASH] = ACTIONS(3038), - [anon_sym_BANG] = ACTIONS(3038), - [anon_sym_AMP] = ACTIONS(3038), - [anon_sym_PIPE] = ACTIONS(3038), - [anon_sym_LT] = ACTIONS(3038), - [anon_sym_DOT_DOT] = ACTIONS(3038), - [anon_sym_COLON_COLON] = ACTIONS(3038), - [anon_sym_POUND] = ACTIONS(3038), - [anon_sym_SQUOTE] = ACTIONS(3040), - [anon_sym_async] = ACTIONS(3040), - [anon_sym_break] = ACTIONS(3040), - [anon_sym_const] = ACTIONS(3040), - [anon_sym_continue] = ACTIONS(3040), - [anon_sym_default] = ACTIONS(3040), - [anon_sym_enum] = ACTIONS(3040), - [anon_sym_fn] = ACTIONS(3040), - [anon_sym_for] = ACTIONS(3040), - [anon_sym_gen] = ACTIONS(3040), - [anon_sym_if] = ACTIONS(3040), - [anon_sym_impl] = ACTIONS(3040), - [anon_sym_let] = ACTIONS(3040), - [anon_sym_loop] = ACTIONS(3040), - [anon_sym_match] = ACTIONS(3040), - [anon_sym_mod] = ACTIONS(3040), - [anon_sym_pub] = ACTIONS(3040), - [anon_sym_return] = ACTIONS(3040), - [anon_sym_static] = ACTIONS(3040), - [anon_sym_struct] = ACTIONS(3040), - [anon_sym_trait] = ACTIONS(3040), - [anon_sym_type] = ACTIONS(3040), - [anon_sym_union] = ACTIONS(3040), - [anon_sym_unsafe] = ACTIONS(3040), - [anon_sym_use] = ACTIONS(3040), - [anon_sym_while] = ACTIONS(3040), - [anon_sym_extern] = ACTIONS(3040), - [anon_sym_yield] = ACTIONS(3040), - [anon_sym_move] = ACTIONS(3040), - [anon_sym_try] = ACTIONS(3040), - [sym_integer_literal] = ACTIONS(3038), - [aux_sym_string_literal_token1] = ACTIONS(3038), - [sym_char_literal] = ACTIONS(3038), - [anon_sym_true] = ACTIONS(3040), - [anon_sym_false] = ACTIONS(3040), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3040), - [sym_super] = ACTIONS(3040), - [sym_crate] = ACTIONS(3040), - [sym_metavariable] = ACTIONS(3038), - [sym__raw_string_literal_start] = ACTIONS(3038), - [sym_float_literal] = ACTIONS(3038), + [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_STAR] = 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(1474), + [anon_sym_BANG] = ACTIONS(1474), + [anon_sym_AMP] = ACTIONS(1474), + [anon_sym_PIPE] = ACTIONS(1474), + [anon_sym_LT] = ACTIONS(1474), + [anon_sym_DOT_DOT] = ACTIONS(1474), + [anon_sym_COLON_COLON] = ACTIONS(1474), + [anon_sym_POUND] = ACTIONS(1474), + [anon_sym_SQUOTE] = 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(782)] = { [sym_line_comment] = STATE(782), [sym_block_comment] = STATE(782), - [ts_builtin_sym_end] = ACTIONS(3042), - [sym_identifier] = ACTIONS(3044), - [anon_sym_SEMI] = ACTIONS(3042), - [anon_sym_macro_rules_BANG] = ACTIONS(3042), - [anon_sym_LPAREN] = ACTIONS(3042), - [anon_sym_LBRACK] = ACTIONS(3042), - [anon_sym_LBRACE] = ACTIONS(3042), - [anon_sym_RBRACE] = ACTIONS(3042), - [anon_sym_STAR] = ACTIONS(3042), - [anon_sym_u8] = ACTIONS(3044), - [anon_sym_i8] = ACTIONS(3044), - [anon_sym_u16] = ACTIONS(3044), - [anon_sym_i16] = ACTIONS(3044), - [anon_sym_u32] = ACTIONS(3044), - [anon_sym_i32] = ACTIONS(3044), - [anon_sym_u64] = ACTIONS(3044), - [anon_sym_i64] = ACTIONS(3044), - [anon_sym_u128] = ACTIONS(3044), - [anon_sym_i128] = ACTIONS(3044), - [anon_sym_isize] = ACTIONS(3044), - [anon_sym_usize] = ACTIONS(3044), - [anon_sym_f32] = ACTIONS(3044), - [anon_sym_f64] = ACTIONS(3044), - [anon_sym_bool] = ACTIONS(3044), - [anon_sym_str] = ACTIONS(3044), - [anon_sym_char] = ACTIONS(3044), - [anon_sym_DASH] = ACTIONS(3042), - [anon_sym_BANG] = ACTIONS(3042), - [anon_sym_AMP] = ACTIONS(3042), - [anon_sym_PIPE] = ACTIONS(3042), - [anon_sym_LT] = ACTIONS(3042), - [anon_sym_DOT_DOT] = ACTIONS(3042), - [anon_sym_COLON_COLON] = ACTIONS(3042), - [anon_sym_POUND] = ACTIONS(3042), - [anon_sym_SQUOTE] = ACTIONS(3044), - [anon_sym_async] = ACTIONS(3044), - [anon_sym_break] = ACTIONS(3044), - [anon_sym_const] = ACTIONS(3044), - [anon_sym_continue] = ACTIONS(3044), - [anon_sym_default] = ACTIONS(3044), - [anon_sym_enum] = ACTIONS(3044), - [anon_sym_fn] = ACTIONS(3044), - [anon_sym_for] = ACTIONS(3044), - [anon_sym_gen] = ACTIONS(3044), - [anon_sym_if] = ACTIONS(3044), - [anon_sym_impl] = ACTIONS(3044), - [anon_sym_let] = ACTIONS(3044), - [anon_sym_loop] = ACTIONS(3044), - [anon_sym_match] = ACTIONS(3044), - [anon_sym_mod] = ACTIONS(3044), - [anon_sym_pub] = ACTIONS(3044), - [anon_sym_return] = ACTIONS(3044), - [anon_sym_static] = ACTIONS(3044), - [anon_sym_struct] = ACTIONS(3044), - [anon_sym_trait] = ACTIONS(3044), - [anon_sym_type] = ACTIONS(3044), - [anon_sym_union] = ACTIONS(3044), - [anon_sym_unsafe] = ACTIONS(3044), - [anon_sym_use] = ACTIONS(3044), - [anon_sym_while] = ACTIONS(3044), - [anon_sym_extern] = ACTIONS(3044), - [anon_sym_yield] = ACTIONS(3044), - [anon_sym_move] = ACTIONS(3044), - [anon_sym_try] = ACTIONS(3044), - [sym_integer_literal] = ACTIONS(3042), - [aux_sym_string_literal_token1] = ACTIONS(3042), - [sym_char_literal] = ACTIONS(3042), - [anon_sym_true] = ACTIONS(3044), - [anon_sym_false] = ACTIONS(3044), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3044), - [sym_super] = ACTIONS(3044), - [sym_crate] = ACTIONS(3044), - [sym_metavariable] = ACTIONS(3042), - [sym__raw_string_literal_start] = ACTIONS(3042), - [sym_float_literal] = ACTIONS(3042), + [ts_builtin_sym_end] = ACTIONS(3056), + [sym_identifier] = ACTIONS(3058), + [anon_sym_SEMI] = ACTIONS(3056), + [anon_sym_macro_rules_BANG] = ACTIONS(3056), + [anon_sym_LPAREN] = ACTIONS(3056), + [anon_sym_LBRACK] = ACTIONS(3056), + [anon_sym_LBRACE] = ACTIONS(3056), + [anon_sym_RBRACE] = ACTIONS(3056), + [anon_sym_STAR] = ACTIONS(3056), + [anon_sym_u8] = ACTIONS(3058), + [anon_sym_i8] = ACTIONS(3058), + [anon_sym_u16] = ACTIONS(3058), + [anon_sym_i16] = ACTIONS(3058), + [anon_sym_u32] = ACTIONS(3058), + [anon_sym_i32] = ACTIONS(3058), + [anon_sym_u64] = ACTIONS(3058), + [anon_sym_i64] = ACTIONS(3058), + [anon_sym_u128] = ACTIONS(3058), + [anon_sym_i128] = ACTIONS(3058), + [anon_sym_isize] = ACTIONS(3058), + [anon_sym_usize] = ACTIONS(3058), + [anon_sym_f32] = ACTIONS(3058), + [anon_sym_f64] = ACTIONS(3058), + [anon_sym_bool] = ACTIONS(3058), + [anon_sym_str] = ACTIONS(3058), + [anon_sym_char] = ACTIONS(3058), + [anon_sym_DASH] = ACTIONS(3056), + [anon_sym_BANG] = ACTIONS(3056), + [anon_sym_AMP] = ACTIONS(3056), + [anon_sym_PIPE] = ACTIONS(3056), + [anon_sym_LT] = ACTIONS(3056), + [anon_sym_DOT_DOT] = ACTIONS(3056), + [anon_sym_COLON_COLON] = ACTIONS(3056), + [anon_sym_POUND] = ACTIONS(3056), + [anon_sym_SQUOTE] = ACTIONS(3058), + [anon_sym_async] = ACTIONS(3058), + [anon_sym_break] = ACTIONS(3058), + [anon_sym_const] = ACTIONS(3058), + [anon_sym_continue] = ACTIONS(3058), + [anon_sym_default] = ACTIONS(3058), + [anon_sym_enum] = ACTIONS(3058), + [anon_sym_fn] = ACTIONS(3058), + [anon_sym_for] = ACTIONS(3058), + [anon_sym_gen] = ACTIONS(3058), + [anon_sym_if] = ACTIONS(3058), + [anon_sym_impl] = ACTIONS(3058), + [anon_sym_let] = ACTIONS(3058), + [anon_sym_loop] = ACTIONS(3058), + [anon_sym_match] = ACTIONS(3058), + [anon_sym_mod] = ACTIONS(3058), + [anon_sym_pub] = ACTIONS(3058), + [anon_sym_return] = ACTIONS(3058), + [anon_sym_static] = ACTIONS(3058), + [anon_sym_struct] = ACTIONS(3058), + [anon_sym_trait] = ACTIONS(3058), + [anon_sym_type] = ACTIONS(3058), + [anon_sym_union] = ACTIONS(3058), + [anon_sym_unsafe] = ACTIONS(3058), + [anon_sym_use] = ACTIONS(3058), + [anon_sym_while] = ACTIONS(3058), + [anon_sym_extern] = ACTIONS(3058), + [anon_sym_safe] = ACTIONS(3058), + [anon_sym_yield] = ACTIONS(3058), + [anon_sym_move] = ACTIONS(3058), + [anon_sym_try] = ACTIONS(3058), + [sym_integer_literal] = ACTIONS(3056), + [aux_sym_string_literal_token1] = ACTIONS(3056), + [sym_char_literal] = ACTIONS(3056), + [anon_sym_true] = ACTIONS(3058), + [anon_sym_false] = ACTIONS(3058), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(3058), + [sym_super] = ACTIONS(3058), + [sym_crate] = ACTIONS(3058), + [sym_metavariable] = ACTIONS(3056), + [sym__raw_string_literal_start] = ACTIONS(3056), + [sym_float_literal] = ACTIONS(3056), }, [STATE(783)] = { [sym_line_comment] = STATE(783), [sym_block_comment] = STATE(783), - [ts_builtin_sym_end] = ACTIONS(3046), - [sym_identifier] = ACTIONS(3048), - [anon_sym_SEMI] = ACTIONS(3046), - [anon_sym_macro_rules_BANG] = ACTIONS(3046), - [anon_sym_LPAREN] = ACTIONS(3046), - [anon_sym_LBRACK] = ACTIONS(3046), - [anon_sym_LBRACE] = ACTIONS(3046), - [anon_sym_RBRACE] = ACTIONS(3046), - [anon_sym_STAR] = ACTIONS(3046), - [anon_sym_u8] = ACTIONS(3048), - [anon_sym_i8] = ACTIONS(3048), - [anon_sym_u16] = ACTIONS(3048), - [anon_sym_i16] = ACTIONS(3048), - [anon_sym_u32] = ACTIONS(3048), - [anon_sym_i32] = ACTIONS(3048), - [anon_sym_u64] = ACTIONS(3048), - [anon_sym_i64] = ACTIONS(3048), - [anon_sym_u128] = ACTIONS(3048), - [anon_sym_i128] = ACTIONS(3048), - [anon_sym_isize] = ACTIONS(3048), - [anon_sym_usize] = ACTIONS(3048), - [anon_sym_f32] = ACTIONS(3048), - [anon_sym_f64] = ACTIONS(3048), - [anon_sym_bool] = ACTIONS(3048), - [anon_sym_str] = ACTIONS(3048), - [anon_sym_char] = ACTIONS(3048), - [anon_sym_DASH] = ACTIONS(3046), - [anon_sym_BANG] = ACTIONS(3046), - [anon_sym_AMP] = ACTIONS(3046), - [anon_sym_PIPE] = ACTIONS(3046), - [anon_sym_LT] = ACTIONS(3046), - [anon_sym_DOT_DOT] = ACTIONS(3046), - [anon_sym_COLON_COLON] = ACTIONS(3046), - [anon_sym_POUND] = ACTIONS(3046), - [anon_sym_SQUOTE] = ACTIONS(3048), - [anon_sym_async] = ACTIONS(3048), - [anon_sym_break] = ACTIONS(3048), - [anon_sym_const] = ACTIONS(3048), - [anon_sym_continue] = ACTIONS(3048), - [anon_sym_default] = ACTIONS(3048), - [anon_sym_enum] = ACTIONS(3048), - [anon_sym_fn] = ACTIONS(3048), - [anon_sym_for] = ACTIONS(3048), - [anon_sym_gen] = ACTIONS(3048), - [anon_sym_if] = ACTIONS(3048), - [anon_sym_impl] = ACTIONS(3048), - [anon_sym_let] = ACTIONS(3048), - [anon_sym_loop] = ACTIONS(3048), - [anon_sym_match] = ACTIONS(3048), - [anon_sym_mod] = ACTIONS(3048), - [anon_sym_pub] = ACTIONS(3048), - [anon_sym_return] = ACTIONS(3048), - [anon_sym_static] = ACTIONS(3048), - [anon_sym_struct] = ACTIONS(3048), - [anon_sym_trait] = ACTIONS(3048), - [anon_sym_type] = ACTIONS(3048), - [anon_sym_union] = ACTIONS(3048), - [anon_sym_unsafe] = ACTIONS(3048), - [anon_sym_use] = ACTIONS(3048), - [anon_sym_while] = ACTIONS(3048), - [anon_sym_extern] = ACTIONS(3048), - [anon_sym_yield] = ACTIONS(3048), - [anon_sym_move] = ACTIONS(3048), - [anon_sym_try] = ACTIONS(3048), - [sym_integer_literal] = ACTIONS(3046), - [aux_sym_string_literal_token1] = ACTIONS(3046), - [sym_char_literal] = ACTIONS(3046), - [anon_sym_true] = ACTIONS(3048), - [anon_sym_false] = ACTIONS(3048), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3048), - [sym_super] = ACTIONS(3048), - [sym_crate] = ACTIONS(3048), - [sym_metavariable] = ACTIONS(3046), - [sym__raw_string_literal_start] = ACTIONS(3046), - [sym_float_literal] = ACTIONS(3046), + [ts_builtin_sym_end] = ACTIONS(3060), + [sym_identifier] = ACTIONS(3062), + [anon_sym_SEMI] = ACTIONS(3060), + [anon_sym_macro_rules_BANG] = ACTIONS(3060), + [anon_sym_LPAREN] = ACTIONS(3060), + [anon_sym_LBRACK] = ACTIONS(3060), + [anon_sym_LBRACE] = ACTIONS(3060), + [anon_sym_RBRACE] = ACTIONS(3060), + [anon_sym_STAR] = ACTIONS(3060), + [anon_sym_u8] = ACTIONS(3062), + [anon_sym_i8] = ACTIONS(3062), + [anon_sym_u16] = ACTIONS(3062), + [anon_sym_i16] = ACTIONS(3062), + [anon_sym_u32] = ACTIONS(3062), + [anon_sym_i32] = ACTIONS(3062), + [anon_sym_u64] = ACTIONS(3062), + [anon_sym_i64] = ACTIONS(3062), + [anon_sym_u128] = ACTIONS(3062), + [anon_sym_i128] = ACTIONS(3062), + [anon_sym_isize] = ACTIONS(3062), + [anon_sym_usize] = ACTIONS(3062), + [anon_sym_f32] = ACTIONS(3062), + [anon_sym_f64] = ACTIONS(3062), + [anon_sym_bool] = ACTIONS(3062), + [anon_sym_str] = ACTIONS(3062), + [anon_sym_char] = ACTIONS(3062), + [anon_sym_DASH] = ACTIONS(3060), + [anon_sym_BANG] = ACTIONS(3060), + [anon_sym_AMP] = ACTIONS(3060), + [anon_sym_PIPE] = ACTIONS(3060), + [anon_sym_LT] = ACTIONS(3060), + [anon_sym_DOT_DOT] = ACTIONS(3060), + [anon_sym_COLON_COLON] = ACTIONS(3060), + [anon_sym_POUND] = ACTIONS(3060), + [anon_sym_SQUOTE] = ACTIONS(3062), + [anon_sym_async] = ACTIONS(3062), + [anon_sym_break] = ACTIONS(3062), + [anon_sym_const] = ACTIONS(3062), + [anon_sym_continue] = ACTIONS(3062), + [anon_sym_default] = ACTIONS(3062), + [anon_sym_enum] = ACTIONS(3062), + [anon_sym_fn] = ACTIONS(3062), + [anon_sym_for] = ACTIONS(3062), + [anon_sym_gen] = ACTIONS(3062), + [anon_sym_if] = ACTIONS(3062), + [anon_sym_impl] = ACTIONS(3062), + [anon_sym_let] = ACTIONS(3062), + [anon_sym_loop] = ACTIONS(3062), + [anon_sym_match] = ACTIONS(3062), + [anon_sym_mod] = ACTIONS(3062), + [anon_sym_pub] = ACTIONS(3062), + [anon_sym_return] = ACTIONS(3062), + [anon_sym_static] = ACTIONS(3062), + [anon_sym_struct] = ACTIONS(3062), + [anon_sym_trait] = ACTIONS(3062), + [anon_sym_type] = ACTIONS(3062), + [anon_sym_union] = ACTIONS(3062), + [anon_sym_unsafe] = ACTIONS(3062), + [anon_sym_use] = ACTIONS(3062), + [anon_sym_while] = ACTIONS(3062), + [anon_sym_extern] = ACTIONS(3062), + [anon_sym_safe] = ACTIONS(3062), + [anon_sym_yield] = ACTIONS(3062), + [anon_sym_move] = ACTIONS(3062), + [anon_sym_try] = ACTIONS(3062), + [sym_integer_literal] = ACTIONS(3060), + [aux_sym_string_literal_token1] = ACTIONS(3060), + [sym_char_literal] = ACTIONS(3060), + [anon_sym_true] = ACTIONS(3062), + [anon_sym_false] = ACTIONS(3062), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(3062), + [sym_super] = ACTIONS(3062), + [sym_crate] = ACTIONS(3062), + [sym_metavariable] = ACTIONS(3060), + [sym__raw_string_literal_start] = ACTIONS(3060), + [sym_float_literal] = ACTIONS(3060), }, [STATE(784)] = { [sym_line_comment] = STATE(784), [sym_block_comment] = STATE(784), - [ts_builtin_sym_end] = ACTIONS(3050), - [sym_identifier] = ACTIONS(3052), - [anon_sym_SEMI] = ACTIONS(3050), - [anon_sym_macro_rules_BANG] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(3050), - [anon_sym_LBRACK] = ACTIONS(3050), - [anon_sym_LBRACE] = ACTIONS(3050), - [anon_sym_RBRACE] = ACTIONS(3050), - [anon_sym_STAR] = ACTIONS(3050), - [anon_sym_u8] = ACTIONS(3052), - [anon_sym_i8] = ACTIONS(3052), - [anon_sym_u16] = ACTIONS(3052), - [anon_sym_i16] = ACTIONS(3052), - [anon_sym_u32] = ACTIONS(3052), - [anon_sym_i32] = ACTIONS(3052), - [anon_sym_u64] = ACTIONS(3052), - [anon_sym_i64] = ACTIONS(3052), - [anon_sym_u128] = ACTIONS(3052), - [anon_sym_i128] = ACTIONS(3052), - [anon_sym_isize] = ACTIONS(3052), - [anon_sym_usize] = ACTIONS(3052), - [anon_sym_f32] = ACTIONS(3052), - [anon_sym_f64] = ACTIONS(3052), - [anon_sym_bool] = ACTIONS(3052), - [anon_sym_str] = ACTIONS(3052), - [anon_sym_char] = ACTIONS(3052), - [anon_sym_DASH] = ACTIONS(3050), - [anon_sym_BANG] = ACTIONS(3050), - [anon_sym_AMP] = ACTIONS(3050), - [anon_sym_PIPE] = ACTIONS(3050), - [anon_sym_LT] = ACTIONS(3050), - [anon_sym_DOT_DOT] = ACTIONS(3050), - [anon_sym_COLON_COLON] = ACTIONS(3050), - [anon_sym_POUND] = ACTIONS(3050), - [anon_sym_SQUOTE] = ACTIONS(3052), - [anon_sym_async] = ACTIONS(3052), - [anon_sym_break] = ACTIONS(3052), - [anon_sym_const] = ACTIONS(3052), - [anon_sym_continue] = ACTIONS(3052), - [anon_sym_default] = ACTIONS(3052), - [anon_sym_enum] = ACTIONS(3052), - [anon_sym_fn] = ACTIONS(3052), - [anon_sym_for] = ACTIONS(3052), - [anon_sym_gen] = ACTIONS(3052), - [anon_sym_if] = ACTIONS(3052), - [anon_sym_impl] = ACTIONS(3052), - [anon_sym_let] = ACTIONS(3052), - [anon_sym_loop] = ACTIONS(3052), - [anon_sym_match] = ACTIONS(3052), - [anon_sym_mod] = ACTIONS(3052), - [anon_sym_pub] = ACTIONS(3052), - [anon_sym_return] = ACTIONS(3052), - [anon_sym_static] = ACTIONS(3052), - [anon_sym_struct] = ACTIONS(3052), - [anon_sym_trait] = ACTIONS(3052), - [anon_sym_type] = ACTIONS(3052), - [anon_sym_union] = ACTIONS(3052), - [anon_sym_unsafe] = ACTIONS(3052), - [anon_sym_use] = ACTIONS(3052), - [anon_sym_while] = ACTIONS(3052), - [anon_sym_extern] = ACTIONS(3052), - [anon_sym_yield] = ACTIONS(3052), - [anon_sym_move] = ACTIONS(3052), - [anon_sym_try] = ACTIONS(3052), - [sym_integer_literal] = ACTIONS(3050), - [aux_sym_string_literal_token1] = ACTIONS(3050), - [sym_char_literal] = ACTIONS(3050), - [anon_sym_true] = ACTIONS(3052), - [anon_sym_false] = ACTIONS(3052), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3052), - [sym_super] = ACTIONS(3052), - [sym_crate] = ACTIONS(3052), - [sym_metavariable] = ACTIONS(3050), - [sym__raw_string_literal_start] = ACTIONS(3050), - [sym_float_literal] = ACTIONS(3050), + [ts_builtin_sym_end] = ACTIONS(3064), + [sym_identifier] = ACTIONS(3066), + [anon_sym_SEMI] = ACTIONS(3064), + [anon_sym_macro_rules_BANG] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(3064), + [anon_sym_LBRACK] = ACTIONS(3064), + [anon_sym_LBRACE] = ACTIONS(3064), + [anon_sym_RBRACE] = ACTIONS(3064), + [anon_sym_STAR] = ACTIONS(3064), + [anon_sym_u8] = ACTIONS(3066), + [anon_sym_i8] = ACTIONS(3066), + [anon_sym_u16] = ACTIONS(3066), + [anon_sym_i16] = ACTIONS(3066), + [anon_sym_u32] = ACTIONS(3066), + [anon_sym_i32] = ACTIONS(3066), + [anon_sym_u64] = ACTIONS(3066), + [anon_sym_i64] = ACTIONS(3066), + [anon_sym_u128] = ACTIONS(3066), + [anon_sym_i128] = ACTIONS(3066), + [anon_sym_isize] = ACTIONS(3066), + [anon_sym_usize] = ACTIONS(3066), + [anon_sym_f32] = ACTIONS(3066), + [anon_sym_f64] = ACTIONS(3066), + [anon_sym_bool] = ACTIONS(3066), + [anon_sym_str] = ACTIONS(3066), + [anon_sym_char] = ACTIONS(3066), + [anon_sym_DASH] = ACTIONS(3064), + [anon_sym_BANG] = ACTIONS(3064), + [anon_sym_AMP] = ACTIONS(3064), + [anon_sym_PIPE] = ACTIONS(3064), + [anon_sym_LT] = ACTIONS(3064), + [anon_sym_DOT_DOT] = ACTIONS(3064), + [anon_sym_COLON_COLON] = ACTIONS(3064), + [anon_sym_POUND] = ACTIONS(3064), + [anon_sym_SQUOTE] = ACTIONS(3066), + [anon_sym_async] = ACTIONS(3066), + [anon_sym_break] = ACTIONS(3066), + [anon_sym_const] = ACTIONS(3066), + [anon_sym_continue] = ACTIONS(3066), + [anon_sym_default] = ACTIONS(3066), + [anon_sym_enum] = ACTIONS(3066), + [anon_sym_fn] = ACTIONS(3066), + [anon_sym_for] = ACTIONS(3066), + [anon_sym_gen] = ACTIONS(3066), + [anon_sym_if] = ACTIONS(3066), + [anon_sym_impl] = ACTIONS(3066), + [anon_sym_let] = ACTIONS(3066), + [anon_sym_loop] = ACTIONS(3066), + [anon_sym_match] = ACTIONS(3066), + [anon_sym_mod] = ACTIONS(3066), + [anon_sym_pub] = ACTIONS(3066), + [anon_sym_return] = ACTIONS(3066), + [anon_sym_static] = ACTIONS(3066), + [anon_sym_struct] = ACTIONS(3066), + [anon_sym_trait] = ACTIONS(3066), + [anon_sym_type] = ACTIONS(3066), + [anon_sym_union] = ACTIONS(3066), + [anon_sym_unsafe] = ACTIONS(3066), + [anon_sym_use] = ACTIONS(3066), + [anon_sym_while] = ACTIONS(3066), + [anon_sym_extern] = ACTIONS(3066), + [anon_sym_safe] = ACTIONS(3066), + [anon_sym_yield] = ACTIONS(3066), + [anon_sym_move] = ACTIONS(3066), + [anon_sym_try] = ACTIONS(3066), + [sym_integer_literal] = ACTIONS(3064), + [aux_sym_string_literal_token1] = ACTIONS(3064), + [sym_char_literal] = ACTIONS(3064), + [anon_sym_true] = ACTIONS(3066), + [anon_sym_false] = ACTIONS(3066), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(3066), + [sym_super] = ACTIONS(3066), + [sym_crate] = ACTIONS(3066), + [sym_metavariable] = ACTIONS(3064), + [sym__raw_string_literal_start] = ACTIONS(3064), + [sym_float_literal] = ACTIONS(3064), }, [STATE(785)] = { [sym_line_comment] = STATE(785), [sym_block_comment] = STATE(785), - [ts_builtin_sym_end] = ACTIONS(3054), - [sym_identifier] = ACTIONS(3056), - [anon_sym_SEMI] = ACTIONS(3054), - [anon_sym_macro_rules_BANG] = ACTIONS(3054), - [anon_sym_LPAREN] = ACTIONS(3054), - [anon_sym_LBRACK] = ACTIONS(3054), - [anon_sym_LBRACE] = ACTIONS(3054), - [anon_sym_RBRACE] = ACTIONS(3054), - [anon_sym_STAR] = ACTIONS(3054), - [anon_sym_u8] = ACTIONS(3056), - [anon_sym_i8] = ACTIONS(3056), - [anon_sym_u16] = ACTIONS(3056), - [anon_sym_i16] = ACTIONS(3056), - [anon_sym_u32] = ACTIONS(3056), - [anon_sym_i32] = ACTIONS(3056), - [anon_sym_u64] = ACTIONS(3056), - [anon_sym_i64] = ACTIONS(3056), - [anon_sym_u128] = ACTIONS(3056), - [anon_sym_i128] = ACTIONS(3056), - [anon_sym_isize] = ACTIONS(3056), - [anon_sym_usize] = ACTIONS(3056), - [anon_sym_f32] = ACTIONS(3056), - [anon_sym_f64] = ACTIONS(3056), - [anon_sym_bool] = ACTIONS(3056), - [anon_sym_str] = ACTIONS(3056), - [anon_sym_char] = ACTIONS(3056), - [anon_sym_DASH] = ACTIONS(3054), - [anon_sym_BANG] = ACTIONS(3054), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_PIPE] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(3054), - [anon_sym_DOT_DOT] = ACTIONS(3054), - [anon_sym_COLON_COLON] = ACTIONS(3054), - [anon_sym_POUND] = ACTIONS(3054), - [anon_sym_SQUOTE] = ACTIONS(3056), - [anon_sym_async] = ACTIONS(3056), - [anon_sym_break] = ACTIONS(3056), - [anon_sym_const] = ACTIONS(3056), - [anon_sym_continue] = ACTIONS(3056), - [anon_sym_default] = ACTIONS(3056), - [anon_sym_enum] = ACTIONS(3056), - [anon_sym_fn] = ACTIONS(3056), - [anon_sym_for] = ACTIONS(3056), - [anon_sym_gen] = ACTIONS(3056), - [anon_sym_if] = ACTIONS(3056), - [anon_sym_impl] = ACTIONS(3056), - [anon_sym_let] = ACTIONS(3056), - [anon_sym_loop] = ACTIONS(3056), - [anon_sym_match] = ACTIONS(3056), - [anon_sym_mod] = ACTIONS(3056), - [anon_sym_pub] = ACTIONS(3056), - [anon_sym_return] = ACTIONS(3056), - [anon_sym_static] = ACTIONS(3056), - [anon_sym_struct] = ACTIONS(3056), - [anon_sym_trait] = ACTIONS(3056), - [anon_sym_type] = ACTIONS(3056), - [anon_sym_union] = ACTIONS(3056), - [anon_sym_unsafe] = ACTIONS(3056), - [anon_sym_use] = ACTIONS(3056), - [anon_sym_while] = ACTIONS(3056), - [anon_sym_extern] = ACTIONS(3056), - [anon_sym_yield] = ACTIONS(3056), - [anon_sym_move] = ACTIONS(3056), - [anon_sym_try] = ACTIONS(3056), - [sym_integer_literal] = ACTIONS(3054), - [aux_sym_string_literal_token1] = ACTIONS(3054), - [sym_char_literal] = ACTIONS(3054), - [anon_sym_true] = ACTIONS(3056), - [anon_sym_false] = ACTIONS(3056), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3056), - [sym_super] = ACTIONS(3056), - [sym_crate] = ACTIONS(3056), - [sym_metavariable] = ACTIONS(3054), - [sym__raw_string_literal_start] = ACTIONS(3054), - [sym_float_literal] = ACTIONS(3054), + [ts_builtin_sym_end] = ACTIONS(3068), + [sym_identifier] = ACTIONS(3070), + [anon_sym_SEMI] = ACTIONS(3068), + [anon_sym_macro_rules_BANG] = ACTIONS(3068), + [anon_sym_LPAREN] = ACTIONS(3068), + [anon_sym_LBRACK] = ACTIONS(3068), + [anon_sym_LBRACE] = ACTIONS(3068), + [anon_sym_RBRACE] = ACTIONS(3068), + [anon_sym_STAR] = ACTIONS(3068), + [anon_sym_u8] = ACTIONS(3070), + [anon_sym_i8] = ACTIONS(3070), + [anon_sym_u16] = ACTIONS(3070), + [anon_sym_i16] = ACTIONS(3070), + [anon_sym_u32] = ACTIONS(3070), + [anon_sym_i32] = ACTIONS(3070), + [anon_sym_u64] = ACTIONS(3070), + [anon_sym_i64] = ACTIONS(3070), + [anon_sym_u128] = ACTIONS(3070), + [anon_sym_i128] = ACTIONS(3070), + [anon_sym_isize] = ACTIONS(3070), + [anon_sym_usize] = ACTIONS(3070), + [anon_sym_f32] = ACTIONS(3070), + [anon_sym_f64] = ACTIONS(3070), + [anon_sym_bool] = ACTIONS(3070), + [anon_sym_str] = ACTIONS(3070), + [anon_sym_char] = ACTIONS(3070), + [anon_sym_DASH] = ACTIONS(3068), + [anon_sym_BANG] = ACTIONS(3068), + [anon_sym_AMP] = ACTIONS(3068), + [anon_sym_PIPE] = ACTIONS(3068), + [anon_sym_LT] = ACTIONS(3068), + [anon_sym_DOT_DOT] = ACTIONS(3068), + [anon_sym_COLON_COLON] = ACTIONS(3068), + [anon_sym_POUND] = ACTIONS(3068), + [anon_sym_SQUOTE] = ACTIONS(3070), + [anon_sym_async] = ACTIONS(3070), + [anon_sym_break] = ACTIONS(3070), + [anon_sym_const] = ACTIONS(3070), + [anon_sym_continue] = ACTIONS(3070), + [anon_sym_default] = ACTIONS(3070), + [anon_sym_enum] = ACTIONS(3070), + [anon_sym_fn] = ACTIONS(3070), + [anon_sym_for] = ACTIONS(3070), + [anon_sym_gen] = ACTIONS(3070), + [anon_sym_if] = ACTIONS(3070), + [anon_sym_impl] = ACTIONS(3070), + [anon_sym_let] = ACTIONS(3070), + [anon_sym_loop] = ACTIONS(3070), + [anon_sym_match] = ACTIONS(3070), + [anon_sym_mod] = ACTIONS(3070), + [anon_sym_pub] = ACTIONS(3070), + [anon_sym_return] = ACTIONS(3070), + [anon_sym_static] = ACTIONS(3070), + [anon_sym_struct] = ACTIONS(3070), + [anon_sym_trait] = ACTIONS(3070), + [anon_sym_type] = ACTIONS(3070), + [anon_sym_union] = ACTIONS(3070), + [anon_sym_unsafe] = ACTIONS(3070), + [anon_sym_use] = ACTIONS(3070), + [anon_sym_while] = ACTIONS(3070), + [anon_sym_extern] = ACTIONS(3070), + [anon_sym_safe] = ACTIONS(3070), + [anon_sym_yield] = ACTIONS(3070), + [anon_sym_move] = ACTIONS(3070), + [anon_sym_try] = ACTIONS(3070), + [sym_integer_literal] = ACTIONS(3068), + [aux_sym_string_literal_token1] = ACTIONS(3068), + [sym_char_literal] = ACTIONS(3068), + [anon_sym_true] = ACTIONS(3070), + [anon_sym_false] = ACTIONS(3070), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(3070), + [sym_super] = ACTIONS(3070), + [sym_crate] = ACTIONS(3070), + [sym_metavariable] = ACTIONS(3068), + [sym__raw_string_literal_start] = ACTIONS(3068), + [sym_float_literal] = ACTIONS(3068), }, [STATE(786)] = { [sym_line_comment] = STATE(786), [sym_block_comment] = STATE(786), - [ts_builtin_sym_end] = ACTIONS(3058), - [sym_identifier] = ACTIONS(3060), - [anon_sym_SEMI] = ACTIONS(3058), - [anon_sym_macro_rules_BANG] = ACTIONS(3058), - [anon_sym_LPAREN] = ACTIONS(3058), - [anon_sym_LBRACK] = ACTIONS(3058), - [anon_sym_LBRACE] = ACTIONS(3058), - [anon_sym_RBRACE] = ACTIONS(3058), - [anon_sym_STAR] = ACTIONS(3058), - [anon_sym_u8] = ACTIONS(3060), - [anon_sym_i8] = ACTIONS(3060), - [anon_sym_u16] = ACTIONS(3060), - [anon_sym_i16] = ACTIONS(3060), - [anon_sym_u32] = ACTIONS(3060), - [anon_sym_i32] = ACTIONS(3060), - [anon_sym_u64] = ACTIONS(3060), - [anon_sym_i64] = ACTIONS(3060), - [anon_sym_u128] = ACTIONS(3060), - [anon_sym_i128] = ACTIONS(3060), - [anon_sym_isize] = ACTIONS(3060), - [anon_sym_usize] = ACTIONS(3060), - [anon_sym_f32] = ACTIONS(3060), - [anon_sym_f64] = ACTIONS(3060), - [anon_sym_bool] = ACTIONS(3060), - [anon_sym_str] = ACTIONS(3060), - [anon_sym_char] = ACTIONS(3060), - [anon_sym_DASH] = ACTIONS(3058), - [anon_sym_BANG] = ACTIONS(3058), - [anon_sym_AMP] = ACTIONS(3058), - [anon_sym_PIPE] = ACTIONS(3058), - [anon_sym_LT] = ACTIONS(3058), - [anon_sym_DOT_DOT] = ACTIONS(3058), - [anon_sym_COLON_COLON] = ACTIONS(3058), - [anon_sym_POUND] = ACTIONS(3058), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(3060), - [anon_sym_break] = ACTIONS(3060), - [anon_sym_const] = ACTIONS(3060), - [anon_sym_continue] = ACTIONS(3060), - [anon_sym_default] = ACTIONS(3060), - [anon_sym_enum] = ACTIONS(3060), - [anon_sym_fn] = ACTIONS(3060), - [anon_sym_for] = ACTIONS(3060), - [anon_sym_gen] = ACTIONS(3060), - [anon_sym_if] = ACTIONS(3060), - [anon_sym_impl] = ACTIONS(3060), - [anon_sym_let] = ACTIONS(3060), - [anon_sym_loop] = ACTIONS(3060), - [anon_sym_match] = ACTIONS(3060), - [anon_sym_mod] = ACTIONS(3060), - [anon_sym_pub] = ACTIONS(3060), - [anon_sym_return] = ACTIONS(3060), - [anon_sym_static] = ACTIONS(3060), - [anon_sym_struct] = ACTIONS(3060), - [anon_sym_trait] = ACTIONS(3060), - [anon_sym_type] = ACTIONS(3060), - [anon_sym_union] = ACTIONS(3060), - [anon_sym_unsafe] = ACTIONS(3060), - [anon_sym_use] = ACTIONS(3060), - [anon_sym_while] = ACTIONS(3060), - [anon_sym_extern] = ACTIONS(3060), - [anon_sym_yield] = ACTIONS(3060), - [anon_sym_move] = ACTIONS(3060), - [anon_sym_try] = ACTIONS(3060), - [sym_integer_literal] = ACTIONS(3058), - [aux_sym_string_literal_token1] = ACTIONS(3058), - [sym_char_literal] = ACTIONS(3058), - [anon_sym_true] = ACTIONS(3060), - [anon_sym_false] = ACTIONS(3060), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3060), - [sym_super] = ACTIONS(3060), - [sym_crate] = ACTIONS(3060), - [sym_metavariable] = ACTIONS(3058), - [sym__raw_string_literal_start] = ACTIONS(3058), - [sym_float_literal] = ACTIONS(3058), + [ts_builtin_sym_end] = ACTIONS(3072), + [sym_identifier] = ACTIONS(3074), + [anon_sym_SEMI] = ACTIONS(3072), + [anon_sym_macro_rules_BANG] = ACTIONS(3072), + [anon_sym_LPAREN] = ACTIONS(3072), + [anon_sym_LBRACK] = ACTIONS(3072), + [anon_sym_LBRACE] = ACTIONS(3072), + [anon_sym_RBRACE] = ACTIONS(3072), + [anon_sym_STAR] = ACTIONS(3072), + [anon_sym_u8] = ACTIONS(3074), + [anon_sym_i8] = ACTIONS(3074), + [anon_sym_u16] = ACTIONS(3074), + [anon_sym_i16] = ACTIONS(3074), + [anon_sym_u32] = ACTIONS(3074), + [anon_sym_i32] = ACTIONS(3074), + [anon_sym_u64] = ACTIONS(3074), + [anon_sym_i64] = ACTIONS(3074), + [anon_sym_u128] = ACTIONS(3074), + [anon_sym_i128] = ACTIONS(3074), + [anon_sym_isize] = ACTIONS(3074), + [anon_sym_usize] = ACTIONS(3074), + [anon_sym_f32] = ACTIONS(3074), + [anon_sym_f64] = ACTIONS(3074), + [anon_sym_bool] = ACTIONS(3074), + [anon_sym_str] = ACTIONS(3074), + [anon_sym_char] = ACTIONS(3074), + [anon_sym_DASH] = ACTIONS(3072), + [anon_sym_BANG] = ACTIONS(3072), + [anon_sym_AMP] = ACTIONS(3072), + [anon_sym_PIPE] = ACTIONS(3072), + [anon_sym_LT] = ACTIONS(3072), + [anon_sym_DOT_DOT] = ACTIONS(3072), + [anon_sym_COLON_COLON] = ACTIONS(3072), + [anon_sym_POUND] = ACTIONS(3072), + [anon_sym_SQUOTE] = ACTIONS(3074), + [anon_sym_async] = ACTIONS(3074), + [anon_sym_break] = ACTIONS(3074), + [anon_sym_const] = ACTIONS(3074), + [anon_sym_continue] = ACTIONS(3074), + [anon_sym_default] = ACTIONS(3074), + [anon_sym_enum] = ACTIONS(3074), + [anon_sym_fn] = ACTIONS(3074), + [anon_sym_for] = ACTIONS(3074), + [anon_sym_gen] = ACTIONS(3074), + [anon_sym_if] = ACTIONS(3074), + [anon_sym_impl] = ACTIONS(3074), + [anon_sym_let] = ACTIONS(3074), + [anon_sym_loop] = ACTIONS(3074), + [anon_sym_match] = ACTIONS(3074), + [anon_sym_mod] = ACTIONS(3074), + [anon_sym_pub] = ACTIONS(3074), + [anon_sym_return] = ACTIONS(3074), + [anon_sym_static] = ACTIONS(3074), + [anon_sym_struct] = ACTIONS(3074), + [anon_sym_trait] = ACTIONS(3074), + [anon_sym_type] = ACTIONS(3074), + [anon_sym_union] = ACTIONS(3074), + [anon_sym_unsafe] = ACTIONS(3074), + [anon_sym_use] = ACTIONS(3074), + [anon_sym_while] = ACTIONS(3074), + [anon_sym_extern] = ACTIONS(3074), + [anon_sym_safe] = ACTIONS(3074), + [anon_sym_yield] = ACTIONS(3074), + [anon_sym_move] = ACTIONS(3074), + [anon_sym_try] = ACTIONS(3074), + [sym_integer_literal] = ACTIONS(3072), + [aux_sym_string_literal_token1] = ACTIONS(3072), + [sym_char_literal] = ACTIONS(3072), + [anon_sym_true] = ACTIONS(3074), + [anon_sym_false] = ACTIONS(3074), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(3074), + [sym_super] = ACTIONS(3074), + [sym_crate] = ACTIONS(3074), + [sym_metavariable] = ACTIONS(3072), + [sym__raw_string_literal_start] = ACTIONS(3072), + [sym_float_literal] = ACTIONS(3072), }, [STATE(787)] = { [sym_line_comment] = STATE(787), [sym_block_comment] = STATE(787), - [ts_builtin_sym_end] = ACTIONS(3062), - [sym_identifier] = ACTIONS(3064), - [anon_sym_SEMI] = ACTIONS(3062), - [anon_sym_macro_rules_BANG] = ACTIONS(3062), - [anon_sym_LPAREN] = ACTIONS(3062), - [anon_sym_LBRACK] = ACTIONS(3062), - [anon_sym_LBRACE] = ACTIONS(3062), - [anon_sym_RBRACE] = ACTIONS(3062), - [anon_sym_STAR] = ACTIONS(3062), - [anon_sym_u8] = ACTIONS(3064), - [anon_sym_i8] = ACTIONS(3064), - [anon_sym_u16] = ACTIONS(3064), - [anon_sym_i16] = ACTIONS(3064), - [anon_sym_u32] = ACTIONS(3064), - [anon_sym_i32] = ACTIONS(3064), - [anon_sym_u64] = ACTIONS(3064), - [anon_sym_i64] = ACTIONS(3064), - [anon_sym_u128] = ACTIONS(3064), - [anon_sym_i128] = ACTIONS(3064), - [anon_sym_isize] = ACTIONS(3064), - [anon_sym_usize] = ACTIONS(3064), - [anon_sym_f32] = ACTIONS(3064), - [anon_sym_f64] = ACTIONS(3064), - [anon_sym_bool] = ACTIONS(3064), - [anon_sym_str] = ACTIONS(3064), - [anon_sym_char] = ACTIONS(3064), - [anon_sym_DASH] = ACTIONS(3062), - [anon_sym_BANG] = ACTIONS(3062), - [anon_sym_AMP] = ACTIONS(3062), - [anon_sym_PIPE] = ACTIONS(3062), - [anon_sym_LT] = ACTIONS(3062), - [anon_sym_DOT_DOT] = ACTIONS(3062), - [anon_sym_COLON_COLON] = ACTIONS(3062), - [anon_sym_POUND] = ACTIONS(3062), - [anon_sym_SQUOTE] = ACTIONS(3064), - [anon_sym_async] = ACTIONS(3064), - [anon_sym_break] = ACTIONS(3064), - [anon_sym_const] = ACTIONS(3064), - [anon_sym_continue] = ACTIONS(3064), - [anon_sym_default] = ACTIONS(3064), - [anon_sym_enum] = ACTIONS(3064), - [anon_sym_fn] = ACTIONS(3064), - [anon_sym_for] = ACTIONS(3064), - [anon_sym_gen] = ACTIONS(3064), - [anon_sym_if] = ACTIONS(3064), - [anon_sym_impl] = ACTIONS(3064), - [anon_sym_let] = ACTIONS(3064), - [anon_sym_loop] = ACTIONS(3064), - [anon_sym_match] = ACTIONS(3064), - [anon_sym_mod] = ACTIONS(3064), - [anon_sym_pub] = ACTIONS(3064), - [anon_sym_return] = ACTIONS(3064), - [anon_sym_static] = ACTIONS(3064), - [anon_sym_struct] = ACTIONS(3064), - [anon_sym_trait] = ACTIONS(3064), - [anon_sym_type] = ACTIONS(3064), - [anon_sym_union] = ACTIONS(3064), - [anon_sym_unsafe] = ACTIONS(3064), - [anon_sym_use] = ACTIONS(3064), - [anon_sym_while] = ACTIONS(3064), - [anon_sym_extern] = ACTIONS(3064), - [anon_sym_yield] = ACTIONS(3064), - [anon_sym_move] = ACTIONS(3064), - [anon_sym_try] = ACTIONS(3064), - [sym_integer_literal] = ACTIONS(3062), - [aux_sym_string_literal_token1] = ACTIONS(3062), - [sym_char_literal] = ACTIONS(3062), - [anon_sym_true] = ACTIONS(3064), - [anon_sym_false] = ACTIONS(3064), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3064), - [sym_super] = ACTIONS(3064), - [sym_crate] = ACTIONS(3064), - [sym_metavariable] = ACTIONS(3062), - [sym__raw_string_literal_start] = ACTIONS(3062), - [sym_float_literal] = ACTIONS(3062), + [ts_builtin_sym_end] = ACTIONS(3076), + [sym_identifier] = ACTIONS(3078), + [anon_sym_SEMI] = ACTIONS(3076), + [anon_sym_macro_rules_BANG] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(3076), + [anon_sym_LBRACK] = ACTIONS(3076), + [anon_sym_LBRACE] = ACTIONS(3076), + [anon_sym_RBRACE] = ACTIONS(3076), + [anon_sym_STAR] = ACTIONS(3076), + [anon_sym_u8] = ACTIONS(3078), + [anon_sym_i8] = ACTIONS(3078), + [anon_sym_u16] = ACTIONS(3078), + [anon_sym_i16] = ACTIONS(3078), + [anon_sym_u32] = ACTIONS(3078), + [anon_sym_i32] = ACTIONS(3078), + [anon_sym_u64] = ACTIONS(3078), + [anon_sym_i64] = ACTIONS(3078), + [anon_sym_u128] = ACTIONS(3078), + [anon_sym_i128] = ACTIONS(3078), + [anon_sym_isize] = ACTIONS(3078), + [anon_sym_usize] = ACTIONS(3078), + [anon_sym_f32] = ACTIONS(3078), + [anon_sym_f64] = ACTIONS(3078), + [anon_sym_bool] = ACTIONS(3078), + [anon_sym_str] = ACTIONS(3078), + [anon_sym_char] = ACTIONS(3078), + [anon_sym_DASH] = ACTIONS(3076), + [anon_sym_BANG] = ACTIONS(3076), + [anon_sym_AMP] = ACTIONS(3076), + [anon_sym_PIPE] = ACTIONS(3076), + [anon_sym_LT] = ACTIONS(3076), + [anon_sym_DOT_DOT] = ACTIONS(3076), + [anon_sym_COLON_COLON] = ACTIONS(3076), + [anon_sym_POUND] = ACTIONS(3076), + [anon_sym_SQUOTE] = ACTIONS(3078), + [anon_sym_async] = ACTIONS(3078), + [anon_sym_break] = ACTIONS(3078), + [anon_sym_const] = ACTIONS(3078), + [anon_sym_continue] = ACTIONS(3078), + [anon_sym_default] = ACTIONS(3078), + [anon_sym_enum] = ACTIONS(3078), + [anon_sym_fn] = ACTIONS(3078), + [anon_sym_for] = ACTIONS(3078), + [anon_sym_gen] = ACTIONS(3078), + [anon_sym_if] = ACTIONS(3078), + [anon_sym_impl] = ACTIONS(3078), + [anon_sym_let] = ACTIONS(3078), + [anon_sym_loop] = ACTIONS(3078), + [anon_sym_match] = ACTIONS(3078), + [anon_sym_mod] = ACTIONS(3078), + [anon_sym_pub] = ACTIONS(3078), + [anon_sym_return] = ACTIONS(3078), + [anon_sym_static] = ACTIONS(3078), + [anon_sym_struct] = ACTIONS(3078), + [anon_sym_trait] = ACTIONS(3078), + [anon_sym_type] = ACTIONS(3078), + [anon_sym_union] = ACTIONS(3078), + [anon_sym_unsafe] = ACTIONS(3078), + [anon_sym_use] = ACTIONS(3078), + [anon_sym_while] = ACTIONS(3078), + [anon_sym_extern] = ACTIONS(3078), + [anon_sym_safe] = ACTIONS(3078), + [anon_sym_yield] = ACTIONS(3078), + [anon_sym_move] = ACTIONS(3078), + [anon_sym_try] = ACTIONS(3078), + [sym_integer_literal] = ACTIONS(3076), + [aux_sym_string_literal_token1] = ACTIONS(3076), + [sym_char_literal] = ACTIONS(3076), + [anon_sym_true] = ACTIONS(3078), + [anon_sym_false] = ACTIONS(3078), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(3078), + [sym_super] = ACTIONS(3078), + [sym_crate] = ACTIONS(3078), + [sym_metavariable] = ACTIONS(3076), + [sym__raw_string_literal_start] = ACTIONS(3076), + [sym_float_literal] = ACTIONS(3076), }, [STATE(788)] = { - [sym_attribute_item] = STATE(1254), - [sym_function_modifiers] = STATE(3583), - [sym_removed_trait_bound] = STATE(2069), - [sym_const_parameter] = STATE(2971), - [sym_type_parameter] = STATE(2971), - [sym_lifetime_parameter] = STATE(2971), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2926), - [sym_bracketed_type] = STATE(3752), - [sym_qualified_type] = STATE(3704), - [sym_lifetime] = STATE(2612), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1632), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3531), - [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(3461), - [sym_scoped_type_identifier] = STATE(2255), [sym_line_comment] = STATE(788), [sym_block_comment] = STATE(788), - [aux_sym_enum_variant_list_repeat1] = STATE(2169), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3066), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_QMARK] = ACTIONS(1621), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(1625), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_POUND] = ACTIONS(3068), - [anon_sym_SQUOTE] = ACTIONS(3070), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(3072), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1635), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1639), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1641), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(3074), + [ts_builtin_sym_end] = ACTIONS(3080), + [sym_identifier] = ACTIONS(3082), + [anon_sym_SEMI] = ACTIONS(3080), + [anon_sym_macro_rules_BANG] = ACTIONS(3080), + [anon_sym_LPAREN] = ACTIONS(3080), + [anon_sym_LBRACK] = ACTIONS(3080), + [anon_sym_LBRACE] = ACTIONS(3080), + [anon_sym_RBRACE] = ACTIONS(3080), + [anon_sym_STAR] = ACTIONS(3080), + [anon_sym_u8] = ACTIONS(3082), + [anon_sym_i8] = ACTIONS(3082), + [anon_sym_u16] = ACTIONS(3082), + [anon_sym_i16] = ACTIONS(3082), + [anon_sym_u32] = ACTIONS(3082), + [anon_sym_i32] = ACTIONS(3082), + [anon_sym_u64] = ACTIONS(3082), + [anon_sym_i64] = ACTIONS(3082), + [anon_sym_u128] = ACTIONS(3082), + [anon_sym_i128] = ACTIONS(3082), + [anon_sym_isize] = ACTIONS(3082), + [anon_sym_usize] = ACTIONS(3082), + [anon_sym_f32] = ACTIONS(3082), + [anon_sym_f64] = ACTIONS(3082), + [anon_sym_bool] = ACTIONS(3082), + [anon_sym_str] = ACTIONS(3082), + [anon_sym_char] = ACTIONS(3082), + [anon_sym_DASH] = ACTIONS(3080), + [anon_sym_BANG] = ACTIONS(3080), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_PIPE] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(3080), + [anon_sym_DOT_DOT] = ACTIONS(3080), + [anon_sym_COLON_COLON] = ACTIONS(3080), + [anon_sym_POUND] = ACTIONS(3080), + [anon_sym_SQUOTE] = ACTIONS(3082), + [anon_sym_async] = ACTIONS(3082), + [anon_sym_break] = ACTIONS(3082), + [anon_sym_const] = ACTIONS(3082), + [anon_sym_continue] = ACTIONS(3082), + [anon_sym_default] = ACTIONS(3082), + [anon_sym_enum] = ACTIONS(3082), + [anon_sym_fn] = ACTIONS(3082), + [anon_sym_for] = ACTIONS(3082), + [anon_sym_gen] = ACTIONS(3082), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_impl] = ACTIONS(3082), + [anon_sym_let] = ACTIONS(3082), + [anon_sym_loop] = ACTIONS(3082), + [anon_sym_match] = ACTIONS(3082), + [anon_sym_mod] = ACTIONS(3082), + [anon_sym_pub] = ACTIONS(3082), + [anon_sym_return] = ACTIONS(3082), + [anon_sym_static] = ACTIONS(3082), + [anon_sym_struct] = ACTIONS(3082), + [anon_sym_trait] = ACTIONS(3082), + [anon_sym_type] = ACTIONS(3082), + [anon_sym_union] = ACTIONS(3082), + [anon_sym_unsafe] = ACTIONS(3082), + [anon_sym_use] = ACTIONS(3082), + [anon_sym_while] = ACTIONS(3082), + [anon_sym_extern] = ACTIONS(3082), + [anon_sym_safe] = ACTIONS(3082), + [anon_sym_yield] = ACTIONS(3082), + [anon_sym_move] = ACTIONS(3082), + [anon_sym_try] = ACTIONS(3082), + [sym_integer_literal] = ACTIONS(3080), + [aux_sym_string_literal_token1] = ACTIONS(3080), + [sym_char_literal] = ACTIONS(3080), + [anon_sym_true] = ACTIONS(3082), + [anon_sym_false] = ACTIONS(3082), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(3082), + [sym_super] = ACTIONS(3082), + [sym_crate] = ACTIONS(3082), + [sym_metavariable] = ACTIONS(3080), + [sym__raw_string_literal_start] = ACTIONS(3080), + [sym_float_literal] = ACTIONS(3080), }, [STATE(789)] = { - [sym_attribute_item] = STATE(1254), - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym_visibility_modifier] = STATE(900), - [sym__type] = STATE(2834), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(3461), - [sym_scoped_type_identifier] = STATE(2028), [sym_line_comment] = STATE(789), [sym_block_comment] = STATE(789), - [aux_sym_enum_variant_list_repeat1] = STATE(802), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_RPAREN] = ACTIONS(3078), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COMMA] = ACTIONS(3082), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_POUND] = ACTIONS(3068), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), + [ts_builtin_sym_end] = ACTIONS(3084), + [sym_identifier] = ACTIONS(3086), + [anon_sym_SEMI] = ACTIONS(3084), + [anon_sym_macro_rules_BANG] = ACTIONS(3084), + [anon_sym_LPAREN] = ACTIONS(3084), + [anon_sym_LBRACK] = ACTIONS(3084), + [anon_sym_LBRACE] = ACTIONS(3084), + [anon_sym_RBRACE] = ACTIONS(3084), + [anon_sym_STAR] = ACTIONS(3084), + [anon_sym_u8] = ACTIONS(3086), + [anon_sym_i8] = ACTIONS(3086), + [anon_sym_u16] = ACTIONS(3086), + [anon_sym_i16] = ACTIONS(3086), + [anon_sym_u32] = ACTIONS(3086), + [anon_sym_i32] = ACTIONS(3086), + [anon_sym_u64] = ACTIONS(3086), + [anon_sym_i64] = ACTIONS(3086), + [anon_sym_u128] = ACTIONS(3086), + [anon_sym_i128] = ACTIONS(3086), + [anon_sym_isize] = ACTIONS(3086), + [anon_sym_usize] = ACTIONS(3086), + [anon_sym_f32] = ACTIONS(3086), + [anon_sym_f64] = ACTIONS(3086), + [anon_sym_bool] = ACTIONS(3086), + [anon_sym_str] = ACTIONS(3086), + [anon_sym_char] = ACTIONS(3086), + [anon_sym_DASH] = ACTIONS(3084), + [anon_sym_BANG] = ACTIONS(3084), + [anon_sym_AMP] = ACTIONS(3084), + [anon_sym_PIPE] = ACTIONS(3084), + [anon_sym_LT] = ACTIONS(3084), + [anon_sym_DOT_DOT] = ACTIONS(3084), + [anon_sym_COLON_COLON] = ACTIONS(3084), + [anon_sym_POUND] = ACTIONS(3084), + [anon_sym_SQUOTE] = ACTIONS(3086), + [anon_sym_async] = ACTIONS(3086), + [anon_sym_break] = ACTIONS(3086), + [anon_sym_const] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(3086), + [anon_sym_default] = ACTIONS(3086), + [anon_sym_enum] = ACTIONS(3086), + [anon_sym_fn] = ACTIONS(3086), + [anon_sym_for] = ACTIONS(3086), + [anon_sym_gen] = ACTIONS(3086), + [anon_sym_if] = ACTIONS(3086), + [anon_sym_impl] = ACTIONS(3086), + [anon_sym_let] = ACTIONS(3086), + [anon_sym_loop] = ACTIONS(3086), + [anon_sym_match] = ACTIONS(3086), + [anon_sym_mod] = ACTIONS(3086), [anon_sym_pub] = ACTIONS(3086), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(3088), - [sym_metavariable] = ACTIONS(1647), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_static] = ACTIONS(3086), + [anon_sym_struct] = ACTIONS(3086), + [anon_sym_trait] = ACTIONS(3086), + [anon_sym_type] = ACTIONS(3086), + [anon_sym_union] = ACTIONS(3086), + [anon_sym_unsafe] = ACTIONS(3086), + [anon_sym_use] = ACTIONS(3086), + [anon_sym_while] = ACTIONS(3086), + [anon_sym_extern] = ACTIONS(3086), + [anon_sym_safe] = ACTIONS(3086), + [anon_sym_yield] = ACTIONS(3086), + [anon_sym_move] = ACTIONS(3086), + [anon_sym_try] = ACTIONS(3086), + [sym_integer_literal] = ACTIONS(3084), + [aux_sym_string_literal_token1] = ACTIONS(3084), + [sym_char_literal] = ACTIONS(3084), + [anon_sym_true] = ACTIONS(3086), + [anon_sym_false] = ACTIONS(3086), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(3086), + [sym_super] = ACTIONS(3086), + [sym_crate] = ACTIONS(3086), + [sym_metavariable] = ACTIONS(3084), + [sym__raw_string_literal_start] = ACTIONS(3084), + [sym_float_literal] = ACTIONS(3084), }, [STATE(790)] = { - [sym_attribute_item] = STATE(1254), - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym_visibility_modifier] = STATE(944), - [sym__type] = STATE(3026), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(3461), - [sym_scoped_type_identifier] = STATE(2028), [sym_line_comment] = STATE(790), [sym_block_comment] = STATE(790), - [aux_sym_enum_variant_list_repeat1] = STATE(797), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_RPAREN] = ACTIONS(3090), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_POUND] = ACTIONS(3068), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_pub] = ACTIONS(3086), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(3088), - [sym_metavariable] = ACTIONS(1647), + [ts_builtin_sym_end] = ACTIONS(3088), + [sym_identifier] = ACTIONS(3090), + [anon_sym_SEMI] = ACTIONS(3088), + [anon_sym_macro_rules_BANG] = ACTIONS(3088), + [anon_sym_LPAREN] = ACTIONS(3088), + [anon_sym_LBRACK] = ACTIONS(3088), + [anon_sym_LBRACE] = ACTIONS(3088), + [anon_sym_RBRACE] = ACTIONS(3088), + [anon_sym_STAR] = ACTIONS(3088), + [anon_sym_u8] = ACTIONS(3090), + [anon_sym_i8] = ACTIONS(3090), + [anon_sym_u16] = ACTIONS(3090), + [anon_sym_i16] = ACTIONS(3090), + [anon_sym_u32] = ACTIONS(3090), + [anon_sym_i32] = ACTIONS(3090), + [anon_sym_u64] = ACTIONS(3090), + [anon_sym_i64] = ACTIONS(3090), + [anon_sym_u128] = ACTIONS(3090), + [anon_sym_i128] = ACTIONS(3090), + [anon_sym_isize] = ACTIONS(3090), + [anon_sym_usize] = ACTIONS(3090), + [anon_sym_f32] = ACTIONS(3090), + [anon_sym_f64] = ACTIONS(3090), + [anon_sym_bool] = ACTIONS(3090), + [anon_sym_str] = ACTIONS(3090), + [anon_sym_char] = ACTIONS(3090), + [anon_sym_DASH] = ACTIONS(3088), + [anon_sym_BANG] = ACTIONS(3088), + [anon_sym_AMP] = ACTIONS(3088), + [anon_sym_PIPE] = ACTIONS(3088), + [anon_sym_LT] = ACTIONS(3088), + [anon_sym_DOT_DOT] = ACTIONS(3088), + [anon_sym_COLON_COLON] = ACTIONS(3088), + [anon_sym_POUND] = ACTIONS(3088), + [anon_sym_SQUOTE] = ACTIONS(3090), + [anon_sym_async] = ACTIONS(3090), + [anon_sym_break] = ACTIONS(3090), + [anon_sym_const] = ACTIONS(3090), + [anon_sym_continue] = ACTIONS(3090), + [anon_sym_default] = ACTIONS(3090), + [anon_sym_enum] = ACTIONS(3090), + [anon_sym_fn] = ACTIONS(3090), + [anon_sym_for] = ACTIONS(3090), + [anon_sym_gen] = ACTIONS(3090), + [anon_sym_if] = ACTIONS(3090), + [anon_sym_impl] = ACTIONS(3090), + [anon_sym_let] = ACTIONS(3090), + [anon_sym_loop] = ACTIONS(3090), + [anon_sym_match] = ACTIONS(3090), + [anon_sym_mod] = ACTIONS(3090), + [anon_sym_pub] = ACTIONS(3090), + [anon_sym_return] = ACTIONS(3090), + [anon_sym_static] = ACTIONS(3090), + [anon_sym_struct] = ACTIONS(3090), + [anon_sym_trait] = ACTIONS(3090), + [anon_sym_type] = ACTIONS(3090), + [anon_sym_union] = ACTIONS(3090), + [anon_sym_unsafe] = ACTIONS(3090), + [anon_sym_use] = ACTIONS(3090), + [anon_sym_while] = ACTIONS(3090), + [anon_sym_extern] = ACTIONS(3090), + [anon_sym_safe] = ACTIONS(3090), + [anon_sym_yield] = ACTIONS(3090), + [anon_sym_move] = ACTIONS(3090), + [anon_sym_try] = ACTIONS(3090), + [sym_integer_literal] = ACTIONS(3088), + [aux_sym_string_literal_token1] = ACTIONS(3088), + [sym_char_literal] = ACTIONS(3088), + [anon_sym_true] = ACTIONS(3090), + [anon_sym_false] = ACTIONS(3090), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(3090), + [sym_super] = ACTIONS(3090), + [sym_crate] = ACTIONS(3090), + [sym_metavariable] = ACTIONS(3088), + [sym__raw_string_literal_start] = ACTIONS(3088), + [sym_float_literal] = ACTIONS(3088), }, [STATE(791)] = { - [sym_attribute_item] = STATE(1254), - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym_visibility_modifier] = STATE(944), - [sym__type] = STATE(3026), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_attribute_item] = STATE(1423), + [sym_inner_attribute_item] = STATE(1423), + [sym_bracketed_type] = STATE(3730), + [sym_generic_type] = STATE(3622), + [sym_generic_type_with_turbofish] = STATE(3423), + [sym_macro_invocation] = STATE(3092), + [sym_scoped_identifier] = STATE(2268), + [sym_scoped_type_identifier] = STATE(3118), + [sym_match_pattern] = STATE(3615), + [sym_const_block] = STATE(3092), + [sym__pattern] = STATE(3027), + [sym_generic_pattern] = STATE(3092), + [sym_tuple_pattern] = STATE(3092), + [sym_slice_pattern] = STATE(3092), + [sym_tuple_struct_pattern] = STATE(3092), + [sym_struct_pattern] = STATE(3092), + [sym_remaining_field_pattern] = STATE(3092), + [sym_mut_pattern] = STATE(3092), + [sym_range_pattern] = STATE(3092), + [sym_ref_pattern] = STATE(3092), + [sym_captured_pattern] = STATE(3092), + [sym_reference_pattern] = STATE(3092), + [sym_or_pattern] = STATE(3092), + [sym__literal_pattern] = STATE(2439), + [sym_negative_literal] = STATE(2421), + [sym_string_literal] = STATE(2421), + [sym_raw_string_literal] = STATE(2421), + [sym_boolean_literal] = STATE(2421), [sym_line_comment] = STATE(791), [sym_block_comment] = STATE(791), - [aux_sym_enum_variant_list_repeat1] = STATE(797), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_RPAREN] = ACTIONS(3092), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_POUND] = ACTIONS(3068), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_pub] = ACTIONS(3086), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(3088), - [sym_metavariable] = ACTIONS(1647), + [aux_sym_match_arm_repeat1] = STATE(1096), + [sym_identifier] = ACTIONS(1678), + [anon_sym_LPAREN] = ACTIONS(1680), + [anon_sym_LBRACK] = ACTIONS(1682), + [anon_sym_u8] = ACTIONS(1686), + [anon_sym_i8] = ACTIONS(1686), + [anon_sym_u16] = ACTIONS(1686), + [anon_sym_i16] = ACTIONS(1686), + [anon_sym_u32] = ACTIONS(1686), + [anon_sym_i32] = ACTIONS(1686), + [anon_sym_u64] = ACTIONS(1686), + [anon_sym_i64] = ACTIONS(1686), + [anon_sym_u128] = ACTIONS(1686), + [anon_sym_i128] = ACTIONS(1686), + [anon_sym_isize] = ACTIONS(1686), + [anon_sym_usize] = ACTIONS(1686), + [anon_sym_f32] = ACTIONS(1686), + [anon_sym_f64] = ACTIONS(1686), + [anon_sym_bool] = ACTIONS(1686), + [anon_sym_str] = ACTIONS(1686), + [anon_sym_char] = ACTIONS(1686), + [anon_sym_DASH] = ACTIONS(1688), + [anon_sym_AMP] = ACTIONS(1690), + [anon_sym_PIPE] = ACTIONS(1692), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1694), + [anon_sym_DOT_DOT] = ACTIONS(1696), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1698), + [anon_sym_COLON_COLON] = ACTIONS(1700), + [anon_sym_POUND] = ACTIONS(1702), + [anon_sym_const] = ACTIONS(1704), + [anon_sym_default] = ACTIONS(1706), + [anon_sym_gen] = ACTIONS(1706), + [anon_sym_union] = ACTIONS(1706), + [anon_sym_ref] = ACTIONS(1708), + [sym_mutable_specifier] = ACTIONS(1710), + [sym_integer_literal] = ACTIONS(1712), + [aux_sym_string_literal_token1] = ACTIONS(1714), + [sym_char_literal] = ACTIONS(1712), + [anon_sym_true] = ACTIONS(1716), + [anon_sym_false] = ACTIONS(1716), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1718), + [sym_super] = ACTIONS(1718), + [sym_crate] = ACTIONS(1718), + [sym_metavariable] = ACTIONS(1720), + [sym__raw_string_literal_start] = ACTIONS(1722), + [sym_float_literal] = ACTIONS(1712), }, [STATE(792)] = { - [sym_attribute_item] = STATE(1254), - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym_visibility_modifier] = STATE(944), - [sym__type] = STATE(3026), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_attribute_item] = STATE(1314), + [sym_function_modifiers] = STATE(3576), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_const_parameter] = STATE(2966), + [sym_type_parameter] = STATE(2966), + [sym_lifetime_parameter] = STATE(2966), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(3056), + [sym_bracketed_type] = STATE(3806), + [sym_qualified_type] = STATE(3744), + [sym_lifetime] = STATE(2604), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3771), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2285), [sym_line_comment] = STATE(792), [sym_block_comment] = STATE(792), - [aux_sym_enum_variant_list_repeat1] = STATE(797), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_RPAREN] = ACTIONS(3094), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_POUND] = ACTIONS(3068), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_pub] = ACTIONS(3086), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(3088), - [sym_metavariable] = ACTIONS(1647), + [aux_sym_enum_variant_list_repeat1] = STATE(2179), + [sym_identifier] = ACTIONS(3092), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1624), + [anon_sym_QMARK] = ACTIONS(1626), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1630), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_POUND] = ACTIONS(3094), + [anon_sym_SQUOTE] = ACTIONS(3096), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(3098), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1640), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1644), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1646), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(3100), }, [STATE(793)] = { - [sym_attribute_item] = STATE(1254), - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym_visibility_modifier] = STATE(944), - [sym__type] = STATE(3026), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_attribute_item] = STATE(1423), + [sym_inner_attribute_item] = STATE(1423), + [sym_bracketed_type] = STATE(3730), + [sym_generic_type] = STATE(3622), + [sym_generic_type_with_turbofish] = STATE(3423), + [sym_macro_invocation] = STATE(3092), + [sym_scoped_identifier] = STATE(2268), + [sym_scoped_type_identifier] = STATE(3118), + [sym_match_pattern] = STATE(3537), + [sym_const_block] = STATE(3092), + [sym__pattern] = STATE(3027), + [sym_generic_pattern] = STATE(3092), + [sym_tuple_pattern] = STATE(3092), + [sym_slice_pattern] = STATE(3092), + [sym_tuple_struct_pattern] = STATE(3092), + [sym_struct_pattern] = STATE(3092), + [sym_remaining_field_pattern] = STATE(3092), + [sym_mut_pattern] = STATE(3092), + [sym_range_pattern] = STATE(3092), + [sym_ref_pattern] = STATE(3092), + [sym_captured_pattern] = STATE(3092), + [sym_reference_pattern] = STATE(3092), + [sym_or_pattern] = STATE(3092), + [sym__literal_pattern] = STATE(2439), + [sym_negative_literal] = STATE(2421), + [sym_string_literal] = STATE(2421), + [sym_raw_string_literal] = STATE(2421), + [sym_boolean_literal] = STATE(2421), [sym_line_comment] = STATE(793), [sym_block_comment] = STATE(793), - [aux_sym_enum_variant_list_repeat1] = STATE(797), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_RPAREN] = ACTIONS(3096), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_POUND] = ACTIONS(3068), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_pub] = ACTIONS(3086), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(3088), - [sym_metavariable] = ACTIONS(1647), + [aux_sym_match_arm_repeat1] = STATE(1096), + [sym_identifier] = ACTIONS(1678), + [anon_sym_LPAREN] = ACTIONS(1680), + [anon_sym_LBRACK] = ACTIONS(1682), + [anon_sym_u8] = ACTIONS(1686), + [anon_sym_i8] = ACTIONS(1686), + [anon_sym_u16] = ACTIONS(1686), + [anon_sym_i16] = ACTIONS(1686), + [anon_sym_u32] = ACTIONS(1686), + [anon_sym_i32] = ACTIONS(1686), + [anon_sym_u64] = ACTIONS(1686), + [anon_sym_i64] = ACTIONS(1686), + [anon_sym_u128] = ACTIONS(1686), + [anon_sym_i128] = ACTIONS(1686), + [anon_sym_isize] = ACTIONS(1686), + [anon_sym_usize] = ACTIONS(1686), + [anon_sym_f32] = ACTIONS(1686), + [anon_sym_f64] = ACTIONS(1686), + [anon_sym_bool] = ACTIONS(1686), + [anon_sym_str] = ACTIONS(1686), + [anon_sym_char] = ACTIONS(1686), + [anon_sym_DASH] = ACTIONS(1688), + [anon_sym_AMP] = ACTIONS(1690), + [anon_sym_PIPE] = ACTIONS(1692), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1694), + [anon_sym_DOT_DOT] = ACTIONS(1696), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1698), + [anon_sym_COLON_COLON] = ACTIONS(1700), + [anon_sym_POUND] = ACTIONS(1702), + [anon_sym_const] = ACTIONS(1704), + [anon_sym_default] = ACTIONS(1706), + [anon_sym_gen] = ACTIONS(1706), + [anon_sym_union] = ACTIONS(1706), + [anon_sym_ref] = ACTIONS(1708), + [sym_mutable_specifier] = ACTIONS(1710), + [sym_integer_literal] = ACTIONS(1712), + [aux_sym_string_literal_token1] = ACTIONS(1714), + [sym_char_literal] = ACTIONS(1712), + [anon_sym_true] = ACTIONS(1716), + [anon_sym_false] = ACTIONS(1716), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1718), + [sym_super] = ACTIONS(1718), + [sym_crate] = ACTIONS(1718), + [sym_metavariable] = ACTIONS(1720), + [sym__raw_string_literal_start] = ACTIONS(1722), + [sym_float_literal] = ACTIONS(1712), }, [STATE(794)] = { - [sym_attribute_item] = STATE(1254), - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym_visibility_modifier] = STATE(944), - [sym__type] = STATE(3026), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_bracketed_type] = STATE(3756), + [sym_generic_type] = STATE(3622), + [sym_generic_type_with_turbofish] = STATE(3514), + [sym_macro_invocation] = STATE(2197), + [sym_scoped_identifier] = STATE(2056), + [sym_scoped_type_identifier] = STATE(2926), + [sym_const_block] = STATE(2197), + [sym_closure_expression] = STATE(3473), + [sym_closure_parameters] = STATE(221), + [sym__pattern] = STATE(3188), + [sym_generic_pattern] = STATE(2197), + [sym_tuple_pattern] = STATE(2197), + [sym_slice_pattern] = STATE(2197), + [sym_tuple_struct_pattern] = STATE(2197), + [sym_struct_pattern] = STATE(2197), + [sym_remaining_field_pattern] = STATE(2197), + [sym_mut_pattern] = STATE(2197), + [sym_range_pattern] = STATE(2197), + [sym_ref_pattern] = STATE(2197), + [sym_captured_pattern] = STATE(2197), + [sym_reference_pattern] = STATE(2197), + [sym_or_pattern] = STATE(2197), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2129), + [sym_string_literal] = STATE(2129), + [sym_raw_string_literal] = STATE(2129), + [sym_boolean_literal] = STATE(2129), [sym_line_comment] = STATE(794), [sym_block_comment] = STATE(794), - [aux_sym_enum_variant_list_repeat1] = STATE(797), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_RPAREN] = ACTIONS(3098), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_POUND] = ACTIONS(3068), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_pub] = ACTIONS(3086), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(3088), - [sym_metavariable] = ACTIONS(1647), + [sym_identifier] = ACTIONS(1730), + [anon_sym_LPAREN] = ACTIONS(1732), + [anon_sym_LBRACK] = ACTIONS(1736), + [anon_sym_u8] = ACTIONS(1738), + [anon_sym_i8] = ACTIONS(1738), + [anon_sym_u16] = ACTIONS(1738), + [anon_sym_i16] = ACTIONS(1738), + [anon_sym_u32] = ACTIONS(1738), + [anon_sym_i32] = ACTIONS(1738), + [anon_sym_u64] = ACTIONS(1738), + [anon_sym_i64] = ACTIONS(1738), + [anon_sym_u128] = ACTIONS(1738), + [anon_sym_i128] = ACTIONS(1738), + [anon_sym_isize] = ACTIONS(1738), + [anon_sym_usize] = ACTIONS(1738), + [anon_sym_f32] = ACTIONS(1738), + [anon_sym_f64] = ACTIONS(1738), + [anon_sym_bool] = ACTIONS(1738), + [anon_sym_str] = ACTIONS(1738), + [anon_sym_char] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1064), + [anon_sym_AMP] = ACTIONS(1740), + [anon_sym_PIPE] = ACTIONS(1390), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1392), + [anon_sym_DOT_DOT] = ACTIONS(1074), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1078), + [anon_sym_COLON_COLON] = ACTIONS(1744), + [anon_sym_async] = ACTIONS(1746), + [anon_sym_const] = ACTIONS(1748), + [anon_sym_default] = ACTIONS(1750), + [anon_sym_gen] = ACTIONS(1750), + [anon_sym_static] = ACTIONS(1398), + [anon_sym_union] = ACTIONS(1750), + [anon_sym_ref] = ACTIONS(1106), + [sym_mutable_specifier] = ACTIONS(1400), + [anon_sym_move] = ACTIONS(1402), + [sym_integer_literal] = ACTIONS(1112), + [aux_sym_string_literal_token1] = ACTIONS(1114), + [sym_char_literal] = ACTIONS(1112), + [anon_sym_true] = ACTIONS(1116), + [anon_sym_false] = ACTIONS(1116), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1752), + [sym_super] = ACTIONS(1752), + [sym_crate] = ACTIONS(1752), + [sym_metavariable] = ACTIONS(1754), + [sym__raw_string_literal_start] = ACTIONS(1124), + [sym_float_literal] = ACTIONS(1112), }, [STATE(795)] = { - [sym_attribute_item] = STATE(1254), - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym_visibility_modifier] = STATE(944), - [sym__type] = STATE(3026), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_attribute_item] = STATE(1314), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym_visibility_modifier] = STATE(1011), + [sym__type] = STATE(2657), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(3823), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2044), [sym_line_comment] = STATE(795), [sym_block_comment] = STATE(795), - [aux_sym_enum_variant_list_repeat1] = STATE(797), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_RPAREN] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), + [aux_sym_enum_variant_list_repeat1] = STATE(803), + [sym_identifier] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_RPAREN] = ACTIONS(3104), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(3106), [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_POUND] = ACTIONS(3068), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_pub] = ACTIONS(3086), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(3088), - [sym_metavariable] = ACTIONS(1647), + [anon_sym_COMMA] = ACTIONS(3108), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_POUND] = ACTIONS(3094), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_pub] = ACTIONS(3112), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1108), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(3114), + [sym_metavariable] = ACTIONS(1652), }, [STATE(796)] = { - [sym_bracketed_type] = STATE(3674), - [sym_generic_type] = STATE(3711), - [sym_generic_type_with_turbofish] = STATE(3231), - [sym_macro_invocation] = STATE(2221), - [sym_scoped_identifier] = STATE(2035), - [sym_scoped_type_identifier] = STATE(3055), - [sym_const_block] = STATE(2221), - [sym__pattern] = STATE(2708), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), + [sym_attribute_item] = STATE(1314), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym_visibility_modifier] = STATE(967), + [sym__type] = STATE(3205), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(3823), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2044), [sym_line_comment] = STATE(796), [sym_block_comment] = STATE(796), - [sym_identifier] = ACTIONS(1725), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_RPAREN] = ACTIONS(3102), - [anon_sym_LBRACK] = ACTIONS(1731), - [anon_sym_u8] = ACTIONS(1733), - [anon_sym_i8] = ACTIONS(1733), - [anon_sym_u16] = ACTIONS(1733), - [anon_sym_i16] = ACTIONS(1733), - [anon_sym_u32] = ACTIONS(1733), - [anon_sym_i32] = ACTIONS(1733), - [anon_sym_u64] = ACTIONS(1733), - [anon_sym_i64] = ACTIONS(1733), - [anon_sym_u128] = ACTIONS(1733), - [anon_sym_i128] = ACTIONS(1733), - [anon_sym_isize] = ACTIONS(1733), - [anon_sym_usize] = ACTIONS(1733), - [anon_sym_f32] = ACTIONS(1733), - [anon_sym_f64] = ACTIONS(1733), - [anon_sym_bool] = ACTIONS(1733), - [anon_sym_str] = ACTIONS(1733), - [anon_sym_char] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_AMP] = ACTIONS(1735), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1417), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COMMA] = ACTIONS(3104), - [anon_sym_COLON_COLON] = ACTIONS(1739), - [anon_sym_const] = ACTIONS(1743), - [anon_sym_default] = ACTIONS(1745), - [anon_sym_gen] = ACTIONS(1745), - [anon_sym_union] = ACTIONS(1745), - [anon_sym_ref] = ACTIONS(1159), - [sym_mutable_specifier] = ACTIONS(1425), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1747), - [sym_super] = ACTIONS(1747), - [sym_crate] = ACTIONS(1747), - [sym_metavariable] = ACTIONS(1749), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), + [aux_sym_enum_variant_list_repeat1] = STATE(804), + [sym_identifier] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_RPAREN] = ACTIONS(3116), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(3106), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_POUND] = ACTIONS(3094), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_pub] = ACTIONS(3112), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1108), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(3114), + [sym_metavariable] = ACTIONS(1652), }, [STATE(797)] = { - [sym_attribute_item] = STATE(1254), - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym_visibility_modifier] = STATE(904), - [sym__type] = STATE(3063), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_attribute_item] = STATE(1314), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym_visibility_modifier] = STATE(967), + [sym__type] = STATE(3205), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(3823), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2044), [sym_line_comment] = STATE(797), [sym_block_comment] = STATE(797), - [aux_sym_enum_variant_list_repeat1] = STATE(1093), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_POUND] = ACTIONS(3068), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_pub] = ACTIONS(3086), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(3088), - [sym_metavariable] = ACTIONS(1647), + [aux_sym_enum_variant_list_repeat1] = STATE(804), + [sym_identifier] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_RPAREN] = ACTIONS(3118), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(3106), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_POUND] = ACTIONS(3094), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_pub] = ACTIONS(3112), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1108), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(3114), + [sym_metavariable] = ACTIONS(1652), }, [STATE(798)] = { - [sym_bracketed_type] = STATE(3674), - [sym_generic_type] = STATE(3711), - [sym_generic_type_with_turbofish] = STATE(3231), - [sym_macro_invocation] = STATE(2221), - [sym_scoped_identifier] = STATE(2035), - [sym_scoped_type_identifier] = STATE(3055), - [sym_const_block] = STATE(2221), - [sym__pattern] = STATE(2707), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), + [sym_attribute_item] = STATE(1314), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym_visibility_modifier] = STATE(967), + [sym__type] = STATE(3205), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(3823), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2044), [sym_line_comment] = STATE(798), [sym_block_comment] = STATE(798), - [sym_identifier] = ACTIONS(1725), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_RPAREN] = ACTIONS(3106), - [anon_sym_LBRACK] = ACTIONS(1731), - [anon_sym_u8] = ACTIONS(1733), - [anon_sym_i8] = ACTIONS(1733), - [anon_sym_u16] = ACTIONS(1733), - [anon_sym_i16] = ACTIONS(1733), - [anon_sym_u32] = ACTIONS(1733), - [anon_sym_i32] = ACTIONS(1733), - [anon_sym_u64] = ACTIONS(1733), - [anon_sym_i64] = ACTIONS(1733), - [anon_sym_u128] = ACTIONS(1733), - [anon_sym_i128] = ACTIONS(1733), - [anon_sym_isize] = ACTIONS(1733), - [anon_sym_usize] = ACTIONS(1733), - [anon_sym_f32] = ACTIONS(1733), - [anon_sym_f64] = ACTIONS(1733), - [anon_sym_bool] = ACTIONS(1733), - [anon_sym_str] = ACTIONS(1733), - [anon_sym_char] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_AMP] = ACTIONS(1735), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1417), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COMMA] = ACTIONS(3108), - [anon_sym_COLON_COLON] = ACTIONS(1739), - [anon_sym_const] = ACTIONS(1743), - [anon_sym_default] = ACTIONS(1745), - [anon_sym_gen] = ACTIONS(1745), - [anon_sym_union] = ACTIONS(1745), - [anon_sym_ref] = ACTIONS(1159), - [sym_mutable_specifier] = ACTIONS(1425), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1747), - [sym_super] = ACTIONS(1747), - [sym_crate] = ACTIONS(1747), - [sym_metavariable] = ACTIONS(1749), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), + [aux_sym_enum_variant_list_repeat1] = STATE(804), + [sym_identifier] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_RPAREN] = ACTIONS(3120), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(3106), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_POUND] = ACTIONS(3094), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_pub] = ACTIONS(3112), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1108), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(3114), + [sym_metavariable] = ACTIONS(1652), }, [STATE(799)] = { - [sym_bracketed_type] = STATE(3674), - [sym_generic_type] = STATE(3711), - [sym_generic_type_with_turbofish] = STATE(3231), - [sym_macro_invocation] = STATE(2221), - [sym_scoped_identifier] = STATE(2035), - [sym_scoped_type_identifier] = STATE(3055), - [sym_const_block] = STATE(2221), - [sym__pattern] = STATE(2776), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), + [sym_attribute_item] = STATE(1314), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym_visibility_modifier] = STATE(967), + [sym__type] = STATE(3205), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(3823), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2044), [sym_line_comment] = STATE(799), [sym_block_comment] = STATE(799), - [sym_identifier] = ACTIONS(1725), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_RPAREN] = ACTIONS(3110), - [anon_sym_LBRACK] = ACTIONS(1731), - [anon_sym_u8] = ACTIONS(1733), - [anon_sym_i8] = ACTIONS(1733), - [anon_sym_u16] = ACTIONS(1733), - [anon_sym_i16] = ACTIONS(1733), - [anon_sym_u32] = ACTIONS(1733), - [anon_sym_i32] = ACTIONS(1733), - [anon_sym_u64] = ACTIONS(1733), - [anon_sym_i64] = ACTIONS(1733), - [anon_sym_u128] = ACTIONS(1733), - [anon_sym_i128] = ACTIONS(1733), - [anon_sym_isize] = ACTIONS(1733), - [anon_sym_usize] = ACTIONS(1733), - [anon_sym_f32] = ACTIONS(1733), - [anon_sym_f64] = ACTIONS(1733), - [anon_sym_bool] = ACTIONS(1733), - [anon_sym_str] = ACTIONS(1733), - [anon_sym_char] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_AMP] = ACTIONS(1735), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1417), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COMMA] = ACTIONS(3112), - [anon_sym_COLON_COLON] = ACTIONS(1739), - [anon_sym_const] = ACTIONS(1743), - [anon_sym_default] = ACTIONS(1745), - [anon_sym_gen] = ACTIONS(1745), - [anon_sym_union] = ACTIONS(1745), - [anon_sym_ref] = ACTIONS(1159), - [sym_mutable_specifier] = ACTIONS(1425), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1747), - [sym_super] = ACTIONS(1747), - [sym_crate] = ACTIONS(1747), - [sym_metavariable] = ACTIONS(1749), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), + [aux_sym_enum_variant_list_repeat1] = STATE(804), + [sym_identifier] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_RPAREN] = ACTIONS(3122), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(3106), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_POUND] = ACTIONS(3094), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_pub] = ACTIONS(3112), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1108), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(3114), + [sym_metavariable] = ACTIONS(1652), }, [STATE(800)] = { - [sym_attribute_item] = STATE(1254), - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym_visibility_modifier] = STATE(944), - [sym__type] = STATE(3026), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_attribute_item] = STATE(1314), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym_visibility_modifier] = STATE(967), + [sym__type] = STATE(3205), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(3823), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2044), [sym_line_comment] = STATE(800), [sym_block_comment] = STATE(800), - [aux_sym_enum_variant_list_repeat1] = STATE(797), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_POUND] = ACTIONS(3068), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_pub] = ACTIONS(3086), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(3088), - [sym_metavariable] = ACTIONS(1647), + [aux_sym_enum_variant_list_repeat1] = STATE(804), + [sym_identifier] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_RPAREN] = ACTIONS(3124), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(3106), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_POUND] = ACTIONS(3094), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_pub] = ACTIONS(3112), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1108), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(3114), + [sym_metavariable] = ACTIONS(1652), }, [STATE(801)] = { - [sym_bracketed_type] = STATE(3674), - [sym_generic_type] = STATE(3711), - [sym_generic_type_with_turbofish] = STATE(3231), - [sym_macro_invocation] = STATE(2221), - [sym_scoped_identifier] = STATE(2035), - [sym_scoped_type_identifier] = STATE(3055), - [sym_const_block] = STATE(2221), - [sym__pattern] = STATE(2626), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), + [sym_attribute_item] = STATE(1314), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym_visibility_modifier] = STATE(967), + [sym__type] = STATE(3205), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(3823), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2044), [sym_line_comment] = STATE(801), [sym_block_comment] = STATE(801), - [sym_identifier] = ACTIONS(1725), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_RPAREN] = ACTIONS(3114), - [anon_sym_LBRACK] = ACTIONS(1731), - [anon_sym_u8] = ACTIONS(1733), - [anon_sym_i8] = ACTIONS(1733), - [anon_sym_u16] = ACTIONS(1733), - [anon_sym_i16] = ACTIONS(1733), - [anon_sym_u32] = ACTIONS(1733), - [anon_sym_i32] = ACTIONS(1733), - [anon_sym_u64] = ACTIONS(1733), - [anon_sym_i64] = ACTIONS(1733), - [anon_sym_u128] = ACTIONS(1733), - [anon_sym_i128] = ACTIONS(1733), - [anon_sym_isize] = ACTIONS(1733), - [anon_sym_usize] = ACTIONS(1733), - [anon_sym_f32] = ACTIONS(1733), - [anon_sym_f64] = ACTIONS(1733), - [anon_sym_bool] = ACTIONS(1733), - [anon_sym_str] = ACTIONS(1733), - [anon_sym_char] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_AMP] = ACTIONS(1735), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1417), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COMMA] = ACTIONS(3116), - [anon_sym_COLON_COLON] = ACTIONS(1739), - [anon_sym_const] = ACTIONS(1743), - [anon_sym_default] = ACTIONS(1745), - [anon_sym_gen] = ACTIONS(1745), - [anon_sym_union] = ACTIONS(1745), - [anon_sym_ref] = ACTIONS(1159), - [sym_mutable_specifier] = ACTIONS(1425), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1747), - [sym_super] = ACTIONS(1747), - [sym_crate] = ACTIONS(1747), - [sym_metavariable] = ACTIONS(1749), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), + [aux_sym_enum_variant_list_repeat1] = STATE(804), + [sym_identifier] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_RPAREN] = ACTIONS(3126), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(3106), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_POUND] = ACTIONS(3094), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_pub] = ACTIONS(3112), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1108), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(3114), + [sym_metavariable] = ACTIONS(1652), }, [STATE(802)] = { - [sym_attribute_item] = STATE(1254), - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym_visibility_modifier] = STATE(1012), - [sym__type] = STATE(2681), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_attribute_item] = STATE(1314), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym_visibility_modifier] = STATE(967), + [sym__type] = STATE(3205), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(3823), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2044), [sym_line_comment] = STATE(802), [sym_block_comment] = STATE(802), - [aux_sym_enum_variant_list_repeat1] = STATE(1093), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_POUND] = ACTIONS(3068), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_pub] = ACTIONS(3086), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(3088), - [sym_metavariable] = ACTIONS(1647), + [aux_sym_enum_variant_list_repeat1] = STATE(804), + [sym_identifier] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(3106), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_POUND] = ACTIONS(3094), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_pub] = ACTIONS(3112), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1108), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(3114), + [sym_metavariable] = ACTIONS(1652), }, [STATE(803)] = { - [sym_bracketed_type] = STATE(3674), - [sym_generic_type] = STATE(3711), - [sym_generic_type_with_turbofish] = STATE(3231), - [sym_macro_invocation] = STATE(2221), - [sym_scoped_identifier] = STATE(2035), - [sym_scoped_type_identifier] = STATE(3055), - [sym_const_block] = STATE(2221), - [sym__pattern] = STATE(2828), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), + [sym_attribute_item] = STATE(1314), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym_visibility_modifier] = STATE(930), + [sym__type] = STATE(2713), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(3823), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2044), [sym_line_comment] = STATE(803), [sym_block_comment] = STATE(803), - [sym_identifier] = ACTIONS(1725), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_LBRACK] = ACTIONS(1731), - [anon_sym_RBRACK] = ACTIONS(1561), - [anon_sym_u8] = ACTIONS(1733), - [anon_sym_i8] = ACTIONS(1733), - [anon_sym_u16] = ACTIONS(1733), - [anon_sym_i16] = ACTIONS(1733), - [anon_sym_u32] = ACTIONS(1733), - [anon_sym_i32] = ACTIONS(1733), - [anon_sym_u64] = ACTIONS(1733), - [anon_sym_i64] = ACTIONS(1733), - [anon_sym_u128] = ACTIONS(1733), - [anon_sym_i128] = ACTIONS(1733), - [anon_sym_isize] = ACTIONS(1733), - [anon_sym_usize] = ACTIONS(1733), - [anon_sym_f32] = ACTIONS(1733), - [anon_sym_f64] = ACTIONS(1733), - [anon_sym_bool] = ACTIONS(1733), - [anon_sym_str] = ACTIONS(1733), - [anon_sym_char] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_AMP] = ACTIONS(1735), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1417), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COMMA] = ACTIONS(1567), - [anon_sym_COLON_COLON] = ACTIONS(1739), - [anon_sym_const] = ACTIONS(1743), - [anon_sym_default] = ACTIONS(1745), - [anon_sym_gen] = ACTIONS(1745), - [anon_sym_union] = ACTIONS(1745), - [anon_sym_ref] = ACTIONS(1159), - [sym_mutable_specifier] = ACTIONS(1425), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1747), - [sym_super] = ACTIONS(1747), - [sym_crate] = ACTIONS(1747), - [sym_metavariable] = ACTIONS(1749), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), + [aux_sym_enum_variant_list_repeat1] = STATE(1097), + [sym_identifier] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(3106), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_POUND] = ACTIONS(3094), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_pub] = ACTIONS(3112), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1108), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(3114), + [sym_metavariable] = ACTIONS(1652), }, [STATE(804)] = { - [sym_bracketed_type] = STATE(3674), - [sym_generic_type] = STATE(3711), - [sym_generic_type_with_turbofish] = STATE(3231), - [sym_macro_invocation] = STATE(2221), - [sym_scoped_identifier] = STATE(2035), - [sym_scoped_type_identifier] = STATE(3055), - [sym_const_block] = STATE(2221), - [sym__pattern] = STATE(2671), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), + [sym_attribute_item] = STATE(1314), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym_visibility_modifier] = STATE(1009), + [sym__type] = STATE(3080), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(3823), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2044), [sym_line_comment] = STATE(804), [sym_block_comment] = STATE(804), - [sym_identifier] = ACTIONS(1725), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_LBRACK] = ACTIONS(1731), - [anon_sym_RBRACK] = ACTIONS(3118), - [anon_sym_u8] = ACTIONS(1733), - [anon_sym_i8] = ACTIONS(1733), - [anon_sym_u16] = ACTIONS(1733), - [anon_sym_i16] = ACTIONS(1733), - [anon_sym_u32] = ACTIONS(1733), - [anon_sym_i32] = ACTIONS(1733), - [anon_sym_u64] = ACTIONS(1733), - [anon_sym_i64] = ACTIONS(1733), - [anon_sym_u128] = ACTIONS(1733), - [anon_sym_i128] = ACTIONS(1733), - [anon_sym_isize] = ACTIONS(1733), - [anon_sym_usize] = ACTIONS(1733), - [anon_sym_f32] = ACTIONS(1733), - [anon_sym_f64] = ACTIONS(1733), - [anon_sym_bool] = ACTIONS(1733), - [anon_sym_str] = ACTIONS(1733), - [anon_sym_char] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_AMP] = ACTIONS(1735), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1417), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COMMA] = ACTIONS(3120), - [anon_sym_COLON_COLON] = ACTIONS(1739), - [anon_sym_const] = ACTIONS(1743), - [anon_sym_default] = ACTIONS(1745), - [anon_sym_gen] = ACTIONS(1745), - [anon_sym_union] = ACTIONS(1745), - [anon_sym_ref] = ACTIONS(1159), - [sym_mutable_specifier] = ACTIONS(1425), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1747), - [sym_super] = ACTIONS(1747), - [sym_crate] = ACTIONS(1747), - [sym_metavariable] = ACTIONS(1749), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), + [aux_sym_enum_variant_list_repeat1] = STATE(1097), + [sym_identifier] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(3106), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_POUND] = ACTIONS(3094), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_pub] = ACTIONS(3112), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1108), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(3114), + [sym_metavariable] = ACTIONS(1652), }, [STATE(805)] = { - [sym_bracketed_type] = STATE(3674), - [sym_generic_type] = STATE(3711), - [sym_generic_type_with_turbofish] = STATE(3231), - [sym_macro_invocation] = STATE(2221), - [sym_scoped_identifier] = STATE(2035), - [sym_scoped_type_identifier] = STATE(3055), - [sym_const_block] = STATE(2221), - [sym__pattern] = STATE(2656), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), + [sym_bracketed_type] = STATE(3756), + [sym_generic_type] = STATE(3622), + [sym_generic_type_with_turbofish] = STATE(3514), + [sym_macro_invocation] = STATE(2197), + [sym_scoped_identifier] = STATE(2056), + [sym_scoped_type_identifier] = STATE(2926), + [sym_const_block] = STATE(2197), + [sym__pattern] = STATE(2854), + [sym_generic_pattern] = STATE(2197), + [sym_tuple_pattern] = STATE(2197), + [sym_slice_pattern] = STATE(2197), + [sym_tuple_struct_pattern] = STATE(2197), + [sym_struct_pattern] = STATE(2197), + [sym_remaining_field_pattern] = STATE(2197), + [sym_mut_pattern] = STATE(2197), + [sym_range_pattern] = STATE(2197), + [sym_ref_pattern] = STATE(2197), + [sym_captured_pattern] = STATE(2197), + [sym_reference_pattern] = STATE(2197), + [sym_or_pattern] = STATE(2197), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2129), + [sym_string_literal] = STATE(2129), + [sym_raw_string_literal] = STATE(2129), + [sym_boolean_literal] = STATE(2129), [sym_line_comment] = STATE(805), [sym_block_comment] = STATE(805), - [sym_identifier] = ACTIONS(1725), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_LBRACK] = ACTIONS(1731), - [anon_sym_RBRACK] = ACTIONS(3122), - [anon_sym_u8] = ACTIONS(1733), - [anon_sym_i8] = ACTIONS(1733), - [anon_sym_u16] = ACTIONS(1733), - [anon_sym_i16] = ACTIONS(1733), - [anon_sym_u32] = ACTIONS(1733), - [anon_sym_i32] = ACTIONS(1733), - [anon_sym_u64] = ACTIONS(1733), - [anon_sym_i64] = ACTIONS(1733), - [anon_sym_u128] = ACTIONS(1733), - [anon_sym_i128] = ACTIONS(1733), - [anon_sym_isize] = ACTIONS(1733), - [anon_sym_usize] = ACTIONS(1733), - [anon_sym_f32] = ACTIONS(1733), - [anon_sym_f64] = ACTIONS(1733), - [anon_sym_bool] = ACTIONS(1733), - [anon_sym_str] = ACTIONS(1733), - [anon_sym_char] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_AMP] = ACTIONS(1735), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1417), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COLON_COLON] = ACTIONS(1739), - [anon_sym_const] = ACTIONS(1743), - [anon_sym_default] = ACTIONS(1745), - [anon_sym_gen] = ACTIONS(1745), - [anon_sym_union] = ACTIONS(1745), - [anon_sym_ref] = ACTIONS(1159), - [sym_mutable_specifier] = ACTIONS(1425), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1747), - [sym_super] = ACTIONS(1747), - [sym_crate] = ACTIONS(1747), - [sym_metavariable] = ACTIONS(1749), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), + [sym_identifier] = ACTIONS(1730), + [anon_sym_LPAREN] = ACTIONS(1732), + [anon_sym_RPAREN] = ACTIONS(3128), + [anon_sym_LBRACK] = ACTIONS(1736), + [anon_sym_u8] = ACTIONS(1738), + [anon_sym_i8] = ACTIONS(1738), + [anon_sym_u16] = ACTIONS(1738), + [anon_sym_i16] = ACTIONS(1738), + [anon_sym_u32] = ACTIONS(1738), + [anon_sym_i32] = ACTIONS(1738), + [anon_sym_u64] = ACTIONS(1738), + [anon_sym_i64] = ACTIONS(1738), + [anon_sym_u128] = ACTIONS(1738), + [anon_sym_i128] = ACTIONS(1738), + [anon_sym_isize] = ACTIONS(1738), + [anon_sym_usize] = ACTIONS(1738), + [anon_sym_f32] = ACTIONS(1738), + [anon_sym_f64] = ACTIONS(1738), + [anon_sym_bool] = ACTIONS(1738), + [anon_sym_str] = ACTIONS(1738), + [anon_sym_char] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1064), + [anon_sym_AMP] = ACTIONS(1740), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1392), + [anon_sym_DOT_DOT] = ACTIONS(1074), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1078), + [anon_sym_COMMA] = ACTIONS(3130), + [anon_sym_COLON_COLON] = ACTIONS(1744), + [anon_sym_const] = ACTIONS(1748), + [anon_sym_default] = ACTIONS(1750), + [anon_sym_gen] = ACTIONS(1750), + [anon_sym_union] = ACTIONS(1750), + [anon_sym_ref] = ACTIONS(1106), + [sym_mutable_specifier] = ACTIONS(1400), + [sym_integer_literal] = ACTIONS(1112), + [aux_sym_string_literal_token1] = ACTIONS(1114), + [sym_char_literal] = ACTIONS(1112), + [anon_sym_true] = ACTIONS(1116), + [anon_sym_false] = ACTIONS(1116), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1752), + [sym_super] = ACTIONS(1752), + [sym_crate] = ACTIONS(1752), + [sym_metavariable] = ACTIONS(1754), + [sym__raw_string_literal_start] = ACTIONS(1124), + [sym_float_literal] = ACTIONS(1112), }, [STATE(806)] = { - [sym_bracketed_type] = STATE(3674), - [sym_generic_type] = STATE(3711), - [sym_generic_type_with_turbofish] = STATE(3231), - [sym_macro_invocation] = STATE(2221), - [sym_scoped_identifier] = STATE(2035), - [sym_scoped_type_identifier] = STATE(3055), - [sym_const_block] = STATE(2221), - [sym__pattern] = STATE(2656), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), + [sym_bracketed_type] = STATE(3756), + [sym_generic_type] = STATE(3622), + [sym_generic_type_with_turbofish] = STATE(3514), + [sym_macro_invocation] = STATE(2197), + [sym_scoped_identifier] = STATE(2056), + [sym_scoped_type_identifier] = STATE(2926), + [sym_const_block] = STATE(2197), + [sym__pattern] = STATE(2836), + [sym_generic_pattern] = STATE(2197), + [sym_tuple_pattern] = STATE(2197), + [sym_slice_pattern] = STATE(2197), + [sym_tuple_struct_pattern] = STATE(2197), + [sym_struct_pattern] = STATE(2197), + [sym_remaining_field_pattern] = STATE(2197), + [sym_mut_pattern] = STATE(2197), + [sym_range_pattern] = STATE(2197), + [sym_ref_pattern] = STATE(2197), + [sym_captured_pattern] = STATE(2197), + [sym_reference_pattern] = STATE(2197), + [sym_or_pattern] = STATE(2197), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2129), + [sym_string_literal] = STATE(2129), + [sym_raw_string_literal] = STATE(2129), + [sym_boolean_literal] = STATE(2129), [sym_line_comment] = STATE(806), [sym_block_comment] = STATE(806), - [sym_identifier] = ACTIONS(1725), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_RPAREN] = ACTIONS(3124), - [anon_sym_LBRACK] = ACTIONS(1731), - [anon_sym_u8] = ACTIONS(1733), - [anon_sym_i8] = ACTIONS(1733), - [anon_sym_u16] = ACTIONS(1733), - [anon_sym_i16] = ACTIONS(1733), - [anon_sym_u32] = ACTIONS(1733), - [anon_sym_i32] = ACTIONS(1733), - [anon_sym_u64] = ACTIONS(1733), - [anon_sym_i64] = ACTIONS(1733), - [anon_sym_u128] = ACTIONS(1733), - [anon_sym_i128] = ACTIONS(1733), - [anon_sym_isize] = ACTIONS(1733), - [anon_sym_usize] = ACTIONS(1733), - [anon_sym_f32] = ACTIONS(1733), - [anon_sym_f64] = ACTIONS(1733), - [anon_sym_bool] = ACTIONS(1733), - [anon_sym_str] = ACTIONS(1733), - [anon_sym_char] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_AMP] = ACTIONS(1735), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1417), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COLON_COLON] = ACTIONS(1739), - [anon_sym_const] = ACTIONS(1743), - [anon_sym_default] = ACTIONS(1745), - [anon_sym_gen] = ACTIONS(1745), - [anon_sym_union] = ACTIONS(1745), - [anon_sym_ref] = ACTIONS(1159), - [sym_mutable_specifier] = ACTIONS(1425), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1747), - [sym_super] = ACTIONS(1747), - [sym_crate] = ACTIONS(1747), - [sym_metavariable] = ACTIONS(1749), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), + [sym_identifier] = ACTIONS(1730), + [anon_sym_LPAREN] = ACTIONS(1732), + [anon_sym_RPAREN] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(1736), + [anon_sym_u8] = ACTIONS(1738), + [anon_sym_i8] = ACTIONS(1738), + [anon_sym_u16] = ACTIONS(1738), + [anon_sym_i16] = ACTIONS(1738), + [anon_sym_u32] = ACTIONS(1738), + [anon_sym_i32] = ACTIONS(1738), + [anon_sym_u64] = ACTIONS(1738), + [anon_sym_i64] = ACTIONS(1738), + [anon_sym_u128] = ACTIONS(1738), + [anon_sym_i128] = ACTIONS(1738), + [anon_sym_isize] = ACTIONS(1738), + [anon_sym_usize] = ACTIONS(1738), + [anon_sym_f32] = ACTIONS(1738), + [anon_sym_f64] = ACTIONS(1738), + [anon_sym_bool] = ACTIONS(1738), + [anon_sym_str] = ACTIONS(1738), + [anon_sym_char] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1064), + [anon_sym_AMP] = ACTIONS(1740), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1392), + [anon_sym_DOT_DOT] = ACTIONS(1074), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1078), + [anon_sym_COMMA] = ACTIONS(3134), + [anon_sym_COLON_COLON] = ACTIONS(1744), + [anon_sym_const] = ACTIONS(1748), + [anon_sym_default] = ACTIONS(1750), + [anon_sym_gen] = ACTIONS(1750), + [anon_sym_union] = ACTIONS(1750), + [anon_sym_ref] = ACTIONS(1106), + [sym_mutable_specifier] = ACTIONS(1400), + [sym_integer_literal] = ACTIONS(1112), + [aux_sym_string_literal_token1] = ACTIONS(1114), + [sym_char_literal] = ACTIONS(1112), + [anon_sym_true] = ACTIONS(1116), + [anon_sym_false] = ACTIONS(1116), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1752), + [sym_super] = ACTIONS(1752), + [sym_crate] = ACTIONS(1752), + [sym_metavariable] = ACTIONS(1754), + [sym__raw_string_literal_start] = ACTIONS(1124), + [sym_float_literal] = ACTIONS(1112), }, [STATE(807)] = { - [sym_bracketed_type] = STATE(3674), - [sym_generic_type] = STATE(3711), - [sym_generic_type_with_turbofish] = STATE(3231), - [sym_macro_invocation] = STATE(2221), - [sym_scoped_identifier] = STATE(2035), - [sym_scoped_type_identifier] = STATE(3055), - [sym_const_block] = STATE(2221), - [sym__pattern] = STATE(2656), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), + [sym_bracketed_type] = STATE(3756), + [sym_generic_type] = STATE(3622), + [sym_generic_type_with_turbofish] = STATE(3514), + [sym_macro_invocation] = STATE(2197), + [sym_scoped_identifier] = STATE(2056), + [sym_scoped_type_identifier] = STATE(2926), + [sym_const_block] = STATE(2197), + [sym__pattern] = STATE(2692), + [sym_generic_pattern] = STATE(2197), + [sym_tuple_pattern] = STATE(2197), + [sym_slice_pattern] = STATE(2197), + [sym_tuple_struct_pattern] = STATE(2197), + [sym_struct_pattern] = STATE(2197), + [sym_remaining_field_pattern] = STATE(2197), + [sym_mut_pattern] = STATE(2197), + [sym_range_pattern] = STATE(2197), + [sym_ref_pattern] = STATE(2197), + [sym_captured_pattern] = STATE(2197), + [sym_reference_pattern] = STATE(2197), + [sym_or_pattern] = STATE(2197), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2129), + [sym_string_literal] = STATE(2129), + [sym_raw_string_literal] = STATE(2129), + [sym_boolean_literal] = STATE(2129), [sym_line_comment] = STATE(807), [sym_block_comment] = STATE(807), - [sym_identifier] = ACTIONS(1725), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_RPAREN] = ACTIONS(3126), - [anon_sym_LBRACK] = ACTIONS(1731), - [anon_sym_u8] = ACTIONS(1733), - [anon_sym_i8] = ACTIONS(1733), - [anon_sym_u16] = ACTIONS(1733), - [anon_sym_i16] = ACTIONS(1733), - [anon_sym_u32] = ACTIONS(1733), - [anon_sym_i32] = ACTIONS(1733), - [anon_sym_u64] = ACTIONS(1733), - [anon_sym_i64] = ACTIONS(1733), - [anon_sym_u128] = ACTIONS(1733), - [anon_sym_i128] = ACTIONS(1733), - [anon_sym_isize] = ACTIONS(1733), - [anon_sym_usize] = ACTIONS(1733), - [anon_sym_f32] = ACTIONS(1733), - [anon_sym_f64] = ACTIONS(1733), - [anon_sym_bool] = ACTIONS(1733), - [anon_sym_str] = ACTIONS(1733), - [anon_sym_char] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_AMP] = ACTIONS(1735), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1417), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COLON_COLON] = ACTIONS(1739), - [anon_sym_const] = ACTIONS(1743), - [anon_sym_default] = ACTIONS(1745), - [anon_sym_gen] = ACTIONS(1745), - [anon_sym_union] = ACTIONS(1745), - [anon_sym_ref] = ACTIONS(1159), - [sym_mutable_specifier] = ACTIONS(1425), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1747), - [sym_super] = ACTIONS(1747), - [sym_crate] = ACTIONS(1747), - [sym_metavariable] = ACTIONS(1749), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), + [sym_identifier] = ACTIONS(1730), + [anon_sym_LPAREN] = ACTIONS(1732), + [anon_sym_RPAREN] = ACTIONS(3136), + [anon_sym_LBRACK] = ACTIONS(1736), + [anon_sym_u8] = ACTIONS(1738), + [anon_sym_i8] = ACTIONS(1738), + [anon_sym_u16] = ACTIONS(1738), + [anon_sym_i16] = ACTIONS(1738), + [anon_sym_u32] = ACTIONS(1738), + [anon_sym_i32] = ACTIONS(1738), + [anon_sym_u64] = ACTIONS(1738), + [anon_sym_i64] = ACTIONS(1738), + [anon_sym_u128] = ACTIONS(1738), + [anon_sym_i128] = ACTIONS(1738), + [anon_sym_isize] = ACTIONS(1738), + [anon_sym_usize] = ACTIONS(1738), + [anon_sym_f32] = ACTIONS(1738), + [anon_sym_f64] = ACTIONS(1738), + [anon_sym_bool] = ACTIONS(1738), + [anon_sym_str] = ACTIONS(1738), + [anon_sym_char] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1064), + [anon_sym_AMP] = ACTIONS(1740), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1392), + [anon_sym_DOT_DOT] = ACTIONS(1074), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1078), + [anon_sym_COMMA] = ACTIONS(3138), + [anon_sym_COLON_COLON] = ACTIONS(1744), + [anon_sym_const] = ACTIONS(1748), + [anon_sym_default] = ACTIONS(1750), + [anon_sym_gen] = ACTIONS(1750), + [anon_sym_union] = ACTIONS(1750), + [anon_sym_ref] = ACTIONS(1106), + [sym_mutable_specifier] = ACTIONS(1400), + [sym_integer_literal] = ACTIONS(1112), + [aux_sym_string_literal_token1] = ACTIONS(1114), + [sym_char_literal] = ACTIONS(1112), + [anon_sym_true] = ACTIONS(1116), + [anon_sym_false] = ACTIONS(1116), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1752), + [sym_super] = ACTIONS(1752), + [sym_crate] = ACTIONS(1752), + [sym_metavariable] = ACTIONS(1754), + [sym__raw_string_literal_start] = ACTIONS(1124), + [sym_float_literal] = ACTIONS(1112), }, [STATE(808)] = { - [sym_bracketed_type] = STATE(3674), - [sym_generic_type] = STATE(3711), - [sym_generic_type_with_turbofish] = STATE(3231), - [sym_macro_invocation] = STATE(2221), - [sym_scoped_identifier] = STATE(2035), - [sym_scoped_type_identifier] = STATE(3055), - [sym_const_block] = STATE(2221), - [sym__pattern] = STATE(2656), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), + [sym_bracketed_type] = STATE(3756), + [sym_generic_type] = STATE(3622), + [sym_generic_type_with_turbofish] = STATE(3514), + [sym_macro_invocation] = STATE(2197), + [sym_scoped_identifier] = STATE(2056), + [sym_scoped_type_identifier] = STATE(2926), + [sym_const_block] = STATE(2197), + [sym__pattern] = STATE(2670), + [sym_generic_pattern] = STATE(2197), + [sym_tuple_pattern] = STATE(2197), + [sym_slice_pattern] = STATE(2197), + [sym_tuple_struct_pattern] = STATE(2197), + [sym_struct_pattern] = STATE(2197), + [sym_remaining_field_pattern] = STATE(2197), + [sym_mut_pattern] = STATE(2197), + [sym_range_pattern] = STATE(2197), + [sym_ref_pattern] = STATE(2197), + [sym_captured_pattern] = STATE(2197), + [sym_reference_pattern] = STATE(2197), + [sym_or_pattern] = STATE(2197), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2129), + [sym_string_literal] = STATE(2129), + [sym_raw_string_literal] = STATE(2129), + [sym_boolean_literal] = STATE(2129), [sym_line_comment] = STATE(808), [sym_block_comment] = STATE(808), - [sym_identifier] = ACTIONS(1725), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_RPAREN] = ACTIONS(3128), - [anon_sym_LBRACK] = ACTIONS(1731), - [anon_sym_u8] = ACTIONS(1733), - [anon_sym_i8] = ACTIONS(1733), - [anon_sym_u16] = ACTIONS(1733), - [anon_sym_i16] = ACTIONS(1733), - [anon_sym_u32] = ACTIONS(1733), - [anon_sym_i32] = ACTIONS(1733), - [anon_sym_u64] = ACTIONS(1733), - [anon_sym_i64] = ACTIONS(1733), - [anon_sym_u128] = ACTIONS(1733), - [anon_sym_i128] = ACTIONS(1733), - [anon_sym_isize] = ACTIONS(1733), - [anon_sym_usize] = ACTIONS(1733), - [anon_sym_f32] = ACTIONS(1733), - [anon_sym_f64] = ACTIONS(1733), - [anon_sym_bool] = ACTIONS(1733), - [anon_sym_str] = ACTIONS(1733), - [anon_sym_char] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_AMP] = ACTIONS(1735), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1417), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COLON_COLON] = ACTIONS(1739), - [anon_sym_const] = ACTIONS(1743), - [anon_sym_default] = ACTIONS(1745), - [anon_sym_gen] = ACTIONS(1745), - [anon_sym_union] = ACTIONS(1745), - [anon_sym_ref] = ACTIONS(1159), - [sym_mutable_specifier] = ACTIONS(1425), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1747), - [sym_super] = ACTIONS(1747), - [sym_crate] = ACTIONS(1747), - [sym_metavariable] = ACTIONS(1749), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), + [sym_identifier] = ACTIONS(1730), + [anon_sym_LPAREN] = ACTIONS(1732), + [anon_sym_LBRACK] = ACTIONS(1736), + [anon_sym_RBRACK] = ACTIONS(3140), + [anon_sym_u8] = ACTIONS(1738), + [anon_sym_i8] = ACTIONS(1738), + [anon_sym_u16] = ACTIONS(1738), + [anon_sym_i16] = ACTIONS(1738), + [anon_sym_u32] = ACTIONS(1738), + [anon_sym_i32] = ACTIONS(1738), + [anon_sym_u64] = ACTIONS(1738), + [anon_sym_i64] = ACTIONS(1738), + [anon_sym_u128] = ACTIONS(1738), + [anon_sym_i128] = ACTIONS(1738), + [anon_sym_isize] = ACTIONS(1738), + [anon_sym_usize] = ACTIONS(1738), + [anon_sym_f32] = ACTIONS(1738), + [anon_sym_f64] = ACTIONS(1738), + [anon_sym_bool] = ACTIONS(1738), + [anon_sym_str] = ACTIONS(1738), + [anon_sym_char] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1064), + [anon_sym_AMP] = ACTIONS(1740), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1392), + [anon_sym_DOT_DOT] = ACTIONS(1074), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1078), + [anon_sym_COMMA] = ACTIONS(3142), + [anon_sym_COLON_COLON] = ACTIONS(1744), + [anon_sym_const] = ACTIONS(1748), + [anon_sym_default] = ACTIONS(1750), + [anon_sym_gen] = ACTIONS(1750), + [anon_sym_union] = ACTIONS(1750), + [anon_sym_ref] = ACTIONS(1106), + [sym_mutable_specifier] = ACTIONS(1400), + [sym_integer_literal] = ACTIONS(1112), + [aux_sym_string_literal_token1] = ACTIONS(1114), + [sym_char_literal] = ACTIONS(1112), + [anon_sym_true] = ACTIONS(1116), + [anon_sym_false] = ACTIONS(1116), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1752), + [sym_super] = ACTIONS(1752), + [sym_crate] = ACTIONS(1752), + [sym_metavariable] = ACTIONS(1754), + [sym__raw_string_literal_start] = ACTIONS(1124), + [sym_float_literal] = ACTIONS(1112), }, [STATE(809)] = { - [sym_bracketed_type] = STATE(3674), - [sym_generic_type] = STATE(3711), - [sym_generic_type_with_turbofish] = STATE(3231), - [sym_macro_invocation] = STATE(2221), - [sym_scoped_identifier] = STATE(2035), - [sym_scoped_type_identifier] = STATE(3055), - [sym_const_block] = STATE(2221), - [sym__pattern] = STATE(2656), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), + [sym_bracketed_type] = STATE(3756), + [sym_generic_type] = STATE(3622), + [sym_generic_type_with_turbofish] = STATE(3514), + [sym_macro_invocation] = STATE(2197), + [sym_scoped_identifier] = STATE(2056), + [sym_scoped_type_identifier] = STATE(2926), + [sym_const_block] = STATE(2197), + [sym__pattern] = STATE(2693), + [sym_generic_pattern] = STATE(2197), + [sym_tuple_pattern] = STATE(2197), + [sym_slice_pattern] = STATE(2197), + [sym_tuple_struct_pattern] = STATE(2197), + [sym_struct_pattern] = STATE(2197), + [sym_remaining_field_pattern] = STATE(2197), + [sym_mut_pattern] = STATE(2197), + [sym_range_pattern] = STATE(2197), + [sym_ref_pattern] = STATE(2197), + [sym_captured_pattern] = STATE(2197), + [sym_reference_pattern] = STATE(2197), + [sym_or_pattern] = STATE(2197), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2129), + [sym_string_literal] = STATE(2129), + [sym_raw_string_literal] = STATE(2129), + [sym_boolean_literal] = STATE(2129), [sym_line_comment] = STATE(809), [sym_block_comment] = STATE(809), - [sym_identifier] = ACTIONS(1725), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_RPAREN] = ACTIONS(3130), - [anon_sym_LBRACK] = ACTIONS(1731), - [anon_sym_u8] = ACTIONS(1733), - [anon_sym_i8] = ACTIONS(1733), - [anon_sym_u16] = ACTIONS(1733), - [anon_sym_i16] = ACTIONS(1733), - [anon_sym_u32] = ACTIONS(1733), - [anon_sym_i32] = ACTIONS(1733), - [anon_sym_u64] = ACTIONS(1733), - [anon_sym_i64] = ACTIONS(1733), - [anon_sym_u128] = ACTIONS(1733), - [anon_sym_i128] = ACTIONS(1733), - [anon_sym_isize] = ACTIONS(1733), - [anon_sym_usize] = ACTIONS(1733), - [anon_sym_f32] = ACTIONS(1733), - [anon_sym_f64] = ACTIONS(1733), - [anon_sym_bool] = ACTIONS(1733), - [anon_sym_str] = ACTIONS(1733), - [anon_sym_char] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_AMP] = ACTIONS(1735), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1417), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COLON_COLON] = ACTIONS(1739), - [anon_sym_const] = ACTIONS(1743), - [anon_sym_default] = ACTIONS(1745), - [anon_sym_gen] = ACTIONS(1745), - [anon_sym_union] = ACTIONS(1745), - [anon_sym_ref] = ACTIONS(1159), - [sym_mutable_specifier] = ACTIONS(1425), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1747), - [sym_super] = ACTIONS(1747), - [sym_crate] = ACTIONS(1747), - [sym_metavariable] = ACTIONS(1749), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), + [sym_identifier] = ACTIONS(1730), + [anon_sym_LPAREN] = ACTIONS(1732), + [anon_sym_RPAREN] = ACTIONS(3144), + [anon_sym_LBRACK] = ACTIONS(1736), + [anon_sym_u8] = ACTIONS(1738), + [anon_sym_i8] = ACTIONS(1738), + [anon_sym_u16] = ACTIONS(1738), + [anon_sym_i16] = ACTIONS(1738), + [anon_sym_u32] = ACTIONS(1738), + [anon_sym_i32] = ACTIONS(1738), + [anon_sym_u64] = ACTIONS(1738), + [anon_sym_i64] = ACTIONS(1738), + [anon_sym_u128] = ACTIONS(1738), + [anon_sym_i128] = ACTIONS(1738), + [anon_sym_isize] = ACTIONS(1738), + [anon_sym_usize] = ACTIONS(1738), + [anon_sym_f32] = ACTIONS(1738), + [anon_sym_f64] = ACTIONS(1738), + [anon_sym_bool] = ACTIONS(1738), + [anon_sym_str] = ACTIONS(1738), + [anon_sym_char] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1064), + [anon_sym_AMP] = ACTIONS(1740), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1392), + [anon_sym_DOT_DOT] = ACTIONS(1074), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1078), + [anon_sym_COMMA] = ACTIONS(3146), + [anon_sym_COLON_COLON] = ACTIONS(1744), + [anon_sym_const] = ACTIONS(1748), + [anon_sym_default] = ACTIONS(1750), + [anon_sym_gen] = ACTIONS(1750), + [anon_sym_union] = ACTIONS(1750), + [anon_sym_ref] = ACTIONS(1106), + [sym_mutable_specifier] = ACTIONS(1400), + [sym_integer_literal] = ACTIONS(1112), + [aux_sym_string_literal_token1] = ACTIONS(1114), + [sym_char_literal] = ACTIONS(1112), + [anon_sym_true] = ACTIONS(1116), + [anon_sym_false] = ACTIONS(1116), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1752), + [sym_super] = ACTIONS(1752), + [sym_crate] = ACTIONS(1752), + [sym_metavariable] = ACTIONS(1754), + [sym__raw_string_literal_start] = ACTIONS(1124), + [sym_float_literal] = ACTIONS(1112), }, [STATE(810)] = { - [sym_parameter] = STATE(3217), - [sym_bracketed_type] = STATE(3674), - [sym_generic_type] = STATE(3711), - [sym_generic_type_with_turbofish] = STATE(3231), - [sym_macro_invocation] = STATE(2221), - [sym_scoped_identifier] = STATE(2035), - [sym_scoped_type_identifier] = STATE(3055), - [sym_const_block] = STATE(2221), - [sym__pattern] = STATE(3053), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), + [sym_bracketed_type] = STATE(3756), + [sym_generic_type] = STATE(3622), + [sym_generic_type_with_turbofish] = STATE(3514), + [sym_macro_invocation] = STATE(2197), + [sym_scoped_identifier] = STATE(2056), + [sym_scoped_type_identifier] = STATE(2926), + [sym_const_block] = STATE(2197), + [sym__pattern] = STATE(2822), + [sym_generic_pattern] = STATE(2197), + [sym_tuple_pattern] = STATE(2197), + [sym_slice_pattern] = STATE(2197), + [sym_tuple_struct_pattern] = STATE(2197), + [sym_struct_pattern] = STATE(2197), + [sym_remaining_field_pattern] = STATE(2197), + [sym_mut_pattern] = STATE(2197), + [sym_range_pattern] = STATE(2197), + [sym_ref_pattern] = STATE(2197), + [sym_captured_pattern] = STATE(2197), + [sym_reference_pattern] = STATE(2197), + [sym_or_pattern] = STATE(2197), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2129), + [sym_string_literal] = STATE(2129), + [sym_raw_string_literal] = STATE(2129), + [sym_boolean_literal] = STATE(2129), [sym_line_comment] = STATE(810), [sym_block_comment] = STATE(810), - [sym_identifier] = ACTIONS(1725), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_LBRACK] = ACTIONS(1731), - [anon_sym_u8] = ACTIONS(1733), - [anon_sym_i8] = ACTIONS(1733), - [anon_sym_u16] = ACTIONS(1733), - [anon_sym_i16] = ACTIONS(1733), - [anon_sym_u32] = ACTIONS(1733), - [anon_sym_i32] = ACTIONS(1733), - [anon_sym_u64] = ACTIONS(1733), - [anon_sym_i64] = ACTIONS(1733), - [anon_sym_u128] = ACTIONS(1733), - [anon_sym_i128] = ACTIONS(1733), - [anon_sym_isize] = ACTIONS(1733), - [anon_sym_usize] = ACTIONS(1733), - [anon_sym_f32] = ACTIONS(1733), - [anon_sym_f64] = ACTIONS(1733), - [anon_sym_bool] = ACTIONS(1733), - [anon_sym_str] = ACTIONS(1733), - [anon_sym_char] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_AMP] = ACTIONS(1735), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1417), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COLON_COLON] = ACTIONS(1739), - [anon_sym_const] = ACTIONS(1743), - [anon_sym_default] = ACTIONS(1745), - [anon_sym_gen] = ACTIONS(1745), - [anon_sym_union] = ACTIONS(1745), - [anon_sym_ref] = ACTIONS(1159), - [sym_mutable_specifier] = ACTIONS(3132), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3134), - [sym_super] = ACTIONS(1747), - [sym_crate] = ACTIONS(1747), - [sym_metavariable] = ACTIONS(1749), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), + [sym_identifier] = ACTIONS(1730), + [anon_sym_LPAREN] = ACTIONS(1732), + [anon_sym_LBRACK] = ACTIONS(1736), + [anon_sym_RBRACK] = ACTIONS(1566), + [anon_sym_u8] = ACTIONS(1738), + [anon_sym_i8] = ACTIONS(1738), + [anon_sym_u16] = ACTIONS(1738), + [anon_sym_i16] = ACTIONS(1738), + [anon_sym_u32] = ACTIONS(1738), + [anon_sym_i32] = ACTIONS(1738), + [anon_sym_u64] = ACTIONS(1738), + [anon_sym_i64] = ACTIONS(1738), + [anon_sym_u128] = ACTIONS(1738), + [anon_sym_i128] = ACTIONS(1738), + [anon_sym_isize] = ACTIONS(1738), + [anon_sym_usize] = ACTIONS(1738), + [anon_sym_f32] = ACTIONS(1738), + [anon_sym_f64] = ACTIONS(1738), + [anon_sym_bool] = ACTIONS(1738), + [anon_sym_str] = ACTIONS(1738), + [anon_sym_char] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1064), + [anon_sym_AMP] = ACTIONS(1740), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1392), + [anon_sym_DOT_DOT] = ACTIONS(1074), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1078), + [anon_sym_COMMA] = ACTIONS(1572), + [anon_sym_COLON_COLON] = ACTIONS(1744), + [anon_sym_const] = ACTIONS(1748), + [anon_sym_default] = ACTIONS(1750), + [anon_sym_gen] = ACTIONS(1750), + [anon_sym_union] = ACTIONS(1750), + [anon_sym_ref] = ACTIONS(1106), + [sym_mutable_specifier] = ACTIONS(1400), + [sym_integer_literal] = ACTIONS(1112), + [aux_sym_string_literal_token1] = ACTIONS(1114), + [sym_char_literal] = ACTIONS(1112), + [anon_sym_true] = ACTIONS(1116), + [anon_sym_false] = ACTIONS(1116), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1752), + [sym_super] = ACTIONS(1752), + [sym_crate] = ACTIONS(1752), + [sym_metavariable] = ACTIONS(1754), + [sym__raw_string_literal_start] = ACTIONS(1124), + [sym_float_literal] = ACTIONS(1112), }, [STATE(811)] = { - [sym_bracketed_type] = STATE(3674), - [sym_generic_type] = STATE(3711), - [sym_generic_type_with_turbofish] = STATE(3231), - [sym_macro_invocation] = STATE(2221), - [sym_scoped_identifier] = STATE(2035), - [sym_scoped_type_identifier] = STATE(3055), - [sym_const_block] = STATE(2221), - [sym__pattern] = STATE(2656), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), + [sym_bracketed_type] = STATE(3756), + [sym_generic_type] = STATE(3622), + [sym_generic_type_with_turbofish] = STATE(3514), + [sym_macro_invocation] = STATE(2197), + [sym_scoped_identifier] = STATE(2056), + [sym_scoped_type_identifier] = STATE(2926), + [sym_const_block] = STATE(2197), + [sym__pattern] = STATE(2890), + [sym_generic_pattern] = STATE(2197), + [sym_tuple_pattern] = STATE(2197), + [sym_slice_pattern] = STATE(2197), + [sym_tuple_struct_pattern] = STATE(2197), + [sym_struct_pattern] = STATE(2197), + [sym_remaining_field_pattern] = STATE(2197), + [sym_mut_pattern] = STATE(2197), + [sym_range_pattern] = STATE(2197), + [sym_ref_pattern] = STATE(2197), + [sym_captured_pattern] = STATE(2197), + [sym_reference_pattern] = STATE(2197), + [sym_or_pattern] = STATE(2197), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2129), + [sym_string_literal] = STATE(2129), + [sym_raw_string_literal] = STATE(2129), + [sym_boolean_literal] = STATE(2129), [sym_line_comment] = STATE(811), [sym_block_comment] = STATE(811), - [sym_identifier] = ACTIONS(1725), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_RPAREN] = ACTIONS(3136), - [anon_sym_LBRACK] = ACTIONS(1731), - [anon_sym_u8] = ACTIONS(1733), - [anon_sym_i8] = ACTIONS(1733), - [anon_sym_u16] = ACTIONS(1733), - [anon_sym_i16] = ACTIONS(1733), - [anon_sym_u32] = ACTIONS(1733), - [anon_sym_i32] = ACTIONS(1733), - [anon_sym_u64] = ACTIONS(1733), - [anon_sym_i64] = ACTIONS(1733), - [anon_sym_u128] = ACTIONS(1733), - [anon_sym_i128] = ACTIONS(1733), - [anon_sym_isize] = ACTIONS(1733), - [anon_sym_usize] = ACTIONS(1733), - [anon_sym_f32] = ACTIONS(1733), - [anon_sym_f64] = ACTIONS(1733), - [anon_sym_bool] = ACTIONS(1733), - [anon_sym_str] = ACTIONS(1733), - [anon_sym_char] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_AMP] = ACTIONS(1735), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1417), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COLON_COLON] = ACTIONS(1739), - [anon_sym_const] = ACTIONS(1743), - [anon_sym_default] = ACTIONS(1745), - [anon_sym_gen] = ACTIONS(1745), - [anon_sym_union] = ACTIONS(1745), - [anon_sym_ref] = ACTIONS(1159), - [sym_mutable_specifier] = ACTIONS(1425), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1747), - [sym_super] = ACTIONS(1747), - [sym_crate] = ACTIONS(1747), - [sym_metavariable] = ACTIONS(1749), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), + [sym_identifier] = ACTIONS(1730), + [anon_sym_LPAREN] = ACTIONS(1732), + [anon_sym_RPAREN] = ACTIONS(3148), + [anon_sym_LBRACK] = ACTIONS(1736), + [anon_sym_u8] = ACTIONS(1738), + [anon_sym_i8] = ACTIONS(1738), + [anon_sym_u16] = ACTIONS(1738), + [anon_sym_i16] = ACTIONS(1738), + [anon_sym_u32] = ACTIONS(1738), + [anon_sym_i32] = ACTIONS(1738), + [anon_sym_u64] = ACTIONS(1738), + [anon_sym_i64] = ACTIONS(1738), + [anon_sym_u128] = ACTIONS(1738), + [anon_sym_i128] = ACTIONS(1738), + [anon_sym_isize] = ACTIONS(1738), + [anon_sym_usize] = ACTIONS(1738), + [anon_sym_f32] = ACTIONS(1738), + [anon_sym_f64] = ACTIONS(1738), + [anon_sym_bool] = ACTIONS(1738), + [anon_sym_str] = ACTIONS(1738), + [anon_sym_char] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1064), + [anon_sym_AMP] = ACTIONS(1740), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1392), + [anon_sym_DOT_DOT] = ACTIONS(1074), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1078), + [anon_sym_COLON_COLON] = ACTIONS(1744), + [anon_sym_const] = ACTIONS(1748), + [anon_sym_default] = ACTIONS(1750), + [anon_sym_gen] = ACTIONS(1750), + [anon_sym_union] = ACTIONS(1750), + [anon_sym_ref] = ACTIONS(1106), + [sym_mutable_specifier] = ACTIONS(1400), + [sym_integer_literal] = ACTIONS(1112), + [aux_sym_string_literal_token1] = ACTIONS(1114), + [sym_char_literal] = ACTIONS(1112), + [anon_sym_true] = ACTIONS(1116), + [anon_sym_false] = ACTIONS(1116), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1752), + [sym_super] = ACTIONS(1752), + [sym_crate] = ACTIONS(1752), + [sym_metavariable] = ACTIONS(1754), + [sym__raw_string_literal_start] = ACTIONS(1124), + [sym_float_literal] = ACTIONS(1112), }, [STATE(812)] = { - [sym_bracketed_type] = STATE(3674), - [sym_generic_type] = STATE(3711), - [sym_generic_type_with_turbofish] = STATE(3231), - [sym_macro_invocation] = STATE(2221), - [sym_scoped_identifier] = STATE(2035), - [sym_scoped_type_identifier] = STATE(3055), - [sym_const_block] = STATE(2221), - [sym__pattern] = STATE(2656), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), + [sym_bracketed_type] = STATE(3756), + [sym_generic_type] = STATE(3622), + [sym_generic_type_with_turbofish] = STATE(3514), + [sym_macro_invocation] = STATE(2197), + [sym_scoped_identifier] = STATE(2056), + [sym_scoped_type_identifier] = STATE(2926), + [sym_const_block] = STATE(2197), + [sym__pattern] = STATE(2636), + [sym_generic_pattern] = STATE(2197), + [sym_tuple_pattern] = STATE(2197), + [sym_slice_pattern] = STATE(2197), + [sym_tuple_struct_pattern] = STATE(2197), + [sym_struct_pattern] = STATE(2197), + [sym_remaining_field_pattern] = STATE(2197), + [sym_mut_pattern] = STATE(2197), + [sym_range_pattern] = STATE(2197), + [sym_ref_pattern] = STATE(2197), + [sym_captured_pattern] = STATE(2197), + [sym_reference_pattern] = STATE(2197), + [sym_or_pattern] = STATE(2197), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2129), + [sym_string_literal] = STATE(2129), + [sym_raw_string_literal] = STATE(2129), + [sym_boolean_literal] = STATE(2129), [sym_line_comment] = STATE(812), [sym_block_comment] = STATE(812), - [sym_identifier] = ACTIONS(1725), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_RPAREN] = ACTIONS(3138), - [anon_sym_LBRACK] = ACTIONS(1731), - [anon_sym_u8] = ACTIONS(1733), - [anon_sym_i8] = ACTIONS(1733), - [anon_sym_u16] = ACTIONS(1733), - [anon_sym_i16] = ACTIONS(1733), - [anon_sym_u32] = ACTIONS(1733), - [anon_sym_i32] = ACTIONS(1733), - [anon_sym_u64] = ACTIONS(1733), - [anon_sym_i64] = ACTIONS(1733), - [anon_sym_u128] = ACTIONS(1733), - [anon_sym_i128] = ACTIONS(1733), - [anon_sym_isize] = ACTIONS(1733), - [anon_sym_usize] = ACTIONS(1733), - [anon_sym_f32] = ACTIONS(1733), - [anon_sym_f64] = ACTIONS(1733), - [anon_sym_bool] = ACTIONS(1733), - [anon_sym_str] = ACTIONS(1733), - [anon_sym_char] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_AMP] = ACTIONS(1735), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1417), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COLON_COLON] = ACTIONS(1739), - [anon_sym_const] = ACTIONS(1743), - [anon_sym_default] = ACTIONS(1745), - [anon_sym_gen] = ACTIONS(1745), - [anon_sym_union] = ACTIONS(1745), - [anon_sym_ref] = ACTIONS(1159), - [sym_mutable_specifier] = ACTIONS(1425), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1747), - [sym_super] = ACTIONS(1747), - [sym_crate] = ACTIONS(1747), - [sym_metavariable] = ACTIONS(1749), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), + [sym_identifier] = ACTIONS(1730), + [anon_sym_LPAREN] = ACTIONS(1732), + [anon_sym_LBRACK] = ACTIONS(1736), + [anon_sym_u8] = ACTIONS(1738), + [anon_sym_i8] = ACTIONS(1738), + [anon_sym_u16] = ACTIONS(1738), + [anon_sym_i16] = ACTIONS(1738), + [anon_sym_u32] = ACTIONS(1738), + [anon_sym_i32] = ACTIONS(1738), + [anon_sym_u64] = ACTIONS(1738), + [anon_sym_i64] = ACTIONS(1738), + [anon_sym_u128] = ACTIONS(1738), + [anon_sym_i128] = ACTIONS(1738), + [anon_sym_isize] = ACTIONS(1738), + [anon_sym_usize] = ACTIONS(1738), + [anon_sym_f32] = ACTIONS(1738), + [anon_sym_f64] = ACTIONS(1738), + [anon_sym_bool] = ACTIONS(1738), + [anon_sym_str] = ACTIONS(1738), + [anon_sym_char] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1064), + [anon_sym_AMP] = ACTIONS(1740), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1392), + [anon_sym_DOT_DOT] = ACTIONS(1074), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3150), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1078), + [anon_sym_COLON_COLON] = ACTIONS(1744), + [anon_sym_const] = ACTIONS(1748), + [anon_sym_default] = ACTIONS(1750), + [anon_sym_gen] = ACTIONS(1750), + [anon_sym_union] = ACTIONS(1750), + [anon_sym_ref] = ACTIONS(1106), + [sym_mutable_specifier] = ACTIONS(1400), + [sym_integer_literal] = ACTIONS(1112), + [aux_sym_string_literal_token1] = ACTIONS(1114), + [sym_char_literal] = ACTIONS(1112), + [anon_sym_true] = ACTIONS(1116), + [anon_sym_false] = ACTIONS(1116), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(3152), + [sym_super] = ACTIONS(1752), + [sym_crate] = ACTIONS(1752), + [sym_metavariable] = ACTIONS(1754), + [sym__raw_string_literal_start] = ACTIONS(1124), + [sym_float_literal] = ACTIONS(1112), }, [STATE(813)] = { - [sym_bracketed_type] = STATE(3674), - [sym_generic_type] = STATE(3711), - [sym_generic_type_with_turbofish] = STATE(3231), - [sym_macro_invocation] = STATE(2221), - [sym_scoped_identifier] = STATE(2035), - [sym_scoped_type_identifier] = STATE(3055), - [sym_const_block] = STATE(2221), - [sym__pattern] = STATE(2656), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), + [sym_bracketed_type] = STATE(3756), + [sym_generic_type] = STATE(3622), + [sym_generic_type_with_turbofish] = STATE(3514), + [sym_macro_invocation] = STATE(2197), + [sym_scoped_identifier] = STATE(2056), + [sym_scoped_type_identifier] = STATE(2926), + [sym_const_block] = STATE(2197), + [sym__pattern] = STATE(2890), + [sym_generic_pattern] = STATE(2197), + [sym_tuple_pattern] = STATE(2197), + [sym_slice_pattern] = STATE(2197), + [sym_tuple_struct_pattern] = STATE(2197), + [sym_struct_pattern] = STATE(2197), + [sym_remaining_field_pattern] = STATE(2197), + [sym_mut_pattern] = STATE(2197), + [sym_range_pattern] = STATE(2197), + [sym_ref_pattern] = STATE(2197), + [sym_captured_pattern] = STATE(2197), + [sym_reference_pattern] = STATE(2197), + [sym_or_pattern] = STATE(2197), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2129), + [sym_string_literal] = STATE(2129), + [sym_raw_string_literal] = STATE(2129), + [sym_boolean_literal] = STATE(2129), [sym_line_comment] = STATE(813), [sym_block_comment] = STATE(813), - [sym_identifier] = ACTIONS(1725), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_LBRACK] = ACTIONS(1731), - [anon_sym_RBRACK] = ACTIONS(3140), - [anon_sym_u8] = ACTIONS(1733), - [anon_sym_i8] = ACTIONS(1733), - [anon_sym_u16] = ACTIONS(1733), - [anon_sym_i16] = ACTIONS(1733), - [anon_sym_u32] = ACTIONS(1733), - [anon_sym_i32] = ACTIONS(1733), - [anon_sym_u64] = ACTIONS(1733), - [anon_sym_i64] = ACTIONS(1733), - [anon_sym_u128] = ACTIONS(1733), - [anon_sym_i128] = ACTIONS(1733), - [anon_sym_isize] = ACTIONS(1733), - [anon_sym_usize] = ACTIONS(1733), - [anon_sym_f32] = ACTIONS(1733), - [anon_sym_f64] = ACTIONS(1733), - [anon_sym_bool] = ACTIONS(1733), - [anon_sym_str] = ACTIONS(1733), - [anon_sym_char] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_AMP] = ACTIONS(1735), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1417), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COLON_COLON] = ACTIONS(1739), - [anon_sym_const] = ACTIONS(1743), - [anon_sym_default] = ACTIONS(1745), - [anon_sym_gen] = ACTIONS(1745), - [anon_sym_union] = ACTIONS(1745), - [anon_sym_ref] = ACTIONS(1159), - [sym_mutable_specifier] = ACTIONS(1425), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1747), - [sym_super] = ACTIONS(1747), - [sym_crate] = ACTIONS(1747), - [sym_metavariable] = ACTIONS(1749), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), + [sym_identifier] = ACTIONS(1730), + [anon_sym_LPAREN] = ACTIONS(1732), + [anon_sym_LBRACK] = ACTIONS(1736), + [anon_sym_RBRACK] = ACTIONS(3154), + [anon_sym_u8] = ACTIONS(1738), + [anon_sym_i8] = ACTIONS(1738), + [anon_sym_u16] = ACTIONS(1738), + [anon_sym_i16] = ACTIONS(1738), + [anon_sym_u32] = ACTIONS(1738), + [anon_sym_i32] = ACTIONS(1738), + [anon_sym_u64] = ACTIONS(1738), + [anon_sym_i64] = ACTIONS(1738), + [anon_sym_u128] = ACTIONS(1738), + [anon_sym_i128] = ACTIONS(1738), + [anon_sym_isize] = ACTIONS(1738), + [anon_sym_usize] = ACTIONS(1738), + [anon_sym_f32] = ACTIONS(1738), + [anon_sym_f64] = ACTIONS(1738), + [anon_sym_bool] = ACTIONS(1738), + [anon_sym_str] = ACTIONS(1738), + [anon_sym_char] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1064), + [anon_sym_AMP] = ACTIONS(1740), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1392), + [anon_sym_DOT_DOT] = ACTIONS(1074), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1078), + [anon_sym_COLON_COLON] = ACTIONS(1744), + [anon_sym_const] = ACTIONS(1748), + [anon_sym_default] = ACTIONS(1750), + [anon_sym_gen] = ACTIONS(1750), + [anon_sym_union] = ACTIONS(1750), + [anon_sym_ref] = ACTIONS(1106), + [sym_mutable_specifier] = ACTIONS(1400), + [sym_integer_literal] = ACTIONS(1112), + [aux_sym_string_literal_token1] = ACTIONS(1114), + [sym_char_literal] = ACTIONS(1112), + [anon_sym_true] = ACTIONS(1116), + [anon_sym_false] = ACTIONS(1116), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1752), + [sym_super] = ACTIONS(1752), + [sym_crate] = ACTIONS(1752), + [sym_metavariable] = ACTIONS(1754), + [sym__raw_string_literal_start] = ACTIONS(1124), + [sym_float_literal] = ACTIONS(1112), }, [STATE(814)] = { - [sym_bracketed_type] = STATE(3674), - [sym_generic_type] = STATE(3711), - [sym_generic_type_with_turbofish] = STATE(3231), - [sym_macro_invocation] = STATE(2221), - [sym_scoped_identifier] = STATE(2035), - [sym_scoped_type_identifier] = STATE(3055), - [sym_const_block] = STATE(2221), - [sym__pattern] = STATE(2674), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), + [sym_parameter] = STATE(3340), + [sym_bracketed_type] = STATE(3756), + [sym_generic_type] = STATE(3622), + [sym_generic_type_with_turbofish] = STATE(3514), + [sym_macro_invocation] = STATE(2197), + [sym_scoped_identifier] = STATE(2056), + [sym_scoped_type_identifier] = STATE(2926), + [sym_const_block] = STATE(2197), + [sym__pattern] = STATE(3127), + [sym_generic_pattern] = STATE(2197), + [sym_tuple_pattern] = STATE(2197), + [sym_slice_pattern] = STATE(2197), + [sym_tuple_struct_pattern] = STATE(2197), + [sym_struct_pattern] = STATE(2197), + [sym_remaining_field_pattern] = STATE(2197), + [sym_mut_pattern] = STATE(2197), + [sym_range_pattern] = STATE(2197), + [sym_ref_pattern] = STATE(2197), + [sym_captured_pattern] = STATE(2197), + [sym_reference_pattern] = STATE(2197), + [sym_or_pattern] = STATE(2197), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2129), + [sym_string_literal] = STATE(2129), + [sym_raw_string_literal] = STATE(2129), + [sym_boolean_literal] = STATE(2129), [sym_line_comment] = STATE(814), [sym_block_comment] = STATE(814), - [sym_identifier] = ACTIONS(1725), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_LBRACK] = ACTIONS(1731), - [anon_sym_u8] = ACTIONS(1733), - [anon_sym_i8] = ACTIONS(1733), - [anon_sym_u16] = ACTIONS(1733), - [anon_sym_i16] = ACTIONS(1733), - [anon_sym_u32] = ACTIONS(1733), - [anon_sym_i32] = ACTIONS(1733), - [anon_sym_u64] = ACTIONS(1733), - [anon_sym_i64] = ACTIONS(1733), - [anon_sym_u128] = ACTIONS(1733), - [anon_sym_i128] = ACTIONS(1733), - [anon_sym_isize] = ACTIONS(1733), - [anon_sym_usize] = ACTIONS(1733), - [anon_sym_f32] = ACTIONS(1733), - [anon_sym_f64] = ACTIONS(1733), - [anon_sym_bool] = ACTIONS(1733), - [anon_sym_str] = ACTIONS(1733), - [anon_sym_char] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_AMP] = ACTIONS(1735), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1417), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3142), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COLON_COLON] = ACTIONS(1739), - [anon_sym_const] = ACTIONS(1743), - [anon_sym_default] = ACTIONS(1745), - [anon_sym_gen] = ACTIONS(1745), - [anon_sym_union] = ACTIONS(1745), - [anon_sym_ref] = ACTIONS(1159), - [sym_mutable_specifier] = ACTIONS(1425), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3144), - [sym_super] = ACTIONS(1747), - [sym_crate] = ACTIONS(1747), - [sym_metavariable] = ACTIONS(1749), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), + [sym_identifier] = ACTIONS(1730), + [anon_sym_LPAREN] = ACTIONS(1732), + [anon_sym_LBRACK] = ACTIONS(1736), + [anon_sym_u8] = ACTIONS(1738), + [anon_sym_i8] = ACTIONS(1738), + [anon_sym_u16] = ACTIONS(1738), + [anon_sym_i16] = ACTIONS(1738), + [anon_sym_u32] = ACTIONS(1738), + [anon_sym_i32] = ACTIONS(1738), + [anon_sym_u64] = ACTIONS(1738), + [anon_sym_i64] = ACTIONS(1738), + [anon_sym_u128] = ACTIONS(1738), + [anon_sym_i128] = ACTIONS(1738), + [anon_sym_isize] = ACTIONS(1738), + [anon_sym_usize] = ACTIONS(1738), + [anon_sym_f32] = ACTIONS(1738), + [anon_sym_f64] = ACTIONS(1738), + [anon_sym_bool] = ACTIONS(1738), + [anon_sym_str] = ACTIONS(1738), + [anon_sym_char] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1064), + [anon_sym_AMP] = ACTIONS(1740), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1392), + [anon_sym_DOT_DOT] = ACTIONS(1074), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1078), + [anon_sym_COLON_COLON] = ACTIONS(1744), + [anon_sym_const] = ACTIONS(1748), + [anon_sym_default] = ACTIONS(1750), + [anon_sym_gen] = ACTIONS(1750), + [anon_sym_union] = ACTIONS(1750), + [anon_sym_ref] = ACTIONS(1106), + [sym_mutable_specifier] = ACTIONS(3156), + [sym_integer_literal] = ACTIONS(1112), + [aux_sym_string_literal_token1] = ACTIONS(1114), + [sym_char_literal] = ACTIONS(1112), + [anon_sym_true] = ACTIONS(1116), + [anon_sym_false] = ACTIONS(1116), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(3158), + [sym_super] = ACTIONS(1752), + [sym_crate] = ACTIONS(1752), + [sym_metavariable] = ACTIONS(1754), + [sym__raw_string_literal_start] = ACTIONS(1124), + [sym_float_literal] = ACTIONS(1112), }, [STATE(815)] = { - [sym_parameter] = STATE(3002), - [sym_bracketed_type] = STATE(3674), - [sym_generic_type] = STATE(3711), - [sym_generic_type_with_turbofish] = STATE(3231), - [sym_macro_invocation] = STATE(2221), - [sym_scoped_identifier] = STATE(2035), - [sym_scoped_type_identifier] = STATE(3055), - [sym_const_block] = STATE(2221), - [sym__pattern] = STATE(2576), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), + [sym_bracketed_type] = STATE(3756), + [sym_generic_type] = STATE(3622), + [sym_generic_type_with_turbofish] = STATE(3514), + [sym_macro_invocation] = STATE(2197), + [sym_scoped_identifier] = STATE(2056), + [sym_scoped_type_identifier] = STATE(2926), + [sym_const_block] = STATE(2197), + [sym__pattern] = STATE(2890), + [sym_generic_pattern] = STATE(2197), + [sym_tuple_pattern] = STATE(2197), + [sym_slice_pattern] = STATE(2197), + [sym_tuple_struct_pattern] = STATE(2197), + [sym_struct_pattern] = STATE(2197), + [sym_remaining_field_pattern] = STATE(2197), + [sym_mut_pattern] = STATE(2197), + [sym_range_pattern] = STATE(2197), + [sym_ref_pattern] = STATE(2197), + [sym_captured_pattern] = STATE(2197), + [sym_reference_pattern] = STATE(2197), + [sym_or_pattern] = STATE(2197), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2129), + [sym_string_literal] = STATE(2129), + [sym_raw_string_literal] = STATE(2129), + [sym_boolean_literal] = STATE(2129), [sym_line_comment] = STATE(815), [sym_block_comment] = STATE(815), - [sym_identifier] = ACTIONS(1725), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_LBRACK] = ACTIONS(1731), - [anon_sym_u8] = ACTIONS(1733), - [anon_sym_i8] = ACTIONS(1733), - [anon_sym_u16] = ACTIONS(1733), - [anon_sym_i16] = ACTIONS(1733), - [anon_sym_u32] = ACTIONS(1733), - [anon_sym_i32] = ACTIONS(1733), - [anon_sym_u64] = ACTIONS(1733), - [anon_sym_i64] = ACTIONS(1733), - [anon_sym_u128] = ACTIONS(1733), - [anon_sym_i128] = ACTIONS(1733), - [anon_sym_isize] = ACTIONS(1733), - [anon_sym_usize] = ACTIONS(1733), - [anon_sym_f32] = ACTIONS(1733), - [anon_sym_f64] = ACTIONS(1733), - [anon_sym_bool] = ACTIONS(1733), - [anon_sym_str] = ACTIONS(1733), - [anon_sym_char] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_AMP] = ACTIONS(1735), - [anon_sym_PIPE] = ACTIONS(3146), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1417), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COLON_COLON] = ACTIONS(1739), - [anon_sym_const] = ACTIONS(1743), - [anon_sym_default] = ACTIONS(1745), - [anon_sym_gen] = ACTIONS(1745), - [anon_sym_union] = ACTIONS(1745), - [anon_sym_ref] = ACTIONS(1159), - [sym_mutable_specifier] = ACTIONS(3132), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3134), - [sym_super] = ACTIONS(1747), - [sym_crate] = ACTIONS(1747), - [sym_metavariable] = ACTIONS(1749), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), + [sym_identifier] = ACTIONS(1730), + [anon_sym_LPAREN] = ACTIONS(1732), + [anon_sym_RPAREN] = ACTIONS(3160), + [anon_sym_LBRACK] = ACTIONS(1736), + [anon_sym_u8] = ACTIONS(1738), + [anon_sym_i8] = ACTIONS(1738), + [anon_sym_u16] = ACTIONS(1738), + [anon_sym_i16] = ACTIONS(1738), + [anon_sym_u32] = ACTIONS(1738), + [anon_sym_i32] = ACTIONS(1738), + [anon_sym_u64] = ACTIONS(1738), + [anon_sym_i64] = ACTIONS(1738), + [anon_sym_u128] = ACTIONS(1738), + [anon_sym_i128] = ACTIONS(1738), + [anon_sym_isize] = ACTIONS(1738), + [anon_sym_usize] = ACTIONS(1738), + [anon_sym_f32] = ACTIONS(1738), + [anon_sym_f64] = ACTIONS(1738), + [anon_sym_bool] = ACTIONS(1738), + [anon_sym_str] = ACTIONS(1738), + [anon_sym_char] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1064), + [anon_sym_AMP] = ACTIONS(1740), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1392), + [anon_sym_DOT_DOT] = ACTIONS(1074), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1078), + [anon_sym_COLON_COLON] = ACTIONS(1744), + [anon_sym_const] = ACTIONS(1748), + [anon_sym_default] = ACTIONS(1750), + [anon_sym_gen] = ACTIONS(1750), + [anon_sym_union] = ACTIONS(1750), + [anon_sym_ref] = ACTIONS(1106), + [sym_mutable_specifier] = ACTIONS(1400), + [sym_integer_literal] = ACTIONS(1112), + [aux_sym_string_literal_token1] = ACTIONS(1114), + [sym_char_literal] = ACTIONS(1112), + [anon_sym_true] = ACTIONS(1116), + [anon_sym_false] = ACTIONS(1116), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1752), + [sym_super] = ACTIONS(1752), + [sym_crate] = ACTIONS(1752), + [sym_metavariable] = ACTIONS(1754), + [sym__raw_string_literal_start] = ACTIONS(1124), + [sym_float_literal] = ACTIONS(1112), }, [STATE(816)] = { - [sym_bracketed_type] = STATE(3674), - [sym_generic_type] = STATE(3711), - [sym_generic_type_with_turbofish] = STATE(3231), - [sym_macro_invocation] = STATE(2221), - [sym_scoped_identifier] = STATE(2035), - [sym_scoped_type_identifier] = STATE(3055), - [sym_const_block] = STATE(2221), - [sym__pattern] = STATE(2656), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), + [sym_bracketed_type] = STATE(3756), + [sym_generic_type] = STATE(3622), + [sym_generic_type_with_turbofish] = STATE(3514), + [sym_macro_invocation] = STATE(2197), + [sym_scoped_identifier] = STATE(2056), + [sym_scoped_type_identifier] = STATE(2926), + [sym_const_block] = STATE(2197), + [sym__pattern] = STATE(2890), + [sym_generic_pattern] = STATE(2197), + [sym_tuple_pattern] = STATE(2197), + [sym_slice_pattern] = STATE(2197), + [sym_tuple_struct_pattern] = STATE(2197), + [sym_struct_pattern] = STATE(2197), + [sym_remaining_field_pattern] = STATE(2197), + [sym_mut_pattern] = STATE(2197), + [sym_range_pattern] = STATE(2197), + [sym_ref_pattern] = STATE(2197), + [sym_captured_pattern] = STATE(2197), + [sym_reference_pattern] = STATE(2197), + [sym_or_pattern] = STATE(2197), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2129), + [sym_string_literal] = STATE(2129), + [sym_raw_string_literal] = STATE(2129), + [sym_boolean_literal] = STATE(2129), [sym_line_comment] = STATE(816), [sym_block_comment] = STATE(816), - [sym_identifier] = ACTIONS(1725), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_RPAREN] = ACTIONS(3148), - [anon_sym_LBRACK] = ACTIONS(1731), - [anon_sym_u8] = ACTIONS(1733), - [anon_sym_i8] = ACTIONS(1733), - [anon_sym_u16] = ACTIONS(1733), - [anon_sym_i16] = ACTIONS(1733), - [anon_sym_u32] = ACTIONS(1733), - [anon_sym_i32] = ACTIONS(1733), - [anon_sym_u64] = ACTIONS(1733), - [anon_sym_i64] = ACTIONS(1733), - [anon_sym_u128] = ACTIONS(1733), - [anon_sym_i128] = ACTIONS(1733), - [anon_sym_isize] = ACTIONS(1733), - [anon_sym_usize] = ACTIONS(1733), - [anon_sym_f32] = ACTIONS(1733), - [anon_sym_f64] = ACTIONS(1733), - [anon_sym_bool] = ACTIONS(1733), - [anon_sym_str] = ACTIONS(1733), - [anon_sym_char] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_AMP] = ACTIONS(1735), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1417), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COLON_COLON] = ACTIONS(1739), - [anon_sym_const] = ACTIONS(1743), - [anon_sym_default] = ACTIONS(1745), - [anon_sym_gen] = ACTIONS(1745), - [anon_sym_union] = ACTIONS(1745), - [anon_sym_ref] = ACTIONS(1159), - [sym_mutable_specifier] = ACTIONS(1425), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1747), - [sym_super] = ACTIONS(1747), - [sym_crate] = ACTIONS(1747), - [sym_metavariable] = ACTIONS(1749), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), + [sym_identifier] = ACTIONS(1730), + [anon_sym_LPAREN] = ACTIONS(1732), + [anon_sym_RPAREN] = ACTIONS(3162), + [anon_sym_LBRACK] = ACTIONS(1736), + [anon_sym_u8] = ACTIONS(1738), + [anon_sym_i8] = ACTIONS(1738), + [anon_sym_u16] = ACTIONS(1738), + [anon_sym_i16] = ACTIONS(1738), + [anon_sym_u32] = ACTIONS(1738), + [anon_sym_i32] = ACTIONS(1738), + [anon_sym_u64] = ACTIONS(1738), + [anon_sym_i64] = ACTIONS(1738), + [anon_sym_u128] = ACTIONS(1738), + [anon_sym_i128] = ACTIONS(1738), + [anon_sym_isize] = ACTIONS(1738), + [anon_sym_usize] = ACTIONS(1738), + [anon_sym_f32] = ACTIONS(1738), + [anon_sym_f64] = ACTIONS(1738), + [anon_sym_bool] = ACTIONS(1738), + [anon_sym_str] = ACTIONS(1738), + [anon_sym_char] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1064), + [anon_sym_AMP] = ACTIONS(1740), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1392), + [anon_sym_DOT_DOT] = ACTIONS(1074), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1078), + [anon_sym_COLON_COLON] = ACTIONS(1744), + [anon_sym_const] = ACTIONS(1748), + [anon_sym_default] = ACTIONS(1750), + [anon_sym_gen] = ACTIONS(1750), + [anon_sym_union] = ACTIONS(1750), + [anon_sym_ref] = ACTIONS(1106), + [sym_mutable_specifier] = ACTIONS(1400), + [sym_integer_literal] = ACTIONS(1112), + [aux_sym_string_literal_token1] = ACTIONS(1114), + [sym_char_literal] = ACTIONS(1112), + [anon_sym_true] = ACTIONS(1116), + [anon_sym_false] = ACTIONS(1116), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1752), + [sym_super] = ACTIONS(1752), + [sym_crate] = ACTIONS(1752), + [sym_metavariable] = ACTIONS(1754), + [sym__raw_string_literal_start] = ACTIONS(1124), + [sym_float_literal] = ACTIONS(1112), }, [STATE(817)] = { - [sym_bracketed_type] = STATE(3674), - [sym_generic_type] = STATE(3711), - [sym_generic_type_with_turbofish] = STATE(3231), - [sym_macro_invocation] = STATE(2221), - [sym_scoped_identifier] = STATE(2035), - [sym_scoped_type_identifier] = STATE(3055), - [sym_const_block] = STATE(2221), - [sym__pattern] = STATE(2656), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), + [sym_bracketed_type] = STATE(3756), + [sym_generic_type] = STATE(3622), + [sym_generic_type_with_turbofish] = STATE(3514), + [sym_macro_invocation] = STATE(2197), + [sym_scoped_identifier] = STATE(2056), + [sym_scoped_type_identifier] = STATE(2926), + [sym_const_block] = STATE(2197), + [sym__pattern] = STATE(2890), + [sym_generic_pattern] = STATE(2197), + [sym_tuple_pattern] = STATE(2197), + [sym_slice_pattern] = STATE(2197), + [sym_tuple_struct_pattern] = STATE(2197), + [sym_struct_pattern] = STATE(2197), + [sym_remaining_field_pattern] = STATE(2197), + [sym_mut_pattern] = STATE(2197), + [sym_range_pattern] = STATE(2197), + [sym_ref_pattern] = STATE(2197), + [sym_captured_pattern] = STATE(2197), + [sym_reference_pattern] = STATE(2197), + [sym_or_pattern] = STATE(2197), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2129), + [sym_string_literal] = STATE(2129), + [sym_raw_string_literal] = STATE(2129), + [sym_boolean_literal] = STATE(2129), [sym_line_comment] = STATE(817), [sym_block_comment] = STATE(817), - [sym_identifier] = ACTIONS(1725), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_RPAREN] = ACTIONS(3150), - [anon_sym_LBRACK] = ACTIONS(1731), - [anon_sym_u8] = ACTIONS(1733), - [anon_sym_i8] = ACTIONS(1733), - [anon_sym_u16] = ACTIONS(1733), - [anon_sym_i16] = ACTIONS(1733), - [anon_sym_u32] = ACTIONS(1733), - [anon_sym_i32] = ACTIONS(1733), - [anon_sym_u64] = ACTIONS(1733), - [anon_sym_i64] = ACTIONS(1733), - [anon_sym_u128] = ACTIONS(1733), - [anon_sym_i128] = ACTIONS(1733), - [anon_sym_isize] = ACTIONS(1733), - [anon_sym_usize] = ACTIONS(1733), - [anon_sym_f32] = ACTIONS(1733), - [anon_sym_f64] = ACTIONS(1733), - [anon_sym_bool] = ACTIONS(1733), - [anon_sym_str] = ACTIONS(1733), - [anon_sym_char] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_AMP] = ACTIONS(1735), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1417), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COLON_COLON] = ACTIONS(1739), - [anon_sym_const] = ACTIONS(1743), - [anon_sym_default] = ACTIONS(1745), - [anon_sym_gen] = ACTIONS(1745), - [anon_sym_union] = ACTIONS(1745), - [anon_sym_ref] = ACTIONS(1159), - [sym_mutable_specifier] = ACTIONS(1425), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1747), - [sym_super] = ACTIONS(1747), - [sym_crate] = ACTIONS(1747), - [sym_metavariable] = ACTIONS(1749), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), + [sym_identifier] = ACTIONS(1730), + [anon_sym_LPAREN] = ACTIONS(1732), + [anon_sym_LBRACK] = ACTIONS(1736), + [anon_sym_RBRACK] = ACTIONS(3164), + [anon_sym_u8] = ACTIONS(1738), + [anon_sym_i8] = ACTIONS(1738), + [anon_sym_u16] = ACTIONS(1738), + [anon_sym_i16] = ACTIONS(1738), + [anon_sym_u32] = ACTIONS(1738), + [anon_sym_i32] = ACTIONS(1738), + [anon_sym_u64] = ACTIONS(1738), + [anon_sym_i64] = ACTIONS(1738), + [anon_sym_u128] = ACTIONS(1738), + [anon_sym_i128] = ACTIONS(1738), + [anon_sym_isize] = ACTIONS(1738), + [anon_sym_usize] = ACTIONS(1738), + [anon_sym_f32] = ACTIONS(1738), + [anon_sym_f64] = ACTIONS(1738), + [anon_sym_bool] = ACTIONS(1738), + [anon_sym_str] = ACTIONS(1738), + [anon_sym_char] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1064), + [anon_sym_AMP] = ACTIONS(1740), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1392), + [anon_sym_DOT_DOT] = ACTIONS(1074), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1078), + [anon_sym_COLON_COLON] = ACTIONS(1744), + [anon_sym_const] = ACTIONS(1748), + [anon_sym_default] = ACTIONS(1750), + [anon_sym_gen] = ACTIONS(1750), + [anon_sym_union] = ACTIONS(1750), + [anon_sym_ref] = ACTIONS(1106), + [sym_mutable_specifier] = ACTIONS(1400), + [sym_integer_literal] = ACTIONS(1112), + [aux_sym_string_literal_token1] = ACTIONS(1114), + [sym_char_literal] = ACTIONS(1112), + [anon_sym_true] = ACTIONS(1116), + [anon_sym_false] = ACTIONS(1116), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1752), + [sym_super] = ACTIONS(1752), + [sym_crate] = ACTIONS(1752), + [sym_metavariable] = ACTIONS(1754), + [sym__raw_string_literal_start] = ACTIONS(1124), + [sym_float_literal] = ACTIONS(1112), }, [STATE(818)] = { - [sym_parameter] = STATE(3002), - [sym_bracketed_type] = STATE(3674), - [sym_generic_type] = STATE(3711), - [sym_generic_type_with_turbofish] = STATE(3231), - [sym_macro_invocation] = STATE(2221), - [sym_scoped_identifier] = STATE(2035), - [sym_scoped_type_identifier] = STATE(3055), - [sym_const_block] = STATE(2221), - [sym__pattern] = STATE(2687), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), + [sym_bracketed_type] = STATE(3756), + [sym_generic_type] = STATE(3622), + [sym_generic_type_with_turbofish] = STATE(3514), + [sym_macro_invocation] = STATE(2197), + [sym_scoped_identifier] = STATE(2056), + [sym_scoped_type_identifier] = STATE(2926), + [sym_const_block] = STATE(2197), + [sym__pattern] = STATE(2890), + [sym_generic_pattern] = STATE(2197), + [sym_tuple_pattern] = STATE(2197), + [sym_slice_pattern] = STATE(2197), + [sym_tuple_struct_pattern] = STATE(2197), + [sym_struct_pattern] = STATE(2197), + [sym_remaining_field_pattern] = STATE(2197), + [sym_mut_pattern] = STATE(2197), + [sym_range_pattern] = STATE(2197), + [sym_ref_pattern] = STATE(2197), + [sym_captured_pattern] = STATE(2197), + [sym_reference_pattern] = STATE(2197), + [sym_or_pattern] = STATE(2197), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2129), + [sym_string_literal] = STATE(2129), + [sym_raw_string_literal] = STATE(2129), + [sym_boolean_literal] = STATE(2129), [sym_line_comment] = STATE(818), [sym_block_comment] = STATE(818), - [sym_identifier] = ACTIONS(1725), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_LBRACK] = ACTIONS(1731), - [anon_sym_u8] = ACTIONS(1733), - [anon_sym_i8] = ACTIONS(1733), - [anon_sym_u16] = ACTIONS(1733), - [anon_sym_i16] = ACTIONS(1733), - [anon_sym_u32] = ACTIONS(1733), - [anon_sym_i32] = ACTIONS(1733), - [anon_sym_u64] = ACTIONS(1733), - [anon_sym_i64] = ACTIONS(1733), - [anon_sym_u128] = ACTIONS(1733), - [anon_sym_i128] = ACTIONS(1733), - [anon_sym_isize] = ACTIONS(1733), - [anon_sym_usize] = ACTIONS(1733), - [anon_sym_f32] = ACTIONS(1733), - [anon_sym_f64] = ACTIONS(1733), - [anon_sym_bool] = ACTIONS(1733), - [anon_sym_str] = ACTIONS(1733), - [anon_sym_char] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_AMP] = ACTIONS(1735), - [anon_sym_PIPE] = ACTIONS(3146), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1417), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COLON_COLON] = ACTIONS(1739), - [anon_sym_const] = ACTIONS(1743), - [anon_sym_default] = ACTIONS(1745), - [anon_sym_gen] = ACTIONS(1745), - [anon_sym_union] = ACTIONS(1745), - [anon_sym_ref] = ACTIONS(1159), - [sym_mutable_specifier] = ACTIONS(3132), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3134), - [sym_super] = ACTIONS(1747), - [sym_crate] = ACTIONS(1747), - [sym_metavariable] = ACTIONS(1749), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), + [sym_identifier] = ACTIONS(1730), + [anon_sym_LPAREN] = ACTIONS(1732), + [anon_sym_RPAREN] = ACTIONS(3166), + [anon_sym_LBRACK] = ACTIONS(1736), + [anon_sym_u8] = ACTIONS(1738), + [anon_sym_i8] = ACTIONS(1738), + [anon_sym_u16] = ACTIONS(1738), + [anon_sym_i16] = ACTIONS(1738), + [anon_sym_u32] = ACTIONS(1738), + [anon_sym_i32] = ACTIONS(1738), + [anon_sym_u64] = ACTIONS(1738), + [anon_sym_i64] = ACTIONS(1738), + [anon_sym_u128] = ACTIONS(1738), + [anon_sym_i128] = ACTIONS(1738), + [anon_sym_isize] = ACTIONS(1738), + [anon_sym_usize] = ACTIONS(1738), + [anon_sym_f32] = ACTIONS(1738), + [anon_sym_f64] = ACTIONS(1738), + [anon_sym_bool] = ACTIONS(1738), + [anon_sym_str] = ACTIONS(1738), + [anon_sym_char] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1064), + [anon_sym_AMP] = ACTIONS(1740), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1392), + [anon_sym_DOT_DOT] = ACTIONS(1074), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1078), + [anon_sym_COLON_COLON] = ACTIONS(1744), + [anon_sym_const] = ACTIONS(1748), + [anon_sym_default] = ACTIONS(1750), + [anon_sym_gen] = ACTIONS(1750), + [anon_sym_union] = ACTIONS(1750), + [anon_sym_ref] = ACTIONS(1106), + [sym_mutable_specifier] = ACTIONS(1400), + [sym_integer_literal] = ACTIONS(1112), + [aux_sym_string_literal_token1] = ACTIONS(1114), + [sym_char_literal] = ACTIONS(1112), + [anon_sym_true] = ACTIONS(1116), + [anon_sym_false] = ACTIONS(1116), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1752), + [sym_super] = ACTIONS(1752), + [sym_crate] = ACTIONS(1752), + [sym_metavariable] = ACTIONS(1754), + [sym__raw_string_literal_start] = ACTIONS(1124), + [sym_float_literal] = ACTIONS(1112), }, [STATE(819)] = { - [sym_bracketed_type] = STATE(3674), - [sym_generic_type] = STATE(3711), - [sym_generic_type_with_turbofish] = STATE(3231), - [sym_macro_invocation] = STATE(2221), - [sym_scoped_identifier] = STATE(2035), - [sym_scoped_type_identifier] = STATE(3055), - [sym_const_block] = STATE(2221), - [sym__pattern] = STATE(2656), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), + [sym_bracketed_type] = STATE(3756), + [sym_generic_type] = STATE(3622), + [sym_generic_type_with_turbofish] = STATE(3514), + [sym_macro_invocation] = STATE(2197), + [sym_scoped_identifier] = STATE(2056), + [sym_scoped_type_identifier] = STATE(2926), + [sym_const_block] = STATE(2197), + [sym__pattern] = STATE(2890), + [sym_generic_pattern] = STATE(2197), + [sym_tuple_pattern] = STATE(2197), + [sym_slice_pattern] = STATE(2197), + [sym_tuple_struct_pattern] = STATE(2197), + [sym_struct_pattern] = STATE(2197), + [sym_remaining_field_pattern] = STATE(2197), + [sym_mut_pattern] = STATE(2197), + [sym_range_pattern] = STATE(2197), + [sym_ref_pattern] = STATE(2197), + [sym_captured_pattern] = STATE(2197), + [sym_reference_pattern] = STATE(2197), + [sym_or_pattern] = STATE(2197), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2129), + [sym_string_literal] = STATE(2129), + [sym_raw_string_literal] = STATE(2129), + [sym_boolean_literal] = STATE(2129), [sym_line_comment] = STATE(819), [sym_block_comment] = STATE(819), - [sym_identifier] = ACTIONS(1725), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_LBRACK] = ACTIONS(1731), - [anon_sym_RBRACK] = ACTIONS(3152), - [anon_sym_u8] = ACTIONS(1733), - [anon_sym_i8] = ACTIONS(1733), - [anon_sym_u16] = ACTIONS(1733), - [anon_sym_i16] = ACTIONS(1733), - [anon_sym_u32] = ACTIONS(1733), - [anon_sym_i32] = ACTIONS(1733), - [anon_sym_u64] = ACTIONS(1733), - [anon_sym_i64] = ACTIONS(1733), - [anon_sym_u128] = ACTIONS(1733), - [anon_sym_i128] = ACTIONS(1733), - [anon_sym_isize] = ACTIONS(1733), - [anon_sym_usize] = ACTIONS(1733), - [anon_sym_f32] = ACTIONS(1733), - [anon_sym_f64] = ACTIONS(1733), - [anon_sym_bool] = ACTIONS(1733), - [anon_sym_str] = ACTIONS(1733), - [anon_sym_char] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_AMP] = ACTIONS(1735), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1417), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COLON_COLON] = ACTIONS(1739), - [anon_sym_const] = ACTIONS(1743), - [anon_sym_default] = ACTIONS(1745), - [anon_sym_gen] = ACTIONS(1745), - [anon_sym_union] = ACTIONS(1745), - [anon_sym_ref] = ACTIONS(1159), - [sym_mutable_specifier] = ACTIONS(1425), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1747), - [sym_super] = ACTIONS(1747), - [sym_crate] = ACTIONS(1747), - [sym_metavariable] = ACTIONS(1749), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), + [sym_identifier] = ACTIONS(1730), + [anon_sym_LPAREN] = ACTIONS(1732), + [anon_sym_RPAREN] = ACTIONS(3168), + [anon_sym_LBRACK] = ACTIONS(1736), + [anon_sym_u8] = ACTIONS(1738), + [anon_sym_i8] = ACTIONS(1738), + [anon_sym_u16] = ACTIONS(1738), + [anon_sym_i16] = ACTIONS(1738), + [anon_sym_u32] = ACTIONS(1738), + [anon_sym_i32] = ACTIONS(1738), + [anon_sym_u64] = ACTIONS(1738), + [anon_sym_i64] = ACTIONS(1738), + [anon_sym_u128] = ACTIONS(1738), + [anon_sym_i128] = ACTIONS(1738), + [anon_sym_isize] = ACTIONS(1738), + [anon_sym_usize] = ACTIONS(1738), + [anon_sym_f32] = ACTIONS(1738), + [anon_sym_f64] = ACTIONS(1738), + [anon_sym_bool] = ACTIONS(1738), + [anon_sym_str] = ACTIONS(1738), + [anon_sym_char] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1064), + [anon_sym_AMP] = ACTIONS(1740), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1392), + [anon_sym_DOT_DOT] = ACTIONS(1074), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1078), + [anon_sym_COLON_COLON] = ACTIONS(1744), + [anon_sym_const] = ACTIONS(1748), + [anon_sym_default] = ACTIONS(1750), + [anon_sym_gen] = ACTIONS(1750), + [anon_sym_union] = ACTIONS(1750), + [anon_sym_ref] = ACTIONS(1106), + [sym_mutable_specifier] = ACTIONS(1400), + [sym_integer_literal] = ACTIONS(1112), + [aux_sym_string_literal_token1] = ACTIONS(1114), + [sym_char_literal] = ACTIONS(1112), + [anon_sym_true] = ACTIONS(1116), + [anon_sym_false] = ACTIONS(1116), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1752), + [sym_super] = ACTIONS(1752), + [sym_crate] = ACTIONS(1752), + [sym_metavariable] = ACTIONS(1754), + [sym__raw_string_literal_start] = ACTIONS(1124), + [sym_float_literal] = ACTIONS(1112), }, [STATE(820)] = { - [sym_bracketed_type] = STATE(3674), - [sym_generic_type] = STATE(3711), - [sym_generic_type_with_turbofish] = STATE(3231), - [sym_macro_invocation] = STATE(2221), - [sym_scoped_identifier] = STATE(2035), - [sym_scoped_type_identifier] = STATE(3055), - [sym_const_block] = STATE(2221), - [sym__pattern] = STATE(2656), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), + [sym_parameter] = STATE(3134), + [sym_bracketed_type] = STATE(3756), + [sym_generic_type] = STATE(3622), + [sym_generic_type_with_turbofish] = STATE(3514), + [sym_macro_invocation] = STATE(2197), + [sym_scoped_identifier] = STATE(2056), + [sym_scoped_type_identifier] = STATE(2926), + [sym_const_block] = STATE(2197), + [sym__pattern] = STATE(2546), + [sym_generic_pattern] = STATE(2197), + [sym_tuple_pattern] = STATE(2197), + [sym_slice_pattern] = STATE(2197), + [sym_tuple_struct_pattern] = STATE(2197), + [sym_struct_pattern] = STATE(2197), + [sym_remaining_field_pattern] = STATE(2197), + [sym_mut_pattern] = STATE(2197), + [sym_range_pattern] = STATE(2197), + [sym_ref_pattern] = STATE(2197), + [sym_captured_pattern] = STATE(2197), + [sym_reference_pattern] = STATE(2197), + [sym_or_pattern] = STATE(2197), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2129), + [sym_string_literal] = STATE(2129), + [sym_raw_string_literal] = STATE(2129), + [sym_boolean_literal] = STATE(2129), [sym_line_comment] = STATE(820), [sym_block_comment] = STATE(820), - [sym_identifier] = ACTIONS(1725), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_LBRACK] = ACTIONS(1731), - [anon_sym_RBRACK] = ACTIONS(3154), - [anon_sym_u8] = ACTIONS(1733), - [anon_sym_i8] = ACTIONS(1733), - [anon_sym_u16] = ACTIONS(1733), - [anon_sym_i16] = ACTIONS(1733), - [anon_sym_u32] = ACTIONS(1733), - [anon_sym_i32] = ACTIONS(1733), - [anon_sym_u64] = ACTIONS(1733), - [anon_sym_i64] = ACTIONS(1733), - [anon_sym_u128] = ACTIONS(1733), - [anon_sym_i128] = ACTIONS(1733), - [anon_sym_isize] = ACTIONS(1733), - [anon_sym_usize] = ACTIONS(1733), - [anon_sym_f32] = ACTIONS(1733), - [anon_sym_f64] = ACTIONS(1733), - [anon_sym_bool] = ACTIONS(1733), - [anon_sym_str] = ACTIONS(1733), - [anon_sym_char] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_AMP] = ACTIONS(1735), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1417), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COLON_COLON] = ACTIONS(1739), - [anon_sym_const] = ACTIONS(1743), - [anon_sym_default] = ACTIONS(1745), - [anon_sym_gen] = ACTIONS(1745), - [anon_sym_union] = ACTIONS(1745), - [anon_sym_ref] = ACTIONS(1159), - [sym_mutable_specifier] = ACTIONS(1425), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1747), - [sym_super] = ACTIONS(1747), - [sym_crate] = ACTIONS(1747), - [sym_metavariable] = ACTIONS(1749), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), + [sym_identifier] = ACTIONS(1730), + [anon_sym_LPAREN] = ACTIONS(1732), + [anon_sym_LBRACK] = ACTIONS(1736), + [anon_sym_u8] = ACTIONS(1738), + [anon_sym_i8] = ACTIONS(1738), + [anon_sym_u16] = ACTIONS(1738), + [anon_sym_i16] = ACTIONS(1738), + [anon_sym_u32] = ACTIONS(1738), + [anon_sym_i32] = ACTIONS(1738), + [anon_sym_u64] = ACTIONS(1738), + [anon_sym_i64] = ACTIONS(1738), + [anon_sym_u128] = ACTIONS(1738), + [anon_sym_i128] = ACTIONS(1738), + [anon_sym_isize] = ACTIONS(1738), + [anon_sym_usize] = ACTIONS(1738), + [anon_sym_f32] = ACTIONS(1738), + [anon_sym_f64] = ACTIONS(1738), + [anon_sym_bool] = ACTIONS(1738), + [anon_sym_str] = ACTIONS(1738), + [anon_sym_char] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1064), + [anon_sym_AMP] = ACTIONS(1740), + [anon_sym_PIPE] = ACTIONS(3170), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1392), + [anon_sym_DOT_DOT] = ACTIONS(1074), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1078), + [anon_sym_COLON_COLON] = ACTIONS(1744), + [anon_sym_const] = ACTIONS(1748), + [anon_sym_default] = ACTIONS(1750), + [anon_sym_gen] = ACTIONS(1750), + [anon_sym_union] = ACTIONS(1750), + [anon_sym_ref] = ACTIONS(1106), + [sym_mutable_specifier] = ACTIONS(3156), + [sym_integer_literal] = ACTIONS(1112), + [aux_sym_string_literal_token1] = ACTIONS(1114), + [sym_char_literal] = ACTIONS(1112), + [anon_sym_true] = ACTIONS(1116), + [anon_sym_false] = ACTIONS(1116), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(3158), + [sym_super] = ACTIONS(1752), + [sym_crate] = ACTIONS(1752), + [sym_metavariable] = ACTIONS(1754), + [sym__raw_string_literal_start] = ACTIONS(1124), + [sym_float_literal] = ACTIONS(1112), }, [STATE(821)] = { - [sym_bracketed_type] = STATE(3674), - [sym_generic_type] = STATE(3711), - [sym_generic_type_with_turbofish] = STATE(3231), - [sym_macro_invocation] = STATE(2221), - [sym_scoped_identifier] = STATE(2035), - [sym_scoped_type_identifier] = STATE(3055), - [sym_const_block] = STATE(2221), - [sym__pattern] = STATE(2194), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), + [sym_bracketed_type] = STATE(3756), + [sym_generic_type] = STATE(3622), + [sym_generic_type_with_turbofish] = STATE(3514), + [sym_macro_invocation] = STATE(2197), + [sym_scoped_identifier] = STATE(2056), + [sym_scoped_type_identifier] = STATE(2926), + [sym_const_block] = STATE(2197), + [sym__pattern] = STATE(2890), + [sym_generic_pattern] = STATE(2197), + [sym_tuple_pattern] = STATE(2197), + [sym_slice_pattern] = STATE(2197), + [sym_tuple_struct_pattern] = STATE(2197), + [sym_struct_pattern] = STATE(2197), + [sym_remaining_field_pattern] = STATE(2197), + [sym_mut_pattern] = STATE(2197), + [sym_range_pattern] = STATE(2197), + [sym_ref_pattern] = STATE(2197), + [sym_captured_pattern] = STATE(2197), + [sym_reference_pattern] = STATE(2197), + [sym_or_pattern] = STATE(2197), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2129), + [sym_string_literal] = STATE(2129), + [sym_raw_string_literal] = STATE(2129), + [sym_boolean_literal] = STATE(2129), [sym_line_comment] = STATE(821), [sym_block_comment] = STATE(821), - [sym_identifier] = ACTIONS(1725), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_LBRACK] = ACTIONS(1731), - [anon_sym_u8] = ACTIONS(1733), - [anon_sym_i8] = ACTIONS(1733), - [anon_sym_u16] = ACTIONS(1733), - [anon_sym_i16] = ACTIONS(1733), - [anon_sym_u32] = ACTIONS(1733), - [anon_sym_i32] = ACTIONS(1733), - [anon_sym_u64] = ACTIONS(1733), - [anon_sym_i64] = ACTIONS(1733), - [anon_sym_u128] = ACTIONS(1733), - [anon_sym_i128] = ACTIONS(1733), - [anon_sym_isize] = ACTIONS(1733), - [anon_sym_usize] = ACTIONS(1733), - [anon_sym_f32] = ACTIONS(1733), - [anon_sym_f64] = ACTIONS(1733), - [anon_sym_bool] = ACTIONS(1733), - [anon_sym_str] = ACTIONS(1733), - [anon_sym_char] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_AMP] = ACTIONS(1735), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1417), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COLON_COLON] = ACTIONS(1739), - [anon_sym_const] = ACTIONS(1743), - [anon_sym_default] = ACTIONS(1745), - [anon_sym_gen] = ACTIONS(1745), - [anon_sym_union] = ACTIONS(1745), - [anon_sym_ref] = ACTIONS(1159), - [sym_mutable_specifier] = ACTIONS(1425), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1747), - [sym_super] = ACTIONS(1747), - [sym_crate] = ACTIONS(1747), - [sym_metavariable] = ACTIONS(1749), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), + [sym_identifier] = ACTIONS(1730), + [anon_sym_LPAREN] = ACTIONS(1732), + [anon_sym_RPAREN] = ACTIONS(3172), + [anon_sym_LBRACK] = ACTIONS(1736), + [anon_sym_u8] = ACTIONS(1738), + [anon_sym_i8] = ACTIONS(1738), + [anon_sym_u16] = ACTIONS(1738), + [anon_sym_i16] = ACTIONS(1738), + [anon_sym_u32] = ACTIONS(1738), + [anon_sym_i32] = ACTIONS(1738), + [anon_sym_u64] = ACTIONS(1738), + [anon_sym_i64] = ACTIONS(1738), + [anon_sym_u128] = ACTIONS(1738), + [anon_sym_i128] = ACTIONS(1738), + [anon_sym_isize] = ACTIONS(1738), + [anon_sym_usize] = ACTIONS(1738), + [anon_sym_f32] = ACTIONS(1738), + [anon_sym_f64] = ACTIONS(1738), + [anon_sym_bool] = ACTIONS(1738), + [anon_sym_str] = ACTIONS(1738), + [anon_sym_char] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1064), + [anon_sym_AMP] = ACTIONS(1740), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1392), + [anon_sym_DOT_DOT] = ACTIONS(1074), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1078), + [anon_sym_COLON_COLON] = ACTIONS(1744), + [anon_sym_const] = ACTIONS(1748), + [anon_sym_default] = ACTIONS(1750), + [anon_sym_gen] = ACTIONS(1750), + [anon_sym_union] = ACTIONS(1750), + [anon_sym_ref] = ACTIONS(1106), + [sym_mutable_specifier] = ACTIONS(1400), + [sym_integer_literal] = ACTIONS(1112), + [aux_sym_string_literal_token1] = ACTIONS(1114), + [sym_char_literal] = ACTIONS(1112), + [anon_sym_true] = ACTIONS(1116), + [anon_sym_false] = ACTIONS(1116), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1752), + [sym_super] = ACTIONS(1752), + [sym_crate] = ACTIONS(1752), + [sym_metavariable] = ACTIONS(1754), + [sym__raw_string_literal_start] = ACTIONS(1124), + [sym_float_literal] = ACTIONS(1112), }, [STATE(822)] = { - [sym_bracketed_type] = STATE(3674), - [sym_generic_type] = STATE(3711), - [sym_generic_type_with_turbofish] = STATE(3231), - [sym_macro_invocation] = STATE(2221), - [sym_scoped_identifier] = STATE(2035), - [sym_scoped_type_identifier] = STATE(3055), - [sym_const_block] = STATE(2221), - [sym__pattern] = STATE(3478), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), + [sym_parameter] = STATE(3134), + [sym_bracketed_type] = STATE(3756), + [sym_generic_type] = STATE(3622), + [sym_generic_type_with_turbofish] = STATE(3514), + [sym_macro_invocation] = STATE(2197), + [sym_scoped_identifier] = STATE(2056), + [sym_scoped_type_identifier] = STATE(2926), + [sym_const_block] = STATE(2197), + [sym__pattern] = STATE(2642), + [sym_generic_pattern] = STATE(2197), + [sym_tuple_pattern] = STATE(2197), + [sym_slice_pattern] = STATE(2197), + [sym_tuple_struct_pattern] = STATE(2197), + [sym_struct_pattern] = STATE(2197), + [sym_remaining_field_pattern] = STATE(2197), + [sym_mut_pattern] = STATE(2197), + [sym_range_pattern] = STATE(2197), + [sym_ref_pattern] = STATE(2197), + [sym_captured_pattern] = STATE(2197), + [sym_reference_pattern] = STATE(2197), + [sym_or_pattern] = STATE(2197), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2129), + [sym_string_literal] = STATE(2129), + [sym_raw_string_literal] = STATE(2129), + [sym_boolean_literal] = STATE(2129), [sym_line_comment] = STATE(822), [sym_block_comment] = STATE(822), - [sym_identifier] = ACTIONS(1725), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_LBRACK] = ACTIONS(1731), - [anon_sym_u8] = ACTIONS(1733), - [anon_sym_i8] = ACTIONS(1733), - [anon_sym_u16] = ACTIONS(1733), - [anon_sym_i16] = ACTIONS(1733), - [anon_sym_u32] = ACTIONS(1733), - [anon_sym_i32] = ACTIONS(1733), - [anon_sym_u64] = ACTIONS(1733), - [anon_sym_i64] = ACTIONS(1733), - [anon_sym_u128] = ACTIONS(1733), - [anon_sym_i128] = ACTIONS(1733), - [anon_sym_isize] = ACTIONS(1733), - [anon_sym_usize] = ACTIONS(1733), - [anon_sym_f32] = ACTIONS(1733), - [anon_sym_f64] = ACTIONS(1733), - [anon_sym_bool] = ACTIONS(1733), - [anon_sym_str] = ACTIONS(1733), - [anon_sym_char] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_AMP] = ACTIONS(1735), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1417), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COLON_COLON] = ACTIONS(1739), - [anon_sym_const] = ACTIONS(1743), - [anon_sym_default] = ACTIONS(1745), - [anon_sym_gen] = ACTIONS(1745), - [anon_sym_union] = ACTIONS(1745), - [anon_sym_ref] = ACTIONS(1159), - [sym_mutable_specifier] = ACTIONS(1425), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1747), - [sym_super] = ACTIONS(1747), - [sym_crate] = ACTIONS(1747), - [sym_metavariable] = ACTIONS(1749), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), + [sym_identifier] = ACTIONS(1730), + [anon_sym_LPAREN] = ACTIONS(1732), + [anon_sym_LBRACK] = ACTIONS(1736), + [anon_sym_u8] = ACTIONS(1738), + [anon_sym_i8] = ACTIONS(1738), + [anon_sym_u16] = ACTIONS(1738), + [anon_sym_i16] = ACTIONS(1738), + [anon_sym_u32] = ACTIONS(1738), + [anon_sym_i32] = ACTIONS(1738), + [anon_sym_u64] = ACTIONS(1738), + [anon_sym_i64] = ACTIONS(1738), + [anon_sym_u128] = ACTIONS(1738), + [anon_sym_i128] = ACTIONS(1738), + [anon_sym_isize] = ACTIONS(1738), + [anon_sym_usize] = ACTIONS(1738), + [anon_sym_f32] = ACTIONS(1738), + [anon_sym_f64] = ACTIONS(1738), + [anon_sym_bool] = ACTIONS(1738), + [anon_sym_str] = ACTIONS(1738), + [anon_sym_char] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1064), + [anon_sym_AMP] = ACTIONS(1740), + [anon_sym_PIPE] = ACTIONS(3170), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1392), + [anon_sym_DOT_DOT] = ACTIONS(1074), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1078), + [anon_sym_COLON_COLON] = ACTIONS(1744), + [anon_sym_const] = ACTIONS(1748), + [anon_sym_default] = ACTIONS(1750), + [anon_sym_gen] = ACTIONS(1750), + [anon_sym_union] = ACTIONS(1750), + [anon_sym_ref] = ACTIONS(1106), + [sym_mutable_specifier] = ACTIONS(3156), + [sym_integer_literal] = ACTIONS(1112), + [aux_sym_string_literal_token1] = ACTIONS(1114), + [sym_char_literal] = ACTIONS(1112), + [anon_sym_true] = ACTIONS(1116), + [anon_sym_false] = ACTIONS(1116), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(3158), + [sym_super] = ACTIONS(1752), + [sym_crate] = ACTIONS(1752), + [sym_metavariable] = ACTIONS(1754), + [sym__raw_string_literal_start] = ACTIONS(1124), + [sym_float_literal] = ACTIONS(1112), }, [STATE(823)] = { - [sym_bracketed_type] = STATE(3674), - [sym_generic_type] = STATE(3711), - [sym_generic_type_with_turbofish] = STATE(3231), - [sym_macro_invocation] = STATE(2221), - [sym_scoped_identifier] = STATE(2035), - [sym_scoped_type_identifier] = STATE(3055), - [sym_const_block] = STATE(2221), - [sym__pattern] = STATE(2589), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), + [sym_bracketed_type] = STATE(3756), + [sym_generic_type] = STATE(3622), + [sym_generic_type_with_turbofish] = STATE(3514), + [sym_macro_invocation] = STATE(2197), + [sym_scoped_identifier] = STATE(2056), + [sym_scoped_type_identifier] = STATE(2926), + [sym_const_block] = STATE(2197), + [sym__pattern] = STATE(2890), + [sym_generic_pattern] = STATE(2197), + [sym_tuple_pattern] = STATE(2197), + [sym_slice_pattern] = STATE(2197), + [sym_tuple_struct_pattern] = STATE(2197), + [sym_struct_pattern] = STATE(2197), + [sym_remaining_field_pattern] = STATE(2197), + [sym_mut_pattern] = STATE(2197), + [sym_range_pattern] = STATE(2197), + [sym_ref_pattern] = STATE(2197), + [sym_captured_pattern] = STATE(2197), + [sym_reference_pattern] = STATE(2197), + [sym_or_pattern] = STATE(2197), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2129), + [sym_string_literal] = STATE(2129), + [sym_raw_string_literal] = STATE(2129), + [sym_boolean_literal] = STATE(2129), [sym_line_comment] = STATE(823), [sym_block_comment] = STATE(823), - [sym_identifier] = ACTIONS(1725), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_LBRACK] = ACTIONS(1731), - [anon_sym_u8] = ACTIONS(1733), - [anon_sym_i8] = ACTIONS(1733), - [anon_sym_u16] = ACTIONS(1733), - [anon_sym_i16] = ACTIONS(1733), - [anon_sym_u32] = ACTIONS(1733), - [anon_sym_i32] = ACTIONS(1733), - [anon_sym_u64] = ACTIONS(1733), - [anon_sym_i64] = ACTIONS(1733), - [anon_sym_u128] = ACTIONS(1733), - [anon_sym_i128] = ACTIONS(1733), - [anon_sym_isize] = ACTIONS(1733), - [anon_sym_usize] = ACTIONS(1733), - [anon_sym_f32] = ACTIONS(1733), - [anon_sym_f64] = ACTIONS(1733), - [anon_sym_bool] = ACTIONS(1733), - [anon_sym_str] = ACTIONS(1733), - [anon_sym_char] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_AMP] = ACTIONS(1735), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1417), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COLON_COLON] = ACTIONS(1739), - [anon_sym_const] = ACTIONS(1743), - [anon_sym_default] = ACTIONS(1745), - [anon_sym_gen] = ACTIONS(1745), - [anon_sym_union] = ACTIONS(1745), - [anon_sym_ref] = ACTIONS(1159), - [sym_mutable_specifier] = ACTIONS(3156), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1747), - [sym_super] = ACTIONS(1747), - [sym_crate] = ACTIONS(1747), - [sym_metavariable] = ACTIONS(1749), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), + [sym_identifier] = ACTIONS(1730), + [anon_sym_LPAREN] = ACTIONS(1732), + [anon_sym_LBRACK] = ACTIONS(1736), + [anon_sym_RBRACK] = ACTIONS(3174), + [anon_sym_u8] = ACTIONS(1738), + [anon_sym_i8] = ACTIONS(1738), + [anon_sym_u16] = ACTIONS(1738), + [anon_sym_i16] = ACTIONS(1738), + [anon_sym_u32] = ACTIONS(1738), + [anon_sym_i32] = ACTIONS(1738), + [anon_sym_u64] = ACTIONS(1738), + [anon_sym_i64] = ACTIONS(1738), + [anon_sym_u128] = ACTIONS(1738), + [anon_sym_i128] = ACTIONS(1738), + [anon_sym_isize] = ACTIONS(1738), + [anon_sym_usize] = ACTIONS(1738), + [anon_sym_f32] = ACTIONS(1738), + [anon_sym_f64] = ACTIONS(1738), + [anon_sym_bool] = ACTIONS(1738), + [anon_sym_str] = ACTIONS(1738), + [anon_sym_char] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1064), + [anon_sym_AMP] = ACTIONS(1740), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1392), + [anon_sym_DOT_DOT] = ACTIONS(1074), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1078), + [anon_sym_COLON_COLON] = ACTIONS(1744), + [anon_sym_const] = ACTIONS(1748), + [anon_sym_default] = ACTIONS(1750), + [anon_sym_gen] = ACTIONS(1750), + [anon_sym_union] = ACTIONS(1750), + [anon_sym_ref] = ACTIONS(1106), + [sym_mutable_specifier] = ACTIONS(1400), + [sym_integer_literal] = ACTIONS(1112), + [aux_sym_string_literal_token1] = ACTIONS(1114), + [sym_char_literal] = ACTIONS(1112), + [anon_sym_true] = ACTIONS(1116), + [anon_sym_false] = ACTIONS(1116), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1752), + [sym_super] = ACTIONS(1752), + [sym_crate] = ACTIONS(1752), + [sym_metavariable] = ACTIONS(1754), + [sym__raw_string_literal_start] = ACTIONS(1124), + [sym_float_literal] = ACTIONS(1112), }, [STATE(824)] = { - [sym_bracketed_type] = STATE(3674), - [sym_generic_type] = STATE(3711), - [sym_generic_type_with_turbofish] = STATE(3231), - [sym_macro_invocation] = STATE(2221), - [sym_scoped_identifier] = STATE(2035), - [sym_scoped_type_identifier] = STATE(3055), - [sym_const_block] = STATE(2221), - [sym__pattern] = STATE(3260), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), + [sym_bracketed_type] = STATE(3756), + [sym_generic_type] = STATE(3622), + [sym_generic_type_with_turbofish] = STATE(3514), + [sym_macro_invocation] = STATE(2197), + [sym_scoped_identifier] = STATE(2056), + [sym_scoped_type_identifier] = STATE(2926), + [sym_const_block] = STATE(2197), + [sym__pattern] = STATE(2890), + [sym_generic_pattern] = STATE(2197), + [sym_tuple_pattern] = STATE(2197), + [sym_slice_pattern] = STATE(2197), + [sym_tuple_struct_pattern] = STATE(2197), + [sym_struct_pattern] = STATE(2197), + [sym_remaining_field_pattern] = STATE(2197), + [sym_mut_pattern] = STATE(2197), + [sym_range_pattern] = STATE(2197), + [sym_ref_pattern] = STATE(2197), + [sym_captured_pattern] = STATE(2197), + [sym_reference_pattern] = STATE(2197), + [sym_or_pattern] = STATE(2197), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2129), + [sym_string_literal] = STATE(2129), + [sym_raw_string_literal] = STATE(2129), + [sym_boolean_literal] = STATE(2129), [sym_line_comment] = STATE(824), [sym_block_comment] = STATE(824), - [sym_identifier] = ACTIONS(1725), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_LBRACK] = ACTIONS(1731), - [anon_sym_u8] = ACTIONS(1733), - [anon_sym_i8] = ACTIONS(1733), - [anon_sym_u16] = ACTIONS(1733), - [anon_sym_i16] = ACTIONS(1733), - [anon_sym_u32] = ACTIONS(1733), - [anon_sym_i32] = ACTIONS(1733), - [anon_sym_u64] = ACTIONS(1733), - [anon_sym_i64] = ACTIONS(1733), - [anon_sym_u128] = ACTIONS(1733), - [anon_sym_i128] = ACTIONS(1733), - [anon_sym_isize] = ACTIONS(1733), - [anon_sym_usize] = ACTIONS(1733), - [anon_sym_f32] = ACTIONS(1733), - [anon_sym_f64] = ACTIONS(1733), - [anon_sym_bool] = ACTIONS(1733), - [anon_sym_str] = ACTIONS(1733), - [anon_sym_char] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_AMP] = ACTIONS(1735), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1417), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COLON_COLON] = ACTIONS(1739), - [anon_sym_const] = ACTIONS(1743), - [anon_sym_default] = ACTIONS(1745), - [anon_sym_gen] = ACTIONS(1745), - [anon_sym_union] = ACTIONS(1745), - [anon_sym_ref] = ACTIONS(1159), - [sym_mutable_specifier] = ACTIONS(1425), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1747), - [sym_super] = ACTIONS(1747), - [sym_crate] = ACTIONS(1747), - [sym_metavariable] = ACTIONS(1749), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), + [sym_identifier] = ACTIONS(1730), + [anon_sym_LPAREN] = ACTIONS(1732), + [anon_sym_LBRACK] = ACTIONS(1736), + [anon_sym_RBRACK] = ACTIONS(3176), + [anon_sym_u8] = ACTIONS(1738), + [anon_sym_i8] = ACTIONS(1738), + [anon_sym_u16] = ACTIONS(1738), + [anon_sym_i16] = ACTIONS(1738), + [anon_sym_u32] = ACTIONS(1738), + [anon_sym_i32] = ACTIONS(1738), + [anon_sym_u64] = ACTIONS(1738), + [anon_sym_i64] = ACTIONS(1738), + [anon_sym_u128] = ACTIONS(1738), + [anon_sym_i128] = ACTIONS(1738), + [anon_sym_isize] = ACTIONS(1738), + [anon_sym_usize] = ACTIONS(1738), + [anon_sym_f32] = ACTIONS(1738), + [anon_sym_f64] = ACTIONS(1738), + [anon_sym_bool] = ACTIONS(1738), + [anon_sym_str] = ACTIONS(1738), + [anon_sym_char] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1064), + [anon_sym_AMP] = ACTIONS(1740), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1392), + [anon_sym_DOT_DOT] = ACTIONS(1074), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1078), + [anon_sym_COLON_COLON] = ACTIONS(1744), + [anon_sym_const] = ACTIONS(1748), + [anon_sym_default] = ACTIONS(1750), + [anon_sym_gen] = ACTIONS(1750), + [anon_sym_union] = ACTIONS(1750), + [anon_sym_ref] = ACTIONS(1106), + [sym_mutable_specifier] = ACTIONS(1400), + [sym_integer_literal] = ACTIONS(1112), + [aux_sym_string_literal_token1] = ACTIONS(1114), + [sym_char_literal] = ACTIONS(1112), + [anon_sym_true] = ACTIONS(1116), + [anon_sym_false] = ACTIONS(1116), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1752), + [sym_super] = ACTIONS(1752), + [sym_crate] = ACTIONS(1752), + [sym_metavariable] = ACTIONS(1754), + [sym__raw_string_literal_start] = ACTIONS(1124), + [sym_float_literal] = ACTIONS(1112), }, [STATE(825)] = { - [sym_bracketed_type] = STATE(3674), - [sym_generic_type] = STATE(3711), - [sym_generic_type_with_turbofish] = STATE(3231), - [sym_macro_invocation] = STATE(2221), - [sym_scoped_identifier] = STATE(2035), - [sym_scoped_type_identifier] = STATE(3055), - [sym_const_block] = STATE(2221), - [sym__pattern] = STATE(2608), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), + [sym_bracketed_type] = STATE(3756), + [sym_generic_type] = STATE(3622), + [sym_generic_type_with_turbofish] = STATE(3514), + [sym_macro_invocation] = STATE(2197), + [sym_scoped_identifier] = STATE(2056), + [sym_scoped_type_identifier] = STATE(2926), + [sym_const_block] = STATE(2197), + [sym__pattern] = STATE(2890), + [sym_generic_pattern] = STATE(2197), + [sym_tuple_pattern] = STATE(2197), + [sym_slice_pattern] = STATE(2197), + [sym_tuple_struct_pattern] = STATE(2197), + [sym_struct_pattern] = STATE(2197), + [sym_remaining_field_pattern] = STATE(2197), + [sym_mut_pattern] = STATE(2197), + [sym_range_pattern] = STATE(2197), + [sym_ref_pattern] = STATE(2197), + [sym_captured_pattern] = STATE(2197), + [sym_reference_pattern] = STATE(2197), + [sym_or_pattern] = STATE(2197), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2129), + [sym_string_literal] = STATE(2129), + [sym_raw_string_literal] = STATE(2129), + [sym_boolean_literal] = STATE(2129), [sym_line_comment] = STATE(825), [sym_block_comment] = STATE(825), - [sym_identifier] = ACTIONS(1725), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_LBRACK] = ACTIONS(1731), - [anon_sym_u8] = ACTIONS(1733), - [anon_sym_i8] = ACTIONS(1733), - [anon_sym_u16] = ACTIONS(1733), - [anon_sym_i16] = ACTIONS(1733), - [anon_sym_u32] = ACTIONS(1733), - [anon_sym_i32] = ACTIONS(1733), - [anon_sym_u64] = ACTIONS(1733), - [anon_sym_i64] = ACTIONS(1733), - [anon_sym_u128] = ACTIONS(1733), - [anon_sym_i128] = ACTIONS(1733), - [anon_sym_isize] = ACTIONS(1733), - [anon_sym_usize] = ACTIONS(1733), - [anon_sym_f32] = ACTIONS(1733), - [anon_sym_f64] = ACTIONS(1733), - [anon_sym_bool] = ACTIONS(1733), - [anon_sym_str] = ACTIONS(1733), - [anon_sym_char] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_AMP] = ACTIONS(1735), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1417), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COLON_COLON] = ACTIONS(1739), - [anon_sym_const] = ACTIONS(1743), - [anon_sym_default] = ACTIONS(1745), - [anon_sym_gen] = ACTIONS(1745), - [anon_sym_union] = ACTIONS(1745), - [anon_sym_ref] = ACTIONS(1159), - [sym_mutable_specifier] = ACTIONS(3158), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1747), - [sym_super] = ACTIONS(1747), - [sym_crate] = ACTIONS(1747), - [sym_metavariable] = ACTIONS(1749), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), + [sym_identifier] = ACTIONS(1730), + [anon_sym_LPAREN] = ACTIONS(1732), + [anon_sym_RPAREN] = ACTIONS(3178), + [anon_sym_LBRACK] = ACTIONS(1736), + [anon_sym_u8] = ACTIONS(1738), + [anon_sym_i8] = ACTIONS(1738), + [anon_sym_u16] = ACTIONS(1738), + [anon_sym_i16] = ACTIONS(1738), + [anon_sym_u32] = ACTIONS(1738), + [anon_sym_i32] = ACTIONS(1738), + [anon_sym_u64] = ACTIONS(1738), + [anon_sym_i64] = ACTIONS(1738), + [anon_sym_u128] = ACTIONS(1738), + [anon_sym_i128] = ACTIONS(1738), + [anon_sym_isize] = ACTIONS(1738), + [anon_sym_usize] = ACTIONS(1738), + [anon_sym_f32] = ACTIONS(1738), + [anon_sym_f64] = ACTIONS(1738), + [anon_sym_bool] = ACTIONS(1738), + [anon_sym_str] = ACTIONS(1738), + [anon_sym_char] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1064), + [anon_sym_AMP] = ACTIONS(1740), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1392), + [anon_sym_DOT_DOT] = ACTIONS(1074), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1078), + [anon_sym_COLON_COLON] = ACTIONS(1744), + [anon_sym_const] = ACTIONS(1748), + [anon_sym_default] = ACTIONS(1750), + [anon_sym_gen] = ACTIONS(1750), + [anon_sym_union] = ACTIONS(1750), + [anon_sym_ref] = ACTIONS(1106), + [sym_mutable_specifier] = ACTIONS(1400), + [sym_integer_literal] = ACTIONS(1112), + [aux_sym_string_literal_token1] = ACTIONS(1114), + [sym_char_literal] = ACTIONS(1112), + [anon_sym_true] = ACTIONS(1116), + [anon_sym_false] = ACTIONS(1116), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1752), + [sym_super] = ACTIONS(1752), + [sym_crate] = ACTIONS(1752), + [sym_metavariable] = ACTIONS(1754), + [sym__raw_string_literal_start] = ACTIONS(1124), + [sym_float_literal] = ACTIONS(1112), }, [STATE(826)] = { - [sym_bracketed_type] = STATE(3674), - [sym_generic_type] = STATE(3711), - [sym_generic_type_with_turbofish] = STATE(3231), - [sym_macro_invocation] = STATE(2221), - [sym_scoped_identifier] = STATE(2035), - [sym_scoped_type_identifier] = STATE(3055), - [sym_const_block] = STATE(2221), - [sym__pattern] = STATE(3490), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), + [sym_bracketed_type] = STATE(3756), + [sym_generic_type] = STATE(3622), + [sym_generic_type_with_turbofish] = STATE(3514), + [sym_macro_invocation] = STATE(2197), + [sym_scoped_identifier] = STATE(2056), + [sym_scoped_type_identifier] = STATE(2926), + [sym_const_block] = STATE(2197), + [sym__pattern] = STATE(2890), + [sym_generic_pattern] = STATE(2197), + [sym_tuple_pattern] = STATE(2197), + [sym_slice_pattern] = STATE(2197), + [sym_tuple_struct_pattern] = STATE(2197), + [sym_struct_pattern] = STATE(2197), + [sym_remaining_field_pattern] = STATE(2197), + [sym_mut_pattern] = STATE(2197), + [sym_range_pattern] = STATE(2197), + [sym_ref_pattern] = STATE(2197), + [sym_captured_pattern] = STATE(2197), + [sym_reference_pattern] = STATE(2197), + [sym_or_pattern] = STATE(2197), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2129), + [sym_string_literal] = STATE(2129), + [sym_raw_string_literal] = STATE(2129), + [sym_boolean_literal] = STATE(2129), [sym_line_comment] = STATE(826), [sym_block_comment] = STATE(826), - [sym_identifier] = ACTIONS(1725), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_LBRACK] = ACTIONS(1731), - [anon_sym_u8] = ACTIONS(1733), - [anon_sym_i8] = ACTIONS(1733), - [anon_sym_u16] = ACTIONS(1733), - [anon_sym_i16] = ACTIONS(1733), - [anon_sym_u32] = ACTIONS(1733), - [anon_sym_i32] = ACTIONS(1733), - [anon_sym_u64] = ACTIONS(1733), - [anon_sym_i64] = ACTIONS(1733), - [anon_sym_u128] = ACTIONS(1733), - [anon_sym_i128] = ACTIONS(1733), - [anon_sym_isize] = ACTIONS(1733), - [anon_sym_usize] = ACTIONS(1733), - [anon_sym_f32] = ACTIONS(1733), - [anon_sym_f64] = ACTIONS(1733), - [anon_sym_bool] = ACTIONS(1733), - [anon_sym_str] = ACTIONS(1733), - [anon_sym_char] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_AMP] = ACTIONS(1735), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1417), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COLON_COLON] = ACTIONS(1739), - [anon_sym_const] = ACTIONS(1743), - [anon_sym_default] = ACTIONS(1745), - [anon_sym_gen] = ACTIONS(1745), - [anon_sym_union] = ACTIONS(1745), - [anon_sym_ref] = ACTIONS(1159), - [sym_mutable_specifier] = ACTIONS(1425), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1747), - [sym_super] = ACTIONS(1747), - [sym_crate] = ACTIONS(1747), - [sym_metavariable] = ACTIONS(1749), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), + [sym_identifier] = ACTIONS(1730), + [anon_sym_LPAREN] = ACTIONS(1732), + [anon_sym_RPAREN] = ACTIONS(3180), + [anon_sym_LBRACK] = ACTIONS(1736), + [anon_sym_u8] = ACTIONS(1738), + [anon_sym_i8] = ACTIONS(1738), + [anon_sym_u16] = ACTIONS(1738), + [anon_sym_i16] = ACTIONS(1738), + [anon_sym_u32] = ACTIONS(1738), + [anon_sym_i32] = ACTIONS(1738), + [anon_sym_u64] = ACTIONS(1738), + [anon_sym_i64] = ACTIONS(1738), + [anon_sym_u128] = ACTIONS(1738), + [anon_sym_i128] = ACTIONS(1738), + [anon_sym_isize] = ACTIONS(1738), + [anon_sym_usize] = ACTIONS(1738), + [anon_sym_f32] = ACTIONS(1738), + [anon_sym_f64] = ACTIONS(1738), + [anon_sym_bool] = ACTIONS(1738), + [anon_sym_str] = ACTIONS(1738), + [anon_sym_char] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1064), + [anon_sym_AMP] = ACTIONS(1740), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1392), + [anon_sym_DOT_DOT] = ACTIONS(1074), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1078), + [anon_sym_COLON_COLON] = ACTIONS(1744), + [anon_sym_const] = ACTIONS(1748), + [anon_sym_default] = ACTIONS(1750), + [anon_sym_gen] = ACTIONS(1750), + [anon_sym_union] = ACTIONS(1750), + [anon_sym_ref] = ACTIONS(1106), + [sym_mutable_specifier] = ACTIONS(1400), + [sym_integer_literal] = ACTIONS(1112), + [aux_sym_string_literal_token1] = ACTIONS(1114), + [sym_char_literal] = ACTIONS(1112), + [anon_sym_true] = ACTIONS(1116), + [anon_sym_false] = ACTIONS(1116), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1752), + [sym_super] = ACTIONS(1752), + [sym_crate] = ACTIONS(1752), + [sym_metavariable] = ACTIONS(1754), + [sym__raw_string_literal_start] = ACTIONS(1124), + [sym_float_literal] = ACTIONS(1112), }, [STATE(827)] = { - [sym_bracketed_type] = STATE(3674), - [sym_generic_type] = STATE(3711), - [sym_generic_type_with_turbofish] = STATE(3231), - [sym_macro_invocation] = STATE(2221), - [sym_scoped_identifier] = STATE(2035), - [sym_scoped_type_identifier] = STATE(3055), - [sym_const_block] = STATE(2221), - [sym__pattern] = STATE(3430), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), + [sym_bracketed_type] = STATE(3756), + [sym_generic_type] = STATE(3622), + [sym_generic_type_with_turbofish] = STATE(3514), + [sym_macro_invocation] = STATE(2197), + [sym_scoped_identifier] = STATE(2056), + [sym_scoped_type_identifier] = STATE(2926), + [sym_const_block] = STATE(2197), + [sym__pattern] = STATE(3129), + [sym_generic_pattern] = STATE(2197), + [sym_tuple_pattern] = STATE(2197), + [sym_slice_pattern] = STATE(2197), + [sym_tuple_struct_pattern] = STATE(2197), + [sym_struct_pattern] = STATE(2197), + [sym_remaining_field_pattern] = STATE(2197), + [sym_mut_pattern] = STATE(2197), + [sym_range_pattern] = STATE(2197), + [sym_ref_pattern] = STATE(2197), + [sym_captured_pattern] = STATE(2197), + [sym_reference_pattern] = STATE(2197), + [sym_or_pattern] = STATE(2197), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2129), + [sym_string_literal] = STATE(2129), + [sym_raw_string_literal] = STATE(2129), + [sym_boolean_literal] = STATE(2129), [sym_line_comment] = STATE(827), [sym_block_comment] = STATE(827), - [sym_identifier] = ACTIONS(1725), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_LBRACK] = ACTIONS(1731), - [anon_sym_u8] = ACTIONS(1733), - [anon_sym_i8] = ACTIONS(1733), - [anon_sym_u16] = ACTIONS(1733), - [anon_sym_i16] = ACTIONS(1733), - [anon_sym_u32] = ACTIONS(1733), - [anon_sym_i32] = ACTIONS(1733), - [anon_sym_u64] = ACTIONS(1733), - [anon_sym_i64] = ACTIONS(1733), - [anon_sym_u128] = ACTIONS(1733), - [anon_sym_i128] = ACTIONS(1733), - [anon_sym_isize] = ACTIONS(1733), - [anon_sym_usize] = ACTIONS(1733), - [anon_sym_f32] = ACTIONS(1733), - [anon_sym_f64] = ACTIONS(1733), - [anon_sym_bool] = ACTIONS(1733), - [anon_sym_str] = ACTIONS(1733), - [anon_sym_char] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_AMP] = ACTIONS(1735), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1417), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COLON_COLON] = ACTIONS(1739), - [anon_sym_const] = ACTIONS(1743), - [anon_sym_default] = ACTIONS(1745), - [anon_sym_gen] = ACTIONS(1745), - [anon_sym_union] = ACTIONS(1745), - [anon_sym_ref] = ACTIONS(1159), - [sym_mutable_specifier] = ACTIONS(1425), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1747), - [sym_super] = ACTIONS(1747), - [sym_crate] = ACTIONS(1747), - [sym_metavariable] = ACTIONS(1749), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), + [sym_identifier] = ACTIONS(1730), + [anon_sym_LPAREN] = ACTIONS(1732), + [anon_sym_LBRACK] = ACTIONS(1736), + [anon_sym_u8] = ACTIONS(1738), + [anon_sym_i8] = ACTIONS(1738), + [anon_sym_u16] = ACTIONS(1738), + [anon_sym_i16] = ACTIONS(1738), + [anon_sym_u32] = ACTIONS(1738), + [anon_sym_i32] = ACTIONS(1738), + [anon_sym_u64] = ACTIONS(1738), + [anon_sym_i64] = ACTIONS(1738), + [anon_sym_u128] = ACTIONS(1738), + [anon_sym_i128] = ACTIONS(1738), + [anon_sym_isize] = ACTIONS(1738), + [anon_sym_usize] = ACTIONS(1738), + [anon_sym_f32] = ACTIONS(1738), + [anon_sym_f64] = ACTIONS(1738), + [anon_sym_bool] = ACTIONS(1738), + [anon_sym_str] = ACTIONS(1738), + [anon_sym_char] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1064), + [anon_sym_AMP] = ACTIONS(1740), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1392), + [anon_sym_DOT_DOT] = ACTIONS(1074), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1078), + [anon_sym_COLON_COLON] = ACTIONS(1744), + [anon_sym_const] = ACTIONS(1748), + [anon_sym_default] = ACTIONS(1750), + [anon_sym_gen] = ACTIONS(1750), + [anon_sym_union] = ACTIONS(1750), + [anon_sym_ref] = ACTIONS(1106), + [sym_mutable_specifier] = ACTIONS(1400), + [sym_integer_literal] = ACTIONS(1112), + [aux_sym_string_literal_token1] = ACTIONS(1114), + [sym_char_literal] = ACTIONS(1112), + [anon_sym_true] = ACTIONS(1116), + [anon_sym_false] = ACTIONS(1116), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1752), + [sym_super] = ACTIONS(1752), + [sym_crate] = ACTIONS(1752), + [sym_metavariable] = ACTIONS(1754), + [sym__raw_string_literal_start] = ACTIONS(1124), + [sym_float_literal] = ACTIONS(1112), }, [STATE(828)] = { - [sym_bracketed_type] = STATE(3674), - [sym_generic_type] = STATE(3711), - [sym_generic_type_with_turbofish] = STATE(3231), - [sym_macro_invocation] = STATE(2221), - [sym_scoped_identifier] = STATE(2035), - [sym_scoped_type_identifier] = STATE(3055), - [sym_const_block] = STATE(2221), - [sym__pattern] = STATE(2549), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), + [sym_bracketed_type] = STATE(3756), + [sym_generic_type] = STATE(3622), + [sym_generic_type_with_turbofish] = STATE(3514), + [sym_macro_invocation] = STATE(2197), + [sym_scoped_identifier] = STATE(2056), + [sym_scoped_type_identifier] = STATE(2926), + [sym_const_block] = STATE(2197), + [sym__pattern] = STATE(2228), + [sym_generic_pattern] = STATE(2197), + [sym_tuple_pattern] = STATE(2197), + [sym_slice_pattern] = STATE(2197), + [sym_tuple_struct_pattern] = STATE(2197), + [sym_struct_pattern] = STATE(2197), + [sym_remaining_field_pattern] = STATE(2197), + [sym_mut_pattern] = STATE(2197), + [sym_range_pattern] = STATE(2197), + [sym_ref_pattern] = STATE(2197), + [sym_captured_pattern] = STATE(2197), + [sym_reference_pattern] = STATE(2197), + [sym_or_pattern] = STATE(2197), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2129), + [sym_string_literal] = STATE(2129), + [sym_raw_string_literal] = STATE(2129), + [sym_boolean_literal] = STATE(2129), [sym_line_comment] = STATE(828), [sym_block_comment] = STATE(828), - [sym_identifier] = ACTIONS(1725), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_LBRACK] = ACTIONS(1731), - [anon_sym_u8] = ACTIONS(1733), - [anon_sym_i8] = ACTIONS(1733), - [anon_sym_u16] = ACTIONS(1733), - [anon_sym_i16] = ACTIONS(1733), - [anon_sym_u32] = ACTIONS(1733), - [anon_sym_i32] = ACTIONS(1733), - [anon_sym_u64] = ACTIONS(1733), - [anon_sym_i64] = ACTIONS(1733), - [anon_sym_u128] = ACTIONS(1733), - [anon_sym_i128] = ACTIONS(1733), - [anon_sym_isize] = ACTIONS(1733), - [anon_sym_usize] = ACTIONS(1733), - [anon_sym_f32] = ACTIONS(1733), - [anon_sym_f64] = ACTIONS(1733), - [anon_sym_bool] = ACTIONS(1733), - [anon_sym_str] = ACTIONS(1733), - [anon_sym_char] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_AMP] = ACTIONS(1735), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1417), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COLON_COLON] = ACTIONS(1739), - [anon_sym_const] = ACTIONS(1743), - [anon_sym_default] = ACTIONS(1745), - [anon_sym_gen] = ACTIONS(1745), - [anon_sym_union] = ACTIONS(1745), - [anon_sym_ref] = ACTIONS(1159), - [sym_mutable_specifier] = ACTIONS(1425), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1747), - [sym_super] = ACTIONS(1747), - [sym_crate] = ACTIONS(1747), - [sym_metavariable] = ACTIONS(1749), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), + [sym_identifier] = ACTIONS(1730), + [anon_sym_LPAREN] = ACTIONS(1732), + [anon_sym_LBRACK] = ACTIONS(1736), + [anon_sym_u8] = ACTIONS(1738), + [anon_sym_i8] = ACTIONS(1738), + [anon_sym_u16] = ACTIONS(1738), + [anon_sym_i16] = ACTIONS(1738), + [anon_sym_u32] = ACTIONS(1738), + [anon_sym_i32] = ACTIONS(1738), + [anon_sym_u64] = ACTIONS(1738), + [anon_sym_i64] = ACTIONS(1738), + [anon_sym_u128] = ACTIONS(1738), + [anon_sym_i128] = ACTIONS(1738), + [anon_sym_isize] = ACTIONS(1738), + [anon_sym_usize] = ACTIONS(1738), + [anon_sym_f32] = ACTIONS(1738), + [anon_sym_f64] = ACTIONS(1738), + [anon_sym_bool] = ACTIONS(1738), + [anon_sym_str] = ACTIONS(1738), + [anon_sym_char] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1064), + [anon_sym_AMP] = ACTIONS(1740), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1392), + [anon_sym_DOT_DOT] = ACTIONS(1074), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1078), + [anon_sym_COLON_COLON] = ACTIONS(1744), + [anon_sym_const] = ACTIONS(1748), + [anon_sym_default] = ACTIONS(1750), + [anon_sym_gen] = ACTIONS(1750), + [anon_sym_union] = ACTIONS(1750), + [anon_sym_ref] = ACTIONS(1106), + [sym_mutable_specifier] = ACTIONS(1400), + [sym_integer_literal] = ACTIONS(1112), + [aux_sym_string_literal_token1] = ACTIONS(1114), + [sym_char_literal] = ACTIONS(1112), + [anon_sym_true] = ACTIONS(1116), + [anon_sym_false] = ACTIONS(1116), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1752), + [sym_super] = ACTIONS(1752), + [sym_crate] = ACTIONS(1752), + [sym_metavariable] = ACTIONS(1754), + [sym__raw_string_literal_start] = ACTIONS(1124), + [sym_float_literal] = ACTIONS(1112), }, [STATE(829)] = { - [sym_bracketed_type] = STATE(3674), - [sym_generic_type] = STATE(3711), - [sym_generic_type_with_turbofish] = STATE(3231), - [sym_macro_invocation] = STATE(2221), - [sym_scoped_identifier] = STATE(2035), - [sym_scoped_type_identifier] = STATE(3055), - [sym_const_block] = STATE(2221), - [sym__pattern] = STATE(2213), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), + [sym_bracketed_type] = STATE(3756), + [sym_generic_type] = STATE(3622), + [sym_generic_type_with_turbofish] = STATE(3514), + [sym_macro_invocation] = STATE(2197), + [sym_scoped_identifier] = STATE(2056), + [sym_scoped_type_identifier] = STATE(2926), + [sym_const_block] = STATE(2197), + [sym__pattern] = STATE(3328), + [sym_generic_pattern] = STATE(2197), + [sym_tuple_pattern] = STATE(2197), + [sym_slice_pattern] = STATE(2197), + [sym_tuple_struct_pattern] = STATE(2197), + [sym_struct_pattern] = STATE(2197), + [sym_remaining_field_pattern] = STATE(2197), + [sym_mut_pattern] = STATE(2197), + [sym_range_pattern] = STATE(2197), + [sym_ref_pattern] = STATE(2197), + [sym_captured_pattern] = STATE(2197), + [sym_reference_pattern] = STATE(2197), + [sym_or_pattern] = STATE(2197), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2129), + [sym_string_literal] = STATE(2129), + [sym_raw_string_literal] = STATE(2129), + [sym_boolean_literal] = STATE(2129), [sym_line_comment] = STATE(829), [sym_block_comment] = STATE(829), - [sym_identifier] = ACTIONS(1725), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_LBRACK] = ACTIONS(1731), - [anon_sym_u8] = ACTIONS(1733), - [anon_sym_i8] = ACTIONS(1733), - [anon_sym_u16] = ACTIONS(1733), - [anon_sym_i16] = ACTIONS(1733), - [anon_sym_u32] = ACTIONS(1733), - [anon_sym_i32] = ACTIONS(1733), - [anon_sym_u64] = ACTIONS(1733), - [anon_sym_i64] = ACTIONS(1733), - [anon_sym_u128] = ACTIONS(1733), - [anon_sym_i128] = ACTIONS(1733), - [anon_sym_isize] = ACTIONS(1733), - [anon_sym_usize] = ACTIONS(1733), - [anon_sym_f32] = ACTIONS(1733), - [anon_sym_f64] = ACTIONS(1733), - [anon_sym_bool] = ACTIONS(1733), - [anon_sym_str] = ACTIONS(1733), - [anon_sym_char] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_AMP] = ACTIONS(1735), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1417), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COLON_COLON] = ACTIONS(1739), - [anon_sym_const] = ACTIONS(1743), - [anon_sym_default] = ACTIONS(1745), - [anon_sym_gen] = ACTIONS(1745), - [anon_sym_union] = ACTIONS(1745), - [anon_sym_ref] = ACTIONS(1159), - [sym_mutable_specifier] = ACTIONS(1425), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1747), - [sym_super] = ACTIONS(1747), - [sym_crate] = ACTIONS(1747), - [sym_metavariable] = ACTIONS(1749), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), + [sym_identifier] = ACTIONS(1730), + [anon_sym_LPAREN] = ACTIONS(1732), + [anon_sym_LBRACK] = ACTIONS(1736), + [anon_sym_u8] = ACTIONS(1738), + [anon_sym_i8] = ACTIONS(1738), + [anon_sym_u16] = ACTIONS(1738), + [anon_sym_i16] = ACTIONS(1738), + [anon_sym_u32] = ACTIONS(1738), + [anon_sym_i32] = ACTIONS(1738), + [anon_sym_u64] = ACTIONS(1738), + [anon_sym_i64] = ACTIONS(1738), + [anon_sym_u128] = ACTIONS(1738), + [anon_sym_i128] = ACTIONS(1738), + [anon_sym_isize] = ACTIONS(1738), + [anon_sym_usize] = ACTIONS(1738), + [anon_sym_f32] = ACTIONS(1738), + [anon_sym_f64] = ACTIONS(1738), + [anon_sym_bool] = ACTIONS(1738), + [anon_sym_str] = ACTIONS(1738), + [anon_sym_char] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1064), + [anon_sym_AMP] = ACTIONS(1740), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1392), + [anon_sym_DOT_DOT] = ACTIONS(1074), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1078), + [anon_sym_COLON_COLON] = ACTIONS(1744), + [anon_sym_const] = ACTIONS(1748), + [anon_sym_default] = ACTIONS(1750), + [anon_sym_gen] = ACTIONS(1750), + [anon_sym_union] = ACTIONS(1750), + [anon_sym_ref] = ACTIONS(1106), + [sym_mutable_specifier] = ACTIONS(1400), + [sym_integer_literal] = ACTIONS(1112), + [aux_sym_string_literal_token1] = ACTIONS(1114), + [sym_char_literal] = ACTIONS(1112), + [anon_sym_true] = ACTIONS(1116), + [anon_sym_false] = ACTIONS(1116), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1752), + [sym_super] = ACTIONS(1752), + [sym_crate] = ACTIONS(1752), + [sym_metavariable] = ACTIONS(1754), + [sym__raw_string_literal_start] = ACTIONS(1124), + [sym_float_literal] = ACTIONS(1112), }, [STATE(830)] = { - [sym_bracketed_type] = STATE(3674), - [sym_generic_type] = STATE(3711), - [sym_generic_type_with_turbofish] = STATE(3231), - [sym_macro_invocation] = STATE(2221), - [sym_scoped_identifier] = STATE(2035), - [sym_scoped_type_identifier] = STATE(3055), - [sym_const_block] = STATE(2221), - [sym__pattern] = STATE(2603), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), + [sym_bracketed_type] = STATE(3756), + [sym_generic_type] = STATE(3622), + [sym_generic_type_with_turbofish] = STATE(3514), + [sym_macro_invocation] = STATE(2197), + [sym_scoped_identifier] = STATE(2056), + [sym_scoped_type_identifier] = STATE(2926), + [sym_const_block] = STATE(2197), + [sym__pattern] = STATE(2545), + [sym_generic_pattern] = STATE(2197), + [sym_tuple_pattern] = STATE(2197), + [sym_slice_pattern] = STATE(2197), + [sym_tuple_struct_pattern] = STATE(2197), + [sym_struct_pattern] = STATE(2197), + [sym_remaining_field_pattern] = STATE(2197), + [sym_mut_pattern] = STATE(2197), + [sym_range_pattern] = STATE(2197), + [sym_ref_pattern] = STATE(2197), + [sym_captured_pattern] = STATE(2197), + [sym_reference_pattern] = STATE(2197), + [sym_or_pattern] = STATE(2197), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2129), + [sym_string_literal] = STATE(2129), + [sym_raw_string_literal] = STATE(2129), + [sym_boolean_literal] = STATE(2129), [sym_line_comment] = STATE(830), [sym_block_comment] = STATE(830), - [sym_identifier] = ACTIONS(1725), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_LBRACK] = ACTIONS(1731), - [anon_sym_u8] = ACTIONS(1733), - [anon_sym_i8] = ACTIONS(1733), - [anon_sym_u16] = ACTIONS(1733), - [anon_sym_i16] = ACTIONS(1733), - [anon_sym_u32] = ACTIONS(1733), - [anon_sym_i32] = ACTIONS(1733), - [anon_sym_u64] = ACTIONS(1733), - [anon_sym_i64] = ACTIONS(1733), - [anon_sym_u128] = ACTIONS(1733), - [anon_sym_i128] = ACTIONS(1733), - [anon_sym_isize] = ACTIONS(1733), - [anon_sym_usize] = ACTIONS(1733), - [anon_sym_f32] = ACTIONS(1733), - [anon_sym_f64] = ACTIONS(1733), - [anon_sym_bool] = ACTIONS(1733), - [anon_sym_str] = ACTIONS(1733), - [anon_sym_char] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_AMP] = ACTIONS(1735), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1417), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COLON_COLON] = ACTIONS(1739), - [anon_sym_const] = ACTIONS(1743), - [anon_sym_default] = ACTIONS(1745), - [anon_sym_gen] = ACTIONS(1745), - [anon_sym_union] = ACTIONS(1745), - [anon_sym_ref] = ACTIONS(1159), - [sym_mutable_specifier] = ACTIONS(1425), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1747), - [sym_super] = ACTIONS(1747), - [sym_crate] = ACTIONS(1747), - [sym_metavariable] = ACTIONS(1749), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), + [sym_identifier] = ACTIONS(1730), + [anon_sym_LPAREN] = ACTIONS(1732), + [anon_sym_LBRACK] = ACTIONS(1736), + [anon_sym_u8] = ACTIONS(1738), + [anon_sym_i8] = ACTIONS(1738), + [anon_sym_u16] = ACTIONS(1738), + [anon_sym_i16] = ACTIONS(1738), + [anon_sym_u32] = ACTIONS(1738), + [anon_sym_i32] = ACTIONS(1738), + [anon_sym_u64] = ACTIONS(1738), + [anon_sym_i64] = ACTIONS(1738), + [anon_sym_u128] = ACTIONS(1738), + [anon_sym_i128] = ACTIONS(1738), + [anon_sym_isize] = ACTIONS(1738), + [anon_sym_usize] = ACTIONS(1738), + [anon_sym_f32] = ACTIONS(1738), + [anon_sym_f64] = ACTIONS(1738), + [anon_sym_bool] = ACTIONS(1738), + [anon_sym_str] = ACTIONS(1738), + [anon_sym_char] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1064), + [anon_sym_AMP] = ACTIONS(1740), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1392), + [anon_sym_DOT_DOT] = ACTIONS(1074), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1078), + [anon_sym_COLON_COLON] = ACTIONS(1744), + [anon_sym_const] = ACTIONS(1748), + [anon_sym_default] = ACTIONS(1750), + [anon_sym_gen] = ACTIONS(1750), + [anon_sym_union] = ACTIONS(1750), + [anon_sym_ref] = ACTIONS(1106), + [sym_mutable_specifier] = ACTIONS(1400), + [sym_integer_literal] = ACTIONS(1112), + [aux_sym_string_literal_token1] = ACTIONS(1114), + [sym_char_literal] = ACTIONS(1112), + [anon_sym_true] = ACTIONS(1116), + [anon_sym_false] = ACTIONS(1116), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1752), + [sym_super] = ACTIONS(1752), + [sym_crate] = ACTIONS(1752), + [sym_metavariable] = ACTIONS(1754), + [sym__raw_string_literal_start] = ACTIONS(1124), + [sym_float_literal] = ACTIONS(1112), }, [STATE(831)] = { - [sym_bracketed_type] = STATE(3674), - [sym_generic_type] = STATE(3711), - [sym_generic_type_with_turbofish] = STATE(3231), - [sym_macro_invocation] = STATE(2221), - [sym_scoped_identifier] = STATE(2035), - [sym_scoped_type_identifier] = STATE(3055), - [sym_const_block] = STATE(2221), - [sym__pattern] = STATE(2214), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), + [sym_bracketed_type] = STATE(3756), + [sym_generic_type] = STATE(3622), + [sym_generic_type_with_turbofish] = STATE(3514), + [sym_macro_invocation] = STATE(2197), + [sym_scoped_identifier] = STATE(2056), + [sym_scoped_type_identifier] = STATE(2926), + [sym_const_block] = STATE(2197), + [sym__pattern] = STATE(3387), + [sym_generic_pattern] = STATE(2197), + [sym_tuple_pattern] = STATE(2197), + [sym_slice_pattern] = STATE(2197), + [sym_tuple_struct_pattern] = STATE(2197), + [sym_struct_pattern] = STATE(2197), + [sym_remaining_field_pattern] = STATE(2197), + [sym_mut_pattern] = STATE(2197), + [sym_range_pattern] = STATE(2197), + [sym_ref_pattern] = STATE(2197), + [sym_captured_pattern] = STATE(2197), + [sym_reference_pattern] = STATE(2197), + [sym_or_pattern] = STATE(2197), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2129), + [sym_string_literal] = STATE(2129), + [sym_raw_string_literal] = STATE(2129), + [sym_boolean_literal] = STATE(2129), [sym_line_comment] = STATE(831), [sym_block_comment] = STATE(831), - [sym_identifier] = ACTIONS(1725), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_LBRACK] = ACTIONS(1731), - [anon_sym_u8] = ACTIONS(1733), - [anon_sym_i8] = ACTIONS(1733), - [anon_sym_u16] = ACTIONS(1733), - [anon_sym_i16] = ACTIONS(1733), - [anon_sym_u32] = ACTIONS(1733), - [anon_sym_i32] = ACTIONS(1733), - [anon_sym_u64] = ACTIONS(1733), - [anon_sym_i64] = ACTIONS(1733), - [anon_sym_u128] = ACTIONS(1733), - [anon_sym_i128] = ACTIONS(1733), - [anon_sym_isize] = ACTIONS(1733), - [anon_sym_usize] = ACTIONS(1733), - [anon_sym_f32] = ACTIONS(1733), - [anon_sym_f64] = ACTIONS(1733), - [anon_sym_bool] = ACTIONS(1733), - [anon_sym_str] = ACTIONS(1733), - [anon_sym_char] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_AMP] = ACTIONS(1735), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1417), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COLON_COLON] = ACTIONS(1739), - [anon_sym_const] = ACTIONS(1743), - [anon_sym_default] = ACTIONS(1745), - [anon_sym_gen] = ACTIONS(1745), - [anon_sym_union] = ACTIONS(1745), - [anon_sym_ref] = ACTIONS(1159), - [sym_mutable_specifier] = ACTIONS(1425), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1747), - [sym_super] = ACTIONS(1747), - [sym_crate] = ACTIONS(1747), - [sym_metavariable] = ACTIONS(1749), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), + [sym_identifier] = ACTIONS(1730), + [anon_sym_LPAREN] = ACTIONS(1732), + [anon_sym_LBRACK] = ACTIONS(1736), + [anon_sym_u8] = ACTIONS(1738), + [anon_sym_i8] = ACTIONS(1738), + [anon_sym_u16] = ACTIONS(1738), + [anon_sym_i16] = ACTIONS(1738), + [anon_sym_u32] = ACTIONS(1738), + [anon_sym_i32] = ACTIONS(1738), + [anon_sym_u64] = ACTIONS(1738), + [anon_sym_i64] = ACTIONS(1738), + [anon_sym_u128] = ACTIONS(1738), + [anon_sym_i128] = ACTIONS(1738), + [anon_sym_isize] = ACTIONS(1738), + [anon_sym_usize] = ACTIONS(1738), + [anon_sym_f32] = ACTIONS(1738), + [anon_sym_f64] = ACTIONS(1738), + [anon_sym_bool] = ACTIONS(1738), + [anon_sym_str] = ACTIONS(1738), + [anon_sym_char] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1064), + [anon_sym_AMP] = ACTIONS(1740), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1392), + [anon_sym_DOT_DOT] = ACTIONS(1074), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1078), + [anon_sym_COLON_COLON] = ACTIONS(1744), + [anon_sym_const] = ACTIONS(1748), + [anon_sym_default] = ACTIONS(1750), + [anon_sym_gen] = ACTIONS(1750), + [anon_sym_union] = ACTIONS(1750), + [anon_sym_ref] = ACTIONS(1106), + [sym_mutable_specifier] = ACTIONS(1400), + [sym_integer_literal] = ACTIONS(1112), + [aux_sym_string_literal_token1] = ACTIONS(1114), + [sym_char_literal] = ACTIONS(1112), + [anon_sym_true] = ACTIONS(1116), + [anon_sym_false] = ACTIONS(1116), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1752), + [sym_super] = ACTIONS(1752), + [sym_crate] = ACTIONS(1752), + [sym_metavariable] = ACTIONS(1754), + [sym__raw_string_literal_start] = ACTIONS(1124), + [sym_float_literal] = ACTIONS(1112), }, [STATE(832)] = { - [sym_bracketed_type] = STATE(3695), - [sym_generic_type] = STATE(3711), - [sym_generic_type_with_turbofish] = STATE(3416), - [sym_macro_invocation] = STATE(2883), - [sym_scoped_identifier] = STATE(2241), - [sym_scoped_type_identifier] = STATE(3110), - [sym_const_block] = STATE(2883), - [sym__pattern] = STATE(3068), - [sym_generic_pattern] = STATE(2883), - [sym_tuple_pattern] = STATE(2883), - [sym_slice_pattern] = STATE(2883), - [sym_tuple_struct_pattern] = STATE(2883), - [sym_struct_pattern] = STATE(2883), - [sym_remaining_field_pattern] = STATE(2883), - [sym_mut_pattern] = STATE(2883), - [sym_range_pattern] = STATE(2883), - [sym_ref_pattern] = STATE(2883), - [sym_captured_pattern] = STATE(2883), - [sym_reference_pattern] = STATE(2883), - [sym_or_pattern] = STATE(2883), - [sym__literal_pattern] = STATE(2449), - [sym_negative_literal] = STATE(2408), - [sym_string_literal] = STATE(2408), - [sym_raw_string_literal] = STATE(2408), - [sym_boolean_literal] = STATE(2408), + [sym_bracketed_type] = STATE(3730), + [sym_generic_type] = STATE(3622), + [sym_generic_type_with_turbofish] = STATE(3423), + [sym_macro_invocation] = STATE(3092), + [sym_scoped_identifier] = STATE(2268), + [sym_scoped_type_identifier] = STATE(3118), + [sym_const_block] = STATE(3092), + [sym__pattern] = STATE(2996), + [sym_generic_pattern] = STATE(3092), + [sym_tuple_pattern] = STATE(3092), + [sym_slice_pattern] = STATE(3092), + [sym_tuple_struct_pattern] = STATE(3092), + [sym_struct_pattern] = STATE(3092), + [sym_remaining_field_pattern] = STATE(3092), + [sym_mut_pattern] = STATE(3092), + [sym_range_pattern] = STATE(3092), + [sym_ref_pattern] = STATE(3092), + [sym_captured_pattern] = STATE(3092), + [sym_reference_pattern] = STATE(3092), + [sym_or_pattern] = STATE(3092), + [sym__literal_pattern] = STATE(2439), + [sym_negative_literal] = STATE(2421), + [sym_string_literal] = STATE(2421), + [sym_raw_string_literal] = STATE(2421), + [sym_boolean_literal] = STATE(2421), [sym_line_comment] = STATE(832), [sym_block_comment] = STATE(832), - [sym_identifier] = ACTIONS(1671), - [anon_sym_LPAREN] = ACTIONS(1673), - [anon_sym_LBRACK] = ACTIONS(1675), - [anon_sym_u8] = ACTIONS(1679), - [anon_sym_i8] = ACTIONS(1679), - [anon_sym_u16] = ACTIONS(1679), - [anon_sym_i16] = ACTIONS(1679), - [anon_sym_u32] = ACTIONS(1679), - [anon_sym_i32] = ACTIONS(1679), - [anon_sym_u64] = ACTIONS(1679), - [anon_sym_i64] = ACTIONS(1679), - [anon_sym_u128] = ACTIONS(1679), - [anon_sym_i128] = ACTIONS(1679), - [anon_sym_isize] = ACTIONS(1679), - [anon_sym_usize] = ACTIONS(1679), - [anon_sym_f32] = ACTIONS(1679), - [anon_sym_f64] = ACTIONS(1679), - [anon_sym_bool] = ACTIONS(1679), - [anon_sym_str] = ACTIONS(1679), - [anon_sym_char] = ACTIONS(1679), - [anon_sym_DASH] = ACTIONS(1681), - [anon_sym_AMP] = ACTIONS(1683), - [anon_sym_PIPE] = ACTIONS(1685), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1687), - [anon_sym_DOT_DOT] = ACTIONS(1689), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1691), - [anon_sym_COLON_COLON] = ACTIONS(1693), - [anon_sym_const] = ACTIONS(1697), - [anon_sym_default] = ACTIONS(1699), - [anon_sym_gen] = ACTIONS(1699), - [anon_sym_union] = ACTIONS(1699), - [anon_sym_ref] = ACTIONS(1701), - [sym_mutable_specifier] = ACTIONS(3160), - [sym_integer_literal] = ACTIONS(1705), - [aux_sym_string_literal_token1] = ACTIONS(1707), - [sym_char_literal] = ACTIONS(1705), - [anon_sym_true] = ACTIONS(1709), - [anon_sym_false] = ACTIONS(1709), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1711), - [sym_super] = ACTIONS(1711), - [sym_crate] = ACTIONS(1711), - [sym_metavariable] = ACTIONS(1713), - [sym__raw_string_literal_start] = ACTIONS(1715), - [sym_float_literal] = ACTIONS(1705), + [sym_identifier] = ACTIONS(1678), + [anon_sym_LPAREN] = ACTIONS(1680), + [anon_sym_LBRACK] = ACTIONS(1682), + [anon_sym_u8] = ACTIONS(1686), + [anon_sym_i8] = ACTIONS(1686), + [anon_sym_u16] = ACTIONS(1686), + [anon_sym_i16] = ACTIONS(1686), + [anon_sym_u32] = ACTIONS(1686), + [anon_sym_i32] = ACTIONS(1686), + [anon_sym_u64] = ACTIONS(1686), + [anon_sym_i64] = ACTIONS(1686), + [anon_sym_u128] = ACTIONS(1686), + [anon_sym_i128] = ACTIONS(1686), + [anon_sym_isize] = ACTIONS(1686), + [anon_sym_usize] = ACTIONS(1686), + [anon_sym_f32] = ACTIONS(1686), + [anon_sym_f64] = ACTIONS(1686), + [anon_sym_bool] = ACTIONS(1686), + [anon_sym_str] = ACTIONS(1686), + [anon_sym_char] = ACTIONS(1686), + [anon_sym_DASH] = ACTIONS(1688), + [anon_sym_AMP] = ACTIONS(1690), + [anon_sym_PIPE] = ACTIONS(1692), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1694), + [anon_sym_DOT_DOT] = ACTIONS(1696), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1698), + [anon_sym_COLON_COLON] = ACTIONS(1700), + [anon_sym_const] = ACTIONS(1704), + [anon_sym_default] = ACTIONS(1706), + [anon_sym_gen] = ACTIONS(1706), + [anon_sym_union] = ACTIONS(1706), + [anon_sym_ref] = ACTIONS(1708), + [sym_mutable_specifier] = ACTIONS(1710), + [sym_integer_literal] = ACTIONS(1712), + [aux_sym_string_literal_token1] = ACTIONS(1714), + [sym_char_literal] = ACTIONS(1712), + [anon_sym_true] = ACTIONS(1716), + [anon_sym_false] = ACTIONS(1716), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1718), + [sym_super] = ACTIONS(1718), + [sym_crate] = ACTIONS(1718), + [sym_metavariable] = ACTIONS(1720), + [sym__raw_string_literal_start] = ACTIONS(1722), + [sym_float_literal] = ACTIONS(1712), }, [STATE(833)] = { - [sym_bracketed_type] = STATE(3695), - [sym_generic_type] = STATE(3711), - [sym_generic_type_with_turbofish] = STATE(3416), - [sym_macro_invocation] = STATE(2883), - [sym_scoped_identifier] = STATE(2241), - [sym_scoped_type_identifier] = STATE(3110), - [sym_const_block] = STATE(2883), - [sym__pattern] = STATE(3072), - [sym_generic_pattern] = STATE(2883), - [sym_tuple_pattern] = STATE(2883), - [sym_slice_pattern] = STATE(2883), - [sym_tuple_struct_pattern] = STATE(2883), - [sym_struct_pattern] = STATE(2883), - [sym_remaining_field_pattern] = STATE(2883), - [sym_mut_pattern] = STATE(2883), - [sym_range_pattern] = STATE(2883), - [sym_ref_pattern] = STATE(2883), - [sym_captured_pattern] = STATE(2883), - [sym_reference_pattern] = STATE(2883), - [sym_or_pattern] = STATE(2883), - [sym__literal_pattern] = STATE(2449), - [sym_negative_literal] = STATE(2408), - [sym_string_literal] = STATE(2408), - [sym_raw_string_literal] = STATE(2408), - [sym_boolean_literal] = STATE(2408), + [sym_bracketed_type] = STATE(3730), + [sym_generic_type] = STATE(3622), + [sym_generic_type_with_turbofish] = STATE(3423), + [sym_macro_invocation] = STATE(3092), + [sym_scoped_identifier] = STATE(2268), + [sym_scoped_type_identifier] = STATE(3118), + [sym_const_block] = STATE(3092), + [sym__pattern] = STATE(3005), + [sym_generic_pattern] = STATE(3092), + [sym_tuple_pattern] = STATE(3092), + [sym_slice_pattern] = STATE(3092), + [sym_tuple_struct_pattern] = STATE(3092), + [sym_struct_pattern] = STATE(3092), + [sym_remaining_field_pattern] = STATE(3092), + [sym_mut_pattern] = STATE(3092), + [sym_range_pattern] = STATE(3092), + [sym_ref_pattern] = STATE(3092), + [sym_captured_pattern] = STATE(3092), + [sym_reference_pattern] = STATE(3092), + [sym_or_pattern] = STATE(3092), + [sym__literal_pattern] = STATE(2439), + [sym_negative_literal] = STATE(2421), + [sym_string_literal] = STATE(2421), + [sym_raw_string_literal] = STATE(2421), + [sym_boolean_literal] = STATE(2421), [sym_line_comment] = STATE(833), [sym_block_comment] = STATE(833), - [sym_identifier] = ACTIONS(1671), - [anon_sym_LPAREN] = ACTIONS(1673), - [anon_sym_LBRACK] = ACTIONS(1675), - [anon_sym_u8] = ACTIONS(1679), - [anon_sym_i8] = ACTIONS(1679), - [anon_sym_u16] = ACTIONS(1679), - [anon_sym_i16] = ACTIONS(1679), - [anon_sym_u32] = ACTIONS(1679), - [anon_sym_i32] = ACTIONS(1679), - [anon_sym_u64] = ACTIONS(1679), - [anon_sym_i64] = ACTIONS(1679), - [anon_sym_u128] = ACTIONS(1679), - [anon_sym_i128] = ACTIONS(1679), - [anon_sym_isize] = ACTIONS(1679), - [anon_sym_usize] = ACTIONS(1679), - [anon_sym_f32] = ACTIONS(1679), - [anon_sym_f64] = ACTIONS(1679), - [anon_sym_bool] = ACTIONS(1679), - [anon_sym_str] = ACTIONS(1679), - [anon_sym_char] = ACTIONS(1679), - [anon_sym_DASH] = ACTIONS(1681), - [anon_sym_AMP] = ACTIONS(1683), - [anon_sym_PIPE] = ACTIONS(1685), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1687), - [anon_sym_DOT_DOT] = ACTIONS(1689), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1691), - [anon_sym_COLON_COLON] = ACTIONS(1693), - [anon_sym_const] = ACTIONS(1697), - [anon_sym_default] = ACTIONS(1699), - [anon_sym_gen] = ACTIONS(1699), - [anon_sym_union] = ACTIONS(1699), - [anon_sym_ref] = ACTIONS(1701), - [sym_mutable_specifier] = ACTIONS(1703), - [sym_integer_literal] = ACTIONS(1705), - [aux_sym_string_literal_token1] = ACTIONS(1707), - [sym_char_literal] = ACTIONS(1705), - [anon_sym_true] = ACTIONS(1709), - [anon_sym_false] = ACTIONS(1709), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1711), - [sym_super] = ACTIONS(1711), - [sym_crate] = ACTIONS(1711), - [sym_metavariable] = ACTIONS(1713), - [sym__raw_string_literal_start] = ACTIONS(1715), - [sym_float_literal] = ACTIONS(1705), + [sym_identifier] = ACTIONS(1678), + [anon_sym_LPAREN] = ACTIONS(1680), + [anon_sym_LBRACK] = ACTIONS(1682), + [anon_sym_u8] = ACTIONS(1686), + [anon_sym_i8] = ACTIONS(1686), + [anon_sym_u16] = ACTIONS(1686), + [anon_sym_i16] = ACTIONS(1686), + [anon_sym_u32] = ACTIONS(1686), + [anon_sym_i32] = ACTIONS(1686), + [anon_sym_u64] = ACTIONS(1686), + [anon_sym_i64] = ACTIONS(1686), + [anon_sym_u128] = ACTIONS(1686), + [anon_sym_i128] = ACTIONS(1686), + [anon_sym_isize] = ACTIONS(1686), + [anon_sym_usize] = ACTIONS(1686), + [anon_sym_f32] = ACTIONS(1686), + [anon_sym_f64] = ACTIONS(1686), + [anon_sym_bool] = ACTIONS(1686), + [anon_sym_str] = ACTIONS(1686), + [anon_sym_char] = ACTIONS(1686), + [anon_sym_DASH] = ACTIONS(1688), + [anon_sym_AMP] = ACTIONS(1690), + [anon_sym_PIPE] = ACTIONS(1692), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1694), + [anon_sym_DOT_DOT] = ACTIONS(1696), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1698), + [anon_sym_COLON_COLON] = ACTIONS(1700), + [anon_sym_const] = ACTIONS(1704), + [anon_sym_default] = ACTIONS(1706), + [anon_sym_gen] = ACTIONS(1706), + [anon_sym_union] = ACTIONS(1706), + [anon_sym_ref] = ACTIONS(1708), + [sym_mutable_specifier] = ACTIONS(1710), + [sym_integer_literal] = ACTIONS(1712), + [aux_sym_string_literal_token1] = ACTIONS(1714), + [sym_char_literal] = ACTIONS(1712), + [anon_sym_true] = ACTIONS(1716), + [anon_sym_false] = ACTIONS(1716), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1718), + [sym_super] = ACTIONS(1718), + [sym_crate] = ACTIONS(1718), + [sym_metavariable] = ACTIONS(1720), + [sym__raw_string_literal_start] = ACTIONS(1722), + [sym_float_literal] = ACTIONS(1712), }, [STATE(834)] = { - [sym_bracketed_type] = STATE(3674), - [sym_generic_type] = STATE(3711), - [sym_generic_type_with_turbofish] = STATE(3231), - [sym_macro_invocation] = STATE(2221), - [sym_scoped_identifier] = STATE(2035), - [sym_scoped_type_identifier] = STATE(3055), - [sym_const_block] = STATE(2221), - [sym__pattern] = STATE(2751), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(2082), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(3823), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2044), [sym_line_comment] = STATE(834), [sym_block_comment] = STATE(834), - [sym_identifier] = ACTIONS(1725), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_LBRACK] = ACTIONS(1731), - [anon_sym_u8] = ACTIONS(1733), - [anon_sym_i8] = ACTIONS(1733), - [anon_sym_u16] = ACTIONS(1733), - [anon_sym_i16] = ACTIONS(1733), - [anon_sym_u32] = ACTIONS(1733), - [anon_sym_i32] = ACTIONS(1733), - [anon_sym_u64] = ACTIONS(1733), - [anon_sym_i64] = ACTIONS(1733), - [anon_sym_u128] = ACTIONS(1733), - [anon_sym_i128] = ACTIONS(1733), - [anon_sym_isize] = ACTIONS(1733), - [anon_sym_usize] = ACTIONS(1733), - [anon_sym_f32] = ACTIONS(1733), - [anon_sym_f64] = ACTIONS(1733), - [anon_sym_bool] = ACTIONS(1733), - [anon_sym_str] = ACTIONS(1733), - [anon_sym_char] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_AMP] = ACTIONS(1735), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1417), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COLON_COLON] = ACTIONS(1739), - [anon_sym_const] = ACTIONS(1743), - [anon_sym_default] = ACTIONS(1745), - [anon_sym_gen] = ACTIONS(1745), - [anon_sym_union] = ACTIONS(1745), - [anon_sym_ref] = ACTIONS(1159), - [sym_mutable_specifier] = ACTIONS(1425), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3162), - [sym_super] = ACTIONS(1747), - [sym_crate] = ACTIONS(1747), - [sym_metavariable] = ACTIONS(1749), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), + [sym_identifier] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_PLUS] = ACTIONS(3182), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(3106), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1108), + [sym_mutable_specifier] = ACTIONS(3184), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), }, [STATE(835)] = { - [sym_bracketed_type] = STATE(3695), - [sym_generic_type] = STATE(3711), - [sym_generic_type_with_turbofish] = STATE(3416), - [sym_macro_invocation] = STATE(2883), - [sym_scoped_identifier] = STATE(2241), - [sym_scoped_type_identifier] = STATE(3110), - [sym_const_block] = STATE(2883), - [sym__pattern] = STATE(3183), - [sym_generic_pattern] = STATE(2883), - [sym_tuple_pattern] = STATE(2883), - [sym_slice_pattern] = STATE(2883), - [sym_tuple_struct_pattern] = STATE(2883), - [sym_struct_pattern] = STATE(2883), - [sym_remaining_field_pattern] = STATE(2883), - [sym_mut_pattern] = STATE(2883), - [sym_range_pattern] = STATE(2883), - [sym_ref_pattern] = STATE(2883), - [sym_captured_pattern] = STATE(2883), - [sym_reference_pattern] = STATE(2883), - [sym_or_pattern] = STATE(2883), - [sym__literal_pattern] = STATE(2449), - [sym_negative_literal] = STATE(2408), - [sym_string_literal] = STATE(2408), - [sym_raw_string_literal] = STATE(2408), - [sym_boolean_literal] = STATE(2408), + [sym_bracketed_type] = STATE(3730), + [sym_generic_type] = STATE(3622), + [sym_generic_type_with_turbofish] = STATE(3423), + [sym_macro_invocation] = STATE(3092), + [sym_scoped_identifier] = STATE(2268), + [sym_scoped_type_identifier] = STATE(3118), + [sym_const_block] = STATE(3092), + [sym__pattern] = STATE(2982), + [sym_generic_pattern] = STATE(3092), + [sym_tuple_pattern] = STATE(3092), + [sym_slice_pattern] = STATE(3092), + [sym_tuple_struct_pattern] = STATE(3092), + [sym_struct_pattern] = STATE(3092), + [sym_remaining_field_pattern] = STATE(3092), + [sym_mut_pattern] = STATE(3092), + [sym_range_pattern] = STATE(3092), + [sym_ref_pattern] = STATE(3092), + [sym_captured_pattern] = STATE(3092), + [sym_reference_pattern] = STATE(3092), + [sym_or_pattern] = STATE(3092), + [sym__literal_pattern] = STATE(2439), + [sym_negative_literal] = STATE(2421), + [sym_string_literal] = STATE(2421), + [sym_raw_string_literal] = STATE(2421), + [sym_boolean_literal] = STATE(2421), [sym_line_comment] = STATE(835), [sym_block_comment] = STATE(835), - [sym_identifier] = ACTIONS(1671), - [anon_sym_LPAREN] = ACTIONS(1673), - [anon_sym_LBRACK] = ACTIONS(1675), - [anon_sym_u8] = ACTIONS(1679), - [anon_sym_i8] = ACTIONS(1679), - [anon_sym_u16] = ACTIONS(1679), - [anon_sym_i16] = ACTIONS(1679), - [anon_sym_u32] = ACTIONS(1679), - [anon_sym_i32] = ACTIONS(1679), - [anon_sym_u64] = ACTIONS(1679), - [anon_sym_i64] = ACTIONS(1679), - [anon_sym_u128] = ACTIONS(1679), - [anon_sym_i128] = ACTIONS(1679), - [anon_sym_isize] = ACTIONS(1679), - [anon_sym_usize] = ACTIONS(1679), - [anon_sym_f32] = ACTIONS(1679), - [anon_sym_f64] = ACTIONS(1679), - [anon_sym_bool] = ACTIONS(1679), - [anon_sym_str] = ACTIONS(1679), - [anon_sym_char] = ACTIONS(1679), - [anon_sym_DASH] = ACTIONS(1681), - [anon_sym_AMP] = ACTIONS(1683), - [anon_sym_PIPE] = ACTIONS(1685), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1687), - [anon_sym_DOT_DOT] = ACTIONS(1689), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1691), - [anon_sym_COLON_COLON] = ACTIONS(1693), - [anon_sym_const] = ACTIONS(1697), - [anon_sym_default] = ACTIONS(1699), - [anon_sym_gen] = ACTIONS(1699), - [anon_sym_union] = ACTIONS(1699), - [anon_sym_ref] = ACTIONS(1701), - [sym_mutable_specifier] = ACTIONS(1703), - [sym_integer_literal] = ACTIONS(1705), - [aux_sym_string_literal_token1] = ACTIONS(1707), - [sym_char_literal] = ACTIONS(1705), - [anon_sym_true] = ACTIONS(1709), - [anon_sym_false] = ACTIONS(1709), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1711), - [sym_super] = ACTIONS(1711), - [sym_crate] = ACTIONS(1711), - [sym_metavariable] = ACTIONS(1713), - [sym__raw_string_literal_start] = ACTIONS(1715), - [sym_float_literal] = ACTIONS(1705), + [sym_identifier] = ACTIONS(1678), + [anon_sym_LPAREN] = ACTIONS(1680), + [anon_sym_LBRACK] = ACTIONS(1682), + [anon_sym_u8] = ACTIONS(1686), + [anon_sym_i8] = ACTIONS(1686), + [anon_sym_u16] = ACTIONS(1686), + [anon_sym_i16] = ACTIONS(1686), + [anon_sym_u32] = ACTIONS(1686), + [anon_sym_i32] = ACTIONS(1686), + [anon_sym_u64] = ACTIONS(1686), + [anon_sym_i64] = ACTIONS(1686), + [anon_sym_u128] = ACTIONS(1686), + [anon_sym_i128] = ACTIONS(1686), + [anon_sym_isize] = ACTIONS(1686), + [anon_sym_usize] = ACTIONS(1686), + [anon_sym_f32] = ACTIONS(1686), + [anon_sym_f64] = ACTIONS(1686), + [anon_sym_bool] = ACTIONS(1686), + [anon_sym_str] = ACTIONS(1686), + [anon_sym_char] = ACTIONS(1686), + [anon_sym_DASH] = ACTIONS(1688), + [anon_sym_AMP] = ACTIONS(1690), + [anon_sym_PIPE] = ACTIONS(1692), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1694), + [anon_sym_DOT_DOT] = ACTIONS(1696), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1698), + [anon_sym_COLON_COLON] = ACTIONS(1700), + [anon_sym_const] = ACTIONS(1704), + [anon_sym_default] = ACTIONS(1706), + [anon_sym_gen] = ACTIONS(1706), + [anon_sym_union] = ACTIONS(1706), + [anon_sym_ref] = ACTIONS(1708), + [sym_mutable_specifier] = ACTIONS(3186), + [sym_integer_literal] = ACTIONS(1712), + [aux_sym_string_literal_token1] = ACTIONS(1714), + [sym_char_literal] = ACTIONS(1712), + [anon_sym_true] = ACTIONS(1716), + [anon_sym_false] = ACTIONS(1716), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1718), + [sym_super] = ACTIONS(1718), + [sym_crate] = ACTIONS(1718), + [sym_metavariable] = ACTIONS(1720), + [sym__raw_string_literal_start] = ACTIONS(1722), + [sym_float_literal] = ACTIONS(1712), }, [STATE(836)] = { - [sym_bracketed_type] = STATE(3674), - [sym_generic_type] = STATE(3711), - [sym_generic_type_with_turbofish] = STATE(3231), - [sym_macro_invocation] = STATE(2221), - [sym_scoped_identifier] = STATE(2035), - [sym_scoped_type_identifier] = STATE(3055), - [sym_const_block] = STATE(2221), - [sym__pattern] = STATE(2229), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), + [sym_bracketed_type] = STATE(3730), + [sym_generic_type] = STATE(3622), + [sym_generic_type_with_turbofish] = STATE(3423), + [sym_macro_invocation] = STATE(3092), + [sym_scoped_identifier] = STATE(2268), + [sym_scoped_type_identifier] = STATE(3118), + [sym_const_block] = STATE(3092), + [sym__pattern] = STATE(3025), + [sym_generic_pattern] = STATE(3092), + [sym_tuple_pattern] = STATE(3092), + [sym_slice_pattern] = STATE(3092), + [sym_tuple_struct_pattern] = STATE(3092), + [sym_struct_pattern] = STATE(3092), + [sym_remaining_field_pattern] = STATE(3092), + [sym_mut_pattern] = STATE(3092), + [sym_range_pattern] = STATE(3092), + [sym_ref_pattern] = STATE(3092), + [sym_captured_pattern] = STATE(3092), + [sym_reference_pattern] = STATE(3092), + [sym_or_pattern] = STATE(3092), + [sym__literal_pattern] = STATE(2439), + [sym_negative_literal] = STATE(2421), + [sym_string_literal] = STATE(2421), + [sym_raw_string_literal] = STATE(2421), + [sym_boolean_literal] = STATE(2421), [sym_line_comment] = STATE(836), [sym_block_comment] = STATE(836), - [sym_identifier] = ACTIONS(1725), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_LBRACK] = ACTIONS(1731), - [anon_sym_u8] = ACTIONS(1733), - [anon_sym_i8] = ACTIONS(1733), - [anon_sym_u16] = ACTIONS(1733), - [anon_sym_i16] = ACTIONS(1733), - [anon_sym_u32] = ACTIONS(1733), - [anon_sym_i32] = ACTIONS(1733), - [anon_sym_u64] = ACTIONS(1733), - [anon_sym_i64] = ACTIONS(1733), - [anon_sym_u128] = ACTIONS(1733), - [anon_sym_i128] = ACTIONS(1733), - [anon_sym_isize] = ACTIONS(1733), - [anon_sym_usize] = ACTIONS(1733), - [anon_sym_f32] = ACTIONS(1733), - [anon_sym_f64] = ACTIONS(1733), - [anon_sym_bool] = ACTIONS(1733), - [anon_sym_str] = ACTIONS(1733), - [anon_sym_char] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_AMP] = ACTIONS(1735), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1417), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COLON_COLON] = ACTIONS(1739), - [anon_sym_const] = ACTIONS(1743), - [anon_sym_default] = ACTIONS(1745), - [anon_sym_gen] = ACTIONS(1745), - [anon_sym_union] = ACTIONS(1745), - [anon_sym_ref] = ACTIONS(1159), - [sym_mutable_specifier] = ACTIONS(3164), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1747), - [sym_super] = ACTIONS(1747), - [sym_crate] = ACTIONS(1747), - [sym_metavariable] = ACTIONS(1749), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), + [sym_identifier] = ACTIONS(1678), + [anon_sym_LPAREN] = ACTIONS(1680), + [anon_sym_LBRACK] = ACTIONS(1682), + [anon_sym_u8] = ACTIONS(1686), + [anon_sym_i8] = ACTIONS(1686), + [anon_sym_u16] = ACTIONS(1686), + [anon_sym_i16] = ACTIONS(1686), + [anon_sym_u32] = ACTIONS(1686), + [anon_sym_i32] = ACTIONS(1686), + [anon_sym_u64] = ACTIONS(1686), + [anon_sym_i64] = ACTIONS(1686), + [anon_sym_u128] = ACTIONS(1686), + [anon_sym_i128] = ACTIONS(1686), + [anon_sym_isize] = ACTIONS(1686), + [anon_sym_usize] = ACTIONS(1686), + [anon_sym_f32] = ACTIONS(1686), + [anon_sym_f64] = ACTIONS(1686), + [anon_sym_bool] = ACTIONS(1686), + [anon_sym_str] = ACTIONS(1686), + [anon_sym_char] = ACTIONS(1686), + [anon_sym_DASH] = ACTIONS(1688), + [anon_sym_AMP] = ACTIONS(1690), + [anon_sym_PIPE] = ACTIONS(1692), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1694), + [anon_sym_DOT_DOT] = ACTIONS(1696), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1698), + [anon_sym_COLON_COLON] = ACTIONS(1700), + [anon_sym_const] = ACTIONS(1704), + [anon_sym_default] = ACTIONS(1706), + [anon_sym_gen] = ACTIONS(1706), + [anon_sym_union] = ACTIONS(1706), + [anon_sym_ref] = ACTIONS(1708), + [sym_mutable_specifier] = ACTIONS(1710), + [sym_integer_literal] = ACTIONS(1712), + [aux_sym_string_literal_token1] = ACTIONS(1714), + [sym_char_literal] = ACTIONS(1712), + [anon_sym_true] = ACTIONS(1716), + [anon_sym_false] = ACTIONS(1716), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1718), + [sym_super] = ACTIONS(1718), + [sym_crate] = ACTIONS(1718), + [sym_metavariable] = ACTIONS(1720), + [sym__raw_string_literal_start] = ACTIONS(1722), + [sym_float_literal] = ACTIONS(1712), }, [STATE(837)] = { - [sym_bracketed_type] = STATE(3674), - [sym_generic_type] = STATE(3711), - [sym_generic_type_with_turbofish] = STATE(3231), - [sym_macro_invocation] = STATE(2221), - [sym_scoped_identifier] = STATE(2035), - [sym_scoped_type_identifier] = STATE(3055), - [sym_const_block] = STATE(2221), - [sym__pattern] = STATE(3423), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), + [sym_bracketed_type] = STATE(3756), + [sym_generic_type] = STATE(3622), + [sym_generic_type_with_turbofish] = STATE(3514), + [sym_macro_invocation] = STATE(2197), + [sym_scoped_identifier] = STATE(2056), + [sym_scoped_type_identifier] = STATE(2926), + [sym_const_block] = STATE(2197), + [sym__pattern] = STATE(2196), + [sym_generic_pattern] = STATE(2197), + [sym_tuple_pattern] = STATE(2197), + [sym_slice_pattern] = STATE(2197), + [sym_tuple_struct_pattern] = STATE(2197), + [sym_struct_pattern] = STATE(2197), + [sym_remaining_field_pattern] = STATE(2197), + [sym_mut_pattern] = STATE(2197), + [sym_range_pattern] = STATE(2197), + [sym_ref_pattern] = STATE(2197), + [sym_captured_pattern] = STATE(2197), + [sym_reference_pattern] = STATE(2197), + [sym_or_pattern] = STATE(2197), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2129), + [sym_string_literal] = STATE(2129), + [sym_raw_string_literal] = STATE(2129), + [sym_boolean_literal] = STATE(2129), [sym_line_comment] = STATE(837), [sym_block_comment] = STATE(837), - [sym_identifier] = ACTIONS(1725), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_LBRACK] = ACTIONS(1731), - [anon_sym_u8] = ACTIONS(1733), - [anon_sym_i8] = ACTIONS(1733), - [anon_sym_u16] = ACTIONS(1733), - [anon_sym_i16] = ACTIONS(1733), - [anon_sym_u32] = ACTIONS(1733), - [anon_sym_i32] = ACTIONS(1733), - [anon_sym_u64] = ACTIONS(1733), - [anon_sym_i64] = ACTIONS(1733), - [anon_sym_u128] = ACTIONS(1733), - [anon_sym_i128] = ACTIONS(1733), - [anon_sym_isize] = ACTIONS(1733), - [anon_sym_usize] = ACTIONS(1733), - [anon_sym_f32] = ACTIONS(1733), - [anon_sym_f64] = ACTIONS(1733), - [anon_sym_bool] = ACTIONS(1733), - [anon_sym_str] = ACTIONS(1733), - [anon_sym_char] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_AMP] = ACTIONS(1735), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1417), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COLON_COLON] = ACTIONS(1739), - [anon_sym_const] = ACTIONS(1743), - [anon_sym_default] = ACTIONS(1745), - [anon_sym_gen] = ACTIONS(1745), - [anon_sym_union] = ACTIONS(1745), - [anon_sym_ref] = ACTIONS(1159), - [sym_mutable_specifier] = ACTIONS(1425), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1747), - [sym_super] = ACTIONS(1747), - [sym_crate] = ACTIONS(1747), - [sym_metavariable] = ACTIONS(1749), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), + [sym_identifier] = ACTIONS(1730), + [anon_sym_LPAREN] = ACTIONS(1732), + [anon_sym_LBRACK] = ACTIONS(1736), + [anon_sym_u8] = ACTIONS(1738), + [anon_sym_i8] = ACTIONS(1738), + [anon_sym_u16] = ACTIONS(1738), + [anon_sym_i16] = ACTIONS(1738), + [anon_sym_u32] = ACTIONS(1738), + [anon_sym_i32] = ACTIONS(1738), + [anon_sym_u64] = ACTIONS(1738), + [anon_sym_i64] = ACTIONS(1738), + [anon_sym_u128] = ACTIONS(1738), + [anon_sym_i128] = ACTIONS(1738), + [anon_sym_isize] = ACTIONS(1738), + [anon_sym_usize] = ACTIONS(1738), + [anon_sym_f32] = ACTIONS(1738), + [anon_sym_f64] = ACTIONS(1738), + [anon_sym_bool] = ACTIONS(1738), + [anon_sym_str] = ACTIONS(1738), + [anon_sym_char] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1064), + [anon_sym_AMP] = ACTIONS(1740), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1392), + [anon_sym_DOT_DOT] = ACTIONS(1074), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1078), + [anon_sym_COLON_COLON] = ACTIONS(1744), + [anon_sym_const] = ACTIONS(1748), + [anon_sym_default] = ACTIONS(1750), + [anon_sym_gen] = ACTIONS(1750), + [anon_sym_union] = ACTIONS(1750), + [anon_sym_ref] = ACTIONS(1106), + [sym_mutable_specifier] = ACTIONS(1400), + [sym_integer_literal] = ACTIONS(1112), + [aux_sym_string_literal_token1] = ACTIONS(1114), + [sym_char_literal] = ACTIONS(1112), + [anon_sym_true] = ACTIONS(1116), + [anon_sym_false] = ACTIONS(1116), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1752), + [sym_super] = ACTIONS(1752), + [sym_crate] = ACTIONS(1752), + [sym_metavariable] = ACTIONS(1754), + [sym__raw_string_literal_start] = ACTIONS(1124), + [sym_float_literal] = ACTIONS(1112), }, [STATE(838)] = { - [sym_bracketed_type] = STATE(3674), - [sym_generic_type] = STATE(3711), - [sym_generic_type_with_turbofish] = STATE(3231), - [sym_macro_invocation] = STATE(2221), - [sym_scoped_identifier] = STATE(2035), - [sym_scoped_type_identifier] = STATE(3055), - [sym_const_block] = STATE(2221), - [sym__pattern] = STATE(2656), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), + [sym_bracketed_type] = STATE(3756), + [sym_generic_type] = STATE(3622), + [sym_generic_type_with_turbofish] = STATE(3514), + [sym_macro_invocation] = STATE(2197), + [sym_scoped_identifier] = STATE(2056), + [sym_scoped_type_identifier] = STATE(2926), + [sym_const_block] = STATE(2197), + [sym__pattern] = STATE(2236), + [sym_generic_pattern] = STATE(2197), + [sym_tuple_pattern] = STATE(2197), + [sym_slice_pattern] = STATE(2197), + [sym_tuple_struct_pattern] = STATE(2197), + [sym_struct_pattern] = STATE(2197), + [sym_remaining_field_pattern] = STATE(2197), + [sym_mut_pattern] = STATE(2197), + [sym_range_pattern] = STATE(2197), + [sym_ref_pattern] = STATE(2197), + [sym_captured_pattern] = STATE(2197), + [sym_reference_pattern] = STATE(2197), + [sym_or_pattern] = STATE(2197), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2129), + [sym_string_literal] = STATE(2129), + [sym_raw_string_literal] = STATE(2129), + [sym_boolean_literal] = STATE(2129), [sym_line_comment] = STATE(838), [sym_block_comment] = STATE(838), - [sym_identifier] = ACTIONS(1725), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_LBRACK] = ACTIONS(1731), - [anon_sym_u8] = ACTIONS(1733), - [anon_sym_i8] = ACTIONS(1733), - [anon_sym_u16] = ACTIONS(1733), - [anon_sym_i16] = ACTIONS(1733), - [anon_sym_u32] = ACTIONS(1733), - [anon_sym_i32] = ACTIONS(1733), - [anon_sym_u64] = ACTIONS(1733), - [anon_sym_i64] = ACTIONS(1733), - [anon_sym_u128] = ACTIONS(1733), - [anon_sym_i128] = ACTIONS(1733), - [anon_sym_isize] = ACTIONS(1733), - [anon_sym_usize] = ACTIONS(1733), - [anon_sym_f32] = ACTIONS(1733), - [anon_sym_f64] = ACTIONS(1733), - [anon_sym_bool] = ACTIONS(1733), - [anon_sym_str] = ACTIONS(1733), - [anon_sym_char] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_AMP] = ACTIONS(1735), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1417), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COLON_COLON] = ACTIONS(1739), - [anon_sym_const] = ACTIONS(1743), - [anon_sym_default] = ACTIONS(1745), - [anon_sym_gen] = ACTIONS(1745), - [anon_sym_union] = ACTIONS(1745), - [anon_sym_ref] = ACTIONS(1159), - [sym_mutable_specifier] = ACTIONS(1425), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1747), - [sym_super] = ACTIONS(1747), - [sym_crate] = ACTIONS(1747), - [sym_metavariable] = ACTIONS(1749), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), + [sym_identifier] = ACTIONS(1730), + [anon_sym_LPAREN] = ACTIONS(1732), + [anon_sym_LBRACK] = ACTIONS(1736), + [anon_sym_u8] = ACTIONS(1738), + [anon_sym_i8] = ACTIONS(1738), + [anon_sym_u16] = ACTIONS(1738), + [anon_sym_i16] = ACTIONS(1738), + [anon_sym_u32] = ACTIONS(1738), + [anon_sym_i32] = ACTIONS(1738), + [anon_sym_u64] = ACTIONS(1738), + [anon_sym_i64] = ACTIONS(1738), + [anon_sym_u128] = ACTIONS(1738), + [anon_sym_i128] = ACTIONS(1738), + [anon_sym_isize] = ACTIONS(1738), + [anon_sym_usize] = ACTIONS(1738), + [anon_sym_f32] = ACTIONS(1738), + [anon_sym_f64] = ACTIONS(1738), + [anon_sym_bool] = ACTIONS(1738), + [anon_sym_str] = ACTIONS(1738), + [anon_sym_char] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1064), + [anon_sym_AMP] = ACTIONS(1740), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1392), + [anon_sym_DOT_DOT] = ACTIONS(1074), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1078), + [anon_sym_COLON_COLON] = ACTIONS(1744), + [anon_sym_const] = ACTIONS(1748), + [anon_sym_default] = ACTIONS(1750), + [anon_sym_gen] = ACTIONS(1750), + [anon_sym_union] = ACTIONS(1750), + [anon_sym_ref] = ACTIONS(1106), + [sym_mutable_specifier] = ACTIONS(1400), + [sym_integer_literal] = ACTIONS(1112), + [aux_sym_string_literal_token1] = ACTIONS(1114), + [sym_char_literal] = ACTIONS(1112), + [anon_sym_true] = ACTIONS(1116), + [anon_sym_false] = ACTIONS(1116), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1752), + [sym_super] = ACTIONS(1752), + [sym_crate] = ACTIONS(1752), + [sym_metavariable] = ACTIONS(1754), + [sym__raw_string_literal_start] = ACTIONS(1124), + [sym_float_literal] = ACTIONS(1112), }, [STATE(839)] = { - [sym_bracketed_type] = STATE(3674), - [sym_generic_type] = STATE(3711), - [sym_generic_type_with_turbofish] = STATE(3231), - [sym_macro_invocation] = STATE(2221), - [sym_scoped_identifier] = STATE(2035), - [sym_scoped_type_identifier] = STATE(3055), - [sym_const_block] = STATE(2221), - [sym__pattern] = STATE(2182), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), + [sym_bracketed_type] = STATE(3730), + [sym_generic_type] = STATE(3622), + [sym_generic_type_with_turbofish] = STATE(3423), + [sym_macro_invocation] = STATE(3092), + [sym_scoped_identifier] = STATE(2268), + [sym_scoped_type_identifier] = STATE(3118), + [sym_const_block] = STATE(3092), + [sym__pattern] = STATE(3029), + [sym_generic_pattern] = STATE(3092), + [sym_tuple_pattern] = STATE(3092), + [sym_slice_pattern] = STATE(3092), + [sym_tuple_struct_pattern] = STATE(3092), + [sym_struct_pattern] = STATE(3092), + [sym_remaining_field_pattern] = STATE(3092), + [sym_mut_pattern] = STATE(3092), + [sym_range_pattern] = STATE(3092), + [sym_ref_pattern] = STATE(3092), + [sym_captured_pattern] = STATE(3092), + [sym_reference_pattern] = STATE(3092), + [sym_or_pattern] = STATE(3092), + [sym__literal_pattern] = STATE(2439), + [sym_negative_literal] = STATE(2421), + [sym_string_literal] = STATE(2421), + [sym_raw_string_literal] = STATE(2421), + [sym_boolean_literal] = STATE(2421), [sym_line_comment] = STATE(839), [sym_block_comment] = STATE(839), - [sym_identifier] = ACTIONS(1725), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_LBRACK] = ACTIONS(1731), - [anon_sym_u8] = ACTIONS(1733), - [anon_sym_i8] = ACTIONS(1733), - [anon_sym_u16] = ACTIONS(1733), - [anon_sym_i16] = ACTIONS(1733), - [anon_sym_u32] = ACTIONS(1733), - [anon_sym_i32] = ACTIONS(1733), - [anon_sym_u64] = ACTIONS(1733), - [anon_sym_i64] = ACTIONS(1733), - [anon_sym_u128] = ACTIONS(1733), - [anon_sym_i128] = ACTIONS(1733), - [anon_sym_isize] = ACTIONS(1733), - [anon_sym_usize] = ACTIONS(1733), - [anon_sym_f32] = ACTIONS(1733), - [anon_sym_f64] = ACTIONS(1733), - [anon_sym_bool] = ACTIONS(1733), - [anon_sym_str] = ACTIONS(1733), - [anon_sym_char] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_AMP] = ACTIONS(1735), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1417), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COLON_COLON] = ACTIONS(1739), - [anon_sym_const] = ACTIONS(1743), - [anon_sym_default] = ACTIONS(1745), - [anon_sym_gen] = ACTIONS(1745), - [anon_sym_union] = ACTIONS(1745), - [anon_sym_ref] = ACTIONS(1159), - [sym_mutable_specifier] = ACTIONS(1425), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1747), - [sym_super] = ACTIONS(1747), - [sym_crate] = ACTIONS(1747), - [sym_metavariable] = ACTIONS(1749), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), + [sym_identifier] = ACTIONS(1678), + [anon_sym_LPAREN] = ACTIONS(1680), + [anon_sym_LBRACK] = ACTIONS(1682), + [anon_sym_u8] = ACTIONS(1686), + [anon_sym_i8] = ACTIONS(1686), + [anon_sym_u16] = ACTIONS(1686), + [anon_sym_i16] = ACTIONS(1686), + [anon_sym_u32] = ACTIONS(1686), + [anon_sym_i32] = ACTIONS(1686), + [anon_sym_u64] = ACTIONS(1686), + [anon_sym_i64] = ACTIONS(1686), + [anon_sym_u128] = ACTIONS(1686), + [anon_sym_i128] = ACTIONS(1686), + [anon_sym_isize] = ACTIONS(1686), + [anon_sym_usize] = ACTIONS(1686), + [anon_sym_f32] = ACTIONS(1686), + [anon_sym_f64] = ACTIONS(1686), + [anon_sym_bool] = ACTIONS(1686), + [anon_sym_str] = ACTIONS(1686), + [anon_sym_char] = ACTIONS(1686), + [anon_sym_DASH] = ACTIONS(1688), + [anon_sym_AMP] = ACTIONS(1690), + [anon_sym_PIPE] = ACTIONS(1692), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1694), + [anon_sym_DOT_DOT] = ACTIONS(1696), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1698), + [anon_sym_COLON_COLON] = ACTIONS(1700), + [anon_sym_const] = ACTIONS(1704), + [anon_sym_default] = ACTIONS(1706), + [anon_sym_gen] = ACTIONS(1706), + [anon_sym_union] = ACTIONS(1706), + [anon_sym_ref] = ACTIONS(1708), + [sym_mutable_specifier] = ACTIONS(1710), + [sym_integer_literal] = ACTIONS(1712), + [aux_sym_string_literal_token1] = ACTIONS(1714), + [sym_char_literal] = ACTIONS(1712), + [anon_sym_true] = ACTIONS(1716), + [anon_sym_false] = ACTIONS(1716), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1718), + [sym_super] = ACTIONS(1718), + [sym_crate] = ACTIONS(1718), + [sym_metavariable] = ACTIONS(1720), + [sym__raw_string_literal_start] = ACTIONS(1722), + [sym_float_literal] = ACTIONS(1712), }, [STATE(840)] = { - [sym_bracketed_type] = STATE(3674), - [sym_generic_type] = STATE(3711), - [sym_generic_type_with_turbofish] = STATE(3231), - [sym_macro_invocation] = STATE(2221), - [sym_scoped_identifier] = STATE(2035), - [sym_scoped_type_identifier] = STATE(3055), - [sym_const_block] = STATE(2221), - [sym__pattern] = STATE(2201), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), + [sym_bracketed_type] = STATE(3730), + [sym_generic_type] = STATE(3622), + [sym_generic_type_with_turbofish] = STATE(3423), + [sym_macro_invocation] = STATE(3092), + [sym_scoped_identifier] = STATE(2268), + [sym_scoped_type_identifier] = STATE(3118), + [sym_const_block] = STATE(3092), + [sym__pattern] = STATE(3172), + [sym_generic_pattern] = STATE(3092), + [sym_tuple_pattern] = STATE(3092), + [sym_slice_pattern] = STATE(3092), + [sym_tuple_struct_pattern] = STATE(3092), + [sym_struct_pattern] = STATE(3092), + [sym_remaining_field_pattern] = STATE(3092), + [sym_mut_pattern] = STATE(3092), + [sym_range_pattern] = STATE(3092), + [sym_ref_pattern] = STATE(3092), + [sym_captured_pattern] = STATE(3092), + [sym_reference_pattern] = STATE(3092), + [sym_or_pattern] = STATE(3092), + [sym__literal_pattern] = STATE(2439), + [sym_negative_literal] = STATE(2421), + [sym_string_literal] = STATE(2421), + [sym_raw_string_literal] = STATE(2421), + [sym_boolean_literal] = STATE(2421), [sym_line_comment] = STATE(840), [sym_block_comment] = STATE(840), - [sym_identifier] = ACTIONS(1725), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_LBRACK] = ACTIONS(1731), - [anon_sym_u8] = ACTIONS(1733), - [anon_sym_i8] = ACTIONS(1733), - [anon_sym_u16] = ACTIONS(1733), - [anon_sym_i16] = ACTIONS(1733), - [anon_sym_u32] = ACTIONS(1733), - [anon_sym_i32] = ACTIONS(1733), - [anon_sym_u64] = ACTIONS(1733), - [anon_sym_i64] = ACTIONS(1733), - [anon_sym_u128] = ACTIONS(1733), - [anon_sym_i128] = ACTIONS(1733), - [anon_sym_isize] = ACTIONS(1733), - [anon_sym_usize] = ACTIONS(1733), - [anon_sym_f32] = ACTIONS(1733), - [anon_sym_f64] = ACTIONS(1733), - [anon_sym_bool] = ACTIONS(1733), - [anon_sym_str] = ACTIONS(1733), - [anon_sym_char] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_AMP] = ACTIONS(1735), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1417), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COLON_COLON] = ACTIONS(1739), - [anon_sym_const] = ACTIONS(1743), - [anon_sym_default] = ACTIONS(1745), - [anon_sym_gen] = ACTIONS(1745), - [anon_sym_union] = ACTIONS(1745), - [anon_sym_ref] = ACTIONS(1159), - [sym_mutable_specifier] = ACTIONS(1425), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1747), - [sym_super] = ACTIONS(1747), - [sym_crate] = ACTIONS(1747), - [sym_metavariable] = ACTIONS(1749), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), + [sym_identifier] = ACTIONS(1678), + [anon_sym_LPAREN] = ACTIONS(1680), + [anon_sym_LBRACK] = ACTIONS(1682), + [anon_sym_u8] = ACTIONS(1686), + [anon_sym_i8] = ACTIONS(1686), + [anon_sym_u16] = ACTIONS(1686), + [anon_sym_i16] = ACTIONS(1686), + [anon_sym_u32] = ACTIONS(1686), + [anon_sym_i32] = ACTIONS(1686), + [anon_sym_u64] = ACTIONS(1686), + [anon_sym_i64] = ACTIONS(1686), + [anon_sym_u128] = ACTIONS(1686), + [anon_sym_i128] = ACTIONS(1686), + [anon_sym_isize] = ACTIONS(1686), + [anon_sym_usize] = ACTIONS(1686), + [anon_sym_f32] = ACTIONS(1686), + [anon_sym_f64] = ACTIONS(1686), + [anon_sym_bool] = ACTIONS(1686), + [anon_sym_str] = ACTIONS(1686), + [anon_sym_char] = ACTIONS(1686), + [anon_sym_DASH] = ACTIONS(1688), + [anon_sym_AMP] = ACTIONS(1690), + [anon_sym_PIPE] = ACTIONS(1692), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1694), + [anon_sym_DOT_DOT] = ACTIONS(1696), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1698), + [anon_sym_COLON_COLON] = ACTIONS(1700), + [anon_sym_const] = ACTIONS(1704), + [anon_sym_default] = ACTIONS(1706), + [anon_sym_gen] = ACTIONS(1706), + [anon_sym_union] = ACTIONS(1706), + [anon_sym_ref] = ACTIONS(1708), + [sym_mutable_specifier] = ACTIONS(1710), + [sym_integer_literal] = ACTIONS(1712), + [aux_sym_string_literal_token1] = ACTIONS(1714), + [sym_char_literal] = ACTIONS(1712), + [anon_sym_true] = ACTIONS(1716), + [anon_sym_false] = ACTIONS(1716), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1718), + [sym_super] = ACTIONS(1718), + [sym_crate] = ACTIONS(1718), + [sym_metavariable] = ACTIONS(1720), + [sym__raw_string_literal_start] = ACTIONS(1722), + [sym_float_literal] = ACTIONS(1712), }, [STATE(841)] = { - [sym_bracketed_type] = STATE(3695), - [sym_generic_type] = STATE(3711), - [sym_generic_type_with_turbofish] = STATE(3416), - [sym_macro_invocation] = STATE(2883), - [sym_scoped_identifier] = STATE(2241), - [sym_scoped_type_identifier] = STATE(3110), - [sym_const_block] = STATE(2883), - [sym__pattern] = STATE(2991), - [sym_generic_pattern] = STATE(2883), - [sym_tuple_pattern] = STATE(2883), - [sym_slice_pattern] = STATE(2883), - [sym_tuple_struct_pattern] = STATE(2883), - [sym_struct_pattern] = STATE(2883), - [sym_remaining_field_pattern] = STATE(2883), - [sym_mut_pattern] = STATE(2883), - [sym_range_pattern] = STATE(2883), - [sym_ref_pattern] = STATE(2883), - [sym_captured_pattern] = STATE(2883), - [sym_reference_pattern] = STATE(2883), - [sym_or_pattern] = STATE(2883), - [sym__literal_pattern] = STATE(2449), - [sym_negative_literal] = STATE(2408), - [sym_string_literal] = STATE(2408), - [sym_raw_string_literal] = STATE(2408), - [sym_boolean_literal] = STATE(2408), + [sym_bracketed_type] = STATE(3756), + [sym_generic_type] = STATE(3622), + [sym_generic_type_with_turbofish] = STATE(3514), + [sym_macro_invocation] = STATE(2197), + [sym_scoped_identifier] = STATE(2056), + [sym_scoped_type_identifier] = STATE(2926), + [sym_const_block] = STATE(2197), + [sym__pattern] = STATE(2219), + [sym_generic_pattern] = STATE(2197), + [sym_tuple_pattern] = STATE(2197), + [sym_slice_pattern] = STATE(2197), + [sym_tuple_struct_pattern] = STATE(2197), + [sym_struct_pattern] = STATE(2197), + [sym_remaining_field_pattern] = STATE(2197), + [sym_mut_pattern] = STATE(2197), + [sym_range_pattern] = STATE(2197), + [sym_ref_pattern] = STATE(2197), + [sym_captured_pattern] = STATE(2197), + [sym_reference_pattern] = STATE(2197), + [sym_or_pattern] = STATE(2197), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2129), + [sym_string_literal] = STATE(2129), + [sym_raw_string_literal] = STATE(2129), + [sym_boolean_literal] = STATE(2129), [sym_line_comment] = STATE(841), [sym_block_comment] = STATE(841), - [sym_identifier] = ACTIONS(1671), - [anon_sym_LPAREN] = ACTIONS(1673), - [anon_sym_LBRACK] = ACTIONS(1675), - [anon_sym_u8] = ACTIONS(1679), - [anon_sym_i8] = ACTIONS(1679), - [anon_sym_u16] = ACTIONS(1679), - [anon_sym_i16] = ACTIONS(1679), - [anon_sym_u32] = ACTIONS(1679), - [anon_sym_i32] = ACTIONS(1679), - [anon_sym_u64] = ACTIONS(1679), - [anon_sym_i64] = ACTIONS(1679), - [anon_sym_u128] = ACTIONS(1679), - [anon_sym_i128] = ACTIONS(1679), - [anon_sym_isize] = ACTIONS(1679), - [anon_sym_usize] = ACTIONS(1679), - [anon_sym_f32] = ACTIONS(1679), - [anon_sym_f64] = ACTIONS(1679), - [anon_sym_bool] = ACTIONS(1679), - [anon_sym_str] = ACTIONS(1679), - [anon_sym_char] = ACTIONS(1679), - [anon_sym_DASH] = ACTIONS(1681), - [anon_sym_AMP] = ACTIONS(1683), - [anon_sym_PIPE] = ACTIONS(1685), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1687), - [anon_sym_DOT_DOT] = ACTIONS(1689), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1691), - [anon_sym_COLON_COLON] = ACTIONS(1693), - [anon_sym_const] = ACTIONS(1697), - [anon_sym_default] = ACTIONS(1699), - [anon_sym_gen] = ACTIONS(1699), - [anon_sym_union] = ACTIONS(1699), - [anon_sym_ref] = ACTIONS(1701), - [sym_mutable_specifier] = ACTIONS(1703), - [sym_integer_literal] = ACTIONS(1705), - [aux_sym_string_literal_token1] = ACTIONS(1707), - [sym_char_literal] = ACTIONS(1705), - [anon_sym_true] = ACTIONS(1709), - [anon_sym_false] = ACTIONS(1709), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1711), - [sym_super] = ACTIONS(1711), - [sym_crate] = ACTIONS(1711), - [sym_metavariable] = ACTIONS(1713), - [sym__raw_string_literal_start] = ACTIONS(1715), - [sym_float_literal] = ACTIONS(1705), + [sym_identifier] = ACTIONS(1730), + [anon_sym_LPAREN] = ACTIONS(1732), + [anon_sym_LBRACK] = ACTIONS(1736), + [anon_sym_u8] = ACTIONS(1738), + [anon_sym_i8] = ACTIONS(1738), + [anon_sym_u16] = ACTIONS(1738), + [anon_sym_i16] = ACTIONS(1738), + [anon_sym_u32] = ACTIONS(1738), + [anon_sym_i32] = ACTIONS(1738), + [anon_sym_u64] = ACTIONS(1738), + [anon_sym_i64] = ACTIONS(1738), + [anon_sym_u128] = ACTIONS(1738), + [anon_sym_i128] = ACTIONS(1738), + [anon_sym_isize] = ACTIONS(1738), + [anon_sym_usize] = ACTIONS(1738), + [anon_sym_f32] = ACTIONS(1738), + [anon_sym_f64] = ACTIONS(1738), + [anon_sym_bool] = ACTIONS(1738), + [anon_sym_str] = ACTIONS(1738), + [anon_sym_char] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1064), + [anon_sym_AMP] = ACTIONS(1740), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1392), + [anon_sym_DOT_DOT] = ACTIONS(1074), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1078), + [anon_sym_COLON_COLON] = ACTIONS(1744), + [anon_sym_const] = ACTIONS(1748), + [anon_sym_default] = ACTIONS(1750), + [anon_sym_gen] = ACTIONS(1750), + [anon_sym_union] = ACTIONS(1750), + [anon_sym_ref] = ACTIONS(1106), + [sym_mutable_specifier] = ACTIONS(1400), + [sym_integer_literal] = ACTIONS(1112), + [aux_sym_string_literal_token1] = ACTIONS(1114), + [sym_char_literal] = ACTIONS(1112), + [anon_sym_true] = ACTIONS(1116), + [anon_sym_false] = ACTIONS(1116), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1752), + [sym_super] = ACTIONS(1752), + [sym_crate] = ACTIONS(1752), + [sym_metavariable] = ACTIONS(1754), + [sym__raw_string_literal_start] = ACTIONS(1124), + [sym_float_literal] = ACTIONS(1112), }, [STATE(842)] = { - [sym_bracketed_type] = STATE(3674), - [sym_generic_type] = STATE(3711), - [sym_generic_type_with_turbofish] = STATE(3231), - [sym_macro_invocation] = STATE(2221), - [sym_scoped_identifier] = STATE(2035), - [sym_scoped_type_identifier] = STATE(3055), - [sym_const_block] = STATE(2221), - [sym__pattern] = STATE(3101), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), + [sym_bracketed_type] = STATE(3756), + [sym_generic_type] = STATE(3622), + [sym_generic_type_with_turbofish] = STATE(3514), + [sym_macro_invocation] = STATE(2197), + [sym_scoped_identifier] = STATE(2056), + [sym_scoped_type_identifier] = STATE(2926), + [sym_const_block] = STATE(2197), + [sym__pattern] = STATE(2853), + [sym_generic_pattern] = STATE(2197), + [sym_tuple_pattern] = STATE(2197), + [sym_slice_pattern] = STATE(2197), + [sym_tuple_struct_pattern] = STATE(2197), + [sym_struct_pattern] = STATE(2197), + [sym_remaining_field_pattern] = STATE(2197), + [sym_mut_pattern] = STATE(2197), + [sym_range_pattern] = STATE(2197), + [sym_ref_pattern] = STATE(2197), + [sym_captured_pattern] = STATE(2197), + [sym_reference_pattern] = STATE(2197), + [sym_or_pattern] = STATE(2197), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2129), + [sym_string_literal] = STATE(2129), + [sym_raw_string_literal] = STATE(2129), + [sym_boolean_literal] = STATE(2129), [sym_line_comment] = STATE(842), [sym_block_comment] = STATE(842), - [sym_identifier] = ACTIONS(1725), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_LBRACK] = ACTIONS(1731), - [anon_sym_u8] = ACTIONS(1733), - [anon_sym_i8] = ACTIONS(1733), - [anon_sym_u16] = ACTIONS(1733), - [anon_sym_i16] = ACTIONS(1733), - [anon_sym_u32] = ACTIONS(1733), - [anon_sym_i32] = ACTIONS(1733), - [anon_sym_u64] = ACTIONS(1733), - [anon_sym_i64] = ACTIONS(1733), - [anon_sym_u128] = ACTIONS(1733), - [anon_sym_i128] = ACTIONS(1733), - [anon_sym_isize] = ACTIONS(1733), - [anon_sym_usize] = ACTIONS(1733), - [anon_sym_f32] = ACTIONS(1733), - [anon_sym_f64] = ACTIONS(1733), - [anon_sym_bool] = ACTIONS(1733), - [anon_sym_str] = ACTIONS(1733), - [anon_sym_char] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_AMP] = ACTIONS(1735), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1417), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COLON_COLON] = ACTIONS(1739), - [anon_sym_const] = ACTIONS(1743), - [anon_sym_default] = ACTIONS(1745), - [anon_sym_gen] = ACTIONS(1745), - [anon_sym_union] = ACTIONS(1745), - [anon_sym_ref] = ACTIONS(1159), - [sym_mutable_specifier] = ACTIONS(1425), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1747), - [sym_super] = ACTIONS(1747), - [sym_crate] = ACTIONS(1747), - [sym_metavariable] = ACTIONS(1749), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), + [sym_identifier] = ACTIONS(1730), + [anon_sym_LPAREN] = ACTIONS(1732), + [anon_sym_LBRACK] = ACTIONS(1736), + [anon_sym_u8] = ACTIONS(1738), + [anon_sym_i8] = ACTIONS(1738), + [anon_sym_u16] = ACTIONS(1738), + [anon_sym_i16] = ACTIONS(1738), + [anon_sym_u32] = ACTIONS(1738), + [anon_sym_i32] = ACTIONS(1738), + [anon_sym_u64] = ACTIONS(1738), + [anon_sym_i64] = ACTIONS(1738), + [anon_sym_u128] = ACTIONS(1738), + [anon_sym_i128] = ACTIONS(1738), + [anon_sym_isize] = ACTIONS(1738), + [anon_sym_usize] = ACTIONS(1738), + [anon_sym_f32] = ACTIONS(1738), + [anon_sym_f64] = ACTIONS(1738), + [anon_sym_bool] = ACTIONS(1738), + [anon_sym_str] = ACTIONS(1738), + [anon_sym_char] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1064), + [anon_sym_AMP] = ACTIONS(1740), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1392), + [anon_sym_DOT_DOT] = ACTIONS(1074), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1078), + [anon_sym_COLON_COLON] = ACTIONS(1744), + [anon_sym_const] = ACTIONS(1748), + [anon_sym_default] = ACTIONS(1750), + [anon_sym_gen] = ACTIONS(1750), + [anon_sym_union] = ACTIONS(1750), + [anon_sym_ref] = ACTIONS(1106), + [sym_mutable_specifier] = ACTIONS(1400), + [sym_integer_literal] = ACTIONS(1112), + [aux_sym_string_literal_token1] = ACTIONS(1114), + [sym_char_literal] = ACTIONS(1112), + [anon_sym_true] = ACTIONS(1116), + [anon_sym_false] = ACTIONS(1116), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(3188), + [sym_super] = ACTIONS(1752), + [sym_crate] = ACTIONS(1752), + [sym_metavariable] = ACTIONS(1754), + [sym__raw_string_literal_start] = ACTIONS(1124), + [sym_float_literal] = ACTIONS(1112), }, [STATE(843)] = { - [sym_bracketed_type] = STATE(3695), - [sym_generic_type] = STATE(3711), - [sym_generic_type_with_turbofish] = STATE(3416), - [sym_macro_invocation] = STATE(2883), - [sym_scoped_identifier] = STATE(2241), - [sym_scoped_type_identifier] = STATE(3110), - [sym_const_block] = STATE(2883), - [sym__pattern] = STATE(3000), - [sym_generic_pattern] = STATE(2883), - [sym_tuple_pattern] = STATE(2883), - [sym_slice_pattern] = STATE(2883), - [sym_tuple_struct_pattern] = STATE(2883), - [sym_struct_pattern] = STATE(2883), - [sym_remaining_field_pattern] = STATE(2883), - [sym_mut_pattern] = STATE(2883), - [sym_range_pattern] = STATE(2883), - [sym_ref_pattern] = STATE(2883), - [sym_captured_pattern] = STATE(2883), - [sym_reference_pattern] = STATE(2883), - [sym_or_pattern] = STATE(2883), - [sym__literal_pattern] = STATE(2449), - [sym_negative_literal] = STATE(2408), - [sym_string_literal] = STATE(2408), - [sym_raw_string_literal] = STATE(2408), - [sym_boolean_literal] = STATE(2408), + [sym_bracketed_type] = STATE(3756), + [sym_generic_type] = STATE(3622), + [sym_generic_type_with_turbofish] = STATE(3514), + [sym_macro_invocation] = STATE(2197), + [sym_scoped_identifier] = STATE(2056), + [sym_scoped_type_identifier] = STATE(2926), + [sym_const_block] = STATE(2197), + [sym__pattern] = STATE(2986), + [sym_generic_pattern] = STATE(2197), + [sym_tuple_pattern] = STATE(2197), + [sym_slice_pattern] = STATE(2197), + [sym_tuple_struct_pattern] = STATE(2197), + [sym_struct_pattern] = STATE(2197), + [sym_remaining_field_pattern] = STATE(2197), + [sym_mut_pattern] = STATE(2197), + [sym_range_pattern] = STATE(2197), + [sym_ref_pattern] = STATE(2197), + [sym_captured_pattern] = STATE(2197), + [sym_reference_pattern] = STATE(2197), + [sym_or_pattern] = STATE(2197), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2129), + [sym_string_literal] = STATE(2129), + [sym_raw_string_literal] = STATE(2129), + [sym_boolean_literal] = STATE(2129), [sym_line_comment] = STATE(843), [sym_block_comment] = STATE(843), - [sym_identifier] = ACTIONS(1671), - [anon_sym_LPAREN] = ACTIONS(1673), - [anon_sym_LBRACK] = ACTIONS(1675), - [anon_sym_u8] = ACTIONS(1679), - [anon_sym_i8] = ACTIONS(1679), - [anon_sym_u16] = ACTIONS(1679), - [anon_sym_i16] = ACTIONS(1679), - [anon_sym_u32] = ACTIONS(1679), - [anon_sym_i32] = ACTIONS(1679), - [anon_sym_u64] = ACTIONS(1679), - [anon_sym_i64] = ACTIONS(1679), - [anon_sym_u128] = ACTIONS(1679), - [anon_sym_i128] = ACTIONS(1679), - [anon_sym_isize] = ACTIONS(1679), - [anon_sym_usize] = ACTIONS(1679), - [anon_sym_f32] = ACTIONS(1679), - [anon_sym_f64] = ACTIONS(1679), - [anon_sym_bool] = ACTIONS(1679), - [anon_sym_str] = ACTIONS(1679), - [anon_sym_char] = ACTIONS(1679), - [anon_sym_DASH] = ACTIONS(1681), - [anon_sym_AMP] = ACTIONS(1683), - [anon_sym_PIPE] = ACTIONS(1685), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1687), - [anon_sym_DOT_DOT] = ACTIONS(1689), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1691), - [anon_sym_COLON_COLON] = ACTIONS(1693), - [anon_sym_const] = ACTIONS(1697), - [anon_sym_default] = ACTIONS(1699), - [anon_sym_gen] = ACTIONS(1699), - [anon_sym_union] = ACTIONS(1699), - [anon_sym_ref] = ACTIONS(1701), - [sym_mutable_specifier] = ACTIONS(1703), - [sym_integer_literal] = ACTIONS(1705), - [aux_sym_string_literal_token1] = ACTIONS(1707), - [sym_char_literal] = ACTIONS(1705), - [anon_sym_true] = ACTIONS(1709), - [anon_sym_false] = ACTIONS(1709), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1711), - [sym_super] = ACTIONS(1711), - [sym_crate] = ACTIONS(1711), - [sym_metavariable] = ACTIONS(1713), - [sym__raw_string_literal_start] = ACTIONS(1715), - [sym_float_literal] = ACTIONS(1705), + [sym_identifier] = ACTIONS(1730), + [anon_sym_LPAREN] = ACTIONS(1732), + [anon_sym_LBRACK] = ACTIONS(1736), + [anon_sym_u8] = ACTIONS(1738), + [anon_sym_i8] = ACTIONS(1738), + [anon_sym_u16] = ACTIONS(1738), + [anon_sym_i16] = ACTIONS(1738), + [anon_sym_u32] = ACTIONS(1738), + [anon_sym_i32] = ACTIONS(1738), + [anon_sym_u64] = ACTIONS(1738), + [anon_sym_i64] = ACTIONS(1738), + [anon_sym_u128] = ACTIONS(1738), + [anon_sym_i128] = ACTIONS(1738), + [anon_sym_isize] = ACTIONS(1738), + [anon_sym_usize] = ACTIONS(1738), + [anon_sym_f32] = ACTIONS(1738), + [anon_sym_f64] = ACTIONS(1738), + [anon_sym_bool] = ACTIONS(1738), + [anon_sym_str] = ACTIONS(1738), + [anon_sym_char] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1064), + [anon_sym_AMP] = ACTIONS(1740), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1392), + [anon_sym_DOT_DOT] = ACTIONS(1074), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1078), + [anon_sym_COLON_COLON] = ACTIONS(1744), + [anon_sym_const] = ACTIONS(1748), + [anon_sym_default] = ACTIONS(1750), + [anon_sym_gen] = ACTIONS(1750), + [anon_sym_union] = ACTIONS(1750), + [anon_sym_ref] = ACTIONS(1106), + [sym_mutable_specifier] = ACTIONS(1400), + [sym_integer_literal] = ACTIONS(1112), + [aux_sym_string_literal_token1] = ACTIONS(1114), + [sym_char_literal] = ACTIONS(1112), + [anon_sym_true] = ACTIONS(1116), + [anon_sym_false] = ACTIONS(1116), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1752), + [sym_super] = ACTIONS(1752), + [sym_crate] = ACTIONS(1752), + [sym_metavariable] = ACTIONS(1754), + [sym__raw_string_literal_start] = ACTIONS(1124), + [sym_float_literal] = ACTIONS(1112), }, [STATE(844)] = { - [sym_bracketed_type] = STATE(3674), - [sym_generic_type] = STATE(3711), - [sym_generic_type_with_turbofish] = STATE(3231), - [sym_macro_invocation] = STATE(2221), - [sym_scoped_identifier] = STATE(2035), - [sym_scoped_type_identifier] = STATE(3055), - [sym_const_block] = STATE(2221), - [sym__pattern] = STATE(3135), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), + [sym_function_modifiers] = STATE(3576), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(2082), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(3771), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3771), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2285), [sym_line_comment] = STATE(844), [sym_block_comment] = STATE(844), - [sym_identifier] = ACTIONS(1725), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_LBRACK] = ACTIONS(1731), - [anon_sym_u8] = ACTIONS(1733), - [anon_sym_i8] = ACTIONS(1733), - [anon_sym_u16] = ACTIONS(1733), - [anon_sym_i16] = ACTIONS(1733), - [anon_sym_u32] = ACTIONS(1733), - [anon_sym_i32] = ACTIONS(1733), - [anon_sym_u64] = ACTIONS(1733), - [anon_sym_i64] = ACTIONS(1733), - [anon_sym_u128] = ACTIONS(1733), - [anon_sym_i128] = ACTIONS(1733), - [anon_sym_isize] = ACTIONS(1733), - [anon_sym_usize] = ACTIONS(1733), - [anon_sym_f32] = ACTIONS(1733), - [anon_sym_f64] = ACTIONS(1733), - [anon_sym_bool] = ACTIONS(1733), - [anon_sym_str] = ACTIONS(1733), - [anon_sym_char] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_AMP] = ACTIONS(1735), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1417), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COLON_COLON] = ACTIONS(1739), - [anon_sym_const] = ACTIONS(1743), - [anon_sym_default] = ACTIONS(1745), - [anon_sym_gen] = ACTIONS(1745), - [anon_sym_union] = ACTIONS(1745), - [anon_sym_ref] = ACTIONS(1159), - [sym_mutable_specifier] = ACTIONS(1425), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1747), - [sym_super] = ACTIONS(1747), - [sym_crate] = ACTIONS(1747), - [sym_metavariable] = ACTIONS(1749), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), + [sym_identifier] = ACTIONS(3190), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_PLUS] = ACTIONS(3192), + [anon_sym_STAR] = ACTIONS(1624), + [anon_sym_QMARK] = ACTIONS(1626), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1630), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1640), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1644), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1646), + [sym_mutable_specifier] = ACTIONS(3194), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), }, [STATE(845)] = { - [sym_bracketed_type] = STATE(3695), - [sym_generic_type] = STATE(3711), - [sym_generic_type_with_turbofish] = STATE(3416), - [sym_macro_invocation] = STATE(2883), - [sym_scoped_identifier] = STATE(2241), - [sym_scoped_type_identifier] = STATE(3110), - [sym_const_block] = STATE(2883), - [sym__pattern] = STATE(3014), - [sym_generic_pattern] = STATE(2883), - [sym_tuple_pattern] = STATE(2883), - [sym_slice_pattern] = STATE(2883), - [sym_tuple_struct_pattern] = STATE(2883), - [sym_struct_pattern] = STATE(2883), - [sym_remaining_field_pattern] = STATE(2883), - [sym_mut_pattern] = STATE(2883), - [sym_range_pattern] = STATE(2883), - [sym_ref_pattern] = STATE(2883), - [sym_captured_pattern] = STATE(2883), - [sym_reference_pattern] = STATE(2883), - [sym_or_pattern] = STATE(2883), - [sym__literal_pattern] = STATE(2449), - [sym_negative_literal] = STATE(2408), - [sym_string_literal] = STATE(2408), - [sym_raw_string_literal] = STATE(2408), - [sym_boolean_literal] = STATE(2408), + [sym_function_modifiers] = STATE(3576), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(3358), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(3771), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3771), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2285), [sym_line_comment] = STATE(845), [sym_block_comment] = STATE(845), - [sym_identifier] = ACTIONS(1671), - [anon_sym_LPAREN] = ACTIONS(1673), - [anon_sym_LBRACK] = ACTIONS(1675), - [anon_sym_u8] = ACTIONS(1679), - [anon_sym_i8] = ACTIONS(1679), - [anon_sym_u16] = ACTIONS(1679), - [anon_sym_i16] = ACTIONS(1679), - [anon_sym_u32] = ACTIONS(1679), - [anon_sym_i32] = ACTIONS(1679), - [anon_sym_u64] = ACTIONS(1679), - [anon_sym_i64] = ACTIONS(1679), - [anon_sym_u128] = ACTIONS(1679), - [anon_sym_i128] = ACTIONS(1679), - [anon_sym_isize] = ACTIONS(1679), - [anon_sym_usize] = ACTIONS(1679), - [anon_sym_f32] = ACTIONS(1679), - [anon_sym_f64] = ACTIONS(1679), - [anon_sym_bool] = ACTIONS(1679), - [anon_sym_str] = ACTIONS(1679), - [anon_sym_char] = ACTIONS(1679), - [anon_sym_DASH] = ACTIONS(1681), - [anon_sym_AMP] = ACTIONS(1683), - [anon_sym_PIPE] = ACTIONS(1685), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1687), - [anon_sym_DOT_DOT] = ACTIONS(1689), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1691), - [anon_sym_COLON_COLON] = ACTIONS(1693), - [anon_sym_const] = ACTIONS(1697), - [anon_sym_default] = ACTIONS(1699), - [anon_sym_gen] = ACTIONS(1699), - [anon_sym_union] = ACTIONS(1699), - [anon_sym_ref] = ACTIONS(1701), - [sym_mutable_specifier] = ACTIONS(1703), - [sym_integer_literal] = ACTIONS(1705), - [aux_sym_string_literal_token1] = ACTIONS(1707), - [sym_char_literal] = ACTIONS(1705), - [anon_sym_true] = ACTIONS(1709), - [anon_sym_false] = ACTIONS(1709), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1711), - [sym_super] = ACTIONS(1711), - [sym_crate] = ACTIONS(1711), - [sym_metavariable] = ACTIONS(1713), - [sym__raw_string_literal_start] = ACTIONS(1715), - [sym_float_literal] = ACTIONS(1705), + [sym_identifier] = ACTIONS(3190), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_PLUS] = ACTIONS(3192), + [anon_sym_STAR] = ACTIONS(1624), + [anon_sym_QMARK] = ACTIONS(1626), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1630), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1640), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1644), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1646), + [sym_mutable_specifier] = ACTIONS(3196), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), }, [STATE(846)] = { - [sym_bracketed_type] = STATE(3674), - [sym_generic_type] = STATE(3711), - [sym_generic_type_with_turbofish] = STATE(3231), - [sym_macro_invocation] = STATE(2221), - [sym_scoped_identifier] = STATE(2035), - [sym_scoped_type_identifier] = STATE(3055), - [sym_const_block] = STATE(2221), - [sym__pattern] = STATE(3071), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), + [sym_bracketed_type] = STATE(3756), + [sym_generic_type] = STATE(3622), + [sym_generic_type_with_turbofish] = STATE(3514), + [sym_macro_invocation] = STATE(2197), + [sym_scoped_identifier] = STATE(2056), + [sym_scoped_type_identifier] = STATE(2926), + [sym_const_block] = STATE(2197), + [sym__pattern] = STATE(3364), + [sym_generic_pattern] = STATE(2197), + [sym_tuple_pattern] = STATE(2197), + [sym_slice_pattern] = STATE(2197), + [sym_tuple_struct_pattern] = STATE(2197), + [sym_struct_pattern] = STATE(2197), + [sym_remaining_field_pattern] = STATE(2197), + [sym_mut_pattern] = STATE(2197), + [sym_range_pattern] = STATE(2197), + [sym_ref_pattern] = STATE(2197), + [sym_captured_pattern] = STATE(2197), + [sym_reference_pattern] = STATE(2197), + [sym_or_pattern] = STATE(2197), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2129), + [sym_string_literal] = STATE(2129), + [sym_raw_string_literal] = STATE(2129), + [sym_boolean_literal] = STATE(2129), [sym_line_comment] = STATE(846), [sym_block_comment] = STATE(846), - [sym_identifier] = ACTIONS(1725), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_LBRACK] = ACTIONS(1731), - [anon_sym_u8] = ACTIONS(1733), - [anon_sym_i8] = ACTIONS(1733), - [anon_sym_u16] = ACTIONS(1733), - [anon_sym_i16] = ACTIONS(1733), - [anon_sym_u32] = ACTIONS(1733), - [anon_sym_i32] = ACTIONS(1733), - [anon_sym_u64] = ACTIONS(1733), - [anon_sym_i64] = ACTIONS(1733), - [anon_sym_u128] = ACTIONS(1733), - [anon_sym_i128] = ACTIONS(1733), - [anon_sym_isize] = ACTIONS(1733), - [anon_sym_usize] = ACTIONS(1733), - [anon_sym_f32] = ACTIONS(1733), - [anon_sym_f64] = ACTIONS(1733), - [anon_sym_bool] = ACTIONS(1733), - [anon_sym_str] = ACTIONS(1733), - [anon_sym_char] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_AMP] = ACTIONS(1735), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1417), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COLON_COLON] = ACTIONS(1739), - [anon_sym_const] = ACTIONS(1743), - [anon_sym_default] = ACTIONS(1745), - [anon_sym_gen] = ACTIONS(1745), - [anon_sym_union] = ACTIONS(1745), - [anon_sym_ref] = ACTIONS(1159), - [sym_mutable_specifier] = ACTIONS(1425), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1747), - [sym_super] = ACTIONS(1747), - [sym_crate] = ACTIONS(1747), - [sym_metavariable] = ACTIONS(1749), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), + [sym_identifier] = ACTIONS(1730), + [anon_sym_LPAREN] = ACTIONS(1732), + [anon_sym_LBRACK] = ACTIONS(1736), + [anon_sym_u8] = ACTIONS(1738), + [anon_sym_i8] = ACTIONS(1738), + [anon_sym_u16] = ACTIONS(1738), + [anon_sym_i16] = ACTIONS(1738), + [anon_sym_u32] = ACTIONS(1738), + [anon_sym_i32] = ACTIONS(1738), + [anon_sym_u64] = ACTIONS(1738), + [anon_sym_i64] = ACTIONS(1738), + [anon_sym_u128] = ACTIONS(1738), + [anon_sym_i128] = ACTIONS(1738), + [anon_sym_isize] = ACTIONS(1738), + [anon_sym_usize] = ACTIONS(1738), + [anon_sym_f32] = ACTIONS(1738), + [anon_sym_f64] = ACTIONS(1738), + [anon_sym_bool] = ACTIONS(1738), + [anon_sym_str] = ACTIONS(1738), + [anon_sym_char] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1064), + [anon_sym_AMP] = ACTIONS(1740), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1392), + [anon_sym_DOT_DOT] = ACTIONS(1074), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1078), + [anon_sym_COLON_COLON] = ACTIONS(1744), + [anon_sym_const] = ACTIONS(1748), + [anon_sym_default] = ACTIONS(1750), + [anon_sym_gen] = ACTIONS(1750), + [anon_sym_union] = ACTIONS(1750), + [anon_sym_ref] = ACTIONS(1106), + [sym_mutable_specifier] = ACTIONS(1400), + [sym_integer_literal] = ACTIONS(1112), + [aux_sym_string_literal_token1] = ACTIONS(1114), + [sym_char_literal] = ACTIONS(1112), + [anon_sym_true] = ACTIONS(1116), + [anon_sym_false] = ACTIONS(1116), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1752), + [sym_super] = ACTIONS(1752), + [sym_crate] = ACTIONS(1752), + [sym_metavariable] = ACTIONS(1754), + [sym__raw_string_literal_start] = ACTIONS(1124), + [sym_float_literal] = ACTIONS(1112), }, [STATE(847)] = { - [sym_bracketed_type] = STATE(3674), - [sym_generic_type] = STATE(3711), - [sym_generic_type_with_turbofish] = STATE(3231), - [sym_macro_invocation] = STATE(2221), - [sym_scoped_identifier] = STATE(2035), - [sym_scoped_type_identifier] = STATE(3055), - [sym_const_block] = STATE(2221), - [sym__pattern] = STATE(3479), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), + [sym_bracketed_type] = STATE(3756), + [sym_generic_type] = STATE(3622), + [sym_generic_type_with_turbofish] = STATE(3514), + [sym_macro_invocation] = STATE(2197), + [sym_scoped_identifier] = STATE(2056), + [sym_scoped_type_identifier] = STATE(2926), + [sym_const_block] = STATE(2197), + [sym__pattern] = STATE(2559), + [sym_generic_pattern] = STATE(2197), + [sym_tuple_pattern] = STATE(2197), + [sym_slice_pattern] = STATE(2197), + [sym_tuple_struct_pattern] = STATE(2197), + [sym_struct_pattern] = STATE(2197), + [sym_remaining_field_pattern] = STATE(2197), + [sym_mut_pattern] = STATE(2197), + [sym_range_pattern] = STATE(2197), + [sym_ref_pattern] = STATE(2197), + [sym_captured_pattern] = STATE(2197), + [sym_reference_pattern] = STATE(2197), + [sym_or_pattern] = STATE(2197), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2129), + [sym_string_literal] = STATE(2129), + [sym_raw_string_literal] = STATE(2129), + [sym_boolean_literal] = STATE(2129), [sym_line_comment] = STATE(847), [sym_block_comment] = STATE(847), - [sym_identifier] = ACTIONS(1725), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_LBRACK] = ACTIONS(1731), - [anon_sym_u8] = ACTIONS(1733), - [anon_sym_i8] = ACTIONS(1733), - [anon_sym_u16] = ACTIONS(1733), - [anon_sym_i16] = ACTIONS(1733), - [anon_sym_u32] = ACTIONS(1733), - [anon_sym_i32] = ACTIONS(1733), - [anon_sym_u64] = ACTIONS(1733), - [anon_sym_i64] = ACTIONS(1733), - [anon_sym_u128] = ACTIONS(1733), - [anon_sym_i128] = ACTIONS(1733), - [anon_sym_isize] = ACTIONS(1733), - [anon_sym_usize] = ACTIONS(1733), - [anon_sym_f32] = ACTIONS(1733), - [anon_sym_f64] = ACTIONS(1733), - [anon_sym_bool] = ACTIONS(1733), - [anon_sym_str] = ACTIONS(1733), - [anon_sym_char] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_AMP] = ACTIONS(1735), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1417), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COLON_COLON] = ACTIONS(1739), - [anon_sym_const] = ACTIONS(1743), - [anon_sym_default] = ACTIONS(1745), - [anon_sym_gen] = ACTIONS(1745), - [anon_sym_union] = ACTIONS(1745), - [anon_sym_ref] = ACTIONS(1159), - [sym_mutable_specifier] = ACTIONS(1425), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1747), - [sym_super] = ACTIONS(1747), - [sym_crate] = ACTIONS(1747), - [sym_metavariable] = ACTIONS(1749), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), + [sym_identifier] = ACTIONS(1730), + [anon_sym_LPAREN] = ACTIONS(1732), + [anon_sym_LBRACK] = ACTIONS(1736), + [anon_sym_u8] = ACTIONS(1738), + [anon_sym_i8] = ACTIONS(1738), + [anon_sym_u16] = ACTIONS(1738), + [anon_sym_i16] = ACTIONS(1738), + [anon_sym_u32] = ACTIONS(1738), + [anon_sym_i32] = ACTIONS(1738), + [anon_sym_u64] = ACTIONS(1738), + [anon_sym_i64] = ACTIONS(1738), + [anon_sym_u128] = ACTIONS(1738), + [anon_sym_i128] = ACTIONS(1738), + [anon_sym_isize] = ACTIONS(1738), + [anon_sym_usize] = ACTIONS(1738), + [anon_sym_f32] = ACTIONS(1738), + [anon_sym_f64] = ACTIONS(1738), + [anon_sym_bool] = ACTIONS(1738), + [anon_sym_str] = ACTIONS(1738), + [anon_sym_char] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1064), + [anon_sym_AMP] = ACTIONS(1740), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1392), + [anon_sym_DOT_DOT] = ACTIONS(1074), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1078), + [anon_sym_COLON_COLON] = ACTIONS(1744), + [anon_sym_const] = ACTIONS(1748), + [anon_sym_default] = ACTIONS(1750), + [anon_sym_gen] = ACTIONS(1750), + [anon_sym_union] = ACTIONS(1750), + [anon_sym_ref] = ACTIONS(1106), + [sym_mutable_specifier] = ACTIONS(1400), + [sym_integer_literal] = ACTIONS(1112), + [aux_sym_string_literal_token1] = ACTIONS(1114), + [sym_char_literal] = ACTIONS(1112), + [anon_sym_true] = ACTIONS(1116), + [anon_sym_false] = ACTIONS(1116), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1752), + [sym_super] = ACTIONS(1752), + [sym_crate] = ACTIONS(1752), + [sym_metavariable] = ACTIONS(1754), + [sym__raw_string_literal_start] = ACTIONS(1124), + [sym_float_literal] = ACTIONS(1112), }, [STATE(848)] = { - [sym_bracketed_type] = STATE(3695), - [sym_generic_type] = STATE(3711), - [sym_generic_type_with_turbofish] = STATE(3416), - [sym_macro_invocation] = STATE(2883), - [sym_scoped_identifier] = STATE(2241), - [sym_scoped_type_identifier] = STATE(3110), - [sym_const_block] = STATE(2883), - [sym__pattern] = STATE(3096), - [sym_generic_pattern] = STATE(2883), - [sym_tuple_pattern] = STATE(2883), - [sym_slice_pattern] = STATE(2883), - [sym_tuple_struct_pattern] = STATE(2883), - [sym_struct_pattern] = STATE(2883), - [sym_remaining_field_pattern] = STATE(2883), - [sym_mut_pattern] = STATE(2883), - [sym_range_pattern] = STATE(2883), - [sym_ref_pattern] = STATE(2883), - [sym_captured_pattern] = STATE(2883), - [sym_reference_pattern] = STATE(2883), - [sym_or_pattern] = STATE(2883), - [sym__literal_pattern] = STATE(2449), - [sym_negative_literal] = STATE(2408), - [sym_string_literal] = STATE(2408), - [sym_raw_string_literal] = STATE(2408), - [sym_boolean_literal] = STATE(2408), + [sym_bracketed_type] = STATE(3756), + [sym_generic_type] = STATE(3622), + [sym_generic_type_with_turbofish] = STATE(3514), + [sym_macro_invocation] = STATE(2197), + [sym_scoped_identifier] = STATE(2056), + [sym_scoped_type_identifier] = STATE(2926), + [sym_const_block] = STATE(2197), + [sym__pattern] = STATE(2890), + [sym_generic_pattern] = STATE(2197), + [sym_tuple_pattern] = STATE(2197), + [sym_slice_pattern] = STATE(2197), + [sym_tuple_struct_pattern] = STATE(2197), + [sym_struct_pattern] = STATE(2197), + [sym_remaining_field_pattern] = STATE(2197), + [sym_mut_pattern] = STATE(2197), + [sym_range_pattern] = STATE(2197), + [sym_ref_pattern] = STATE(2197), + [sym_captured_pattern] = STATE(2197), + [sym_reference_pattern] = STATE(2197), + [sym_or_pattern] = STATE(2197), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2129), + [sym_string_literal] = STATE(2129), + [sym_raw_string_literal] = STATE(2129), + [sym_boolean_literal] = STATE(2129), [sym_line_comment] = STATE(848), [sym_block_comment] = STATE(848), - [sym_identifier] = ACTIONS(1671), - [anon_sym_LPAREN] = ACTIONS(1673), - [anon_sym_LBRACK] = ACTIONS(1675), - [anon_sym_u8] = ACTIONS(1679), - [anon_sym_i8] = ACTIONS(1679), - [anon_sym_u16] = ACTIONS(1679), - [anon_sym_i16] = ACTIONS(1679), - [anon_sym_u32] = ACTIONS(1679), - [anon_sym_i32] = ACTIONS(1679), - [anon_sym_u64] = ACTIONS(1679), - [anon_sym_i64] = ACTIONS(1679), - [anon_sym_u128] = ACTIONS(1679), - [anon_sym_i128] = ACTIONS(1679), - [anon_sym_isize] = ACTIONS(1679), - [anon_sym_usize] = ACTIONS(1679), - [anon_sym_f32] = ACTIONS(1679), - [anon_sym_f64] = ACTIONS(1679), - [anon_sym_bool] = ACTIONS(1679), - [anon_sym_str] = ACTIONS(1679), - [anon_sym_char] = ACTIONS(1679), - [anon_sym_DASH] = ACTIONS(1681), - [anon_sym_AMP] = ACTIONS(1683), - [anon_sym_PIPE] = ACTIONS(1685), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1687), - [anon_sym_DOT_DOT] = ACTIONS(1689), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1691), - [anon_sym_COLON_COLON] = ACTIONS(1693), - [anon_sym_const] = ACTIONS(1697), - [anon_sym_default] = ACTIONS(1699), - [anon_sym_gen] = ACTIONS(1699), - [anon_sym_union] = ACTIONS(1699), - [anon_sym_ref] = ACTIONS(1701), - [sym_mutable_specifier] = ACTIONS(1703), - [sym_integer_literal] = ACTIONS(1705), - [aux_sym_string_literal_token1] = ACTIONS(1707), - [sym_char_literal] = ACTIONS(1705), - [anon_sym_true] = ACTIONS(1709), - [anon_sym_false] = ACTIONS(1709), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1711), - [sym_super] = ACTIONS(1711), - [sym_crate] = ACTIONS(1711), - [sym_metavariable] = ACTIONS(1713), - [sym__raw_string_literal_start] = ACTIONS(1715), - [sym_float_literal] = ACTIONS(1705), + [sym_identifier] = ACTIONS(1730), + [anon_sym_LPAREN] = ACTIONS(1732), + [anon_sym_LBRACK] = ACTIONS(1736), + [anon_sym_u8] = ACTIONS(1738), + [anon_sym_i8] = ACTIONS(1738), + [anon_sym_u16] = ACTIONS(1738), + [anon_sym_i16] = ACTIONS(1738), + [anon_sym_u32] = ACTIONS(1738), + [anon_sym_i32] = ACTIONS(1738), + [anon_sym_u64] = ACTIONS(1738), + [anon_sym_i64] = ACTIONS(1738), + [anon_sym_u128] = ACTIONS(1738), + [anon_sym_i128] = ACTIONS(1738), + [anon_sym_isize] = ACTIONS(1738), + [anon_sym_usize] = ACTIONS(1738), + [anon_sym_f32] = ACTIONS(1738), + [anon_sym_f64] = ACTIONS(1738), + [anon_sym_bool] = ACTIONS(1738), + [anon_sym_str] = ACTIONS(1738), + [anon_sym_char] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1064), + [anon_sym_AMP] = ACTIONS(1740), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1392), + [anon_sym_DOT_DOT] = ACTIONS(1074), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1078), + [anon_sym_COLON_COLON] = ACTIONS(1744), + [anon_sym_const] = ACTIONS(1748), + [anon_sym_default] = ACTIONS(1750), + [anon_sym_gen] = ACTIONS(1750), + [anon_sym_union] = ACTIONS(1750), + [anon_sym_ref] = ACTIONS(1106), + [sym_mutable_specifier] = ACTIONS(1400), + [sym_integer_literal] = ACTIONS(1112), + [aux_sym_string_literal_token1] = ACTIONS(1114), + [sym_char_literal] = ACTIONS(1112), + [anon_sym_true] = ACTIONS(1116), + [anon_sym_false] = ACTIONS(1116), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1752), + [sym_super] = ACTIONS(1752), + [sym_crate] = ACTIONS(1752), + [sym_metavariable] = ACTIONS(1754), + [sym__raw_string_literal_start] = ACTIONS(1124), + [sym_float_literal] = ACTIONS(1112), }, [STATE(849)] = { - [sym_bracketed_type] = STATE(3674), - [sym_generic_type] = STATE(3711), - [sym_generic_type_with_turbofish] = STATE(3231), - [sym_macro_invocation] = STATE(2221), - [sym_scoped_identifier] = STATE(2035), - [sym_scoped_type_identifier] = STATE(3055), - [sym_const_block] = STATE(2221), - [sym__pattern] = STATE(3449), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), + [sym_bracketed_type] = STATE(3756), + [sym_generic_type] = STATE(3622), + [sym_generic_type_with_turbofish] = STATE(3514), + [sym_macro_invocation] = STATE(2197), + [sym_scoped_identifier] = STATE(2056), + [sym_scoped_type_identifier] = STATE(2926), + [sym_const_block] = STATE(2197), + [sym__pattern] = STATE(3334), + [sym_generic_pattern] = STATE(2197), + [sym_tuple_pattern] = STATE(2197), + [sym_slice_pattern] = STATE(2197), + [sym_tuple_struct_pattern] = STATE(2197), + [sym_struct_pattern] = STATE(2197), + [sym_remaining_field_pattern] = STATE(2197), + [sym_mut_pattern] = STATE(2197), + [sym_range_pattern] = STATE(2197), + [sym_ref_pattern] = STATE(2197), + [sym_captured_pattern] = STATE(2197), + [sym_reference_pattern] = STATE(2197), + [sym_or_pattern] = STATE(2197), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2129), + [sym_string_literal] = STATE(2129), + [sym_raw_string_literal] = STATE(2129), + [sym_boolean_literal] = STATE(2129), [sym_line_comment] = STATE(849), [sym_block_comment] = STATE(849), - [sym_identifier] = ACTIONS(1725), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_LBRACK] = ACTIONS(1731), - [anon_sym_u8] = ACTIONS(1733), - [anon_sym_i8] = ACTIONS(1733), - [anon_sym_u16] = ACTIONS(1733), - [anon_sym_i16] = ACTIONS(1733), - [anon_sym_u32] = ACTIONS(1733), - [anon_sym_i32] = ACTIONS(1733), - [anon_sym_u64] = ACTIONS(1733), - [anon_sym_i64] = ACTIONS(1733), - [anon_sym_u128] = ACTIONS(1733), - [anon_sym_i128] = ACTIONS(1733), - [anon_sym_isize] = ACTIONS(1733), - [anon_sym_usize] = ACTIONS(1733), - [anon_sym_f32] = ACTIONS(1733), - [anon_sym_f64] = ACTIONS(1733), - [anon_sym_bool] = ACTIONS(1733), - [anon_sym_str] = ACTIONS(1733), - [anon_sym_char] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_AMP] = ACTIONS(1735), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1417), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COLON_COLON] = ACTIONS(1739), - [anon_sym_const] = ACTIONS(1743), - [anon_sym_default] = ACTIONS(1745), - [anon_sym_gen] = ACTIONS(1745), - [anon_sym_union] = ACTIONS(1745), - [anon_sym_ref] = ACTIONS(1159), - [sym_mutable_specifier] = ACTIONS(1425), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1747), - [sym_super] = ACTIONS(1747), - [sym_crate] = ACTIONS(1747), - [sym_metavariable] = ACTIONS(1749), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), + [sym_identifier] = ACTIONS(1730), + [anon_sym_LPAREN] = ACTIONS(1732), + [anon_sym_LBRACK] = ACTIONS(1736), + [anon_sym_u8] = ACTIONS(1738), + [anon_sym_i8] = ACTIONS(1738), + [anon_sym_u16] = ACTIONS(1738), + [anon_sym_i16] = ACTIONS(1738), + [anon_sym_u32] = ACTIONS(1738), + [anon_sym_i32] = ACTIONS(1738), + [anon_sym_u64] = ACTIONS(1738), + [anon_sym_i64] = ACTIONS(1738), + [anon_sym_u128] = ACTIONS(1738), + [anon_sym_i128] = ACTIONS(1738), + [anon_sym_isize] = ACTIONS(1738), + [anon_sym_usize] = ACTIONS(1738), + [anon_sym_f32] = ACTIONS(1738), + [anon_sym_f64] = ACTIONS(1738), + [anon_sym_bool] = ACTIONS(1738), + [anon_sym_str] = ACTIONS(1738), + [anon_sym_char] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1064), + [anon_sym_AMP] = ACTIONS(1740), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1392), + [anon_sym_DOT_DOT] = ACTIONS(1074), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1078), + [anon_sym_COLON_COLON] = ACTIONS(1744), + [anon_sym_const] = ACTIONS(1748), + [anon_sym_default] = ACTIONS(1750), + [anon_sym_gen] = ACTIONS(1750), + [anon_sym_union] = ACTIONS(1750), + [anon_sym_ref] = ACTIONS(1106), + [sym_mutable_specifier] = ACTIONS(1400), + [sym_integer_literal] = ACTIONS(1112), + [aux_sym_string_literal_token1] = ACTIONS(1114), + [sym_char_literal] = ACTIONS(1112), + [anon_sym_true] = ACTIONS(1116), + [anon_sym_false] = ACTIONS(1116), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1752), + [sym_super] = ACTIONS(1752), + [sym_crate] = ACTIONS(1752), + [sym_metavariable] = ACTIONS(1754), + [sym__raw_string_literal_start] = ACTIONS(1124), + [sym_float_literal] = ACTIONS(1112), }, [STATE(850)] = { - [sym_bracketed_type] = STATE(3674), - [sym_generic_type] = STATE(3711), - [sym_generic_type_with_turbofish] = STATE(3231), - [sym_macro_invocation] = STATE(2221), - [sym_scoped_identifier] = STATE(2035), - [sym_scoped_type_identifier] = STATE(3055), - [sym_const_block] = STATE(2221), - [sym__pattern] = STATE(3471), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(2082), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(3823), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2044), [sym_line_comment] = STATE(850), [sym_block_comment] = STATE(850), - [sym_identifier] = ACTIONS(1725), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_LBRACK] = ACTIONS(1731), - [anon_sym_u8] = ACTIONS(1733), - [anon_sym_i8] = ACTIONS(1733), - [anon_sym_u16] = ACTIONS(1733), - [anon_sym_i16] = ACTIONS(1733), - [anon_sym_u32] = ACTIONS(1733), - [anon_sym_i32] = ACTIONS(1733), - [anon_sym_u64] = ACTIONS(1733), - [anon_sym_i64] = ACTIONS(1733), - [anon_sym_u128] = ACTIONS(1733), - [anon_sym_i128] = ACTIONS(1733), - [anon_sym_isize] = ACTIONS(1733), - [anon_sym_usize] = ACTIONS(1733), - [anon_sym_f32] = ACTIONS(1733), - [anon_sym_f64] = ACTIONS(1733), - [anon_sym_bool] = ACTIONS(1733), - [anon_sym_str] = ACTIONS(1733), - [anon_sym_char] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_AMP] = ACTIONS(1735), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1417), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COLON_COLON] = ACTIONS(1739), - [anon_sym_const] = ACTIONS(1743), - [anon_sym_default] = ACTIONS(1745), - [anon_sym_gen] = ACTIONS(1745), - [anon_sym_union] = ACTIONS(1745), - [anon_sym_ref] = ACTIONS(1159), - [sym_mutable_specifier] = ACTIONS(1425), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1747), - [sym_super] = ACTIONS(1747), - [sym_crate] = ACTIONS(1747), - [sym_metavariable] = ACTIONS(1749), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), + [sym_identifier] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_PLUS] = ACTIONS(3182), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(3106), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1108), + [sym_mutable_specifier] = ACTIONS(3198), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(3200), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), }, [STATE(851)] = { - [sym_bracketed_type] = STATE(3674), - [sym_generic_type] = STATE(3711), - [sym_generic_type_with_turbofish] = STATE(3231), - [sym_macro_invocation] = STATE(2221), - [sym_scoped_identifier] = STATE(2035), - [sym_scoped_type_identifier] = STATE(3055), - [sym_const_block] = STATE(2221), - [sym__pattern] = STATE(3476), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), + [sym_bracketed_type] = STATE(3756), + [sym_generic_type] = STATE(3622), + [sym_generic_type_with_turbofish] = STATE(3514), + [sym_macro_invocation] = STATE(2197), + [sym_scoped_identifier] = STATE(2056), + [sym_scoped_type_identifier] = STATE(2926), + [sym_const_block] = STATE(2197), + [sym__pattern] = STATE(2615), + [sym_generic_pattern] = STATE(2197), + [sym_tuple_pattern] = STATE(2197), + [sym_slice_pattern] = STATE(2197), + [sym_tuple_struct_pattern] = STATE(2197), + [sym_struct_pattern] = STATE(2197), + [sym_remaining_field_pattern] = STATE(2197), + [sym_mut_pattern] = STATE(2197), + [sym_range_pattern] = STATE(2197), + [sym_ref_pattern] = STATE(2197), + [sym_captured_pattern] = STATE(2197), + [sym_reference_pattern] = STATE(2197), + [sym_or_pattern] = STATE(2197), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2129), + [sym_string_literal] = STATE(2129), + [sym_raw_string_literal] = STATE(2129), + [sym_boolean_literal] = STATE(2129), [sym_line_comment] = STATE(851), [sym_block_comment] = STATE(851), - [sym_identifier] = ACTIONS(1725), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_LBRACK] = ACTIONS(1731), - [anon_sym_u8] = ACTIONS(1733), - [anon_sym_i8] = ACTIONS(1733), - [anon_sym_u16] = ACTIONS(1733), - [anon_sym_i16] = ACTIONS(1733), - [anon_sym_u32] = ACTIONS(1733), - [anon_sym_i32] = ACTIONS(1733), - [anon_sym_u64] = ACTIONS(1733), - [anon_sym_i64] = ACTIONS(1733), - [anon_sym_u128] = ACTIONS(1733), - [anon_sym_i128] = ACTIONS(1733), - [anon_sym_isize] = ACTIONS(1733), - [anon_sym_usize] = ACTIONS(1733), - [anon_sym_f32] = ACTIONS(1733), - [anon_sym_f64] = ACTIONS(1733), - [anon_sym_bool] = ACTIONS(1733), - [anon_sym_str] = ACTIONS(1733), - [anon_sym_char] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_AMP] = ACTIONS(1735), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1417), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COLON_COLON] = ACTIONS(1739), - [anon_sym_const] = ACTIONS(1743), - [anon_sym_default] = ACTIONS(1745), - [anon_sym_gen] = ACTIONS(1745), - [anon_sym_union] = ACTIONS(1745), - [anon_sym_ref] = ACTIONS(1159), - [sym_mutable_specifier] = ACTIONS(1425), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1747), - [sym_super] = ACTIONS(1747), - [sym_crate] = ACTIONS(1747), - [sym_metavariable] = ACTIONS(1749), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), + [sym_identifier] = ACTIONS(1730), + [anon_sym_LPAREN] = ACTIONS(1732), + [anon_sym_LBRACK] = ACTIONS(1736), + [anon_sym_u8] = ACTIONS(1738), + [anon_sym_i8] = ACTIONS(1738), + [anon_sym_u16] = ACTIONS(1738), + [anon_sym_i16] = ACTIONS(1738), + [anon_sym_u32] = ACTIONS(1738), + [anon_sym_i32] = ACTIONS(1738), + [anon_sym_u64] = ACTIONS(1738), + [anon_sym_i64] = ACTIONS(1738), + [anon_sym_u128] = ACTIONS(1738), + [anon_sym_i128] = ACTIONS(1738), + [anon_sym_isize] = ACTIONS(1738), + [anon_sym_usize] = ACTIONS(1738), + [anon_sym_f32] = ACTIONS(1738), + [anon_sym_f64] = ACTIONS(1738), + [anon_sym_bool] = ACTIONS(1738), + [anon_sym_str] = ACTIONS(1738), + [anon_sym_char] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1064), + [anon_sym_AMP] = ACTIONS(1740), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1392), + [anon_sym_DOT_DOT] = ACTIONS(1074), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1078), + [anon_sym_COLON_COLON] = ACTIONS(1744), + [anon_sym_const] = ACTIONS(1748), + [anon_sym_default] = ACTIONS(1750), + [anon_sym_gen] = ACTIONS(1750), + [anon_sym_union] = ACTIONS(1750), + [anon_sym_ref] = ACTIONS(1106), + [sym_mutable_specifier] = ACTIONS(3202), + [sym_integer_literal] = ACTIONS(1112), + [aux_sym_string_literal_token1] = ACTIONS(1114), + [sym_char_literal] = ACTIONS(1112), + [anon_sym_true] = ACTIONS(1116), + [anon_sym_false] = ACTIONS(1116), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1752), + [sym_super] = ACTIONS(1752), + [sym_crate] = ACTIONS(1752), + [sym_metavariable] = ACTIONS(1754), + [sym__raw_string_literal_start] = ACTIONS(1124), + [sym_float_literal] = ACTIONS(1112), }, [STATE(852)] = { - [sym_bracketed_type] = STATE(3674), - [sym_generic_type] = STATE(3711), - [sym_generic_type_with_turbofish] = STATE(3231), - [sym_macro_invocation] = STATE(2221), - [sym_scoped_identifier] = STATE(2035), - [sym_scoped_type_identifier] = STATE(3055), - [sym_const_block] = STATE(2221), - [sym__pattern] = STATE(3477), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), + [sym_bracketed_type] = STATE(3756), + [sym_generic_type] = STATE(3622), + [sym_generic_type_with_turbofish] = STATE(3514), + [sym_macro_invocation] = STATE(2197), + [sym_scoped_identifier] = STATE(2056), + [sym_scoped_type_identifier] = STATE(2926), + [sym_const_block] = STATE(2197), + [sym__pattern] = STATE(3498), + [sym_generic_pattern] = STATE(2197), + [sym_tuple_pattern] = STATE(2197), + [sym_slice_pattern] = STATE(2197), + [sym_tuple_struct_pattern] = STATE(2197), + [sym_struct_pattern] = STATE(2197), + [sym_remaining_field_pattern] = STATE(2197), + [sym_mut_pattern] = STATE(2197), + [sym_range_pattern] = STATE(2197), + [sym_ref_pattern] = STATE(2197), + [sym_captured_pattern] = STATE(2197), + [sym_reference_pattern] = STATE(2197), + [sym_or_pattern] = STATE(2197), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2129), + [sym_string_literal] = STATE(2129), + [sym_raw_string_literal] = STATE(2129), + [sym_boolean_literal] = STATE(2129), [sym_line_comment] = STATE(852), [sym_block_comment] = STATE(852), - [sym_identifier] = ACTIONS(1725), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_LBRACK] = ACTIONS(1731), - [anon_sym_u8] = ACTIONS(1733), - [anon_sym_i8] = ACTIONS(1733), - [anon_sym_u16] = ACTIONS(1733), - [anon_sym_i16] = ACTIONS(1733), - [anon_sym_u32] = ACTIONS(1733), - [anon_sym_i32] = ACTIONS(1733), - [anon_sym_u64] = ACTIONS(1733), - [anon_sym_i64] = ACTIONS(1733), - [anon_sym_u128] = ACTIONS(1733), - [anon_sym_i128] = ACTIONS(1733), - [anon_sym_isize] = ACTIONS(1733), - [anon_sym_usize] = ACTIONS(1733), - [anon_sym_f32] = ACTIONS(1733), - [anon_sym_f64] = ACTIONS(1733), - [anon_sym_bool] = ACTIONS(1733), - [anon_sym_str] = ACTIONS(1733), - [anon_sym_char] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_AMP] = ACTIONS(1735), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1417), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COLON_COLON] = ACTIONS(1739), - [anon_sym_const] = ACTIONS(1743), - [anon_sym_default] = ACTIONS(1745), - [anon_sym_gen] = ACTIONS(1745), - [anon_sym_union] = ACTIONS(1745), - [anon_sym_ref] = ACTIONS(1159), - [sym_mutable_specifier] = ACTIONS(1425), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1747), - [sym_super] = ACTIONS(1747), - [sym_crate] = ACTIONS(1747), - [sym_metavariable] = ACTIONS(1749), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), + [sym_identifier] = ACTIONS(1730), + [anon_sym_LPAREN] = ACTIONS(1732), + [anon_sym_LBRACK] = ACTIONS(1736), + [anon_sym_u8] = ACTIONS(1738), + [anon_sym_i8] = ACTIONS(1738), + [anon_sym_u16] = ACTIONS(1738), + [anon_sym_i16] = ACTIONS(1738), + [anon_sym_u32] = ACTIONS(1738), + [anon_sym_i32] = ACTIONS(1738), + [anon_sym_u64] = ACTIONS(1738), + [anon_sym_i64] = ACTIONS(1738), + [anon_sym_u128] = ACTIONS(1738), + [anon_sym_i128] = ACTIONS(1738), + [anon_sym_isize] = ACTIONS(1738), + [anon_sym_usize] = ACTIONS(1738), + [anon_sym_f32] = ACTIONS(1738), + [anon_sym_f64] = ACTIONS(1738), + [anon_sym_bool] = ACTIONS(1738), + [anon_sym_str] = ACTIONS(1738), + [anon_sym_char] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1064), + [anon_sym_AMP] = ACTIONS(1740), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1392), + [anon_sym_DOT_DOT] = ACTIONS(1074), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1078), + [anon_sym_COLON_COLON] = ACTIONS(1744), + [anon_sym_const] = ACTIONS(1748), + [anon_sym_default] = ACTIONS(1750), + [anon_sym_gen] = ACTIONS(1750), + [anon_sym_union] = ACTIONS(1750), + [anon_sym_ref] = ACTIONS(1106), + [sym_mutable_specifier] = ACTIONS(1400), + [sym_integer_literal] = ACTIONS(1112), + [aux_sym_string_literal_token1] = ACTIONS(1114), + [sym_char_literal] = ACTIONS(1112), + [anon_sym_true] = ACTIONS(1116), + [anon_sym_false] = ACTIONS(1116), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1752), + [sym_super] = ACTIONS(1752), + [sym_crate] = ACTIONS(1752), + [sym_metavariable] = ACTIONS(1754), + [sym__raw_string_literal_start] = ACTIONS(1124), + [sym_float_literal] = ACTIONS(1112), }, [STATE(853)] = { - [sym_bracketed_type] = STATE(3674), - [sym_generic_type] = STATE(3711), - [sym_generic_type_with_turbofish] = STATE(3231), - [sym_macro_invocation] = STATE(2221), - [sym_scoped_identifier] = STATE(2035), - [sym_scoped_type_identifier] = STATE(3055), - [sym_const_block] = STATE(2221), - [sym__pattern] = STATE(2230), - [sym_generic_pattern] = STATE(2221), - [sym_tuple_pattern] = STATE(2221), - [sym_slice_pattern] = STATE(2221), - [sym_tuple_struct_pattern] = STATE(2221), - [sym_struct_pattern] = STATE(2221), - [sym_remaining_field_pattern] = STATE(2221), - [sym_mut_pattern] = STATE(2221), - [sym_range_pattern] = STATE(2221), - [sym_ref_pattern] = STATE(2221), - [sym_captured_pattern] = STATE(2221), - [sym_reference_pattern] = STATE(2221), - [sym_or_pattern] = STATE(2221), - [sym__literal_pattern] = STATE(2108), - [sym_negative_literal] = STATE(2110), - [sym_string_literal] = STATE(2110), - [sym_raw_string_literal] = STATE(2110), - [sym_boolean_literal] = STATE(2110), + [sym_bracketed_type] = STATE(3756), + [sym_generic_type] = STATE(3622), + [sym_generic_type_with_turbofish] = STATE(3514), + [sym_macro_invocation] = STATE(2197), + [sym_scoped_identifier] = STATE(2056), + [sym_scoped_type_identifier] = STATE(2926), + [sym_const_block] = STATE(2197), + [sym__pattern] = STATE(3110), + [sym_generic_pattern] = STATE(2197), + [sym_tuple_pattern] = STATE(2197), + [sym_slice_pattern] = STATE(2197), + [sym_tuple_struct_pattern] = STATE(2197), + [sym_struct_pattern] = STATE(2197), + [sym_remaining_field_pattern] = STATE(2197), + [sym_mut_pattern] = STATE(2197), + [sym_range_pattern] = STATE(2197), + [sym_ref_pattern] = STATE(2197), + [sym_captured_pattern] = STATE(2197), + [sym_reference_pattern] = STATE(2197), + [sym_or_pattern] = STATE(2197), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2129), + [sym_string_literal] = STATE(2129), + [sym_raw_string_literal] = STATE(2129), + [sym_boolean_literal] = STATE(2129), [sym_line_comment] = STATE(853), [sym_block_comment] = STATE(853), - [sym_identifier] = ACTIONS(1725), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_LBRACK] = ACTIONS(1731), - [anon_sym_u8] = ACTIONS(1733), - [anon_sym_i8] = ACTIONS(1733), - [anon_sym_u16] = ACTIONS(1733), - [anon_sym_i16] = ACTIONS(1733), - [anon_sym_u32] = ACTIONS(1733), - [anon_sym_i32] = ACTIONS(1733), - [anon_sym_u64] = ACTIONS(1733), - [anon_sym_i64] = ACTIONS(1733), - [anon_sym_u128] = ACTIONS(1733), - [anon_sym_i128] = ACTIONS(1733), - [anon_sym_isize] = ACTIONS(1733), - [anon_sym_usize] = ACTIONS(1733), - [anon_sym_f32] = ACTIONS(1733), - [anon_sym_f64] = ACTIONS(1733), - [anon_sym_bool] = ACTIONS(1733), - [anon_sym_str] = ACTIONS(1733), - [anon_sym_char] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_AMP] = ACTIONS(1735), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1417), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1131), - [anon_sym_COLON_COLON] = ACTIONS(1739), - [anon_sym_const] = ACTIONS(1743), - [anon_sym_default] = ACTIONS(1745), - [anon_sym_gen] = ACTIONS(1745), - [anon_sym_union] = ACTIONS(1745), - [anon_sym_ref] = ACTIONS(1159), - [sym_mutable_specifier] = ACTIONS(1425), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1167), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1169), - [anon_sym_false] = ACTIONS(1169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1747), - [sym_super] = ACTIONS(1747), - [sym_crate] = ACTIONS(1747), - [sym_metavariable] = ACTIONS(1749), - [sym__raw_string_literal_start] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1165), + [sym_identifier] = ACTIONS(1730), + [anon_sym_LPAREN] = ACTIONS(1732), + [anon_sym_LBRACK] = ACTIONS(1736), + [anon_sym_u8] = ACTIONS(1738), + [anon_sym_i8] = ACTIONS(1738), + [anon_sym_u16] = ACTIONS(1738), + [anon_sym_i16] = ACTIONS(1738), + [anon_sym_u32] = ACTIONS(1738), + [anon_sym_i32] = ACTIONS(1738), + [anon_sym_u64] = ACTIONS(1738), + [anon_sym_i64] = ACTIONS(1738), + [anon_sym_u128] = ACTIONS(1738), + [anon_sym_i128] = ACTIONS(1738), + [anon_sym_isize] = ACTIONS(1738), + [anon_sym_usize] = ACTIONS(1738), + [anon_sym_f32] = ACTIONS(1738), + [anon_sym_f64] = ACTIONS(1738), + [anon_sym_bool] = ACTIONS(1738), + [anon_sym_str] = ACTIONS(1738), + [anon_sym_char] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1064), + [anon_sym_AMP] = ACTIONS(1740), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1392), + [anon_sym_DOT_DOT] = ACTIONS(1074), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1078), + [anon_sym_COLON_COLON] = ACTIONS(1744), + [anon_sym_const] = ACTIONS(1748), + [anon_sym_default] = ACTIONS(1750), + [anon_sym_gen] = ACTIONS(1750), + [anon_sym_union] = ACTIONS(1750), + [anon_sym_ref] = ACTIONS(1106), + [sym_mutable_specifier] = ACTIONS(1400), + [sym_integer_literal] = ACTIONS(1112), + [aux_sym_string_literal_token1] = ACTIONS(1114), + [sym_char_literal] = ACTIONS(1112), + [anon_sym_true] = ACTIONS(1116), + [anon_sym_false] = ACTIONS(1116), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1752), + [sym_super] = ACTIONS(1752), + [sym_crate] = ACTIONS(1752), + [sym_metavariable] = ACTIONS(1754), + [sym__raw_string_literal_start] = ACTIONS(1124), + [sym_float_literal] = ACTIONS(1112), }, [STATE(854)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2061), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_bracketed_type] = STATE(3730), + [sym_generic_type] = STATE(3622), + [sym_generic_type_with_turbofish] = STATE(3423), + [sym_macro_invocation] = STATE(3092), + [sym_scoped_identifier] = STATE(2268), + [sym_scoped_type_identifier] = STATE(3118), + [sym_const_block] = STATE(3092), + [sym__pattern] = STATE(2983), + [sym_generic_pattern] = STATE(3092), + [sym_tuple_pattern] = STATE(3092), + [sym_slice_pattern] = STATE(3092), + [sym_tuple_struct_pattern] = STATE(3092), + [sym_struct_pattern] = STATE(3092), + [sym_remaining_field_pattern] = STATE(3092), + [sym_mut_pattern] = STATE(3092), + [sym_range_pattern] = STATE(3092), + [sym_ref_pattern] = STATE(3092), + [sym_captured_pattern] = STATE(3092), + [sym_reference_pattern] = STATE(3092), + [sym_or_pattern] = STATE(3092), + [sym__literal_pattern] = STATE(2439), + [sym_negative_literal] = STATE(2421), + [sym_string_literal] = STATE(2421), + [sym_raw_string_literal] = STATE(2421), + [sym_boolean_literal] = STATE(2421), [sym_line_comment] = STATE(854), [sym_block_comment] = STATE(854), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_PLUS] = ACTIONS(3166), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [sym_mutable_specifier] = ACTIONS(3168), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3170), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_identifier] = ACTIONS(1678), + [anon_sym_LPAREN] = ACTIONS(1680), + [anon_sym_LBRACK] = ACTIONS(1682), + [anon_sym_u8] = ACTIONS(1686), + [anon_sym_i8] = ACTIONS(1686), + [anon_sym_u16] = ACTIONS(1686), + [anon_sym_i16] = ACTIONS(1686), + [anon_sym_u32] = ACTIONS(1686), + [anon_sym_i32] = ACTIONS(1686), + [anon_sym_u64] = ACTIONS(1686), + [anon_sym_i64] = ACTIONS(1686), + [anon_sym_u128] = ACTIONS(1686), + [anon_sym_i128] = ACTIONS(1686), + [anon_sym_isize] = ACTIONS(1686), + [anon_sym_usize] = ACTIONS(1686), + [anon_sym_f32] = ACTIONS(1686), + [anon_sym_f64] = ACTIONS(1686), + [anon_sym_bool] = ACTIONS(1686), + [anon_sym_str] = ACTIONS(1686), + [anon_sym_char] = ACTIONS(1686), + [anon_sym_DASH] = ACTIONS(1688), + [anon_sym_AMP] = ACTIONS(1690), + [anon_sym_PIPE] = ACTIONS(1692), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1694), + [anon_sym_DOT_DOT] = ACTIONS(1696), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1698), + [anon_sym_COLON_COLON] = ACTIONS(1700), + [anon_sym_const] = ACTIONS(1704), + [anon_sym_default] = ACTIONS(1706), + [anon_sym_gen] = ACTIONS(1706), + [anon_sym_union] = ACTIONS(1706), + [anon_sym_ref] = ACTIONS(1708), + [sym_mutable_specifier] = ACTIONS(1710), + [sym_integer_literal] = ACTIONS(1712), + [aux_sym_string_literal_token1] = ACTIONS(1714), + [sym_char_literal] = ACTIONS(1712), + [anon_sym_true] = ACTIONS(1716), + [anon_sym_false] = ACTIONS(1716), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1718), + [sym_super] = ACTIONS(1718), + [sym_crate] = ACTIONS(1718), + [sym_metavariable] = ACTIONS(1720), + [sym__raw_string_literal_start] = ACTIONS(1722), + [sym_float_literal] = ACTIONS(1712), }, [STATE(855)] = { - [sym_function_modifiers] = STATE(3772), - [sym_removed_trait_bound] = STATE(1456), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(1437), - [sym_bracketed_type] = STATE(3685), - [sym_lifetime] = STATE(3522), - [sym_array_type] = STATE(1456), - [sym_for_lifetimes] = STATE(1647), - [sym_function_type] = STATE(1456), - [sym_tuple_type] = STATE(1456), - [sym_unit_type] = STATE(1456), - [sym_generic_type] = STATE(1265), - [sym_generic_type_with_turbofish] = STATE(3673), - [sym_bounded_type] = STATE(1456), - [sym_use_bounds] = STATE(3522), - [sym_reference_type] = STATE(1456), - [sym_pointer_type] = STATE(1456), - [sym_never_type] = STATE(1456), - [sym_abstract_type] = STATE(1456), - [sym_dynamic_type] = STATE(1456), - [sym_macro_invocation] = STATE(1456), - [sym_scoped_identifier] = STATE(3339), - [sym_scoped_type_identifier] = STATE(1084), + [sym_function_modifiers] = STATE(3822), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(1458), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(1548), + [sym_bracketed_type] = STATE(3719), + [sym_lifetime] = STATE(3837), + [sym_array_type] = STATE(1458), + [sym_for_lifetimes] = STATE(1623), + [sym_function_type] = STATE(1458), + [sym_tuple_type] = STATE(1458), + [sym_unit_type] = STATE(1458), + [sym_generic_type] = STATE(1416), + [sym_generic_type_with_turbofish] = STATE(3708), + [sym_bounded_type] = STATE(1458), + [sym_use_bounds] = STATE(3837), + [sym_reference_type] = STATE(1458), + [sym_pointer_type] = STATE(1458), + [sym_never_type] = STATE(1458), + [sym_abstract_type] = STATE(1458), + [sym_dynamic_type] = STATE(1458), + [sym_macro_invocation] = STATE(1458), + [sym_scoped_identifier] = STATE(3321), + [sym_scoped_type_identifier] = STATE(1113), [sym_line_comment] = STATE(855), [sym_block_comment] = STATE(855), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [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(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(3192), - [anon_sym_fn] = ACTIONS(3194), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(3196), - [anon_sym_impl] = ACTIONS(3198), - [anon_sym_union] = ACTIONS(3196), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(3200), - [sym_mutable_specifier] = ACTIONS(3202), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3204), - [sym_super] = ACTIONS(3204), - [sym_crate] = ACTIONS(3204), - [sym_metavariable] = ACTIONS(3206), + [sym_identifier] = ACTIONS(3204), + [anon_sym_LPAREN] = ACTIONS(3206), + [anon_sym_LBRACK] = ACTIONS(3208), + [anon_sym_PLUS] = ACTIONS(3210), + [anon_sym_STAR] = ACTIONS(3212), + [anon_sym_QMARK] = ACTIONS(3214), + [anon_sym_u8] = ACTIONS(3216), + [anon_sym_i8] = ACTIONS(3216), + [anon_sym_u16] = ACTIONS(3216), + [anon_sym_i16] = ACTIONS(3216), + [anon_sym_u32] = ACTIONS(3216), + [anon_sym_i32] = ACTIONS(3216), + [anon_sym_u64] = ACTIONS(3216), + [anon_sym_i64] = ACTIONS(3216), + [anon_sym_u128] = ACTIONS(3216), + [anon_sym_i128] = ACTIONS(3216), + [anon_sym_isize] = ACTIONS(3216), + [anon_sym_usize] = ACTIONS(3216), + [anon_sym_f32] = ACTIONS(3216), + [anon_sym_f64] = ACTIONS(3216), + [anon_sym_bool] = ACTIONS(3216), + [anon_sym_str] = ACTIONS(3216), + [anon_sym_char] = ACTIONS(3216), + [anon_sym_BANG] = ACTIONS(3218), + [anon_sym_AMP] = ACTIONS(3220), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3222), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(3224), + [anon_sym_fn] = ACTIONS(3226), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(3228), + [anon_sym_impl] = ACTIONS(3230), + [anon_sym_union] = ACTIONS(3228), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(3232), + [sym_mutable_specifier] = ACTIONS(3234), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(3236), + [sym_super] = ACTIONS(3236), + [sym_crate] = ACTIONS(3236), + [sym_metavariable] = ACTIONS(3238), }, [STATE(856)] = { - [sym_function_modifiers] = STATE(3583), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(3359), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3531), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1632), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3531), - [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(3461), - [sym_scoped_type_identifier] = STATE(2255), + [sym_bracketed_type] = STATE(3756), + [sym_generic_type] = STATE(3622), + [sym_generic_type_with_turbofish] = STATE(3514), + [sym_macro_invocation] = STATE(2197), + [sym_scoped_identifier] = STATE(2056), + [sym_scoped_type_identifier] = STATE(2926), + [sym_const_block] = STATE(2197), + [sym__pattern] = STATE(2575), + [sym_generic_pattern] = STATE(2197), + [sym_tuple_pattern] = STATE(2197), + [sym_slice_pattern] = STATE(2197), + [sym_tuple_struct_pattern] = STATE(2197), + [sym_struct_pattern] = STATE(2197), + [sym_remaining_field_pattern] = STATE(2197), + [sym_mut_pattern] = STATE(2197), + [sym_range_pattern] = STATE(2197), + [sym_ref_pattern] = STATE(2197), + [sym_captured_pattern] = STATE(2197), + [sym_reference_pattern] = STATE(2197), + [sym_or_pattern] = STATE(2197), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2129), + [sym_string_literal] = STATE(2129), + [sym_raw_string_literal] = STATE(2129), + [sym_boolean_literal] = STATE(2129), [sym_line_comment] = STATE(856), [sym_block_comment] = STATE(856), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3208), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_PLUS] = ACTIONS(3210), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_QMARK] = ACTIONS(1621), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(1625), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1635), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1639), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1641), - [sym_mutable_specifier] = ACTIONS(3212), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_identifier] = ACTIONS(1730), + [anon_sym_LPAREN] = ACTIONS(1732), + [anon_sym_LBRACK] = ACTIONS(1736), + [anon_sym_u8] = ACTIONS(1738), + [anon_sym_i8] = ACTIONS(1738), + [anon_sym_u16] = ACTIONS(1738), + [anon_sym_i16] = ACTIONS(1738), + [anon_sym_u32] = ACTIONS(1738), + [anon_sym_i32] = ACTIONS(1738), + [anon_sym_u64] = ACTIONS(1738), + [anon_sym_i64] = ACTIONS(1738), + [anon_sym_u128] = ACTIONS(1738), + [anon_sym_i128] = ACTIONS(1738), + [anon_sym_isize] = ACTIONS(1738), + [anon_sym_usize] = ACTIONS(1738), + [anon_sym_f32] = ACTIONS(1738), + [anon_sym_f64] = ACTIONS(1738), + [anon_sym_bool] = ACTIONS(1738), + [anon_sym_str] = ACTIONS(1738), + [anon_sym_char] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1064), + [anon_sym_AMP] = ACTIONS(1740), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1392), + [anon_sym_DOT_DOT] = ACTIONS(1074), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1078), + [anon_sym_COLON_COLON] = ACTIONS(1744), + [anon_sym_const] = ACTIONS(1748), + [anon_sym_default] = ACTIONS(1750), + [anon_sym_gen] = ACTIONS(1750), + [anon_sym_union] = ACTIONS(1750), + [anon_sym_ref] = ACTIONS(1106), + [sym_mutable_specifier] = ACTIONS(3240), + [sym_integer_literal] = ACTIONS(1112), + [aux_sym_string_literal_token1] = ACTIONS(1114), + [sym_char_literal] = ACTIONS(1112), + [anon_sym_true] = ACTIONS(1116), + [anon_sym_false] = ACTIONS(1116), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1752), + [sym_super] = ACTIONS(1752), + [sym_crate] = ACTIONS(1752), + [sym_metavariable] = ACTIONS(1754), + [sym__raw_string_literal_start] = ACTIONS(1124), + [sym_float_literal] = ACTIONS(1112), }, [STATE(857)] = { - [sym_function_modifiers] = STATE(3641), - [sym_removed_trait_bound] = STATE(1745), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(1838), - [sym_bracketed_type] = STATE(3701), - [sym_lifetime] = STATE(3813), - [sym_array_type] = STATE(1745), - [sym_for_lifetimes] = STATE(1625), - [sym_function_type] = STATE(1745), - [sym_tuple_type] = STATE(1745), - [sym_unit_type] = STATE(1745), - [sym_generic_type] = STATE(1692), - [sym_generic_type_with_turbofish] = STATE(3692), - [sym_bounded_type] = STATE(1745), - [sym_use_bounds] = STATE(3813), - [sym_reference_type] = STATE(1745), - [sym_pointer_type] = STATE(1745), - [sym_never_type] = STATE(1745), - [sym_abstract_type] = STATE(1745), - [sym_dynamic_type] = STATE(1745), - [sym_macro_invocation] = STATE(1745), - [sym_scoped_identifier] = STATE(3433), - [sym_scoped_type_identifier] = STATE(1614), + [sym_bracketed_type] = STATE(3756), + [sym_generic_type] = STATE(3622), + [sym_generic_type_with_turbofish] = STATE(3514), + [sym_macro_invocation] = STATE(2197), + [sym_scoped_identifier] = STATE(2056), + [sym_scoped_type_identifier] = STATE(2926), + [sym_const_block] = STATE(2197), + [sym__pattern] = STATE(2193), + [sym_generic_pattern] = STATE(2197), + [sym_tuple_pattern] = STATE(2197), + [sym_slice_pattern] = STATE(2197), + [sym_tuple_struct_pattern] = STATE(2197), + [sym_struct_pattern] = STATE(2197), + [sym_remaining_field_pattern] = STATE(2197), + [sym_mut_pattern] = STATE(2197), + [sym_range_pattern] = STATE(2197), + [sym_ref_pattern] = STATE(2197), + [sym_captured_pattern] = STATE(2197), + [sym_reference_pattern] = STATE(2197), + [sym_or_pattern] = STATE(2197), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2129), + [sym_string_literal] = STATE(2129), + [sym_raw_string_literal] = STATE(2129), + [sym_boolean_literal] = STATE(2129), [sym_line_comment] = STATE(857), [sym_block_comment] = STATE(857), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3214), - [anon_sym_LPAREN] = ACTIONS(3216), - [anon_sym_LBRACK] = ACTIONS(3218), - [anon_sym_PLUS] = ACTIONS(3220), - [anon_sym_STAR] = ACTIONS(3222), - [anon_sym_QMARK] = ACTIONS(3224), - [anon_sym_u8] = ACTIONS(3226), - [anon_sym_i8] = ACTIONS(3226), - [anon_sym_u16] = ACTIONS(3226), - [anon_sym_i16] = ACTIONS(3226), - [anon_sym_u32] = ACTIONS(3226), - [anon_sym_i32] = ACTIONS(3226), - [anon_sym_u64] = ACTIONS(3226), - [anon_sym_i64] = ACTIONS(3226), - [anon_sym_u128] = ACTIONS(3226), - [anon_sym_i128] = ACTIONS(3226), - [anon_sym_isize] = ACTIONS(3226), - [anon_sym_usize] = ACTIONS(3226), - [anon_sym_f32] = ACTIONS(3226), - [anon_sym_f64] = ACTIONS(3226), - [anon_sym_bool] = ACTIONS(3226), - [anon_sym_str] = ACTIONS(3226), - [anon_sym_char] = ACTIONS(3226), - [anon_sym_BANG] = ACTIONS(3228), - [anon_sym_AMP] = ACTIONS(3230), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3232), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(3234), - [anon_sym_fn] = ACTIONS(3236), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(3238), - [anon_sym_impl] = ACTIONS(3240), - [anon_sym_union] = ACTIONS(3238), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(3242), - [sym_mutable_specifier] = ACTIONS(3244), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3246), - [sym_super] = ACTIONS(3246), - [sym_crate] = ACTIONS(3246), - [sym_metavariable] = ACTIONS(3248), + [sym_identifier] = ACTIONS(1730), + [anon_sym_LPAREN] = ACTIONS(1732), + [anon_sym_LBRACK] = ACTIONS(1736), + [anon_sym_u8] = ACTIONS(1738), + [anon_sym_i8] = ACTIONS(1738), + [anon_sym_u16] = ACTIONS(1738), + [anon_sym_i16] = ACTIONS(1738), + [anon_sym_u32] = ACTIONS(1738), + [anon_sym_i32] = ACTIONS(1738), + [anon_sym_u64] = ACTIONS(1738), + [anon_sym_i64] = ACTIONS(1738), + [anon_sym_u128] = ACTIONS(1738), + [anon_sym_i128] = ACTIONS(1738), + [anon_sym_isize] = ACTIONS(1738), + [anon_sym_usize] = ACTIONS(1738), + [anon_sym_f32] = ACTIONS(1738), + [anon_sym_f64] = ACTIONS(1738), + [anon_sym_bool] = ACTIONS(1738), + [anon_sym_str] = ACTIONS(1738), + [anon_sym_char] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1064), + [anon_sym_AMP] = ACTIONS(1740), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1392), + [anon_sym_DOT_DOT] = ACTIONS(1074), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1078), + [anon_sym_COLON_COLON] = ACTIONS(1744), + [anon_sym_const] = ACTIONS(1748), + [anon_sym_default] = ACTIONS(1750), + [anon_sym_gen] = ACTIONS(1750), + [anon_sym_union] = ACTIONS(1750), + [anon_sym_ref] = ACTIONS(1106), + [sym_mutable_specifier] = ACTIONS(1400), + [sym_integer_literal] = ACTIONS(1112), + [aux_sym_string_literal_token1] = ACTIONS(1114), + [sym_char_literal] = ACTIONS(1112), + [anon_sym_true] = ACTIONS(1116), + [anon_sym_false] = ACTIONS(1116), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1752), + [sym_super] = ACTIONS(1752), + [sym_crate] = ACTIONS(1752), + [sym_metavariable] = ACTIONS(1754), + [sym__raw_string_literal_start] = ACTIONS(1124), + [sym_float_literal] = ACTIONS(1112), }, [STATE(858)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2061), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_bracketed_type] = STATE(3756), + [sym_generic_type] = STATE(3622), + [sym_generic_type_with_turbofish] = STATE(3514), + [sym_macro_invocation] = STATE(2197), + [sym_scoped_identifier] = STATE(2056), + [sym_scoped_type_identifier] = STATE(2926), + [sym_const_block] = STATE(2197), + [sym__pattern] = STATE(2218), + [sym_generic_pattern] = STATE(2197), + [sym_tuple_pattern] = STATE(2197), + [sym_slice_pattern] = STATE(2197), + [sym_tuple_struct_pattern] = STATE(2197), + [sym_struct_pattern] = STATE(2197), + [sym_remaining_field_pattern] = STATE(2197), + [sym_mut_pattern] = STATE(2197), + [sym_range_pattern] = STATE(2197), + [sym_ref_pattern] = STATE(2197), + [sym_captured_pattern] = STATE(2197), + [sym_reference_pattern] = STATE(2197), + [sym_or_pattern] = STATE(2197), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2129), + [sym_string_literal] = STATE(2129), + [sym_raw_string_literal] = STATE(2129), + [sym_boolean_literal] = STATE(2129), [sym_line_comment] = STATE(858), [sym_block_comment] = STATE(858), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_PLUS] = ACTIONS(3166), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [sym_mutable_specifier] = ACTIONS(3250), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_identifier] = ACTIONS(1730), + [anon_sym_LPAREN] = ACTIONS(1732), + [anon_sym_LBRACK] = ACTIONS(1736), + [anon_sym_u8] = ACTIONS(1738), + [anon_sym_i8] = ACTIONS(1738), + [anon_sym_u16] = ACTIONS(1738), + [anon_sym_i16] = ACTIONS(1738), + [anon_sym_u32] = ACTIONS(1738), + [anon_sym_i32] = ACTIONS(1738), + [anon_sym_u64] = ACTIONS(1738), + [anon_sym_i64] = ACTIONS(1738), + [anon_sym_u128] = ACTIONS(1738), + [anon_sym_i128] = ACTIONS(1738), + [anon_sym_isize] = ACTIONS(1738), + [anon_sym_usize] = ACTIONS(1738), + [anon_sym_f32] = ACTIONS(1738), + [anon_sym_f64] = ACTIONS(1738), + [anon_sym_bool] = ACTIONS(1738), + [anon_sym_str] = ACTIONS(1738), + [anon_sym_char] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1064), + [anon_sym_AMP] = ACTIONS(1740), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1392), + [anon_sym_DOT_DOT] = ACTIONS(1074), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1078), + [anon_sym_COLON_COLON] = ACTIONS(1744), + [anon_sym_const] = ACTIONS(1748), + [anon_sym_default] = ACTIONS(1750), + [anon_sym_gen] = ACTIONS(1750), + [anon_sym_union] = ACTIONS(1750), + [anon_sym_ref] = ACTIONS(1106), + [sym_mutable_specifier] = ACTIONS(3242), + [sym_integer_literal] = ACTIONS(1112), + [aux_sym_string_literal_token1] = ACTIONS(1114), + [sym_char_literal] = ACTIONS(1112), + [anon_sym_true] = ACTIONS(1116), + [anon_sym_false] = ACTIONS(1116), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1752), + [sym_super] = ACTIONS(1752), + [sym_crate] = ACTIONS(1752), + [sym_metavariable] = ACTIONS(1754), + [sym__raw_string_literal_start] = ACTIONS(1124), + [sym_float_literal] = ACTIONS(1112), }, [STATE(859)] = { - [sym_function_modifiers] = STATE(3583), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2061), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3531), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1632), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3531), - [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(3461), - [sym_scoped_type_identifier] = STATE(2255), + [sym_bracketed_type] = STATE(3756), + [sym_generic_type] = STATE(3622), + [sym_generic_type_with_turbofish] = STATE(3514), + [sym_macro_invocation] = STATE(2197), + [sym_scoped_identifier] = STATE(2056), + [sym_scoped_type_identifier] = STATE(2926), + [sym_const_block] = STATE(2197), + [sym__pattern] = STATE(2230), + [sym_generic_pattern] = STATE(2197), + [sym_tuple_pattern] = STATE(2197), + [sym_slice_pattern] = STATE(2197), + [sym_tuple_struct_pattern] = STATE(2197), + [sym_struct_pattern] = STATE(2197), + [sym_remaining_field_pattern] = STATE(2197), + [sym_mut_pattern] = STATE(2197), + [sym_range_pattern] = STATE(2197), + [sym_ref_pattern] = STATE(2197), + [sym_captured_pattern] = STATE(2197), + [sym_reference_pattern] = STATE(2197), + [sym_or_pattern] = STATE(2197), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2129), + [sym_string_literal] = STATE(2129), + [sym_raw_string_literal] = STATE(2129), + [sym_boolean_literal] = STATE(2129), [sym_line_comment] = STATE(859), [sym_block_comment] = STATE(859), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3208), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_PLUS] = ACTIONS(3210), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_QMARK] = ACTIONS(1621), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(1625), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1635), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1639), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1641), - [sym_mutable_specifier] = ACTIONS(3252), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_identifier] = ACTIONS(1730), + [anon_sym_LPAREN] = ACTIONS(1732), + [anon_sym_LBRACK] = ACTIONS(1736), + [anon_sym_u8] = ACTIONS(1738), + [anon_sym_i8] = ACTIONS(1738), + [anon_sym_u16] = ACTIONS(1738), + [anon_sym_i16] = ACTIONS(1738), + [anon_sym_u32] = ACTIONS(1738), + [anon_sym_i32] = ACTIONS(1738), + [anon_sym_u64] = ACTIONS(1738), + [anon_sym_i64] = ACTIONS(1738), + [anon_sym_u128] = ACTIONS(1738), + [anon_sym_i128] = ACTIONS(1738), + [anon_sym_isize] = ACTIONS(1738), + [anon_sym_usize] = ACTIONS(1738), + [anon_sym_f32] = ACTIONS(1738), + [anon_sym_f64] = ACTIONS(1738), + [anon_sym_bool] = ACTIONS(1738), + [anon_sym_str] = ACTIONS(1738), + [anon_sym_char] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1064), + [anon_sym_AMP] = ACTIONS(1740), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1392), + [anon_sym_DOT_DOT] = ACTIONS(1074), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1078), + [anon_sym_COLON_COLON] = ACTIONS(1744), + [anon_sym_const] = ACTIONS(1748), + [anon_sym_default] = ACTIONS(1750), + [anon_sym_gen] = ACTIONS(1750), + [anon_sym_union] = ACTIONS(1750), + [anon_sym_ref] = ACTIONS(1106), + [sym_mutable_specifier] = ACTIONS(1400), + [sym_integer_literal] = ACTIONS(1112), + [aux_sym_string_literal_token1] = ACTIONS(1114), + [sym_char_literal] = ACTIONS(1112), + [anon_sym_true] = ACTIONS(1116), + [anon_sym_false] = ACTIONS(1116), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1752), + [sym_super] = ACTIONS(1752), + [sym_crate] = ACTIONS(1752), + [sym_metavariable] = ACTIONS(1754), + [sym__raw_string_literal_start] = ACTIONS(1124), + [sym_float_literal] = ACTIONS(1112), }, [STATE(860)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2989), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_bracketed_type] = STATE(3756), + [sym_generic_type] = STATE(3622), + [sym_generic_type_with_turbofish] = STATE(3514), + [sym_macro_invocation] = STATE(2197), + [sym_scoped_identifier] = STATE(2056), + [sym_scoped_type_identifier] = STATE(2926), + [sym_const_block] = STATE(2197), + [sym__pattern] = STATE(3463), + [sym_generic_pattern] = STATE(2197), + [sym_tuple_pattern] = STATE(2197), + [sym_slice_pattern] = STATE(2197), + [sym_tuple_struct_pattern] = STATE(2197), + [sym_struct_pattern] = STATE(2197), + [sym_remaining_field_pattern] = STATE(2197), + [sym_mut_pattern] = STATE(2197), + [sym_range_pattern] = STATE(2197), + [sym_ref_pattern] = STATE(2197), + [sym_captured_pattern] = STATE(2197), + [sym_reference_pattern] = STATE(2197), + [sym_or_pattern] = STATE(2197), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2129), + [sym_string_literal] = STATE(2129), + [sym_raw_string_literal] = STATE(2129), + [sym_boolean_literal] = STATE(2129), [sym_line_comment] = STATE(860), [sym_block_comment] = STATE(860), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_RPAREN] = ACTIONS(3254), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_identifier] = ACTIONS(1730), + [anon_sym_LPAREN] = ACTIONS(1732), + [anon_sym_LBRACK] = ACTIONS(1736), + [anon_sym_u8] = ACTIONS(1738), + [anon_sym_i8] = ACTIONS(1738), + [anon_sym_u16] = ACTIONS(1738), + [anon_sym_i16] = ACTIONS(1738), + [anon_sym_u32] = ACTIONS(1738), + [anon_sym_i32] = ACTIONS(1738), + [anon_sym_u64] = ACTIONS(1738), + [anon_sym_i64] = ACTIONS(1738), + [anon_sym_u128] = ACTIONS(1738), + [anon_sym_i128] = ACTIONS(1738), + [anon_sym_isize] = ACTIONS(1738), + [anon_sym_usize] = ACTIONS(1738), + [anon_sym_f32] = ACTIONS(1738), + [anon_sym_f64] = ACTIONS(1738), + [anon_sym_bool] = ACTIONS(1738), + [anon_sym_str] = ACTIONS(1738), + [anon_sym_char] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1064), + [anon_sym_AMP] = ACTIONS(1740), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1392), + [anon_sym_DOT_DOT] = ACTIONS(1074), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1078), + [anon_sym_COLON_COLON] = ACTIONS(1744), + [anon_sym_const] = ACTIONS(1748), + [anon_sym_default] = ACTIONS(1750), + [anon_sym_gen] = ACTIONS(1750), + [anon_sym_union] = ACTIONS(1750), + [anon_sym_ref] = ACTIONS(1106), + [sym_mutable_specifier] = ACTIONS(1400), + [sym_integer_literal] = ACTIONS(1112), + [aux_sym_string_literal_token1] = ACTIONS(1114), + [sym_char_literal] = ACTIONS(1112), + [anon_sym_true] = ACTIONS(1116), + [anon_sym_false] = ACTIONS(1116), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1752), + [sym_super] = ACTIONS(1752), + [sym_crate] = ACTIONS(1752), + [sym_metavariable] = ACTIONS(1754), + [sym__raw_string_literal_start] = ACTIONS(1124), + [sym_float_literal] = ACTIONS(1112), }, [STATE(861)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2732), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_bracketed_type] = STATE(3756), + [sym_generic_type] = STATE(3622), + [sym_generic_type_with_turbofish] = STATE(3514), + [sym_macro_invocation] = STATE(2197), + [sym_scoped_identifier] = STATE(2056), + [sym_scoped_type_identifier] = STATE(2926), + [sym_const_block] = STATE(2197), + [sym__pattern] = STATE(3219), + [sym_generic_pattern] = STATE(2197), + [sym_tuple_pattern] = STATE(2197), + [sym_slice_pattern] = STATE(2197), + [sym_tuple_struct_pattern] = STATE(2197), + [sym_struct_pattern] = STATE(2197), + [sym_remaining_field_pattern] = STATE(2197), + [sym_mut_pattern] = STATE(2197), + [sym_range_pattern] = STATE(2197), + [sym_ref_pattern] = STATE(2197), + [sym_captured_pattern] = STATE(2197), + [sym_reference_pattern] = STATE(2197), + [sym_or_pattern] = STATE(2197), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2129), + [sym_string_literal] = STATE(2129), + [sym_raw_string_literal] = STATE(2129), + [sym_boolean_literal] = STATE(2129), [sym_line_comment] = STATE(861), [sym_block_comment] = STATE(861), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_RPAREN] = ACTIONS(3256), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_identifier] = ACTIONS(1730), + [anon_sym_LPAREN] = ACTIONS(1732), + [anon_sym_LBRACK] = ACTIONS(1736), + [anon_sym_u8] = ACTIONS(1738), + [anon_sym_i8] = ACTIONS(1738), + [anon_sym_u16] = ACTIONS(1738), + [anon_sym_i16] = ACTIONS(1738), + [anon_sym_u32] = ACTIONS(1738), + [anon_sym_i32] = ACTIONS(1738), + [anon_sym_u64] = ACTIONS(1738), + [anon_sym_i64] = ACTIONS(1738), + [anon_sym_u128] = ACTIONS(1738), + [anon_sym_i128] = ACTIONS(1738), + [anon_sym_isize] = ACTIONS(1738), + [anon_sym_usize] = ACTIONS(1738), + [anon_sym_f32] = ACTIONS(1738), + [anon_sym_f64] = ACTIONS(1738), + [anon_sym_bool] = ACTIONS(1738), + [anon_sym_str] = ACTIONS(1738), + [anon_sym_char] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1064), + [anon_sym_AMP] = ACTIONS(1740), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1392), + [anon_sym_DOT_DOT] = ACTIONS(1074), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1078), + [anon_sym_COLON_COLON] = ACTIONS(1744), + [anon_sym_const] = ACTIONS(1748), + [anon_sym_default] = ACTIONS(1750), + [anon_sym_gen] = ACTIONS(1750), + [anon_sym_union] = ACTIONS(1750), + [anon_sym_ref] = ACTIONS(1106), + [sym_mutable_specifier] = ACTIONS(1400), + [sym_integer_literal] = ACTIONS(1112), + [aux_sym_string_literal_token1] = ACTIONS(1114), + [sym_char_literal] = ACTIONS(1112), + [anon_sym_true] = ACTIONS(1116), + [anon_sym_false] = ACTIONS(1116), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1752), + [sym_super] = ACTIONS(1752), + [sym_crate] = ACTIONS(1752), + [sym_metavariable] = ACTIONS(1754), + [sym__raw_string_literal_start] = ACTIONS(1124), + [sym_float_literal] = ACTIONS(1112), }, [STATE(862)] = { - [sym_function_modifiers] = STATE(3772), - [sym_removed_trait_bound] = STATE(1456), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(1508), - [sym_bracketed_type] = STATE(3685), - [sym_lifetime] = STATE(855), - [sym_array_type] = STATE(1456), - [sym_for_lifetimes] = STATE(1647), - [sym_function_type] = STATE(1456), - [sym_tuple_type] = STATE(1456), - [sym_unit_type] = STATE(1456), - [sym_generic_type] = STATE(1265), - [sym_generic_type_with_turbofish] = STATE(3673), - [sym_bounded_type] = STATE(1456), - [sym_use_bounds] = STATE(3522), - [sym_reference_type] = STATE(1456), - [sym_pointer_type] = STATE(1456), - [sym_never_type] = STATE(1456), - [sym_abstract_type] = STATE(1456), - [sym_dynamic_type] = STATE(1456), - [sym_macro_invocation] = STATE(1456), - [sym_scoped_identifier] = STATE(3339), - [sym_scoped_type_identifier] = STATE(1084), + [sym_bracketed_type] = STATE(3756), + [sym_generic_type] = STATE(3622), + [sym_generic_type_with_turbofish] = STATE(3514), + [sym_macro_invocation] = STATE(2197), + [sym_scoped_identifier] = STATE(2056), + [sym_scoped_type_identifier] = STATE(2926), + [sym_const_block] = STATE(2197), + [sym__pattern] = STATE(3495), + [sym_generic_pattern] = STATE(2197), + [sym_tuple_pattern] = STATE(2197), + [sym_slice_pattern] = STATE(2197), + [sym_tuple_struct_pattern] = STATE(2197), + [sym_struct_pattern] = STATE(2197), + [sym_remaining_field_pattern] = STATE(2197), + [sym_mut_pattern] = STATE(2197), + [sym_range_pattern] = STATE(2197), + [sym_ref_pattern] = STATE(2197), + [sym_captured_pattern] = STATE(2197), + [sym_reference_pattern] = STATE(2197), + [sym_or_pattern] = STATE(2197), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2129), + [sym_string_literal] = STATE(2129), + [sym_raw_string_literal] = STATE(2129), + [sym_boolean_literal] = STATE(2129), [sym_line_comment] = STATE(862), [sym_block_comment] = STATE(862), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [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(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(3192), - [anon_sym_fn] = ACTIONS(3194), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(3196), - [anon_sym_impl] = ACTIONS(3198), - [anon_sym_union] = ACTIONS(3196), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(3200), - [sym_mutable_specifier] = ACTIONS(3258), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3204), - [sym_super] = ACTIONS(3204), - [sym_crate] = ACTIONS(3204), - [sym_metavariable] = ACTIONS(3206), + [sym_identifier] = ACTIONS(1730), + [anon_sym_LPAREN] = ACTIONS(1732), + [anon_sym_LBRACK] = ACTIONS(1736), + [anon_sym_u8] = ACTIONS(1738), + [anon_sym_i8] = ACTIONS(1738), + [anon_sym_u16] = ACTIONS(1738), + [anon_sym_i16] = ACTIONS(1738), + [anon_sym_u32] = ACTIONS(1738), + [anon_sym_i32] = ACTIONS(1738), + [anon_sym_u64] = ACTIONS(1738), + [anon_sym_i64] = ACTIONS(1738), + [anon_sym_u128] = ACTIONS(1738), + [anon_sym_i128] = ACTIONS(1738), + [anon_sym_isize] = ACTIONS(1738), + [anon_sym_usize] = ACTIONS(1738), + [anon_sym_f32] = ACTIONS(1738), + [anon_sym_f64] = ACTIONS(1738), + [anon_sym_bool] = ACTIONS(1738), + [anon_sym_str] = ACTIONS(1738), + [anon_sym_char] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1064), + [anon_sym_AMP] = ACTIONS(1740), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1392), + [anon_sym_DOT_DOT] = ACTIONS(1074), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1078), + [anon_sym_COLON_COLON] = ACTIONS(1744), + [anon_sym_const] = ACTIONS(1748), + [anon_sym_default] = ACTIONS(1750), + [anon_sym_gen] = ACTIONS(1750), + [anon_sym_union] = ACTIONS(1750), + [anon_sym_ref] = ACTIONS(1106), + [sym_mutable_specifier] = ACTIONS(1400), + [sym_integer_literal] = ACTIONS(1112), + [aux_sym_string_literal_token1] = ACTIONS(1114), + [sym_char_literal] = ACTIONS(1112), + [anon_sym_true] = ACTIONS(1116), + [anon_sym_false] = ACTIONS(1116), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1752), + [sym_super] = ACTIONS(1752), + [sym_crate] = ACTIONS(1752), + [sym_metavariable] = ACTIONS(1754), + [sym__raw_string_literal_start] = ACTIONS(1124), + [sym_float_literal] = ACTIONS(1112), }, [STATE(863)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2660), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_bracketed_type] = STATE(3756), + [sym_generic_type] = STATE(3622), + [sym_generic_type_with_turbofish] = STATE(3514), + [sym_macro_invocation] = STATE(2197), + [sym_scoped_identifier] = STATE(2056), + [sym_scoped_type_identifier] = STATE(2926), + [sym_const_block] = STATE(2197), + [sym__pattern] = STATE(3496), + [sym_generic_pattern] = STATE(2197), + [sym_tuple_pattern] = STATE(2197), + [sym_slice_pattern] = STATE(2197), + [sym_tuple_struct_pattern] = STATE(2197), + [sym_struct_pattern] = STATE(2197), + [sym_remaining_field_pattern] = STATE(2197), + [sym_mut_pattern] = STATE(2197), + [sym_range_pattern] = STATE(2197), + [sym_ref_pattern] = STATE(2197), + [sym_captured_pattern] = STATE(2197), + [sym_reference_pattern] = STATE(2197), + [sym_or_pattern] = STATE(2197), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2129), + [sym_string_literal] = STATE(2129), + [sym_raw_string_literal] = STATE(2129), + [sym_boolean_literal] = STATE(2129), [sym_line_comment] = STATE(863), [sym_block_comment] = STATE(863), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3260), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_identifier] = ACTIONS(1730), + [anon_sym_LPAREN] = ACTIONS(1732), + [anon_sym_LBRACK] = ACTIONS(1736), + [anon_sym_u8] = ACTIONS(1738), + [anon_sym_i8] = ACTIONS(1738), + [anon_sym_u16] = ACTIONS(1738), + [anon_sym_i16] = ACTIONS(1738), + [anon_sym_u32] = ACTIONS(1738), + [anon_sym_i32] = ACTIONS(1738), + [anon_sym_u64] = ACTIONS(1738), + [anon_sym_i64] = ACTIONS(1738), + [anon_sym_u128] = ACTIONS(1738), + [anon_sym_i128] = ACTIONS(1738), + [anon_sym_isize] = ACTIONS(1738), + [anon_sym_usize] = ACTIONS(1738), + [anon_sym_f32] = ACTIONS(1738), + [anon_sym_f64] = ACTIONS(1738), + [anon_sym_bool] = ACTIONS(1738), + [anon_sym_str] = ACTIONS(1738), + [anon_sym_char] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1064), + [anon_sym_AMP] = ACTIONS(1740), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1392), + [anon_sym_DOT_DOT] = ACTIONS(1074), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1078), + [anon_sym_COLON_COLON] = ACTIONS(1744), + [anon_sym_const] = ACTIONS(1748), + [anon_sym_default] = ACTIONS(1750), + [anon_sym_gen] = ACTIONS(1750), + [anon_sym_union] = ACTIONS(1750), + [anon_sym_ref] = ACTIONS(1106), + [sym_mutable_specifier] = ACTIONS(1400), + [sym_integer_literal] = ACTIONS(1112), + [aux_sym_string_literal_token1] = ACTIONS(1114), + [sym_char_literal] = ACTIONS(1112), + [anon_sym_true] = ACTIONS(1116), + [anon_sym_false] = ACTIONS(1116), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1752), + [sym_super] = ACTIONS(1752), + [sym_crate] = ACTIONS(1752), + [sym_metavariable] = ACTIONS(1754), + [sym__raw_string_literal_start] = ACTIONS(1124), + [sym_float_literal] = ACTIONS(1112), }, [STATE(864)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_type_parameters] = STATE(1011), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2462), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2486), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(3461), - [sym_scoped_type_identifier] = STATE(2280), + [sym_bracketed_type] = STATE(3756), + [sym_generic_type] = STATE(3622), + [sym_generic_type_with_turbofish] = STATE(3514), + [sym_macro_invocation] = STATE(2197), + [sym_scoped_identifier] = STATE(2056), + [sym_scoped_type_identifier] = STATE(2926), + [sym_const_block] = STATE(2197), + [sym__pattern] = STATE(3497), + [sym_generic_pattern] = STATE(2197), + [sym_tuple_pattern] = STATE(2197), + [sym_slice_pattern] = STATE(2197), + [sym_tuple_struct_pattern] = STATE(2197), + [sym_struct_pattern] = STATE(2197), + [sym_remaining_field_pattern] = STATE(2197), + [sym_mut_pattern] = STATE(2197), + [sym_range_pattern] = STATE(2197), + [sym_ref_pattern] = STATE(2197), + [sym_captured_pattern] = STATE(2197), + [sym_reference_pattern] = STATE(2197), + [sym_or_pattern] = STATE(2197), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2129), + [sym_string_literal] = STATE(2129), + [sym_raw_string_literal] = STATE(2129), + [sym_boolean_literal] = STATE(2129), [sym_line_comment] = STATE(864), [sym_block_comment] = STATE(864), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3262), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(3264), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(3266), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_identifier] = ACTIONS(1730), + [anon_sym_LPAREN] = ACTIONS(1732), + [anon_sym_LBRACK] = ACTIONS(1736), + [anon_sym_u8] = ACTIONS(1738), + [anon_sym_i8] = ACTIONS(1738), + [anon_sym_u16] = ACTIONS(1738), + [anon_sym_i16] = ACTIONS(1738), + [anon_sym_u32] = ACTIONS(1738), + [anon_sym_i32] = ACTIONS(1738), + [anon_sym_u64] = ACTIONS(1738), + [anon_sym_i64] = ACTIONS(1738), + [anon_sym_u128] = ACTIONS(1738), + [anon_sym_i128] = ACTIONS(1738), + [anon_sym_isize] = ACTIONS(1738), + [anon_sym_usize] = ACTIONS(1738), + [anon_sym_f32] = ACTIONS(1738), + [anon_sym_f64] = ACTIONS(1738), + [anon_sym_bool] = ACTIONS(1738), + [anon_sym_str] = ACTIONS(1738), + [anon_sym_char] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1064), + [anon_sym_AMP] = ACTIONS(1740), + [anon_sym_PIPE] = ACTIONS(1070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1392), + [anon_sym_DOT_DOT] = ACTIONS(1074), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1078), + [anon_sym_COLON_COLON] = ACTIONS(1744), + [anon_sym_const] = ACTIONS(1748), + [anon_sym_default] = ACTIONS(1750), + [anon_sym_gen] = ACTIONS(1750), + [anon_sym_union] = ACTIONS(1750), + [anon_sym_ref] = ACTIONS(1106), + [sym_mutable_specifier] = ACTIONS(1400), + [sym_integer_literal] = ACTIONS(1112), + [aux_sym_string_literal_token1] = ACTIONS(1114), + [sym_char_literal] = ACTIONS(1112), + [anon_sym_true] = ACTIONS(1116), + [anon_sym_false] = ACTIONS(1116), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1752), + [sym_super] = ACTIONS(1752), + [sym_crate] = ACTIONS(1752), + [sym_metavariable] = ACTIONS(1754), + [sym__raw_string_literal_start] = ACTIONS(1124), + [sym_float_literal] = ACTIONS(1112), }, [STATE(865)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2732), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3676), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(1921), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(1903), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3578), + [sym_array_type] = STATE(1921), + [sym_for_lifetimes] = STATE(1632), + [sym_function_type] = STATE(1921), + [sym_tuple_type] = STATE(1921), + [sym_unit_type] = STATE(1921), + [sym_generic_type] = STATE(1720), + [sym_generic_type_with_turbofish] = STATE(3727), + [sym_bounded_type] = STATE(1921), + [sym_use_bounds] = STATE(3578), + [sym_reference_type] = STATE(1921), + [sym_pointer_type] = STATE(1921), + [sym_never_type] = STATE(1921), + [sym_abstract_type] = STATE(1921), + [sym_dynamic_type] = STATE(1921), + [sym_macro_invocation] = STATE(1921), + [sym_scoped_identifier] = STATE(3446), + [sym_scoped_type_identifier] = STATE(1611), [sym_line_comment] = STATE(865), [sym_block_comment] = STATE(865), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_RPAREN] = ACTIONS(3268), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_identifier] = ACTIONS(3244), + [anon_sym_LPAREN] = ACTIONS(3246), + [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_PLUS] = ACTIONS(3250), + [anon_sym_STAR] = ACTIONS(3252), + [anon_sym_QMARK] = ACTIONS(3254), + [anon_sym_u8] = ACTIONS(3256), + [anon_sym_i8] = ACTIONS(3256), + [anon_sym_u16] = ACTIONS(3256), + [anon_sym_i16] = ACTIONS(3256), + [anon_sym_u32] = ACTIONS(3256), + [anon_sym_i32] = ACTIONS(3256), + [anon_sym_u64] = ACTIONS(3256), + [anon_sym_i64] = ACTIONS(3256), + [anon_sym_u128] = ACTIONS(3256), + [anon_sym_i128] = ACTIONS(3256), + [anon_sym_isize] = ACTIONS(3256), + [anon_sym_usize] = ACTIONS(3256), + [anon_sym_f32] = ACTIONS(3256), + [anon_sym_f64] = ACTIONS(3256), + [anon_sym_bool] = ACTIONS(3256), + [anon_sym_str] = ACTIONS(3256), + [anon_sym_char] = ACTIONS(3256), + [anon_sym_BANG] = ACTIONS(3258), + [anon_sym_AMP] = ACTIONS(3260), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3262), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(3264), + [anon_sym_fn] = ACTIONS(3266), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(3268), + [anon_sym_impl] = ACTIONS(3270), + [anon_sym_union] = ACTIONS(3268), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(3272), + [sym_mutable_specifier] = ACTIONS(3274), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(3276), + [sym_super] = ACTIONS(3276), + [sym_crate] = ACTIONS(3276), + [sym_metavariable] = ACTIONS(3278), }, [STATE(866)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2989), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3576), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(2100), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(844), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3771), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2285), [sym_line_comment] = STATE(866), [sym_block_comment] = STATE(866), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_RPAREN] = ACTIONS(3270), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_identifier] = ACTIONS(3190), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1624), + [anon_sym_QMARK] = ACTIONS(1626), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1630), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1640), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1644), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1646), + [sym_mutable_specifier] = ACTIONS(3280), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), }, [STATE(867)] = { - [sym_function_modifiers] = STATE(3812), - [sym_higher_ranked_trait_bound] = STATE(2263), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2264), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(2264), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_higher_ranked_trait_bound] = STATE(2254), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(2256), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(2256), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2044), [sym_line_comment] = STATE(867), [sym_block_comment] = STATE(867), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(3272), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_identifier] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(3106), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(3282), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1108), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), }, [STATE(868)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2680), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(2771), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(3823), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2044), [sym_line_comment] = STATE(868), [sym_block_comment] = STATE(868), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_RPAREN] = ACTIONS(3268), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_identifier] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_RPAREN] = ACTIONS(3284), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(3106), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1108), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), }, [STATE(869)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2989), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(2881), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(3823), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2044), [sym_line_comment] = STATE(869), [sym_block_comment] = STATE(869), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_RPAREN] = ACTIONS(3274), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_identifier] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_RPAREN] = ACTIONS(3284), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(3106), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1108), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), }, [STATE(870)] = { - [sym_function_modifiers] = STATE(3583), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2926), - [sym_bracketed_type] = STATE(3752), - [sym_qualified_type] = STATE(3704), - [sym_lifetime] = STATE(3531), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1632), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3531), - [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(3461), - [sym_scoped_type_identifier] = STATE(2255), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_type_parameters] = STATE(909), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(2507), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(3823), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2508), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2295), [sym_line_comment] = STATE(870), [sym_block_comment] = STATE(870), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3208), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_QMARK] = ACTIONS(1621), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(1625), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1635), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1639), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1641), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_identifier] = ACTIONS(3286), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(3288), + [anon_sym_AMP] = ACTIONS(3106), + [anon_sym_LT] = ACTIONS(3290), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1108), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), }, [STATE(871)] = { - [sym_function_modifiers] = STATE(3812), - [sym_higher_ranked_trait_bound] = STATE(2301), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2302), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(2302), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(2849), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(3823), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2044), [sym_line_comment] = STATE(871), [sym_block_comment] = STATE(871), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(3272), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_identifier] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(3106), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3292), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1108), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), }, [STATE(872)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2989), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(3009), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(3823), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2044), [sym_line_comment] = STATE(872), [sym_block_comment] = STATE(872), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_RPAREN] = ACTIONS(3276), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_identifier] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_RPAREN] = ACTIONS(3294), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(3106), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1108), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), }, [STATE(873)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2779), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(3009), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(3823), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2044), [sym_line_comment] = STATE(873), [sym_block_comment] = STATE(873), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_RPAREN] = ACTIONS(3278), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_identifier] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_RPAREN] = ACTIONS(3296), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(3106), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1108), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), }, [STATE(874)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2649), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3676), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(1921), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(1813), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(865), + [sym_array_type] = STATE(1921), + [sym_for_lifetimes] = STATE(1632), + [sym_function_type] = STATE(1921), + [sym_tuple_type] = STATE(1921), + [sym_unit_type] = STATE(1921), + [sym_generic_type] = STATE(1720), + [sym_generic_type_with_turbofish] = STATE(3727), + [sym_bounded_type] = STATE(1921), + [sym_use_bounds] = STATE(3578), + [sym_reference_type] = STATE(1921), + [sym_pointer_type] = STATE(1921), + [sym_never_type] = STATE(1921), + [sym_abstract_type] = STATE(1921), + [sym_dynamic_type] = STATE(1921), + [sym_macro_invocation] = STATE(1921), + [sym_scoped_identifier] = STATE(3446), + [sym_scoped_type_identifier] = STATE(1611), [sym_line_comment] = STATE(874), [sym_block_comment] = STATE(874), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3280), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_identifier] = ACTIONS(3244), + [anon_sym_LPAREN] = ACTIONS(3246), + [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_STAR] = ACTIONS(3252), + [anon_sym_QMARK] = ACTIONS(3254), + [anon_sym_u8] = ACTIONS(3256), + [anon_sym_i8] = ACTIONS(3256), + [anon_sym_u16] = ACTIONS(3256), + [anon_sym_i16] = ACTIONS(3256), + [anon_sym_u32] = ACTIONS(3256), + [anon_sym_i32] = ACTIONS(3256), + [anon_sym_u64] = ACTIONS(3256), + [anon_sym_i64] = ACTIONS(3256), + [anon_sym_u128] = ACTIONS(3256), + [anon_sym_i128] = ACTIONS(3256), + [anon_sym_isize] = ACTIONS(3256), + [anon_sym_usize] = ACTIONS(3256), + [anon_sym_f32] = ACTIONS(3256), + [anon_sym_f64] = ACTIONS(3256), + [anon_sym_bool] = ACTIONS(3256), + [anon_sym_str] = ACTIONS(3256), + [anon_sym_char] = ACTIONS(3256), + [anon_sym_BANG] = ACTIONS(3258), + [anon_sym_AMP] = ACTIONS(3260), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3262), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(3264), + [anon_sym_fn] = ACTIONS(3266), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(3268), + [anon_sym_impl] = ACTIONS(3270), + [anon_sym_union] = ACTIONS(3268), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(3272), + [sym_mutable_specifier] = ACTIONS(3298), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(3276), + [sym_super] = ACTIONS(3276), + [sym_crate] = ACTIONS(3276), + [sym_metavariable] = ACTIONS(3278), }, [STATE(875)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2989), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(2675), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(3823), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2044), [sym_line_comment] = STATE(875), [sym_block_comment] = STATE(875), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_RPAREN] = ACTIONS(3282), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_identifier] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_RPAREN] = ACTIONS(3284), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(3106), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1108), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), }, [STATE(876)] = { - [sym_function_modifiers] = STATE(3812), - [sym_higher_ranked_trait_bound] = STATE(2301), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2303), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(2303), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(2091), - [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(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3576), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(3056), + [sym_bracketed_type] = STATE(3806), + [sym_qualified_type] = STATE(3744), + [sym_lifetime] = STATE(3771), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3771), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2285), [sym_line_comment] = STATE(876), [sym_block_comment] = STATE(876), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(3272), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_identifier] = ACTIONS(3190), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1624), + [anon_sym_QMARK] = ACTIONS(1626), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1630), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1640), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1644), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1646), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), }, [STATE(877)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_type_parameters] = STATE(903), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2499), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2506), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(3461), - [sym_scoped_type_identifier] = STATE(2252), + [sym_function_modifiers] = STATE(3822), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(1458), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(1513), + [sym_bracketed_type] = STATE(3719), + [sym_lifetime] = STATE(855), + [sym_array_type] = STATE(1458), + [sym_for_lifetimes] = STATE(1623), + [sym_function_type] = STATE(1458), + [sym_tuple_type] = STATE(1458), + [sym_unit_type] = STATE(1458), + [sym_generic_type] = STATE(1416), + [sym_generic_type_with_turbofish] = STATE(3708), + [sym_bounded_type] = STATE(1458), + [sym_use_bounds] = STATE(3837), + [sym_reference_type] = STATE(1458), + [sym_pointer_type] = STATE(1458), + [sym_never_type] = STATE(1458), + [sym_abstract_type] = STATE(1458), + [sym_dynamic_type] = STATE(1458), + [sym_macro_invocation] = STATE(1458), + [sym_scoped_identifier] = STATE(3321), + [sym_scoped_type_identifier] = STATE(1113), [sym_line_comment] = STATE(877), [sym_block_comment] = STATE(877), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3284), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(3286), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(3266), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_identifier] = ACTIONS(3204), + [anon_sym_LPAREN] = ACTIONS(3206), + [anon_sym_LBRACK] = ACTIONS(3208), + [anon_sym_STAR] = ACTIONS(3212), + [anon_sym_QMARK] = ACTIONS(3214), + [anon_sym_u8] = ACTIONS(3216), + [anon_sym_i8] = ACTIONS(3216), + [anon_sym_u16] = ACTIONS(3216), + [anon_sym_i16] = ACTIONS(3216), + [anon_sym_u32] = ACTIONS(3216), + [anon_sym_i32] = ACTIONS(3216), + [anon_sym_u64] = ACTIONS(3216), + [anon_sym_i64] = ACTIONS(3216), + [anon_sym_u128] = ACTIONS(3216), + [anon_sym_i128] = ACTIONS(3216), + [anon_sym_isize] = ACTIONS(3216), + [anon_sym_usize] = ACTIONS(3216), + [anon_sym_f32] = ACTIONS(3216), + [anon_sym_f64] = ACTIONS(3216), + [anon_sym_bool] = ACTIONS(3216), + [anon_sym_str] = ACTIONS(3216), + [anon_sym_char] = ACTIONS(3216), + [anon_sym_BANG] = ACTIONS(3218), + [anon_sym_AMP] = ACTIONS(3220), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3222), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(3224), + [anon_sym_fn] = ACTIONS(3226), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(3228), + [anon_sym_impl] = ACTIONS(3230), + [anon_sym_union] = ACTIONS(3228), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(3232), + [sym_mutable_specifier] = ACTIONS(3300), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(3236), + [sym_super] = ACTIONS(3236), + [sym_crate] = ACTIONS(3236), + [sym_metavariable] = ACTIONS(3238), }, [STATE(878)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2989), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_type_parameters] = STATE(997), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(2490), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(3823), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2509), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2293), [sym_line_comment] = STATE(878), [sym_block_comment] = STATE(878), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_RPAREN] = ACTIONS(3288), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_identifier] = ACTIONS(3302), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(3304), + [anon_sym_AMP] = ACTIONS(3106), + [anon_sym_LT] = ACTIONS(3290), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1108), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), }, [STATE(879)] = { - [sym_function_modifiers] = STATE(3583), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(3467), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(856), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1632), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3531), - [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(3461), - [sym_scoped_type_identifier] = STATE(2255), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(3009), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(3823), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2044), [sym_line_comment] = STATE(879), [sym_block_comment] = STATE(879), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3208), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_QMARK] = ACTIONS(1621), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(1625), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1635), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1639), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1641), - [sym_mutable_specifier] = ACTIONS(3290), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_identifier] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_RPAREN] = ACTIONS(3306), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(3106), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1108), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), }, [STATE(880)] = { - [sym_function_modifiers] = STATE(3641), - [sym_removed_trait_bound] = STATE(1745), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(1818), - [sym_bracketed_type] = STATE(3701), - [sym_lifetime] = STATE(857), - [sym_array_type] = STATE(1745), - [sym_for_lifetimes] = STATE(1625), - [sym_function_type] = STATE(1745), - [sym_tuple_type] = STATE(1745), - [sym_unit_type] = STATE(1745), - [sym_generic_type] = STATE(1692), - [sym_generic_type_with_turbofish] = STATE(3692), - [sym_bounded_type] = STATE(1745), - [sym_use_bounds] = STATE(3813), - [sym_reference_type] = STATE(1745), - [sym_pointer_type] = STATE(1745), - [sym_never_type] = STATE(1745), - [sym_abstract_type] = STATE(1745), - [sym_dynamic_type] = STATE(1745), - [sym_macro_invocation] = STATE(1745), - [sym_scoped_identifier] = STATE(3433), - [sym_scoped_type_identifier] = STATE(1614), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_type_parameters] = STATE(892), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(2424), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(3823), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2515), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2297), [sym_line_comment] = STATE(880), [sym_block_comment] = STATE(880), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3214), - [anon_sym_LPAREN] = ACTIONS(3216), - [anon_sym_LBRACK] = ACTIONS(3218), - [anon_sym_STAR] = ACTIONS(3222), - [anon_sym_QMARK] = ACTIONS(3224), - [anon_sym_u8] = ACTIONS(3226), - [anon_sym_i8] = ACTIONS(3226), - [anon_sym_u16] = ACTIONS(3226), - [anon_sym_i16] = ACTIONS(3226), - [anon_sym_u32] = ACTIONS(3226), - [anon_sym_i32] = ACTIONS(3226), - [anon_sym_u64] = ACTIONS(3226), - [anon_sym_i64] = ACTIONS(3226), - [anon_sym_u128] = ACTIONS(3226), - [anon_sym_i128] = ACTIONS(3226), - [anon_sym_isize] = ACTIONS(3226), - [anon_sym_usize] = ACTIONS(3226), - [anon_sym_f32] = ACTIONS(3226), - [anon_sym_f64] = ACTIONS(3226), - [anon_sym_bool] = ACTIONS(3226), - [anon_sym_str] = ACTIONS(3226), - [anon_sym_char] = ACTIONS(3226), - [anon_sym_BANG] = ACTIONS(3228), - [anon_sym_AMP] = ACTIONS(3230), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3232), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(3234), - [anon_sym_fn] = ACTIONS(3236), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(3238), - [anon_sym_impl] = ACTIONS(3240), - [anon_sym_union] = ACTIONS(3238), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(3242), - [sym_mutable_specifier] = ACTIONS(3292), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3246), - [sym_super] = ACTIONS(3246), - [sym_crate] = ACTIONS(3246), - [sym_metavariable] = ACTIONS(3248), + [sym_identifier] = ACTIONS(3308), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(3310), + [anon_sym_AMP] = ACTIONS(3106), + [anon_sym_LT] = ACTIONS(3290), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1108), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), }, [STATE(881)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2056), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(858), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(3009), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(3823), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2044), [sym_line_comment] = STATE(881), [sym_block_comment] = STATE(881), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [sym_mutable_specifier] = ACTIONS(3294), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_identifier] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_RPAREN] = ACTIONS(3312), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(3106), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1108), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), }, [STATE(882)] = { - [sym_function_modifiers] = STATE(3583), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2056), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(859), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1632), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3531), - [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(3461), - [sym_scoped_type_identifier] = STATE(2255), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_higher_ranked_trait_bound] = STATE(2331), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(2314), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(2314), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2044), [sym_line_comment] = STATE(882), [sym_block_comment] = STATE(882), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3208), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_QMARK] = ACTIONS(1621), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(1625), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1635), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1639), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1641), - [sym_mutable_specifier] = ACTIONS(3296), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_identifier] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(3106), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(3282), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1108), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), }, [STATE(883)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2779), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(2900), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(3823), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2044), [sym_line_comment] = STATE(883), [sym_block_comment] = STATE(883), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_RPAREN] = ACTIONS(3268), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_identifier] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(3106), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3314), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1108), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), }, [STATE(884)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_type_parameters] = STATE(998), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2423), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2477), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(3461), - [sym_scoped_type_identifier] = STATE(2277), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_higher_ranked_trait_bound] = STATE(2331), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(2348), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(2348), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(2073), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2044), [sym_line_comment] = STATE(884), [sym_block_comment] = STATE(884), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3298), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(3300), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(3266), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_identifier] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(3106), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(3282), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1108), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), }, [STATE(885)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_type_parameters] = STATE(959), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2434), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2439), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(3461), - [sym_scoped_type_identifier] = STATE(2270), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(2100), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(834), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2044), [sym_line_comment] = STATE(885), [sym_block_comment] = STATE(885), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3302), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(3304), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(3266), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_identifier] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(3106), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1108), + [sym_mutable_specifier] = ACTIONS(3316), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), }, [STATE(886)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(3018), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(2771), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(3823), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2044), [sym_line_comment] = STATE(886), [sym_block_comment] = STATE(886), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_identifier] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_RPAREN] = ACTIONS(3318), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(3106), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1108), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), }, [STATE(887)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(3037), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(2675), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(3823), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2044), [sym_line_comment] = STATE(887), [sym_block_comment] = STATE(887), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_identifier] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_RPAREN] = ACTIONS(3320), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(3106), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1108), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), }, [STATE(888)] = { - [sym_function_modifiers] = STATE(3772), - [sym_removed_trait_bound] = STATE(1456), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(1461), - [sym_bracketed_type] = STATE(3685), - [sym_lifetime] = STATE(3522), - [sym_array_type] = STATE(1456), - [sym_for_lifetimes] = STATE(1647), - [sym_function_type] = STATE(1456), - [sym_tuple_type] = STATE(1456), - [sym_unit_type] = STATE(1456), - [sym_generic_type] = STATE(1265), - [sym_generic_type_with_turbofish] = STATE(3673), - [sym_bounded_type] = STATE(1456), - [sym_use_bounds] = STATE(3522), - [sym_reference_type] = STATE(1456), - [sym_pointer_type] = STATE(1456), - [sym_never_type] = STATE(1456), - [sym_abstract_type] = STATE(1456), - [sym_dynamic_type] = STATE(1456), - [sym_macro_invocation] = STATE(1456), - [sym_scoped_identifier] = STATE(3339), - [sym_scoped_type_identifier] = STATE(1084), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(3009), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(3823), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2044), [sym_line_comment] = STATE(888), [sym_block_comment] = STATE(888), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [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(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(3192), - [anon_sym_fn] = ACTIONS(3194), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(3196), - [anon_sym_impl] = ACTIONS(3198), - [anon_sym_union] = ACTIONS(3196), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(3200), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3204), - [sym_super] = ACTIONS(3204), - [sym_crate] = ACTIONS(3204), - [sym_metavariable] = ACTIONS(3206), + [sym_identifier] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_RPAREN] = ACTIONS(3322), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(3106), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1108), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), }, [STATE(889)] = { - [sym_function_modifiers] = STATE(3772), - [sym_removed_trait_bound] = STATE(1456), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(1462), - [sym_bracketed_type] = STATE(3685), - [sym_lifetime] = STATE(3522), - [sym_array_type] = STATE(1456), - [sym_for_lifetimes] = STATE(1647), - [sym_function_type] = STATE(1456), - [sym_tuple_type] = STATE(1456), - [sym_unit_type] = STATE(1456), - [sym_generic_type] = STATE(1265), - [sym_generic_type_with_turbofish] = STATE(3673), - [sym_bounded_type] = STATE(1456), - [sym_use_bounds] = STATE(3522), - [sym_reference_type] = STATE(1456), - [sym_pointer_type] = STATE(1456), - [sym_never_type] = STATE(1456), - [sym_abstract_type] = STATE(1456), - [sym_dynamic_type] = STATE(1456), - [sym_macro_invocation] = STATE(1456), - [sym_scoped_identifier] = STATE(3339), - [sym_scoped_type_identifier] = STATE(1084), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_type_parameters] = STATE(929), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(2452), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(3823), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2467), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2267), [sym_line_comment] = STATE(889), [sym_block_comment] = STATE(889), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [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(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(3192), - [anon_sym_fn] = ACTIONS(3194), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(3196), - [anon_sym_impl] = ACTIONS(3198), - [anon_sym_union] = ACTIONS(3196), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(3200), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3204), - [sym_super] = ACTIONS(3204), - [sym_crate] = ACTIONS(3204), - [sym_metavariable] = ACTIONS(3206), + [sym_identifier] = ACTIONS(3324), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(3326), + [anon_sym_AMP] = ACTIONS(3106), + [anon_sym_LT] = ACTIONS(3290), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1108), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), }, [STATE(890)] = { - [sym_function_modifiers] = STATE(3772), - [sym_removed_trait_bound] = STATE(1456), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(1473), - [sym_bracketed_type] = STATE(3685), - [sym_lifetime] = STATE(3522), - [sym_array_type] = STATE(1456), - [sym_for_lifetimes] = STATE(1647), - [sym_function_type] = STATE(1456), - [sym_tuple_type] = STATE(1456), - [sym_unit_type] = STATE(1456), - [sym_generic_type] = STATE(1265), - [sym_generic_type_with_turbofish] = STATE(3673), - [sym_bounded_type] = STATE(1456), - [sym_use_bounds] = STATE(3522), - [sym_reference_type] = STATE(1456), - [sym_pointer_type] = STATE(1456), - [sym_never_type] = STATE(1456), - [sym_abstract_type] = STATE(1456), - [sym_dynamic_type] = STATE(1456), - [sym_macro_invocation] = STATE(1456), - [sym_scoped_identifier] = STATE(3339), - [sym_scoped_type_identifier] = STATE(1084), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(3009), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(3823), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2044), [sym_line_comment] = STATE(890), [sym_block_comment] = STATE(890), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [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(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(3192), - [anon_sym_fn] = ACTIONS(3194), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(3196), - [anon_sym_impl] = ACTIONS(3198), - [anon_sym_union] = ACTIONS(3196), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(3200), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3204), - [sym_super] = ACTIONS(3204), - [sym_crate] = ACTIONS(3204), - [sym_metavariable] = ACTIONS(3206), + [sym_identifier] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_RPAREN] = ACTIONS(3328), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(3106), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1108), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), }, [STATE(891)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2458), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3576), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(3252), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(845), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3771), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2285), [sym_line_comment] = STATE(891), [sym_block_comment] = STATE(891), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_identifier] = ACTIONS(3190), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1624), + [anon_sym_QMARK] = ACTIONS(1626), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1630), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1640), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1644), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1646), + [sym_mutable_specifier] = ACTIONS(3330), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), }, [STATE(892)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(3024), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(2436), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(3823), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2518), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2247), [sym_line_comment] = STATE(892), [sym_block_comment] = STATE(892), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_identifier] = ACTIONS(3332), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(3334), + [anon_sym_AMP] = ACTIONS(3106), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1108), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), }, [STATE(893)] = { - [sym_function_modifiers] = STATE(3772), - [sym_removed_trait_bound] = STATE(1456), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(1499), - [sym_bracketed_type] = STATE(3685), - [sym_lifetime] = STATE(3522), - [sym_array_type] = STATE(1456), - [sym_for_lifetimes] = STATE(1647), - [sym_function_type] = STATE(1456), - [sym_tuple_type] = STATE(1456), - [sym_unit_type] = STATE(1456), - [sym_generic_type] = STATE(1265), - [sym_generic_type_with_turbofish] = STATE(3673), - [sym_bounded_type] = STATE(1456), - [sym_use_bounds] = STATE(3522), - [sym_reference_type] = STATE(1456), - [sym_pointer_type] = STATE(1456), - [sym_never_type] = STATE(1456), - [sym_abstract_type] = STATE(1456), - [sym_dynamic_type] = STATE(1456), - [sym_macro_invocation] = STATE(1456), - [sym_scoped_identifier] = STATE(3339), - [sym_scoped_type_identifier] = STATE(1084), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(2821), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(3823), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2044), [sym_line_comment] = STATE(893), [sym_block_comment] = STATE(893), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [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(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(3192), - [anon_sym_fn] = ACTIONS(3194), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(3196), - [anon_sym_impl] = ACTIONS(3198), - [anon_sym_union] = ACTIONS(3196), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(3200), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3204), - [sym_super] = ACTIONS(3204), - [sym_crate] = ACTIONS(3204), - [sym_metavariable] = ACTIONS(3206), + [sym_identifier] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(3106), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1108), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), }, [STATE(894)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2815), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(2881), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(3823), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2044), [sym_line_comment] = STATE(894), [sym_block_comment] = STATE(894), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_identifier] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(3106), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1108), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), }, [STATE(895)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2640), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3576), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(2073), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(2073), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(2073), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2285), [sym_line_comment] = STATE(895), [sym_block_comment] = STATE(895), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_identifier] = ACTIONS(3190), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1624), + [anon_sym_QMARK] = ACTIONS(1626), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1630), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(3096), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1640), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1644), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1646), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), }, [STATE(896)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2474), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(3479), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(3823), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2044), [sym_line_comment] = STATE(896), [sym_block_comment] = STATE(896), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_identifier] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(3106), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1108), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), }, [STATE(897)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2476), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(2588), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(3823), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2044), [sym_line_comment] = STATE(897), [sym_block_comment] = STATE(897), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_identifier] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(3106), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1108), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), }, [STATE(898)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2479), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(3198), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(3823), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2044), [sym_line_comment] = STATE(898), [sym_block_comment] = STATE(898), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_identifier] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(3106), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1108), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), }, [STATE(899)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(3109), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3576), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(2846), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(3771), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3771), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2285), [sym_line_comment] = STATE(899), [sym_block_comment] = STATE(899), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_identifier] = ACTIONS(3190), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1624), + [anon_sym_QMARK] = ACTIONS(1626), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1630), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1640), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1644), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1646), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), }, [STATE(900)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2681), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3576), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(2086), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(3771), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3771), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2285), [sym_line_comment] = STATE(900), [sym_block_comment] = STATE(900), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_identifier] = ACTIONS(3190), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1624), + [anon_sym_QMARK] = ACTIONS(1626), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1630), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1640), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1644), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1646), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), }, [STATE(901)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2487), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3576), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(2087), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(3771), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3771), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2285), [sym_line_comment] = STATE(901), [sym_block_comment] = STATE(901), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_identifier] = ACTIONS(3190), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1624), + [anon_sym_QMARK] = ACTIONS(1626), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1630), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1640), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1644), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1646), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), }, [STATE(902)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2668), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3576), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(2095), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(3771), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3771), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2285), [sym_line_comment] = STATE(902), [sym_block_comment] = STATE(902), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_identifier] = ACTIONS(3190), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1624), + [anon_sym_QMARK] = ACTIONS(1626), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1630), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1640), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1644), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1646), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), }, [STATE(903)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2505), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2403), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(3461), - [sym_scoped_type_identifier] = STATE(2267), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(2496), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(3823), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2044), [sym_line_comment] = STATE(903), [sym_block_comment] = STATE(903), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3306), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(3308), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_identifier] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(3106), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1108), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), }, [STATE(904)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2961), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(2415), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(3823), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2044), [sym_line_comment] = STATE(904), [sym_block_comment] = STATE(904), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_identifier] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(3106), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1108), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), }, [STATE(905)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2337), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(2344), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(3823), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2044), [sym_line_comment] = STATE(905), [sym_block_comment] = STATE(905), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_identifier] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(3106), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1108), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), }, [STATE(906)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2760), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(2781), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(3823), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2044), [sym_line_comment] = STATE(906), [sym_block_comment] = STATE(906), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_identifier] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(3106), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1108), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), }, [STATE(907)] = { - [sym_function_modifiers] = STATE(3641), - [sym_removed_trait_bound] = STATE(1745), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(1837), - [sym_bracketed_type] = STATE(3701), - [sym_lifetime] = STATE(3813), - [sym_array_type] = STATE(1745), - [sym_for_lifetimes] = STATE(1625), - [sym_function_type] = STATE(1745), - [sym_tuple_type] = STATE(1745), - [sym_unit_type] = STATE(1745), - [sym_generic_type] = STATE(1692), - [sym_generic_type_with_turbofish] = STATE(3692), - [sym_bounded_type] = STATE(1745), - [sym_use_bounds] = STATE(3813), - [sym_reference_type] = STATE(1745), - [sym_pointer_type] = STATE(1745), - [sym_never_type] = STATE(1745), - [sym_abstract_type] = STATE(1745), - [sym_dynamic_type] = STATE(1745), - [sym_macro_invocation] = STATE(1745), - [sym_scoped_identifier] = STATE(3433), - [sym_scoped_type_identifier] = STATE(1614), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(2878), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(3823), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2044), [sym_line_comment] = STATE(907), [sym_block_comment] = STATE(907), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3214), - [anon_sym_LPAREN] = ACTIONS(3216), - [anon_sym_LBRACK] = ACTIONS(3218), - [anon_sym_STAR] = ACTIONS(3222), - [anon_sym_QMARK] = ACTIONS(3224), - [anon_sym_u8] = ACTIONS(3226), - [anon_sym_i8] = ACTIONS(3226), - [anon_sym_u16] = ACTIONS(3226), - [anon_sym_i16] = ACTIONS(3226), - [anon_sym_u32] = ACTIONS(3226), - [anon_sym_i32] = ACTIONS(3226), - [anon_sym_u64] = ACTIONS(3226), - [anon_sym_i64] = ACTIONS(3226), - [anon_sym_u128] = ACTIONS(3226), - [anon_sym_i128] = ACTIONS(3226), - [anon_sym_isize] = ACTIONS(3226), - [anon_sym_usize] = ACTIONS(3226), - [anon_sym_f32] = ACTIONS(3226), - [anon_sym_f64] = ACTIONS(3226), - [anon_sym_bool] = ACTIONS(3226), - [anon_sym_str] = ACTIONS(3226), - [anon_sym_char] = ACTIONS(3226), - [anon_sym_BANG] = ACTIONS(3228), - [anon_sym_AMP] = ACTIONS(3230), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3232), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(3234), - [anon_sym_fn] = ACTIONS(3236), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(3238), - [anon_sym_impl] = ACTIONS(3240), - [anon_sym_union] = ACTIONS(3238), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(3242), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3246), - [sym_super] = ACTIONS(3246), - [sym_crate] = ACTIONS(3246), - [sym_metavariable] = ACTIONS(3248), + [sym_identifier] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(3106), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1108), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), }, [STATE(908)] = { - [sym_function_modifiers] = STATE(3641), - [sym_removed_trait_bound] = STATE(1745), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(1838), - [sym_bracketed_type] = STATE(3701), - [sym_lifetime] = STATE(3813), - [sym_array_type] = STATE(1745), - [sym_for_lifetimes] = STATE(1625), - [sym_function_type] = STATE(1745), - [sym_tuple_type] = STATE(1745), - [sym_unit_type] = STATE(1745), - [sym_generic_type] = STATE(1692), - [sym_generic_type_with_turbofish] = STATE(3692), - [sym_bounded_type] = STATE(1745), - [sym_use_bounds] = STATE(3813), - [sym_reference_type] = STATE(1745), - [sym_pointer_type] = STATE(1745), - [sym_never_type] = STATE(1745), - [sym_abstract_type] = STATE(1745), - [sym_dynamic_type] = STATE(1745), - [sym_macro_invocation] = STATE(1745), - [sym_scoped_identifier] = STATE(3433), - [sym_scoped_type_identifier] = STATE(1614), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(3171), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(3823), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2044), [sym_line_comment] = STATE(908), [sym_block_comment] = STATE(908), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3214), - [anon_sym_LPAREN] = ACTIONS(3216), - [anon_sym_LBRACK] = ACTIONS(3218), - [anon_sym_STAR] = ACTIONS(3222), - [anon_sym_QMARK] = ACTIONS(3224), - [anon_sym_u8] = ACTIONS(3226), - [anon_sym_i8] = ACTIONS(3226), - [anon_sym_u16] = ACTIONS(3226), - [anon_sym_i16] = ACTIONS(3226), - [anon_sym_u32] = ACTIONS(3226), - [anon_sym_i32] = ACTIONS(3226), - [anon_sym_u64] = ACTIONS(3226), - [anon_sym_i64] = ACTIONS(3226), - [anon_sym_u128] = ACTIONS(3226), - [anon_sym_i128] = ACTIONS(3226), - [anon_sym_isize] = ACTIONS(3226), - [anon_sym_usize] = ACTIONS(3226), - [anon_sym_f32] = ACTIONS(3226), - [anon_sym_f64] = ACTIONS(3226), - [anon_sym_bool] = ACTIONS(3226), - [anon_sym_str] = ACTIONS(3226), - [anon_sym_char] = ACTIONS(3226), - [anon_sym_BANG] = ACTIONS(3228), - [anon_sym_AMP] = ACTIONS(3230), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3232), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(3234), - [anon_sym_fn] = ACTIONS(3236), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(3238), - [anon_sym_impl] = ACTIONS(3240), - [anon_sym_union] = ACTIONS(3238), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(3242), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3246), - [sym_super] = ACTIONS(3246), - [sym_crate] = ACTIONS(3246), - [sym_metavariable] = ACTIONS(3248), + [sym_identifier] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(3106), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1108), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), }, [STATE(909)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2622), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(2463), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(3823), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2464), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2259), [sym_line_comment] = STATE(909), [sym_block_comment] = STATE(909), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_identifier] = ACTIONS(3336), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(3338), + [anon_sym_AMP] = ACTIONS(3106), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1108), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), }, [STATE(910)] = { - [sym_function_modifiers] = STATE(3641), - [sym_removed_trait_bound] = STATE(1745), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(1786), - [sym_bracketed_type] = STATE(3701), - [sym_lifetime] = STATE(1786), - [sym_array_type] = STATE(1745), - [sym_for_lifetimes] = STATE(1625), - [sym_function_type] = STATE(1745), - [sym_tuple_type] = STATE(1745), - [sym_unit_type] = STATE(1745), - [sym_generic_type] = STATE(1692), - [sym_generic_type_with_turbofish] = STATE(3692), - [sym_bounded_type] = STATE(1745), - [sym_use_bounds] = STATE(1786), - [sym_reference_type] = STATE(1745), - [sym_pointer_type] = STATE(1745), - [sym_never_type] = STATE(1745), - [sym_abstract_type] = STATE(1745), - [sym_dynamic_type] = STATE(1745), - [sym_macro_invocation] = STATE(1745), - [sym_scoped_identifier] = STATE(3433), - [sym_scoped_type_identifier] = STATE(1614), + [sym_function_modifiers] = STATE(3822), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(1458), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(1546), + [sym_bracketed_type] = STATE(3719), + [sym_lifetime] = STATE(3837), + [sym_array_type] = STATE(1458), + [sym_for_lifetimes] = STATE(1623), + [sym_function_type] = STATE(1458), + [sym_tuple_type] = STATE(1458), + [sym_unit_type] = STATE(1458), + [sym_generic_type] = STATE(1416), + [sym_generic_type_with_turbofish] = STATE(3708), + [sym_bounded_type] = STATE(1458), + [sym_use_bounds] = STATE(3837), + [sym_reference_type] = STATE(1458), + [sym_pointer_type] = STATE(1458), + [sym_never_type] = STATE(1458), + [sym_abstract_type] = STATE(1458), + [sym_dynamic_type] = STATE(1458), + [sym_macro_invocation] = STATE(1458), + [sym_scoped_identifier] = STATE(3321), + [sym_scoped_type_identifier] = STATE(1113), [sym_line_comment] = STATE(910), [sym_block_comment] = STATE(910), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3214), - [anon_sym_LPAREN] = ACTIONS(3216), - [anon_sym_LBRACK] = ACTIONS(3218), - [anon_sym_STAR] = ACTIONS(3222), - [anon_sym_QMARK] = ACTIONS(3224), - [anon_sym_u8] = ACTIONS(3226), - [anon_sym_i8] = ACTIONS(3226), - [anon_sym_u16] = ACTIONS(3226), - [anon_sym_i16] = ACTIONS(3226), - [anon_sym_u32] = ACTIONS(3226), - [anon_sym_i32] = ACTIONS(3226), - [anon_sym_u64] = ACTIONS(3226), - [anon_sym_i64] = ACTIONS(3226), - [anon_sym_u128] = ACTIONS(3226), - [anon_sym_i128] = ACTIONS(3226), - [anon_sym_isize] = ACTIONS(3226), - [anon_sym_usize] = ACTIONS(3226), - [anon_sym_f32] = ACTIONS(3226), - [anon_sym_f64] = ACTIONS(3226), - [anon_sym_bool] = ACTIONS(3226), - [anon_sym_str] = ACTIONS(3226), - [anon_sym_char] = ACTIONS(3226), - [anon_sym_BANG] = ACTIONS(3228), - [anon_sym_AMP] = ACTIONS(3230), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3232), - [anon_sym_SQUOTE] = ACTIONS(3310), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(3234), - [anon_sym_fn] = ACTIONS(3236), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(3238), - [anon_sym_impl] = ACTIONS(3240), - [anon_sym_union] = ACTIONS(3238), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(3312), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(3242), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3246), - [sym_super] = ACTIONS(3246), - [sym_crate] = ACTIONS(3246), - [sym_metavariable] = ACTIONS(3248), + [sym_identifier] = ACTIONS(3204), + [anon_sym_LPAREN] = ACTIONS(3206), + [anon_sym_LBRACK] = ACTIONS(3208), + [anon_sym_STAR] = ACTIONS(3212), + [anon_sym_QMARK] = ACTIONS(3214), + [anon_sym_u8] = ACTIONS(3216), + [anon_sym_i8] = ACTIONS(3216), + [anon_sym_u16] = ACTIONS(3216), + [anon_sym_i16] = ACTIONS(3216), + [anon_sym_u32] = ACTIONS(3216), + [anon_sym_i32] = ACTIONS(3216), + [anon_sym_u64] = ACTIONS(3216), + [anon_sym_i64] = ACTIONS(3216), + [anon_sym_u128] = ACTIONS(3216), + [anon_sym_i128] = ACTIONS(3216), + [anon_sym_isize] = ACTIONS(3216), + [anon_sym_usize] = ACTIONS(3216), + [anon_sym_f32] = ACTIONS(3216), + [anon_sym_f64] = ACTIONS(3216), + [anon_sym_bool] = ACTIONS(3216), + [anon_sym_str] = ACTIONS(3216), + [anon_sym_char] = ACTIONS(3216), + [anon_sym_BANG] = ACTIONS(3218), + [anon_sym_AMP] = ACTIONS(3220), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3222), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(3224), + [anon_sym_fn] = ACTIONS(3226), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(3228), + [anon_sym_impl] = ACTIONS(3230), + [anon_sym_union] = ACTIONS(3228), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(3232), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(3236), + [sym_super] = ACTIONS(3236), + [sym_crate] = ACTIONS(3236), + [sym_metavariable] = ACTIONS(3238), }, [STATE(911)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2706), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3822), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(1458), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(1548), + [sym_bracketed_type] = STATE(3719), + [sym_lifetime] = STATE(3837), + [sym_array_type] = STATE(1458), + [sym_for_lifetimes] = STATE(1623), + [sym_function_type] = STATE(1458), + [sym_tuple_type] = STATE(1458), + [sym_unit_type] = STATE(1458), + [sym_generic_type] = STATE(1416), + [sym_generic_type_with_turbofish] = STATE(3708), + [sym_bounded_type] = STATE(1458), + [sym_use_bounds] = STATE(3837), + [sym_reference_type] = STATE(1458), + [sym_pointer_type] = STATE(1458), + [sym_never_type] = STATE(1458), + [sym_abstract_type] = STATE(1458), + [sym_dynamic_type] = STATE(1458), + [sym_macro_invocation] = STATE(1458), + [sym_scoped_identifier] = STATE(3321), + [sym_scoped_type_identifier] = STATE(1113), [sym_line_comment] = STATE(911), [sym_block_comment] = STATE(911), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_identifier] = ACTIONS(3204), + [anon_sym_LPAREN] = ACTIONS(3206), + [anon_sym_LBRACK] = ACTIONS(3208), + [anon_sym_STAR] = ACTIONS(3212), + [anon_sym_QMARK] = ACTIONS(3214), + [anon_sym_u8] = ACTIONS(3216), + [anon_sym_i8] = ACTIONS(3216), + [anon_sym_u16] = ACTIONS(3216), + [anon_sym_i16] = ACTIONS(3216), + [anon_sym_u32] = ACTIONS(3216), + [anon_sym_i32] = ACTIONS(3216), + [anon_sym_u64] = ACTIONS(3216), + [anon_sym_i64] = ACTIONS(3216), + [anon_sym_u128] = ACTIONS(3216), + [anon_sym_i128] = ACTIONS(3216), + [anon_sym_isize] = ACTIONS(3216), + [anon_sym_usize] = ACTIONS(3216), + [anon_sym_f32] = ACTIONS(3216), + [anon_sym_f64] = ACTIONS(3216), + [anon_sym_bool] = ACTIONS(3216), + [anon_sym_str] = ACTIONS(3216), + [anon_sym_char] = ACTIONS(3216), + [anon_sym_BANG] = ACTIONS(3218), + [anon_sym_AMP] = ACTIONS(3220), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3222), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(3224), + [anon_sym_fn] = ACTIONS(3226), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(3228), + [anon_sym_impl] = ACTIONS(3230), + [anon_sym_union] = ACTIONS(3228), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(3232), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(3236), + [sym_super] = ACTIONS(3236), + [sym_crate] = ACTIONS(3236), + [sym_metavariable] = ACTIONS(3238), }, [STATE(912)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2710), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3822), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(1458), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(1455), + [sym_bracketed_type] = STATE(3719), + [sym_lifetime] = STATE(1455), + [sym_array_type] = STATE(1458), + [sym_for_lifetimes] = STATE(1623), + [sym_function_type] = STATE(1458), + [sym_tuple_type] = STATE(1458), + [sym_unit_type] = STATE(1458), + [sym_generic_type] = STATE(1416), + [sym_generic_type_with_turbofish] = STATE(3708), + [sym_bounded_type] = STATE(1458), + [sym_use_bounds] = STATE(1455), + [sym_reference_type] = STATE(1458), + [sym_pointer_type] = STATE(1458), + [sym_never_type] = STATE(1458), + [sym_abstract_type] = STATE(1458), + [sym_dynamic_type] = STATE(1458), + [sym_macro_invocation] = STATE(1458), + [sym_scoped_identifier] = STATE(3321), + [sym_scoped_type_identifier] = STATE(1113), [sym_line_comment] = STATE(912), [sym_block_comment] = STATE(912), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_identifier] = ACTIONS(3204), + [anon_sym_LPAREN] = ACTIONS(3206), + [anon_sym_LBRACK] = ACTIONS(3208), + [anon_sym_STAR] = ACTIONS(3212), + [anon_sym_QMARK] = ACTIONS(3214), + [anon_sym_u8] = ACTIONS(3216), + [anon_sym_i8] = ACTIONS(3216), + [anon_sym_u16] = ACTIONS(3216), + [anon_sym_i16] = ACTIONS(3216), + [anon_sym_u32] = ACTIONS(3216), + [anon_sym_i32] = ACTIONS(3216), + [anon_sym_u64] = ACTIONS(3216), + [anon_sym_i64] = ACTIONS(3216), + [anon_sym_u128] = ACTIONS(3216), + [anon_sym_i128] = ACTIONS(3216), + [anon_sym_isize] = ACTIONS(3216), + [anon_sym_usize] = ACTIONS(3216), + [anon_sym_f32] = ACTIONS(3216), + [anon_sym_f64] = ACTIONS(3216), + [anon_sym_bool] = ACTIONS(3216), + [anon_sym_str] = ACTIONS(3216), + [anon_sym_char] = ACTIONS(3216), + [anon_sym_BANG] = ACTIONS(3218), + [anon_sym_AMP] = ACTIONS(3220), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3222), + [anon_sym_SQUOTE] = ACTIONS(3340), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(3224), + [anon_sym_fn] = ACTIONS(3226), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(3228), + [anon_sym_impl] = ACTIONS(3230), + [anon_sym_union] = ACTIONS(3228), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(3342), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(3232), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(3236), + [sym_super] = ACTIONS(3236), + [sym_crate] = ACTIONS(3236), + [sym_metavariable] = ACTIONS(3238), }, [STATE(913)] = { - [sym_function_modifiers] = STATE(3641), - [sym_removed_trait_bound] = STATE(1745), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(1843), - [sym_bracketed_type] = STATE(3701), - [sym_lifetime] = STATE(3813), - [sym_array_type] = STATE(1745), - [sym_for_lifetimes] = STATE(1625), - [sym_function_type] = STATE(1745), - [sym_tuple_type] = STATE(1745), - [sym_unit_type] = STATE(1745), - [sym_generic_type] = STATE(1692), - [sym_generic_type_with_turbofish] = STATE(3692), - [sym_bounded_type] = STATE(1745), - [sym_use_bounds] = STATE(3813), - [sym_reference_type] = STATE(1745), - [sym_pointer_type] = STATE(1745), - [sym_never_type] = STATE(1745), - [sym_abstract_type] = STATE(1745), - [sym_dynamic_type] = STATE(1745), - [sym_macro_invocation] = STATE(1745), - [sym_scoped_identifier] = STATE(3433), - [sym_scoped_type_identifier] = STATE(1614), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(2503), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(3823), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2044), [sym_line_comment] = STATE(913), [sym_block_comment] = STATE(913), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3214), - [anon_sym_LPAREN] = ACTIONS(3216), - [anon_sym_LBRACK] = ACTIONS(3218), - [anon_sym_STAR] = ACTIONS(3222), - [anon_sym_QMARK] = ACTIONS(3224), - [anon_sym_u8] = ACTIONS(3226), - [anon_sym_i8] = ACTIONS(3226), - [anon_sym_u16] = ACTIONS(3226), - [anon_sym_i16] = ACTIONS(3226), - [anon_sym_u32] = ACTIONS(3226), - [anon_sym_i32] = ACTIONS(3226), - [anon_sym_u64] = ACTIONS(3226), - [anon_sym_i64] = ACTIONS(3226), - [anon_sym_u128] = ACTIONS(3226), - [anon_sym_i128] = ACTIONS(3226), - [anon_sym_isize] = ACTIONS(3226), - [anon_sym_usize] = ACTIONS(3226), - [anon_sym_f32] = ACTIONS(3226), - [anon_sym_f64] = ACTIONS(3226), - [anon_sym_bool] = ACTIONS(3226), - [anon_sym_str] = ACTIONS(3226), - [anon_sym_char] = ACTIONS(3226), - [anon_sym_BANG] = ACTIONS(3228), - [anon_sym_AMP] = ACTIONS(3230), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3232), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(3234), - [anon_sym_fn] = ACTIONS(3236), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(3238), - [anon_sym_impl] = ACTIONS(3240), - [anon_sym_union] = ACTIONS(3238), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(3242), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3246), - [sym_super] = ACTIONS(3246), - [sym_crate] = ACTIONS(3246), - [sym_metavariable] = ACTIONS(3248), + [sym_identifier] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(3106), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1108), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), }, [STATE(914)] = { - [sym_function_modifiers] = STATE(3641), - [sym_removed_trait_bound] = STATE(1745), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(1791), - [sym_bracketed_type] = STATE(3701), - [sym_lifetime] = STATE(3813), - [sym_array_type] = STATE(1745), - [sym_for_lifetimes] = STATE(1625), - [sym_function_type] = STATE(1745), - [sym_tuple_type] = STATE(1745), - [sym_unit_type] = STATE(1745), - [sym_generic_type] = STATE(1692), - [sym_generic_type_with_turbofish] = STATE(3692), - [sym_bounded_type] = STATE(1745), - [sym_use_bounds] = STATE(3813), - [sym_reference_type] = STATE(1745), - [sym_pointer_type] = STATE(1745), - [sym_never_type] = STATE(1745), - [sym_abstract_type] = STATE(1745), - [sym_dynamic_type] = STATE(1745), - [sym_macro_invocation] = STATE(1745), - [sym_scoped_identifier] = STATE(3433), - [sym_scoped_type_identifier] = STATE(1614), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(2504), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(3823), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2044), [sym_line_comment] = STATE(914), [sym_block_comment] = STATE(914), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3214), - [anon_sym_LPAREN] = ACTIONS(3216), - [anon_sym_LBRACK] = ACTIONS(3218), - [anon_sym_STAR] = ACTIONS(3222), - [anon_sym_QMARK] = ACTIONS(3224), - [anon_sym_u8] = ACTIONS(3226), - [anon_sym_i8] = ACTIONS(3226), - [anon_sym_u16] = ACTIONS(3226), - [anon_sym_i16] = ACTIONS(3226), - [anon_sym_u32] = ACTIONS(3226), - [anon_sym_i32] = ACTIONS(3226), - [anon_sym_u64] = ACTIONS(3226), - [anon_sym_i64] = ACTIONS(3226), - [anon_sym_u128] = ACTIONS(3226), - [anon_sym_i128] = ACTIONS(3226), - [anon_sym_isize] = ACTIONS(3226), - [anon_sym_usize] = ACTIONS(3226), - [anon_sym_f32] = ACTIONS(3226), - [anon_sym_f64] = ACTIONS(3226), - [anon_sym_bool] = ACTIONS(3226), - [anon_sym_str] = ACTIONS(3226), - [anon_sym_char] = ACTIONS(3226), - [anon_sym_BANG] = ACTIONS(3228), - [anon_sym_AMP] = ACTIONS(3230), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3232), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(3234), - [anon_sym_fn] = ACTIONS(3236), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(3238), - [anon_sym_impl] = ACTIONS(3240), - [anon_sym_union] = ACTIONS(3238), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(3242), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3246), - [sym_super] = ACTIONS(3246), - [sym_crate] = ACTIONS(3246), - [sym_metavariable] = ACTIONS(3248), + [sym_identifier] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(3106), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1108), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), }, [STATE(915)] = { - [sym_function_modifiers] = STATE(3641), - [sym_removed_trait_bound] = STATE(1745), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(1844), - [sym_bracketed_type] = STATE(3701), - [sym_lifetime] = STATE(3813), - [sym_array_type] = STATE(1745), - [sym_for_lifetimes] = STATE(1625), - [sym_function_type] = STATE(1745), - [sym_tuple_type] = STATE(1745), - [sym_unit_type] = STATE(1745), - [sym_generic_type] = STATE(1692), - [sym_generic_type_with_turbofish] = STATE(3692), - [sym_bounded_type] = STATE(1745), - [sym_use_bounds] = STATE(3813), - [sym_reference_type] = STATE(1745), - [sym_pointer_type] = STATE(1745), - [sym_never_type] = STATE(1745), - [sym_abstract_type] = STATE(1745), - [sym_dynamic_type] = STATE(1745), - [sym_macro_invocation] = STATE(1745), - [sym_scoped_identifier] = STATE(3433), - [sym_scoped_type_identifier] = STATE(1614), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(3196), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(3823), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2044), [sym_line_comment] = STATE(915), [sym_block_comment] = STATE(915), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3214), - [anon_sym_LPAREN] = ACTIONS(3216), - [anon_sym_LBRACK] = ACTIONS(3218), - [anon_sym_STAR] = ACTIONS(3222), - [anon_sym_QMARK] = ACTIONS(3224), - [anon_sym_u8] = ACTIONS(3226), - [anon_sym_i8] = ACTIONS(3226), - [anon_sym_u16] = ACTIONS(3226), - [anon_sym_i16] = ACTIONS(3226), - [anon_sym_u32] = ACTIONS(3226), - [anon_sym_i32] = ACTIONS(3226), - [anon_sym_u64] = ACTIONS(3226), - [anon_sym_i64] = ACTIONS(3226), - [anon_sym_u128] = ACTIONS(3226), - [anon_sym_i128] = ACTIONS(3226), - [anon_sym_isize] = ACTIONS(3226), - [anon_sym_usize] = ACTIONS(3226), - [anon_sym_f32] = ACTIONS(3226), - [anon_sym_f64] = ACTIONS(3226), - [anon_sym_bool] = ACTIONS(3226), - [anon_sym_str] = ACTIONS(3226), - [anon_sym_char] = ACTIONS(3226), - [anon_sym_BANG] = ACTIONS(3228), - [anon_sym_AMP] = ACTIONS(3230), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3232), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(3234), - [anon_sym_fn] = ACTIONS(3236), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(3238), - [anon_sym_impl] = ACTIONS(3240), - [anon_sym_union] = ACTIONS(3238), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(3242), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3246), - [sym_super] = ACTIONS(3246), - [sym_crate] = ACTIONS(3246), - [sym_metavariable] = ACTIONS(3248), + [sym_identifier] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(3106), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1108), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), }, [STATE(916)] = { - [sym_function_modifiers] = STATE(3641), - [sym_removed_trait_bound] = STATE(1745), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(1796), - [sym_bracketed_type] = STATE(3701), - [sym_lifetime] = STATE(3813), - [sym_array_type] = STATE(1745), - [sym_for_lifetimes] = STATE(1625), - [sym_function_type] = STATE(1745), - [sym_tuple_type] = STATE(1745), - [sym_unit_type] = STATE(1745), - [sym_generic_type] = STATE(1692), - [sym_generic_type_with_turbofish] = STATE(3692), - [sym_bounded_type] = STATE(1745), - [sym_use_bounds] = STATE(3813), - [sym_reference_type] = STATE(1745), - [sym_pointer_type] = STATE(1745), - [sym_never_type] = STATE(1745), - [sym_abstract_type] = STATE(1745), - [sym_dynamic_type] = STATE(1745), - [sym_macro_invocation] = STATE(1745), - [sym_scoped_identifier] = STATE(3433), - [sym_scoped_type_identifier] = STATE(1614), + [sym_function_modifiers] = STATE(3822), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(1458), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(1525), + [sym_bracketed_type] = STATE(3719), + [sym_lifetime] = STATE(3837), + [sym_array_type] = STATE(1458), + [sym_for_lifetimes] = STATE(1623), + [sym_function_type] = STATE(1458), + [sym_tuple_type] = STATE(1458), + [sym_unit_type] = STATE(1458), + [sym_generic_type] = STATE(1416), + [sym_generic_type_with_turbofish] = STATE(3708), + [sym_bounded_type] = STATE(1458), + [sym_use_bounds] = STATE(3837), + [sym_reference_type] = STATE(1458), + [sym_pointer_type] = STATE(1458), + [sym_never_type] = STATE(1458), + [sym_abstract_type] = STATE(1458), + [sym_dynamic_type] = STATE(1458), + [sym_macro_invocation] = STATE(1458), + [sym_scoped_identifier] = STATE(3321), + [sym_scoped_type_identifier] = STATE(1113), [sym_line_comment] = STATE(916), [sym_block_comment] = STATE(916), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3214), - [anon_sym_LPAREN] = ACTIONS(3216), - [anon_sym_LBRACK] = ACTIONS(3218), - [anon_sym_STAR] = ACTIONS(3222), - [anon_sym_QMARK] = ACTIONS(3224), - [anon_sym_u8] = ACTIONS(3226), - [anon_sym_i8] = ACTIONS(3226), - [anon_sym_u16] = ACTIONS(3226), - [anon_sym_i16] = ACTIONS(3226), - [anon_sym_u32] = ACTIONS(3226), - [anon_sym_i32] = ACTIONS(3226), - [anon_sym_u64] = ACTIONS(3226), - [anon_sym_i64] = ACTIONS(3226), - [anon_sym_u128] = ACTIONS(3226), - [anon_sym_i128] = ACTIONS(3226), - [anon_sym_isize] = ACTIONS(3226), - [anon_sym_usize] = ACTIONS(3226), - [anon_sym_f32] = ACTIONS(3226), - [anon_sym_f64] = ACTIONS(3226), - [anon_sym_bool] = ACTIONS(3226), - [anon_sym_str] = ACTIONS(3226), - [anon_sym_char] = ACTIONS(3226), - [anon_sym_BANG] = ACTIONS(3228), - [anon_sym_AMP] = ACTIONS(3230), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3232), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(3234), - [anon_sym_fn] = ACTIONS(3236), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(3238), - [anon_sym_impl] = ACTIONS(3240), - [anon_sym_union] = ACTIONS(3238), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(3242), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3246), - [sym_super] = ACTIONS(3246), - [sym_crate] = ACTIONS(3246), - [sym_metavariable] = ACTIONS(3248), + [sym_identifier] = ACTIONS(3204), + [anon_sym_LPAREN] = ACTIONS(3206), + [anon_sym_LBRACK] = ACTIONS(3208), + [anon_sym_STAR] = ACTIONS(3212), + [anon_sym_QMARK] = ACTIONS(3214), + [anon_sym_u8] = ACTIONS(3216), + [anon_sym_i8] = ACTIONS(3216), + [anon_sym_u16] = ACTIONS(3216), + [anon_sym_i16] = ACTIONS(3216), + [anon_sym_u32] = ACTIONS(3216), + [anon_sym_i32] = ACTIONS(3216), + [anon_sym_u64] = ACTIONS(3216), + [anon_sym_i64] = ACTIONS(3216), + [anon_sym_u128] = ACTIONS(3216), + [anon_sym_i128] = ACTIONS(3216), + [anon_sym_isize] = ACTIONS(3216), + [anon_sym_usize] = ACTIONS(3216), + [anon_sym_f32] = ACTIONS(3216), + [anon_sym_f64] = ACTIONS(3216), + [anon_sym_bool] = ACTIONS(3216), + [anon_sym_str] = ACTIONS(3216), + [anon_sym_char] = ACTIONS(3216), + [anon_sym_BANG] = ACTIONS(3218), + [anon_sym_AMP] = ACTIONS(3220), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3222), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(3224), + [anon_sym_fn] = ACTIONS(3226), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(3228), + [anon_sym_impl] = ACTIONS(3230), + [anon_sym_union] = ACTIONS(3228), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(3232), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(3236), + [sym_super] = ACTIONS(3236), + [sym_crate] = ACTIONS(3236), + [sym_metavariable] = ACTIONS(3238), }, [STATE(917)] = { - [sym_function_modifiers] = STATE(3641), - [sym_removed_trait_bound] = STATE(1745), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(1797), - [sym_bracketed_type] = STATE(3701), - [sym_lifetime] = STATE(3813), - [sym_array_type] = STATE(1745), - [sym_for_lifetimes] = STATE(1625), - [sym_function_type] = STATE(1745), - [sym_tuple_type] = STATE(1745), - [sym_unit_type] = STATE(1745), - [sym_generic_type] = STATE(1692), - [sym_generic_type_with_turbofish] = STATE(3692), - [sym_bounded_type] = STATE(1745), - [sym_use_bounds] = STATE(3813), - [sym_reference_type] = STATE(1745), - [sym_pointer_type] = STATE(1745), - [sym_never_type] = STATE(1745), - [sym_abstract_type] = STATE(1745), - [sym_dynamic_type] = STATE(1745), - [sym_macro_invocation] = STATE(1745), - [sym_scoped_identifier] = STATE(3433), - [sym_scoped_type_identifier] = STATE(1614), + [sym_function_modifiers] = STATE(3822), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(1458), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(1528), + [sym_bracketed_type] = STATE(3719), + [sym_lifetime] = STATE(3837), + [sym_array_type] = STATE(1458), + [sym_for_lifetimes] = STATE(1623), + [sym_function_type] = STATE(1458), + [sym_tuple_type] = STATE(1458), + [sym_unit_type] = STATE(1458), + [sym_generic_type] = STATE(1416), + [sym_generic_type_with_turbofish] = STATE(3708), + [sym_bounded_type] = STATE(1458), + [sym_use_bounds] = STATE(3837), + [sym_reference_type] = STATE(1458), + [sym_pointer_type] = STATE(1458), + [sym_never_type] = STATE(1458), + [sym_abstract_type] = STATE(1458), + [sym_dynamic_type] = STATE(1458), + [sym_macro_invocation] = STATE(1458), + [sym_scoped_identifier] = STATE(3321), + [sym_scoped_type_identifier] = STATE(1113), [sym_line_comment] = STATE(917), [sym_block_comment] = STATE(917), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3214), - [anon_sym_LPAREN] = ACTIONS(3216), - [anon_sym_LBRACK] = ACTIONS(3218), - [anon_sym_STAR] = ACTIONS(3222), - [anon_sym_QMARK] = ACTIONS(3224), - [anon_sym_u8] = ACTIONS(3226), - [anon_sym_i8] = ACTIONS(3226), - [anon_sym_u16] = ACTIONS(3226), - [anon_sym_i16] = ACTIONS(3226), - [anon_sym_u32] = ACTIONS(3226), - [anon_sym_i32] = ACTIONS(3226), - [anon_sym_u64] = ACTIONS(3226), - [anon_sym_i64] = ACTIONS(3226), - [anon_sym_u128] = ACTIONS(3226), - [anon_sym_i128] = ACTIONS(3226), - [anon_sym_isize] = ACTIONS(3226), - [anon_sym_usize] = ACTIONS(3226), - [anon_sym_f32] = ACTIONS(3226), - [anon_sym_f64] = ACTIONS(3226), - [anon_sym_bool] = ACTIONS(3226), - [anon_sym_str] = ACTIONS(3226), - [anon_sym_char] = ACTIONS(3226), - [anon_sym_BANG] = ACTIONS(3228), - [anon_sym_AMP] = ACTIONS(3230), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3232), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(3234), - [anon_sym_fn] = ACTIONS(3236), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(3238), - [anon_sym_impl] = ACTIONS(3240), - [anon_sym_union] = ACTIONS(3238), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(3242), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3246), - [sym_super] = ACTIONS(3246), - [sym_crate] = ACTIONS(3246), - [sym_metavariable] = ACTIONS(3248), + [sym_identifier] = ACTIONS(3204), + [anon_sym_LPAREN] = ACTIONS(3206), + [anon_sym_LBRACK] = ACTIONS(3208), + [anon_sym_STAR] = ACTIONS(3212), + [anon_sym_QMARK] = ACTIONS(3214), + [anon_sym_u8] = ACTIONS(3216), + [anon_sym_i8] = ACTIONS(3216), + [anon_sym_u16] = ACTIONS(3216), + [anon_sym_i16] = ACTIONS(3216), + [anon_sym_u32] = ACTIONS(3216), + [anon_sym_i32] = ACTIONS(3216), + [anon_sym_u64] = ACTIONS(3216), + [anon_sym_i64] = ACTIONS(3216), + [anon_sym_u128] = ACTIONS(3216), + [anon_sym_i128] = ACTIONS(3216), + [anon_sym_isize] = ACTIONS(3216), + [anon_sym_usize] = ACTIONS(3216), + [anon_sym_f32] = ACTIONS(3216), + [anon_sym_f64] = ACTIONS(3216), + [anon_sym_bool] = ACTIONS(3216), + [anon_sym_str] = ACTIONS(3216), + [anon_sym_char] = ACTIONS(3216), + [anon_sym_BANG] = ACTIONS(3218), + [anon_sym_AMP] = ACTIONS(3220), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3222), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(3224), + [anon_sym_fn] = ACTIONS(3226), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(3228), + [anon_sym_impl] = ACTIONS(3230), + [anon_sym_union] = ACTIONS(3228), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(3232), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(3236), + [sym_super] = ACTIONS(3236), + [sym_crate] = ACTIONS(3236), + [sym_metavariable] = ACTIONS(3238), }, [STATE(918)] = { - [sym_function_modifiers] = STATE(3641), - [sym_removed_trait_bound] = STATE(1745), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(1804), - [sym_bracketed_type] = STATE(3701), - [sym_lifetime] = STATE(3813), - [sym_array_type] = STATE(1745), - [sym_for_lifetimes] = STATE(1625), - [sym_function_type] = STATE(1745), - [sym_tuple_type] = STATE(1745), - [sym_unit_type] = STATE(1745), - [sym_generic_type] = STATE(1692), - [sym_generic_type_with_turbofish] = STATE(3692), - [sym_bounded_type] = STATE(1745), - [sym_use_bounds] = STATE(3813), - [sym_reference_type] = STATE(1745), - [sym_pointer_type] = STATE(1745), - [sym_never_type] = STATE(1745), - [sym_abstract_type] = STATE(1745), - [sym_dynamic_type] = STATE(1745), - [sym_macro_invocation] = STATE(1745), - [sym_scoped_identifier] = STATE(3433), - [sym_scoped_type_identifier] = STATE(1614), + [sym_function_modifiers] = STATE(3822), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(1458), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(1522), + [sym_bracketed_type] = STATE(3719), + [sym_lifetime] = STATE(3837), + [sym_array_type] = STATE(1458), + [sym_for_lifetimes] = STATE(1623), + [sym_function_type] = STATE(1458), + [sym_tuple_type] = STATE(1458), + [sym_unit_type] = STATE(1458), + [sym_generic_type] = STATE(1416), + [sym_generic_type_with_turbofish] = STATE(3708), + [sym_bounded_type] = STATE(1458), + [sym_use_bounds] = STATE(3837), + [sym_reference_type] = STATE(1458), + [sym_pointer_type] = STATE(1458), + [sym_never_type] = STATE(1458), + [sym_abstract_type] = STATE(1458), + [sym_dynamic_type] = STATE(1458), + [sym_macro_invocation] = STATE(1458), + [sym_scoped_identifier] = STATE(3321), + [sym_scoped_type_identifier] = STATE(1113), [sym_line_comment] = STATE(918), [sym_block_comment] = STATE(918), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3214), - [anon_sym_LPAREN] = ACTIONS(3216), - [anon_sym_LBRACK] = ACTIONS(3218), - [anon_sym_STAR] = ACTIONS(3222), - [anon_sym_QMARK] = ACTIONS(3224), - [anon_sym_u8] = ACTIONS(3226), - [anon_sym_i8] = ACTIONS(3226), - [anon_sym_u16] = ACTIONS(3226), - [anon_sym_i16] = ACTIONS(3226), - [anon_sym_u32] = ACTIONS(3226), - [anon_sym_i32] = ACTIONS(3226), - [anon_sym_u64] = ACTIONS(3226), - [anon_sym_i64] = ACTIONS(3226), - [anon_sym_u128] = ACTIONS(3226), - [anon_sym_i128] = ACTIONS(3226), - [anon_sym_isize] = ACTIONS(3226), - [anon_sym_usize] = ACTIONS(3226), - [anon_sym_f32] = ACTIONS(3226), - [anon_sym_f64] = ACTIONS(3226), - [anon_sym_bool] = ACTIONS(3226), - [anon_sym_str] = ACTIONS(3226), - [anon_sym_char] = ACTIONS(3226), - [anon_sym_BANG] = ACTIONS(3228), - [anon_sym_AMP] = ACTIONS(3230), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3232), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(3234), - [anon_sym_fn] = ACTIONS(3236), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(3238), - [anon_sym_impl] = ACTIONS(3240), - [anon_sym_union] = ACTIONS(3238), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(3242), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3246), - [sym_super] = ACTIONS(3246), - [sym_crate] = ACTIONS(3246), - [sym_metavariable] = ACTIONS(3248), + [sym_identifier] = ACTIONS(3204), + [anon_sym_LPAREN] = ACTIONS(3206), + [anon_sym_LBRACK] = ACTIONS(3208), + [anon_sym_STAR] = ACTIONS(3212), + [anon_sym_QMARK] = ACTIONS(3214), + [anon_sym_u8] = ACTIONS(3216), + [anon_sym_i8] = ACTIONS(3216), + [anon_sym_u16] = ACTIONS(3216), + [anon_sym_i16] = ACTIONS(3216), + [anon_sym_u32] = ACTIONS(3216), + [anon_sym_i32] = ACTIONS(3216), + [anon_sym_u64] = ACTIONS(3216), + [anon_sym_i64] = ACTIONS(3216), + [anon_sym_u128] = ACTIONS(3216), + [anon_sym_i128] = ACTIONS(3216), + [anon_sym_isize] = ACTIONS(3216), + [anon_sym_usize] = ACTIONS(3216), + [anon_sym_f32] = ACTIONS(3216), + [anon_sym_f64] = ACTIONS(3216), + [anon_sym_bool] = ACTIONS(3216), + [anon_sym_str] = ACTIONS(3216), + [anon_sym_char] = ACTIONS(3216), + [anon_sym_BANG] = ACTIONS(3218), + [anon_sym_AMP] = ACTIONS(3220), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3222), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(3224), + [anon_sym_fn] = ACTIONS(3226), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(3228), + [anon_sym_impl] = ACTIONS(3230), + [anon_sym_union] = ACTIONS(3228), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(3232), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(3236), + [sym_super] = ACTIONS(3236), + [sym_crate] = ACTIONS(3236), + [sym_metavariable] = ACTIONS(3238), }, [STATE(919)] = { - [sym_function_modifiers] = STATE(3641), - [sym_removed_trait_bound] = STATE(1745), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(1805), - [sym_bracketed_type] = STATE(3701), - [sym_lifetime] = STATE(3813), - [sym_array_type] = STATE(1745), - [sym_for_lifetimes] = STATE(1625), - [sym_function_type] = STATE(1745), - [sym_tuple_type] = STATE(1745), - [sym_unit_type] = STATE(1745), - [sym_generic_type] = STATE(1692), - [sym_generic_type_with_turbofish] = STATE(3692), - [sym_bounded_type] = STATE(1745), - [sym_use_bounds] = STATE(3813), - [sym_reference_type] = STATE(1745), - [sym_pointer_type] = STATE(1745), - [sym_never_type] = STATE(1745), - [sym_abstract_type] = STATE(1745), - [sym_dynamic_type] = STATE(1745), - [sym_macro_invocation] = STATE(1745), - [sym_scoped_identifier] = STATE(3433), - [sym_scoped_type_identifier] = STATE(1614), + [sym_function_modifiers] = STATE(3822), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(1458), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(1535), + [sym_bracketed_type] = STATE(3719), + [sym_lifetime] = STATE(3837), + [sym_array_type] = STATE(1458), + [sym_for_lifetimes] = STATE(1623), + [sym_function_type] = STATE(1458), + [sym_tuple_type] = STATE(1458), + [sym_unit_type] = STATE(1458), + [sym_generic_type] = STATE(1416), + [sym_generic_type_with_turbofish] = STATE(3708), + [sym_bounded_type] = STATE(1458), + [sym_use_bounds] = STATE(3837), + [sym_reference_type] = STATE(1458), + [sym_pointer_type] = STATE(1458), + [sym_never_type] = STATE(1458), + [sym_abstract_type] = STATE(1458), + [sym_dynamic_type] = STATE(1458), + [sym_macro_invocation] = STATE(1458), + [sym_scoped_identifier] = STATE(3321), + [sym_scoped_type_identifier] = STATE(1113), [sym_line_comment] = STATE(919), [sym_block_comment] = STATE(919), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3214), - [anon_sym_LPAREN] = ACTIONS(3216), - [anon_sym_LBRACK] = ACTIONS(3218), - [anon_sym_STAR] = ACTIONS(3222), - [anon_sym_QMARK] = ACTIONS(3224), - [anon_sym_u8] = ACTIONS(3226), - [anon_sym_i8] = ACTIONS(3226), - [anon_sym_u16] = ACTIONS(3226), - [anon_sym_i16] = ACTIONS(3226), - [anon_sym_u32] = ACTIONS(3226), - [anon_sym_i32] = ACTIONS(3226), - [anon_sym_u64] = ACTIONS(3226), - [anon_sym_i64] = ACTIONS(3226), - [anon_sym_u128] = ACTIONS(3226), - [anon_sym_i128] = ACTIONS(3226), - [anon_sym_isize] = ACTIONS(3226), - [anon_sym_usize] = ACTIONS(3226), - [anon_sym_f32] = ACTIONS(3226), - [anon_sym_f64] = ACTIONS(3226), - [anon_sym_bool] = ACTIONS(3226), - [anon_sym_str] = ACTIONS(3226), - [anon_sym_char] = ACTIONS(3226), - [anon_sym_BANG] = ACTIONS(3228), - [anon_sym_AMP] = ACTIONS(3230), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3232), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(3234), - [anon_sym_fn] = ACTIONS(3236), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(3238), - [anon_sym_impl] = ACTIONS(3240), - [anon_sym_union] = ACTIONS(3238), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(3242), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3246), - [sym_super] = ACTIONS(3246), - [sym_crate] = ACTIONS(3246), - [sym_metavariable] = ACTIONS(3248), + [sym_identifier] = ACTIONS(3204), + [anon_sym_LPAREN] = ACTIONS(3206), + [anon_sym_LBRACK] = ACTIONS(3208), + [anon_sym_STAR] = ACTIONS(3212), + [anon_sym_QMARK] = ACTIONS(3214), + [anon_sym_u8] = ACTIONS(3216), + [anon_sym_i8] = ACTIONS(3216), + [anon_sym_u16] = ACTIONS(3216), + [anon_sym_i16] = ACTIONS(3216), + [anon_sym_u32] = ACTIONS(3216), + [anon_sym_i32] = ACTIONS(3216), + [anon_sym_u64] = ACTIONS(3216), + [anon_sym_i64] = ACTIONS(3216), + [anon_sym_u128] = ACTIONS(3216), + [anon_sym_i128] = ACTIONS(3216), + [anon_sym_isize] = ACTIONS(3216), + [anon_sym_usize] = ACTIONS(3216), + [anon_sym_f32] = ACTIONS(3216), + [anon_sym_f64] = ACTIONS(3216), + [anon_sym_bool] = ACTIONS(3216), + [anon_sym_str] = ACTIONS(3216), + [anon_sym_char] = ACTIONS(3216), + [anon_sym_BANG] = ACTIONS(3218), + [anon_sym_AMP] = ACTIONS(3220), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3222), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(3224), + [anon_sym_fn] = ACTIONS(3226), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(3228), + [anon_sym_impl] = ACTIONS(3230), + [anon_sym_union] = ACTIONS(3228), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(3232), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(3236), + [sym_super] = ACTIONS(3236), + [sym_crate] = ACTIONS(3236), + [sym_metavariable] = ACTIONS(3238), }, [STATE(920)] = { - [sym_function_modifiers] = STATE(3641), - [sym_removed_trait_bound] = STATE(1745), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(1806), - [sym_bracketed_type] = STATE(3701), - [sym_lifetime] = STATE(3813), - [sym_array_type] = STATE(1745), - [sym_for_lifetimes] = STATE(1625), - [sym_function_type] = STATE(1745), - [sym_tuple_type] = STATE(1745), - [sym_unit_type] = STATE(1745), - [sym_generic_type] = STATE(1692), - [sym_generic_type_with_turbofish] = STATE(3692), - [sym_bounded_type] = STATE(1745), - [sym_use_bounds] = STATE(3813), - [sym_reference_type] = STATE(1745), - [sym_pointer_type] = STATE(1745), - [sym_never_type] = STATE(1745), - [sym_abstract_type] = STATE(1745), - [sym_dynamic_type] = STATE(1745), - [sym_macro_invocation] = STATE(1745), - [sym_scoped_identifier] = STATE(3433), - [sym_scoped_type_identifier] = STATE(1614), + [sym_function_modifiers] = STATE(3822), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(1458), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(1540), + [sym_bracketed_type] = STATE(3719), + [sym_lifetime] = STATE(3837), + [sym_array_type] = STATE(1458), + [sym_for_lifetimes] = STATE(1623), + [sym_function_type] = STATE(1458), + [sym_tuple_type] = STATE(1458), + [sym_unit_type] = STATE(1458), + [sym_generic_type] = STATE(1416), + [sym_generic_type_with_turbofish] = STATE(3708), + [sym_bounded_type] = STATE(1458), + [sym_use_bounds] = STATE(3837), + [sym_reference_type] = STATE(1458), + [sym_pointer_type] = STATE(1458), + [sym_never_type] = STATE(1458), + [sym_abstract_type] = STATE(1458), + [sym_dynamic_type] = STATE(1458), + [sym_macro_invocation] = STATE(1458), + [sym_scoped_identifier] = STATE(3321), + [sym_scoped_type_identifier] = STATE(1113), [sym_line_comment] = STATE(920), [sym_block_comment] = STATE(920), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3214), - [anon_sym_LPAREN] = ACTIONS(3216), - [anon_sym_LBRACK] = ACTIONS(3218), - [anon_sym_STAR] = ACTIONS(3222), - [anon_sym_QMARK] = ACTIONS(3224), - [anon_sym_u8] = ACTIONS(3226), - [anon_sym_i8] = ACTIONS(3226), - [anon_sym_u16] = ACTIONS(3226), - [anon_sym_i16] = ACTIONS(3226), - [anon_sym_u32] = ACTIONS(3226), - [anon_sym_i32] = ACTIONS(3226), - [anon_sym_u64] = ACTIONS(3226), - [anon_sym_i64] = ACTIONS(3226), - [anon_sym_u128] = ACTIONS(3226), - [anon_sym_i128] = ACTIONS(3226), - [anon_sym_isize] = ACTIONS(3226), - [anon_sym_usize] = ACTIONS(3226), - [anon_sym_f32] = ACTIONS(3226), - [anon_sym_f64] = ACTIONS(3226), - [anon_sym_bool] = ACTIONS(3226), - [anon_sym_str] = ACTIONS(3226), - [anon_sym_char] = ACTIONS(3226), - [anon_sym_BANG] = ACTIONS(3228), - [anon_sym_AMP] = ACTIONS(3230), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3232), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(3234), - [anon_sym_fn] = ACTIONS(3236), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(3238), - [anon_sym_impl] = ACTIONS(3240), - [anon_sym_union] = ACTIONS(3238), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(3242), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3246), - [sym_super] = ACTIONS(3246), - [sym_crate] = ACTIONS(3246), - [sym_metavariable] = ACTIONS(3248), + [sym_identifier] = ACTIONS(3204), + [anon_sym_LPAREN] = ACTIONS(3206), + [anon_sym_LBRACK] = ACTIONS(3208), + [anon_sym_STAR] = ACTIONS(3212), + [anon_sym_QMARK] = ACTIONS(3214), + [anon_sym_u8] = ACTIONS(3216), + [anon_sym_i8] = ACTIONS(3216), + [anon_sym_u16] = ACTIONS(3216), + [anon_sym_i16] = ACTIONS(3216), + [anon_sym_u32] = ACTIONS(3216), + [anon_sym_i32] = ACTIONS(3216), + [anon_sym_u64] = ACTIONS(3216), + [anon_sym_i64] = ACTIONS(3216), + [anon_sym_u128] = ACTIONS(3216), + [anon_sym_i128] = ACTIONS(3216), + [anon_sym_isize] = ACTIONS(3216), + [anon_sym_usize] = ACTIONS(3216), + [anon_sym_f32] = ACTIONS(3216), + [anon_sym_f64] = ACTIONS(3216), + [anon_sym_bool] = ACTIONS(3216), + [anon_sym_str] = ACTIONS(3216), + [anon_sym_char] = ACTIONS(3216), + [anon_sym_BANG] = ACTIONS(3218), + [anon_sym_AMP] = ACTIONS(3220), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3222), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(3224), + [anon_sym_fn] = ACTIONS(3226), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(3228), + [anon_sym_impl] = ACTIONS(3230), + [anon_sym_union] = ACTIONS(3228), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(3232), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(3236), + [sym_super] = ACTIONS(3236), + [sym_crate] = ACTIONS(3236), + [sym_metavariable] = ACTIONS(3238), }, [STATE(921)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2921), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3822), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(1458), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(1501), + [sym_bracketed_type] = STATE(3719), + [sym_lifetime] = STATE(3837), + [sym_array_type] = STATE(1458), + [sym_for_lifetimes] = STATE(1623), + [sym_function_type] = STATE(1458), + [sym_tuple_type] = STATE(1458), + [sym_unit_type] = STATE(1458), + [sym_generic_type] = STATE(1416), + [sym_generic_type_with_turbofish] = STATE(3708), + [sym_bounded_type] = STATE(1458), + [sym_use_bounds] = STATE(3837), + [sym_reference_type] = STATE(1458), + [sym_pointer_type] = STATE(1458), + [sym_never_type] = STATE(1458), + [sym_abstract_type] = STATE(1458), + [sym_dynamic_type] = STATE(1458), + [sym_macro_invocation] = STATE(1458), + [sym_scoped_identifier] = STATE(3321), + [sym_scoped_type_identifier] = STATE(1113), [sym_line_comment] = STATE(921), [sym_block_comment] = STATE(921), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_identifier] = ACTIONS(3204), + [anon_sym_LPAREN] = ACTIONS(3206), + [anon_sym_LBRACK] = ACTIONS(3208), + [anon_sym_STAR] = ACTIONS(3212), + [anon_sym_QMARK] = ACTIONS(3214), + [anon_sym_u8] = ACTIONS(3216), + [anon_sym_i8] = ACTIONS(3216), + [anon_sym_u16] = ACTIONS(3216), + [anon_sym_i16] = ACTIONS(3216), + [anon_sym_u32] = ACTIONS(3216), + [anon_sym_i32] = ACTIONS(3216), + [anon_sym_u64] = ACTIONS(3216), + [anon_sym_i64] = ACTIONS(3216), + [anon_sym_u128] = ACTIONS(3216), + [anon_sym_i128] = ACTIONS(3216), + [anon_sym_isize] = ACTIONS(3216), + [anon_sym_usize] = ACTIONS(3216), + [anon_sym_f32] = ACTIONS(3216), + [anon_sym_f64] = ACTIONS(3216), + [anon_sym_bool] = ACTIONS(3216), + [anon_sym_str] = ACTIONS(3216), + [anon_sym_char] = ACTIONS(3216), + [anon_sym_BANG] = ACTIONS(3218), + [anon_sym_AMP] = ACTIONS(3220), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3222), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(3224), + [anon_sym_fn] = ACTIONS(3226), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(3228), + [anon_sym_impl] = ACTIONS(3230), + [anon_sym_union] = ACTIONS(3228), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(3232), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(3236), + [sym_super] = ACTIONS(3236), + [sym_crate] = ACTIONS(3236), + [sym_metavariable] = ACTIONS(3238), }, [STATE(922)] = { - [sym_function_modifiers] = STATE(3641), - [sym_removed_trait_bound] = STATE(1745), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(1809), - [sym_bracketed_type] = STATE(3701), - [sym_lifetime] = STATE(3813), - [sym_array_type] = STATE(1745), - [sym_for_lifetimes] = STATE(1625), - [sym_function_type] = STATE(1745), - [sym_tuple_type] = STATE(1745), - [sym_unit_type] = STATE(1745), - [sym_generic_type] = STATE(1692), - [sym_generic_type_with_turbofish] = STATE(3692), - [sym_bounded_type] = STATE(1745), - [sym_use_bounds] = STATE(3813), - [sym_reference_type] = STATE(1745), - [sym_pointer_type] = STATE(1745), - [sym_never_type] = STATE(1745), - [sym_abstract_type] = STATE(1745), - [sym_dynamic_type] = STATE(1745), - [sym_macro_invocation] = STATE(1745), - [sym_scoped_identifier] = STATE(3433), - [sym_scoped_type_identifier] = STATE(1614), + [sym_function_modifiers] = STATE(3822), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(1458), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(1506), + [sym_bracketed_type] = STATE(3719), + [sym_lifetime] = STATE(3837), + [sym_array_type] = STATE(1458), + [sym_for_lifetimes] = STATE(1623), + [sym_function_type] = STATE(1458), + [sym_tuple_type] = STATE(1458), + [sym_unit_type] = STATE(1458), + [sym_generic_type] = STATE(1416), + [sym_generic_type_with_turbofish] = STATE(3708), + [sym_bounded_type] = STATE(1458), + [sym_use_bounds] = STATE(3837), + [sym_reference_type] = STATE(1458), + [sym_pointer_type] = STATE(1458), + [sym_never_type] = STATE(1458), + [sym_abstract_type] = STATE(1458), + [sym_dynamic_type] = STATE(1458), + [sym_macro_invocation] = STATE(1458), + [sym_scoped_identifier] = STATE(3321), + [sym_scoped_type_identifier] = STATE(1113), [sym_line_comment] = STATE(922), [sym_block_comment] = STATE(922), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3214), - [anon_sym_LPAREN] = ACTIONS(3216), - [anon_sym_LBRACK] = ACTIONS(3218), - [anon_sym_STAR] = ACTIONS(3222), - [anon_sym_QMARK] = ACTIONS(3224), - [anon_sym_u8] = ACTIONS(3226), - [anon_sym_i8] = ACTIONS(3226), - [anon_sym_u16] = ACTIONS(3226), - [anon_sym_i16] = ACTIONS(3226), - [anon_sym_u32] = ACTIONS(3226), - [anon_sym_i32] = ACTIONS(3226), - [anon_sym_u64] = ACTIONS(3226), - [anon_sym_i64] = ACTIONS(3226), - [anon_sym_u128] = ACTIONS(3226), - [anon_sym_i128] = ACTIONS(3226), - [anon_sym_isize] = ACTIONS(3226), - [anon_sym_usize] = ACTIONS(3226), - [anon_sym_f32] = ACTIONS(3226), - [anon_sym_f64] = ACTIONS(3226), - [anon_sym_bool] = ACTIONS(3226), - [anon_sym_str] = ACTIONS(3226), - [anon_sym_char] = ACTIONS(3226), - [anon_sym_BANG] = ACTIONS(3228), - [anon_sym_AMP] = ACTIONS(3230), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3232), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(3234), - [anon_sym_fn] = ACTIONS(3236), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(3238), - [anon_sym_impl] = ACTIONS(3240), - [anon_sym_union] = ACTIONS(3238), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(3242), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3246), - [sym_super] = ACTIONS(3246), - [sym_crate] = ACTIONS(3246), - [sym_metavariable] = ACTIONS(3248), + [sym_identifier] = ACTIONS(3204), + [anon_sym_LPAREN] = ACTIONS(3206), + [anon_sym_LBRACK] = ACTIONS(3208), + [anon_sym_STAR] = ACTIONS(3212), + [anon_sym_QMARK] = ACTIONS(3214), + [anon_sym_u8] = ACTIONS(3216), + [anon_sym_i8] = ACTIONS(3216), + [anon_sym_u16] = ACTIONS(3216), + [anon_sym_i16] = ACTIONS(3216), + [anon_sym_u32] = ACTIONS(3216), + [anon_sym_i32] = ACTIONS(3216), + [anon_sym_u64] = ACTIONS(3216), + [anon_sym_i64] = ACTIONS(3216), + [anon_sym_u128] = ACTIONS(3216), + [anon_sym_i128] = ACTIONS(3216), + [anon_sym_isize] = ACTIONS(3216), + [anon_sym_usize] = ACTIONS(3216), + [anon_sym_f32] = ACTIONS(3216), + [anon_sym_f64] = ACTIONS(3216), + [anon_sym_bool] = ACTIONS(3216), + [anon_sym_str] = ACTIONS(3216), + [anon_sym_char] = ACTIONS(3216), + [anon_sym_BANG] = ACTIONS(3218), + [anon_sym_AMP] = ACTIONS(3220), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3222), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(3224), + [anon_sym_fn] = ACTIONS(3226), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(3228), + [anon_sym_impl] = ACTIONS(3230), + [anon_sym_union] = ACTIONS(3228), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(3232), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(3236), + [sym_super] = ACTIONS(3236), + [sym_crate] = ACTIONS(3236), + [sym_metavariable] = ACTIONS(3238), }, [STATE(923)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2312), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3822), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(1458), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(1503), + [sym_bracketed_type] = STATE(3719), + [sym_lifetime] = STATE(3837), + [sym_array_type] = STATE(1458), + [sym_for_lifetimes] = STATE(1623), + [sym_function_type] = STATE(1458), + [sym_tuple_type] = STATE(1458), + [sym_unit_type] = STATE(1458), + [sym_generic_type] = STATE(1416), + [sym_generic_type_with_turbofish] = STATE(3708), + [sym_bounded_type] = STATE(1458), + [sym_use_bounds] = STATE(3837), + [sym_reference_type] = STATE(1458), + [sym_pointer_type] = STATE(1458), + [sym_never_type] = STATE(1458), + [sym_abstract_type] = STATE(1458), + [sym_dynamic_type] = STATE(1458), + [sym_macro_invocation] = STATE(1458), + [sym_scoped_identifier] = STATE(3321), + [sym_scoped_type_identifier] = STATE(1113), [sym_line_comment] = STATE(923), [sym_block_comment] = STATE(923), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_identifier] = ACTIONS(3204), + [anon_sym_LPAREN] = ACTIONS(3206), + [anon_sym_LBRACK] = ACTIONS(3208), + [anon_sym_STAR] = ACTIONS(3212), + [anon_sym_QMARK] = ACTIONS(3214), + [anon_sym_u8] = ACTIONS(3216), + [anon_sym_i8] = ACTIONS(3216), + [anon_sym_u16] = ACTIONS(3216), + [anon_sym_i16] = ACTIONS(3216), + [anon_sym_u32] = ACTIONS(3216), + [anon_sym_i32] = ACTIONS(3216), + [anon_sym_u64] = ACTIONS(3216), + [anon_sym_i64] = ACTIONS(3216), + [anon_sym_u128] = ACTIONS(3216), + [anon_sym_i128] = ACTIONS(3216), + [anon_sym_isize] = ACTIONS(3216), + [anon_sym_usize] = ACTIONS(3216), + [anon_sym_f32] = ACTIONS(3216), + [anon_sym_f64] = ACTIONS(3216), + [anon_sym_bool] = ACTIONS(3216), + [anon_sym_str] = ACTIONS(3216), + [anon_sym_char] = ACTIONS(3216), + [anon_sym_BANG] = ACTIONS(3218), + [anon_sym_AMP] = ACTIONS(3220), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3222), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(3224), + [anon_sym_fn] = ACTIONS(3226), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(3228), + [anon_sym_impl] = ACTIONS(3230), + [anon_sym_union] = ACTIONS(3228), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(3232), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(3236), + [sym_super] = ACTIONS(3236), + [sym_crate] = ACTIONS(3236), + [sym_metavariable] = ACTIONS(3238), }, [STATE(924)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2825), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(2633), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(3823), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2044), [sym_line_comment] = STATE(924), [sym_block_comment] = STATE(924), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_identifier] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(3106), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1108), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), }, [STATE(925)] = { - [sym_function_modifiers] = STATE(3583), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2755), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3531), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1632), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3531), - [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(3461), - [sym_scoped_type_identifier] = STATE(2255), + [sym_function_modifiers] = STATE(3822), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(1458), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(1485), + [sym_bracketed_type] = STATE(3719), + [sym_lifetime] = STATE(3837), + [sym_array_type] = STATE(1458), + [sym_for_lifetimes] = STATE(1623), + [sym_function_type] = STATE(1458), + [sym_tuple_type] = STATE(1458), + [sym_unit_type] = STATE(1458), + [sym_generic_type] = STATE(1416), + [sym_generic_type_with_turbofish] = STATE(3708), + [sym_bounded_type] = STATE(1458), + [sym_use_bounds] = STATE(3837), + [sym_reference_type] = STATE(1458), + [sym_pointer_type] = STATE(1458), + [sym_never_type] = STATE(1458), + [sym_abstract_type] = STATE(1458), + [sym_dynamic_type] = STATE(1458), + [sym_macro_invocation] = STATE(1458), + [sym_scoped_identifier] = STATE(3321), + [sym_scoped_type_identifier] = STATE(1113), [sym_line_comment] = STATE(925), [sym_block_comment] = STATE(925), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3208), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_QMARK] = ACTIONS(1621), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(1625), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1635), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1639), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1641), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_identifier] = ACTIONS(3204), + [anon_sym_LPAREN] = ACTIONS(3206), + [anon_sym_LBRACK] = ACTIONS(3208), + [anon_sym_STAR] = ACTIONS(3212), + [anon_sym_QMARK] = ACTIONS(3214), + [anon_sym_u8] = ACTIONS(3216), + [anon_sym_i8] = ACTIONS(3216), + [anon_sym_u16] = ACTIONS(3216), + [anon_sym_i16] = ACTIONS(3216), + [anon_sym_u32] = ACTIONS(3216), + [anon_sym_i32] = ACTIONS(3216), + [anon_sym_u64] = ACTIONS(3216), + [anon_sym_i64] = ACTIONS(3216), + [anon_sym_u128] = ACTIONS(3216), + [anon_sym_i128] = ACTIONS(3216), + [anon_sym_isize] = ACTIONS(3216), + [anon_sym_usize] = ACTIONS(3216), + [anon_sym_f32] = ACTIONS(3216), + [anon_sym_f64] = ACTIONS(3216), + [anon_sym_bool] = ACTIONS(3216), + [anon_sym_str] = ACTIONS(3216), + [anon_sym_char] = ACTIONS(3216), + [anon_sym_BANG] = ACTIONS(3218), + [anon_sym_AMP] = ACTIONS(3220), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3222), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(3224), + [anon_sym_fn] = ACTIONS(3226), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(3228), + [anon_sym_impl] = ACTIONS(3230), + [anon_sym_union] = ACTIONS(3228), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(3232), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(3236), + [sym_super] = ACTIONS(3236), + [sym_crate] = ACTIONS(3236), + [sym_metavariable] = ACTIONS(3238), }, [STATE(926)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(3066), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3576), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(2082), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(3771), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3771), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2285), [sym_line_comment] = STATE(926), [sym_block_comment] = STATE(926), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_identifier] = ACTIONS(3190), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1624), + [anon_sym_QMARK] = ACTIONS(1626), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1630), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1640), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1644), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1646), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), }, [STATE(927)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2989), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(2622), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(3823), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2044), [sym_line_comment] = STATE(927), [sym_block_comment] = STATE(927), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_identifier] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(3106), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1108), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), }, [STATE(928)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2088), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(3197), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(3823), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2044), [sym_line_comment] = STATE(928), [sym_block_comment] = STATE(928), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3314), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_identifier] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(3106), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1108), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), }, [STATE(929)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2660), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(2448), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(3823), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2450), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2257), [sym_line_comment] = STATE(929), [sym_block_comment] = STATE(929), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_identifier] = ACTIONS(3344), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(3346), + [anon_sym_AMP] = ACTIONS(3106), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1108), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), }, [STATE(930)] = { - [sym_function_modifiers] = STATE(3583), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2083), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3531), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1632), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3531), - [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(3461), - [sym_scoped_type_identifier] = STATE(2255), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(2901), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(3823), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2044), [sym_line_comment] = STATE(930), [sym_block_comment] = STATE(930), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3208), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_QMARK] = ACTIONS(1621), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(1625), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1635), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1639), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1641), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_identifier] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(3106), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1108), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), }, [STATE(931)] = { - [sym_function_modifiers] = STATE(3583), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2055), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3531), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1632), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3531), - [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(3461), - [sym_scoped_type_identifier] = STATE(2255), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(3217), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(3823), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2044), [sym_line_comment] = STATE(931), [sym_block_comment] = STATE(931), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3208), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_QMARK] = ACTIONS(1621), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(1625), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1635), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1639), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1641), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_identifier] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(3106), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1108), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), }, [STATE(932)] = { - [sym_function_modifiers] = STATE(3583), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2076), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3531), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1632), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3531), - [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(3461), - [sym_scoped_type_identifier] = STATE(2255), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(2891), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(3823), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2044), [sym_line_comment] = STATE(932), [sym_block_comment] = STATE(932), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3208), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_QMARK] = ACTIONS(1621), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(1625), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1635), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1639), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1641), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_identifier] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(3106), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1108), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), }, [STATE(933)] = { - [sym_function_modifiers] = STATE(3583), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2061), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3531), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1632), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3531), - [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(3461), - [sym_scoped_type_identifier] = STATE(2255), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(2432), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(3823), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2044), [sym_line_comment] = STATE(933), [sym_block_comment] = STATE(933), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3208), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_QMARK] = ACTIONS(1621), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(1625), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1635), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1639), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1641), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_identifier] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(3106), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1108), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), }, [STATE(934)] = { - [sym_function_modifiers] = STATE(3583), - [sym_removed_trait_bound] = STATE(2062), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(3531), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3531), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1632), - [sym_function_type] = STATE(2062), - [sym_tuple_type] = STATE(2062), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2042), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2062), - [sym_use_bounds] = STATE(3531), - [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(3461), - [sym_scoped_type_identifier] = STATE(2234), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(2443), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(3823), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2044), [sym_line_comment] = STATE(934), [sym_block_comment] = STATE(934), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3316), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1621), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1635), - [anon_sym_for] = ACTIONS(3318), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_identifier] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(3106), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1108), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), }, [STATE(935)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2680), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(2522), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(3823), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2044), [sym_line_comment] = STATE(935), [sym_block_comment] = STATE(935), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_identifier] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(3106), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1108), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), }, [STATE(936)] = { - [sym_function_modifiers] = STATE(3583), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2091), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(2091), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1632), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(2091), - [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(3461), - [sym_scoped_type_identifier] = STATE(2255), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(2419), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(3823), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2044), [sym_line_comment] = STATE(936), [sym_block_comment] = STATE(936), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3208), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_QMARK] = ACTIONS(1621), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(1625), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3070), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1635), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1639), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1641), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_identifier] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(3106), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1108), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), }, [STATE(937)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(3396), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3676), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(1921), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(1901), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3578), + [sym_array_type] = STATE(1921), + [sym_for_lifetimes] = STATE(1632), + [sym_function_type] = STATE(1921), + [sym_tuple_type] = STATE(1921), + [sym_unit_type] = STATE(1921), + [sym_generic_type] = STATE(1720), + [sym_generic_type_with_turbofish] = STATE(3727), + [sym_bounded_type] = STATE(1921), + [sym_use_bounds] = STATE(3578), + [sym_reference_type] = STATE(1921), + [sym_pointer_type] = STATE(1921), + [sym_never_type] = STATE(1921), + [sym_abstract_type] = STATE(1921), + [sym_dynamic_type] = STATE(1921), + [sym_macro_invocation] = STATE(1921), + [sym_scoped_identifier] = STATE(3446), + [sym_scoped_type_identifier] = STATE(1611), [sym_line_comment] = STATE(937), [sym_block_comment] = STATE(937), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_identifier] = ACTIONS(3244), + [anon_sym_LPAREN] = ACTIONS(3246), + [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_STAR] = ACTIONS(3252), + [anon_sym_QMARK] = ACTIONS(3254), + [anon_sym_u8] = ACTIONS(3256), + [anon_sym_i8] = ACTIONS(3256), + [anon_sym_u16] = ACTIONS(3256), + [anon_sym_i16] = ACTIONS(3256), + [anon_sym_u32] = ACTIONS(3256), + [anon_sym_i32] = ACTIONS(3256), + [anon_sym_u64] = ACTIONS(3256), + [anon_sym_i64] = ACTIONS(3256), + [anon_sym_u128] = ACTIONS(3256), + [anon_sym_i128] = ACTIONS(3256), + [anon_sym_isize] = ACTIONS(3256), + [anon_sym_usize] = ACTIONS(3256), + [anon_sym_f32] = ACTIONS(3256), + [anon_sym_f64] = ACTIONS(3256), + [anon_sym_bool] = ACTIONS(3256), + [anon_sym_str] = ACTIONS(3256), + [anon_sym_char] = ACTIONS(3256), + [anon_sym_BANG] = ACTIONS(3258), + [anon_sym_AMP] = ACTIONS(3260), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3262), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(3264), + [anon_sym_fn] = ACTIONS(3266), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(3268), + [anon_sym_impl] = ACTIONS(3270), + [anon_sym_union] = ACTIONS(3268), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(3272), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(3276), + [sym_super] = ACTIONS(3276), + [sym_crate] = ACTIONS(3276), + [sym_metavariable] = ACTIONS(3278), }, [STATE(938)] = { - [sym_function_modifiers] = STATE(3583), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2813), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3531), - [sym_array_type] = STATE(2069), + [sym_function_modifiers] = STATE(3676), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(1921), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(1903), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3578), + [sym_array_type] = STATE(1921), [sym_for_lifetimes] = STATE(1632), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3531), - [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(3461), - [sym_scoped_type_identifier] = STATE(2255), + [sym_function_type] = STATE(1921), + [sym_tuple_type] = STATE(1921), + [sym_unit_type] = STATE(1921), + [sym_generic_type] = STATE(1720), + [sym_generic_type_with_turbofish] = STATE(3727), + [sym_bounded_type] = STATE(1921), + [sym_use_bounds] = STATE(3578), + [sym_reference_type] = STATE(1921), + [sym_pointer_type] = STATE(1921), + [sym_never_type] = STATE(1921), + [sym_abstract_type] = STATE(1921), + [sym_dynamic_type] = STATE(1921), + [sym_macro_invocation] = STATE(1921), + [sym_scoped_identifier] = STATE(3446), + [sym_scoped_type_identifier] = STATE(1611), [sym_line_comment] = STATE(938), [sym_block_comment] = STATE(938), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3208), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_QMARK] = ACTIONS(1621), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(1625), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1635), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1639), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1641), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_identifier] = ACTIONS(3244), + [anon_sym_LPAREN] = ACTIONS(3246), + [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_STAR] = ACTIONS(3252), + [anon_sym_QMARK] = ACTIONS(3254), + [anon_sym_u8] = ACTIONS(3256), + [anon_sym_i8] = ACTIONS(3256), + [anon_sym_u16] = ACTIONS(3256), + [anon_sym_i16] = ACTIONS(3256), + [anon_sym_u32] = ACTIONS(3256), + [anon_sym_i32] = ACTIONS(3256), + [anon_sym_u64] = ACTIONS(3256), + [anon_sym_i64] = ACTIONS(3256), + [anon_sym_u128] = ACTIONS(3256), + [anon_sym_i128] = ACTIONS(3256), + [anon_sym_isize] = ACTIONS(3256), + [anon_sym_usize] = ACTIONS(3256), + [anon_sym_f32] = ACTIONS(3256), + [anon_sym_f64] = ACTIONS(3256), + [anon_sym_bool] = ACTIONS(3256), + [anon_sym_str] = ACTIONS(3256), + [anon_sym_char] = ACTIONS(3256), + [anon_sym_BANG] = ACTIONS(3258), + [anon_sym_AMP] = ACTIONS(3260), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3262), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(3264), + [anon_sym_fn] = ACTIONS(3266), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(3268), + [anon_sym_impl] = ACTIONS(3270), + [anon_sym_union] = ACTIONS(3268), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(3272), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(3276), + [sym_super] = ACTIONS(3276), + [sym_crate] = ACTIONS(3276), + [sym_metavariable] = ACTIONS(3278), }, [STATE(939)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2649), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3676), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(1921), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(1797), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(1797), + [sym_array_type] = STATE(1921), + [sym_for_lifetimes] = STATE(1632), + [sym_function_type] = STATE(1921), + [sym_tuple_type] = STATE(1921), + [sym_unit_type] = STATE(1921), + [sym_generic_type] = STATE(1720), + [sym_generic_type_with_turbofish] = STATE(3727), + [sym_bounded_type] = STATE(1921), + [sym_use_bounds] = STATE(1797), + [sym_reference_type] = STATE(1921), + [sym_pointer_type] = STATE(1921), + [sym_never_type] = STATE(1921), + [sym_abstract_type] = STATE(1921), + [sym_dynamic_type] = STATE(1921), + [sym_macro_invocation] = STATE(1921), + [sym_scoped_identifier] = STATE(3446), + [sym_scoped_type_identifier] = STATE(1611), [sym_line_comment] = STATE(939), [sym_block_comment] = STATE(939), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_identifier] = ACTIONS(3244), + [anon_sym_LPAREN] = ACTIONS(3246), + [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_STAR] = ACTIONS(3252), + [anon_sym_QMARK] = ACTIONS(3254), + [anon_sym_u8] = ACTIONS(3256), + [anon_sym_i8] = ACTIONS(3256), + [anon_sym_u16] = ACTIONS(3256), + [anon_sym_i16] = ACTIONS(3256), + [anon_sym_u32] = ACTIONS(3256), + [anon_sym_i32] = ACTIONS(3256), + [anon_sym_u64] = ACTIONS(3256), + [anon_sym_i64] = ACTIONS(3256), + [anon_sym_u128] = ACTIONS(3256), + [anon_sym_i128] = ACTIONS(3256), + [anon_sym_isize] = ACTIONS(3256), + [anon_sym_usize] = ACTIONS(3256), + [anon_sym_f32] = ACTIONS(3256), + [anon_sym_f64] = ACTIONS(3256), + [anon_sym_bool] = ACTIONS(3256), + [anon_sym_str] = ACTIONS(3256), + [anon_sym_char] = ACTIONS(3256), + [anon_sym_BANG] = ACTIONS(3258), + [anon_sym_AMP] = ACTIONS(3260), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3262), + [anon_sym_SQUOTE] = ACTIONS(3348), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(3264), + [anon_sym_fn] = ACTIONS(3266), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(3268), + [anon_sym_impl] = ACTIONS(3270), + [anon_sym_union] = ACTIONS(3268), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(3350), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(3272), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(3276), + [sym_super] = ACTIONS(3276), + [sym_crate] = ACTIONS(3276), + [sym_metavariable] = ACTIONS(3278), }, [STATE(940)] = { - [sym_function_modifiers] = STATE(3583), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2088), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3531), - [sym_array_type] = STATE(2069), + [sym_function_modifiers] = STATE(3676), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(1921), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(1942), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3578), + [sym_array_type] = STATE(1921), [sym_for_lifetimes] = STATE(1632), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3531), - [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(3461), - [sym_scoped_type_identifier] = STATE(2255), + [sym_function_type] = STATE(1921), + [sym_tuple_type] = STATE(1921), + [sym_unit_type] = STATE(1921), + [sym_generic_type] = STATE(1720), + [sym_generic_type_with_turbofish] = STATE(3727), + [sym_bounded_type] = STATE(1921), + [sym_use_bounds] = STATE(3578), + [sym_reference_type] = STATE(1921), + [sym_pointer_type] = STATE(1921), + [sym_never_type] = STATE(1921), + [sym_abstract_type] = STATE(1921), + [sym_dynamic_type] = STATE(1921), + [sym_macro_invocation] = STATE(1921), + [sym_scoped_identifier] = STATE(3446), + [sym_scoped_type_identifier] = STATE(1611), [sym_line_comment] = STATE(940), [sym_block_comment] = STATE(940), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3208), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_QMARK] = ACTIONS(1621), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(1625), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1635), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1639), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1641), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_identifier] = ACTIONS(3244), + [anon_sym_LPAREN] = ACTIONS(3246), + [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_STAR] = ACTIONS(3252), + [anon_sym_QMARK] = ACTIONS(3254), + [anon_sym_u8] = ACTIONS(3256), + [anon_sym_i8] = ACTIONS(3256), + [anon_sym_u16] = ACTIONS(3256), + [anon_sym_i16] = ACTIONS(3256), + [anon_sym_u32] = ACTIONS(3256), + [anon_sym_i32] = ACTIONS(3256), + [anon_sym_u64] = ACTIONS(3256), + [anon_sym_i64] = ACTIONS(3256), + [anon_sym_u128] = ACTIONS(3256), + [anon_sym_i128] = ACTIONS(3256), + [anon_sym_isize] = ACTIONS(3256), + [anon_sym_usize] = ACTIONS(3256), + [anon_sym_f32] = ACTIONS(3256), + [anon_sym_f64] = ACTIONS(3256), + [anon_sym_bool] = ACTIONS(3256), + [anon_sym_str] = ACTIONS(3256), + [anon_sym_char] = ACTIONS(3256), + [anon_sym_BANG] = ACTIONS(3258), + [anon_sym_AMP] = ACTIONS(3260), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3262), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(3264), + [anon_sym_fn] = ACTIONS(3266), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(3268), + [anon_sym_impl] = ACTIONS(3270), + [anon_sym_union] = ACTIONS(3268), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(3272), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(3276), + [sym_super] = ACTIONS(3276), + [sym_crate] = ACTIONS(3276), + [sym_metavariable] = ACTIONS(3278), }, [STATE(941)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2525), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3676), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(1921), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(1844), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3578), + [sym_array_type] = STATE(1921), + [sym_for_lifetimes] = STATE(1632), + [sym_function_type] = STATE(1921), + [sym_tuple_type] = STATE(1921), + [sym_unit_type] = STATE(1921), + [sym_generic_type] = STATE(1720), + [sym_generic_type_with_turbofish] = STATE(3727), + [sym_bounded_type] = STATE(1921), + [sym_use_bounds] = STATE(3578), + [sym_reference_type] = STATE(1921), + [sym_pointer_type] = STATE(1921), + [sym_never_type] = STATE(1921), + [sym_abstract_type] = STATE(1921), + [sym_dynamic_type] = STATE(1921), + [sym_macro_invocation] = STATE(1921), + [sym_scoped_identifier] = STATE(3446), + [sym_scoped_type_identifier] = STATE(1611), [sym_line_comment] = STATE(941), [sym_block_comment] = STATE(941), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_identifier] = ACTIONS(3244), + [anon_sym_LPAREN] = ACTIONS(3246), + [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_STAR] = ACTIONS(3252), + [anon_sym_QMARK] = ACTIONS(3254), + [anon_sym_u8] = ACTIONS(3256), + [anon_sym_i8] = ACTIONS(3256), + [anon_sym_u16] = ACTIONS(3256), + [anon_sym_i16] = ACTIONS(3256), + [anon_sym_u32] = ACTIONS(3256), + [anon_sym_i32] = ACTIONS(3256), + [anon_sym_u64] = ACTIONS(3256), + [anon_sym_i64] = ACTIONS(3256), + [anon_sym_u128] = ACTIONS(3256), + [anon_sym_i128] = ACTIONS(3256), + [anon_sym_isize] = ACTIONS(3256), + [anon_sym_usize] = ACTIONS(3256), + [anon_sym_f32] = ACTIONS(3256), + [anon_sym_f64] = ACTIONS(3256), + [anon_sym_bool] = ACTIONS(3256), + [anon_sym_str] = ACTIONS(3256), + [anon_sym_char] = ACTIONS(3256), + [anon_sym_BANG] = ACTIONS(3258), + [anon_sym_AMP] = ACTIONS(3260), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3262), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(3264), + [anon_sym_fn] = ACTIONS(3266), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(3268), + [anon_sym_impl] = ACTIONS(3270), + [anon_sym_union] = ACTIONS(3268), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(3272), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(3276), + [sym_super] = ACTIONS(3276), + [sym_crate] = ACTIONS(3276), + [sym_metavariable] = ACTIONS(3278), }, [STATE(942)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2945), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3676), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(1921), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(1943), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3578), + [sym_array_type] = STATE(1921), + [sym_for_lifetimes] = STATE(1632), + [sym_function_type] = STATE(1921), + [sym_tuple_type] = STATE(1921), + [sym_unit_type] = STATE(1921), + [sym_generic_type] = STATE(1720), + [sym_generic_type_with_turbofish] = STATE(3727), + [sym_bounded_type] = STATE(1921), + [sym_use_bounds] = STATE(3578), + [sym_reference_type] = STATE(1921), + [sym_pointer_type] = STATE(1921), + [sym_never_type] = STATE(1921), + [sym_abstract_type] = STATE(1921), + [sym_dynamic_type] = STATE(1921), + [sym_macro_invocation] = STATE(1921), + [sym_scoped_identifier] = STATE(3446), + [sym_scoped_type_identifier] = STATE(1611), [sym_line_comment] = STATE(942), [sym_block_comment] = STATE(942), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_identifier] = ACTIONS(3244), + [anon_sym_LPAREN] = ACTIONS(3246), + [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_STAR] = ACTIONS(3252), + [anon_sym_QMARK] = ACTIONS(3254), + [anon_sym_u8] = ACTIONS(3256), + [anon_sym_i8] = ACTIONS(3256), + [anon_sym_u16] = ACTIONS(3256), + [anon_sym_i16] = ACTIONS(3256), + [anon_sym_u32] = ACTIONS(3256), + [anon_sym_i32] = ACTIONS(3256), + [anon_sym_u64] = ACTIONS(3256), + [anon_sym_i64] = ACTIONS(3256), + [anon_sym_u128] = ACTIONS(3256), + [anon_sym_i128] = ACTIONS(3256), + [anon_sym_isize] = ACTIONS(3256), + [anon_sym_usize] = ACTIONS(3256), + [anon_sym_f32] = ACTIONS(3256), + [anon_sym_f64] = ACTIONS(3256), + [anon_sym_bool] = ACTIONS(3256), + [anon_sym_str] = ACTIONS(3256), + [anon_sym_char] = ACTIONS(3256), + [anon_sym_BANG] = ACTIONS(3258), + [anon_sym_AMP] = ACTIONS(3260), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3262), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(3264), + [anon_sym_fn] = ACTIONS(3266), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(3268), + [anon_sym_impl] = ACTIONS(3270), + [anon_sym_union] = ACTIONS(3268), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(3272), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(3276), + [sym_super] = ACTIONS(3276), + [sym_crate] = ACTIONS(3276), + [sym_metavariable] = ACTIONS(3278), }, [STATE(943)] = { - [sym_function_modifiers] = STATE(3583), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2059), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3531), - [sym_array_type] = STATE(2069), + [sym_function_modifiers] = STATE(3676), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(1921), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(1868), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3578), + [sym_array_type] = STATE(1921), [sym_for_lifetimes] = STATE(1632), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3531), - [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(3461), - [sym_scoped_type_identifier] = STATE(2255), + [sym_function_type] = STATE(1921), + [sym_tuple_type] = STATE(1921), + [sym_unit_type] = STATE(1921), + [sym_generic_type] = STATE(1720), + [sym_generic_type_with_turbofish] = STATE(3727), + [sym_bounded_type] = STATE(1921), + [sym_use_bounds] = STATE(3578), + [sym_reference_type] = STATE(1921), + [sym_pointer_type] = STATE(1921), + [sym_never_type] = STATE(1921), + [sym_abstract_type] = STATE(1921), + [sym_dynamic_type] = STATE(1921), + [sym_macro_invocation] = STATE(1921), + [sym_scoped_identifier] = STATE(3446), + [sym_scoped_type_identifier] = STATE(1611), [sym_line_comment] = STATE(943), [sym_block_comment] = STATE(943), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3208), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_QMARK] = ACTIONS(1621), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(1625), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1635), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1639), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1641), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_identifier] = ACTIONS(3244), + [anon_sym_LPAREN] = ACTIONS(3246), + [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_STAR] = ACTIONS(3252), + [anon_sym_QMARK] = ACTIONS(3254), + [anon_sym_u8] = ACTIONS(3256), + [anon_sym_i8] = ACTIONS(3256), + [anon_sym_u16] = ACTIONS(3256), + [anon_sym_i16] = ACTIONS(3256), + [anon_sym_u32] = ACTIONS(3256), + [anon_sym_i32] = ACTIONS(3256), + [anon_sym_u64] = ACTIONS(3256), + [anon_sym_i64] = ACTIONS(3256), + [anon_sym_u128] = ACTIONS(3256), + [anon_sym_i128] = ACTIONS(3256), + [anon_sym_isize] = ACTIONS(3256), + [anon_sym_usize] = ACTIONS(3256), + [anon_sym_f32] = ACTIONS(3256), + [anon_sym_f64] = ACTIONS(3256), + [anon_sym_bool] = ACTIONS(3256), + [anon_sym_str] = ACTIONS(3256), + [anon_sym_char] = ACTIONS(3256), + [anon_sym_BANG] = ACTIONS(3258), + [anon_sym_AMP] = ACTIONS(3260), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3262), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(3264), + [anon_sym_fn] = ACTIONS(3266), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(3268), + [anon_sym_impl] = ACTIONS(3270), + [anon_sym_union] = ACTIONS(3268), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(3272), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(3276), + [sym_super] = ACTIONS(3276), + [sym_crate] = ACTIONS(3276), + [sym_metavariable] = ACTIONS(3278), }, [STATE(944)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(3063), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3676), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(1921), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(1887), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3578), + [sym_array_type] = STATE(1921), + [sym_for_lifetimes] = STATE(1632), + [sym_function_type] = STATE(1921), + [sym_tuple_type] = STATE(1921), + [sym_unit_type] = STATE(1921), + [sym_generic_type] = STATE(1720), + [sym_generic_type_with_turbofish] = STATE(3727), + [sym_bounded_type] = STATE(1921), + [sym_use_bounds] = STATE(3578), + [sym_reference_type] = STATE(1921), + [sym_pointer_type] = STATE(1921), + [sym_never_type] = STATE(1921), + [sym_abstract_type] = STATE(1921), + [sym_dynamic_type] = STATE(1921), + [sym_macro_invocation] = STATE(1921), + [sym_scoped_identifier] = STATE(3446), + [sym_scoped_type_identifier] = STATE(1611), [sym_line_comment] = STATE(944), [sym_block_comment] = STATE(944), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_identifier] = ACTIONS(3244), + [anon_sym_LPAREN] = ACTIONS(3246), + [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_STAR] = ACTIONS(3252), + [anon_sym_QMARK] = ACTIONS(3254), + [anon_sym_u8] = ACTIONS(3256), + [anon_sym_i8] = ACTIONS(3256), + [anon_sym_u16] = ACTIONS(3256), + [anon_sym_i16] = ACTIONS(3256), + [anon_sym_u32] = ACTIONS(3256), + [anon_sym_i32] = ACTIONS(3256), + [anon_sym_u64] = ACTIONS(3256), + [anon_sym_i64] = ACTIONS(3256), + [anon_sym_u128] = ACTIONS(3256), + [anon_sym_i128] = ACTIONS(3256), + [anon_sym_isize] = ACTIONS(3256), + [anon_sym_usize] = ACTIONS(3256), + [anon_sym_f32] = ACTIONS(3256), + [anon_sym_f64] = ACTIONS(3256), + [anon_sym_bool] = ACTIONS(3256), + [anon_sym_str] = ACTIONS(3256), + [anon_sym_char] = ACTIONS(3256), + [anon_sym_BANG] = ACTIONS(3258), + [anon_sym_AMP] = ACTIONS(3260), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3262), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(3264), + [anon_sym_fn] = ACTIONS(3266), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(3268), + [anon_sym_impl] = ACTIONS(3270), + [anon_sym_union] = ACTIONS(3268), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(3272), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(3276), + [sym_super] = ACTIONS(3276), + [sym_crate] = ACTIONS(3276), + [sym_metavariable] = ACTIONS(3278), }, [STATE(945)] = { - [sym_function_modifiers] = STATE(3583), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2077), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3531), - [sym_array_type] = STATE(2069), + [sym_function_modifiers] = STATE(3676), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(1921), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(1925), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3578), + [sym_array_type] = STATE(1921), [sym_for_lifetimes] = STATE(1632), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3531), - [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(3461), - [sym_scoped_type_identifier] = STATE(2255), + [sym_function_type] = STATE(1921), + [sym_tuple_type] = STATE(1921), + [sym_unit_type] = STATE(1921), + [sym_generic_type] = STATE(1720), + [sym_generic_type_with_turbofish] = STATE(3727), + [sym_bounded_type] = STATE(1921), + [sym_use_bounds] = STATE(3578), + [sym_reference_type] = STATE(1921), + [sym_pointer_type] = STATE(1921), + [sym_never_type] = STATE(1921), + [sym_abstract_type] = STATE(1921), + [sym_dynamic_type] = STATE(1921), + [sym_macro_invocation] = STATE(1921), + [sym_scoped_identifier] = STATE(3446), + [sym_scoped_type_identifier] = STATE(1611), [sym_line_comment] = STATE(945), [sym_block_comment] = STATE(945), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3208), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_QMARK] = ACTIONS(1621), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(1625), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1635), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1639), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1641), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_identifier] = ACTIONS(3244), + [anon_sym_LPAREN] = ACTIONS(3246), + [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_STAR] = ACTIONS(3252), + [anon_sym_QMARK] = ACTIONS(3254), + [anon_sym_u8] = ACTIONS(3256), + [anon_sym_i8] = ACTIONS(3256), + [anon_sym_u16] = ACTIONS(3256), + [anon_sym_i16] = ACTIONS(3256), + [anon_sym_u32] = ACTIONS(3256), + [anon_sym_i32] = ACTIONS(3256), + [anon_sym_u64] = ACTIONS(3256), + [anon_sym_i64] = ACTIONS(3256), + [anon_sym_u128] = ACTIONS(3256), + [anon_sym_i128] = ACTIONS(3256), + [anon_sym_isize] = ACTIONS(3256), + [anon_sym_usize] = ACTIONS(3256), + [anon_sym_f32] = ACTIONS(3256), + [anon_sym_f64] = ACTIONS(3256), + [anon_sym_bool] = ACTIONS(3256), + [anon_sym_str] = ACTIONS(3256), + [anon_sym_char] = ACTIONS(3256), + [anon_sym_BANG] = ACTIONS(3258), + [anon_sym_AMP] = ACTIONS(3260), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3262), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(3264), + [anon_sym_fn] = ACTIONS(3266), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(3268), + [anon_sym_impl] = ACTIONS(3270), + [anon_sym_union] = ACTIONS(3268), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(3272), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(3276), + [sym_super] = ACTIONS(3276), + [sym_crate] = ACTIONS(3276), + [sym_metavariable] = ACTIONS(3278), }, [STATE(946)] = { - [sym_function_modifiers] = STATE(3583), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2078), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3531), - [sym_array_type] = STATE(2069), + [sym_function_modifiers] = STATE(3676), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(1921), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(1927), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3578), + [sym_array_type] = STATE(1921), [sym_for_lifetimes] = STATE(1632), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3531), - [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(3461), - [sym_scoped_type_identifier] = STATE(2255), + [sym_function_type] = STATE(1921), + [sym_tuple_type] = STATE(1921), + [sym_unit_type] = STATE(1921), + [sym_generic_type] = STATE(1720), + [sym_generic_type_with_turbofish] = STATE(3727), + [sym_bounded_type] = STATE(1921), + [sym_use_bounds] = STATE(3578), + [sym_reference_type] = STATE(1921), + [sym_pointer_type] = STATE(1921), + [sym_never_type] = STATE(1921), + [sym_abstract_type] = STATE(1921), + [sym_dynamic_type] = STATE(1921), + [sym_macro_invocation] = STATE(1921), + [sym_scoped_identifier] = STATE(3446), + [sym_scoped_type_identifier] = STATE(1611), [sym_line_comment] = STATE(946), [sym_block_comment] = STATE(946), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3208), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_QMARK] = ACTIONS(1621), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(1625), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1635), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1639), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1641), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_identifier] = ACTIONS(3244), + [anon_sym_LPAREN] = ACTIONS(3246), + [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_STAR] = ACTIONS(3252), + [anon_sym_QMARK] = ACTIONS(3254), + [anon_sym_u8] = ACTIONS(3256), + [anon_sym_i8] = ACTIONS(3256), + [anon_sym_u16] = ACTIONS(3256), + [anon_sym_i16] = ACTIONS(3256), + [anon_sym_u32] = ACTIONS(3256), + [anon_sym_i32] = ACTIONS(3256), + [anon_sym_u64] = ACTIONS(3256), + [anon_sym_i64] = ACTIONS(3256), + [anon_sym_u128] = ACTIONS(3256), + [anon_sym_i128] = ACTIONS(3256), + [anon_sym_isize] = ACTIONS(3256), + [anon_sym_usize] = ACTIONS(3256), + [anon_sym_f32] = ACTIONS(3256), + [anon_sym_f64] = ACTIONS(3256), + [anon_sym_bool] = ACTIONS(3256), + [anon_sym_str] = ACTIONS(3256), + [anon_sym_char] = ACTIONS(3256), + [anon_sym_BANG] = ACTIONS(3258), + [anon_sym_AMP] = ACTIONS(3260), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3262), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(3264), + [anon_sym_fn] = ACTIONS(3266), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(3268), + [anon_sym_impl] = ACTIONS(3270), + [anon_sym_union] = ACTIONS(3268), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(3272), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(3276), + [sym_super] = ACTIONS(3276), + [sym_crate] = ACTIONS(3276), + [sym_metavariable] = ACTIONS(3278), }, [STATE(947)] = { - [sym_function_modifiers] = STATE(3583), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2079), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3531), - [sym_array_type] = STATE(2069), + [sym_function_modifiers] = STATE(3676), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(1921), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(1928), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3578), + [sym_array_type] = STATE(1921), [sym_for_lifetimes] = STATE(1632), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3531), - [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(3461), - [sym_scoped_type_identifier] = STATE(2255), + [sym_function_type] = STATE(1921), + [sym_tuple_type] = STATE(1921), + [sym_unit_type] = STATE(1921), + [sym_generic_type] = STATE(1720), + [sym_generic_type_with_turbofish] = STATE(3727), + [sym_bounded_type] = STATE(1921), + [sym_use_bounds] = STATE(3578), + [sym_reference_type] = STATE(1921), + [sym_pointer_type] = STATE(1921), + [sym_never_type] = STATE(1921), + [sym_abstract_type] = STATE(1921), + [sym_dynamic_type] = STATE(1921), + [sym_macro_invocation] = STATE(1921), + [sym_scoped_identifier] = STATE(3446), + [sym_scoped_type_identifier] = STATE(1611), [sym_line_comment] = STATE(947), [sym_block_comment] = STATE(947), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3208), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_QMARK] = ACTIONS(1621), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(1625), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1635), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1639), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1641), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_identifier] = ACTIONS(3244), + [anon_sym_LPAREN] = ACTIONS(3246), + [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_STAR] = ACTIONS(3252), + [anon_sym_QMARK] = ACTIONS(3254), + [anon_sym_u8] = ACTIONS(3256), + [anon_sym_i8] = ACTIONS(3256), + [anon_sym_u16] = ACTIONS(3256), + [anon_sym_i16] = ACTIONS(3256), + [anon_sym_u32] = ACTIONS(3256), + [anon_sym_i32] = ACTIONS(3256), + [anon_sym_u64] = ACTIONS(3256), + [anon_sym_i64] = ACTIONS(3256), + [anon_sym_u128] = ACTIONS(3256), + [anon_sym_i128] = ACTIONS(3256), + [anon_sym_isize] = ACTIONS(3256), + [anon_sym_usize] = ACTIONS(3256), + [anon_sym_f32] = ACTIONS(3256), + [anon_sym_f64] = ACTIONS(3256), + [anon_sym_bool] = ACTIONS(3256), + [anon_sym_str] = ACTIONS(3256), + [anon_sym_char] = ACTIONS(3256), + [anon_sym_BANG] = ACTIONS(3258), + [anon_sym_AMP] = ACTIONS(3260), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3262), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(3264), + [anon_sym_fn] = ACTIONS(3266), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(3268), + [anon_sym_impl] = ACTIONS(3270), + [anon_sym_union] = ACTIONS(3268), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(3272), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(3276), + [sym_super] = ACTIONS(3276), + [sym_crate] = ACTIONS(3276), + [sym_metavariable] = ACTIONS(3278), }, [STATE(948)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2881), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(2347), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(3823), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2044), [sym_line_comment] = STATE(948), [sym_block_comment] = STATE(948), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_identifier] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(3106), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1108), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), }, [STATE(949)] = { - [sym_function_modifiers] = STATE(3583), - [sym_removed_trait_bound] = STATE(2072), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(3531), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3531), - [sym_array_type] = STATE(2069), + [sym_function_modifiers] = STATE(3676), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(1921), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(1938), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3578), + [sym_array_type] = STATE(1921), [sym_for_lifetimes] = STATE(1632), - [sym_function_type] = STATE(2072), - [sym_tuple_type] = STATE(2072), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2032), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2072), - [sym_use_bounds] = STATE(3531), - [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(3461), - [sym_scoped_type_identifier] = STATE(2258), + [sym_function_type] = STATE(1921), + [sym_tuple_type] = STATE(1921), + [sym_unit_type] = STATE(1921), + [sym_generic_type] = STATE(1720), + [sym_generic_type_with_turbofish] = STATE(3727), + [sym_bounded_type] = STATE(1921), + [sym_use_bounds] = STATE(3578), + [sym_reference_type] = STATE(1921), + [sym_pointer_type] = STATE(1921), + [sym_never_type] = STATE(1921), + [sym_abstract_type] = STATE(1921), + [sym_dynamic_type] = STATE(1921), + [sym_macro_invocation] = STATE(1921), + [sym_scoped_identifier] = STATE(3446), + [sym_scoped_type_identifier] = STATE(1611), [sym_line_comment] = STATE(949), [sym_block_comment] = STATE(949), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3320), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1621), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1635), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_identifier] = ACTIONS(3244), + [anon_sym_LPAREN] = ACTIONS(3246), + [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_STAR] = ACTIONS(3252), + [anon_sym_QMARK] = ACTIONS(3254), + [anon_sym_u8] = ACTIONS(3256), + [anon_sym_i8] = ACTIONS(3256), + [anon_sym_u16] = ACTIONS(3256), + [anon_sym_i16] = ACTIONS(3256), + [anon_sym_u32] = ACTIONS(3256), + [anon_sym_i32] = ACTIONS(3256), + [anon_sym_u64] = ACTIONS(3256), + [anon_sym_i64] = ACTIONS(3256), + [anon_sym_u128] = ACTIONS(3256), + [anon_sym_i128] = ACTIONS(3256), + [anon_sym_isize] = ACTIONS(3256), + [anon_sym_usize] = ACTIONS(3256), + [anon_sym_f32] = ACTIONS(3256), + [anon_sym_f64] = ACTIONS(3256), + [anon_sym_bool] = ACTIONS(3256), + [anon_sym_str] = ACTIONS(3256), + [anon_sym_char] = ACTIONS(3256), + [anon_sym_BANG] = ACTIONS(3258), + [anon_sym_AMP] = ACTIONS(3260), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3262), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(3264), + [anon_sym_fn] = ACTIONS(3266), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(3268), + [anon_sym_impl] = ACTIONS(3270), + [anon_sym_union] = ACTIONS(3268), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(3272), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(3276), + [sym_super] = ACTIONS(3276), + [sym_crate] = ACTIONS(3276), + [sym_metavariable] = ACTIONS(3278), }, [STATE(950)] = { - [sym_function_modifiers] = STATE(3583), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2085), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3531), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1632), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3531), - [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(3461), - [sym_scoped_type_identifier] = STATE(2255), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(2672), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(3823), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2044), [sym_line_comment] = STATE(950), [sym_block_comment] = STATE(950), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3208), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_QMARK] = ACTIONS(1621), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(1625), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1635), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1639), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1641), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_identifier] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(3106), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1108), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), }, [STATE(951)] = { - [sym_function_modifiers] = STATE(3583), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2086), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3531), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1632), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3531), - [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(3461), - [sym_scoped_type_identifier] = STATE(2255), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(2674), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(3823), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2044), [sym_line_comment] = STATE(951), [sym_block_comment] = STATE(951), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3208), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_QMARK] = ACTIONS(1621), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(1625), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1635), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1639), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1641), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_identifier] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(3106), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1108), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), }, [STATE(952)] = { - [sym_function_modifiers] = STATE(3583), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2087), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3531), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1632), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3531), - [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(3461), - [sym_scoped_type_identifier] = STATE(2255), + [sym_function_modifiers] = STATE(3576), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(2780), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(3771), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3771), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2285), [sym_line_comment] = STATE(952), [sym_block_comment] = STATE(952), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3208), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_QMARK] = ACTIONS(1621), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(1625), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1635), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1639), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1641), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_identifier] = ACTIONS(3190), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1624), + [anon_sym_QMARK] = ACTIONS(1626), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1630), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1640), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1644), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1646), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), }, [STATE(953)] = { - [sym_function_modifiers] = STATE(3772), - [sym_removed_trait_bound] = STATE(1456), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(1505), - [sym_bracketed_type] = STATE(3685), - [sym_lifetime] = STATE(3522), - [sym_array_type] = STATE(1456), - [sym_for_lifetimes] = STATE(1647), - [sym_function_type] = STATE(1456), - [sym_tuple_type] = STATE(1456), - [sym_unit_type] = STATE(1456), - [sym_generic_type] = STATE(1265), - [sym_generic_type_with_turbofish] = STATE(3673), - [sym_bounded_type] = STATE(1456), - [sym_use_bounds] = STATE(3522), - [sym_reference_type] = STATE(1456), - [sym_pointer_type] = STATE(1456), - [sym_never_type] = STATE(1456), - [sym_abstract_type] = STATE(1456), - [sym_dynamic_type] = STATE(1456), - [sym_macro_invocation] = STATE(1456), - [sym_scoped_identifier] = STATE(3339), - [sym_scoped_type_identifier] = STATE(1084), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(3009), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(3823), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2044), [sym_line_comment] = STATE(953), [sym_block_comment] = STATE(953), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [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(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(3192), - [anon_sym_fn] = ACTIONS(3194), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(3196), - [anon_sym_impl] = ACTIONS(3198), - [anon_sym_union] = ACTIONS(3196), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(3200), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3204), - [sym_super] = ACTIONS(3204), - [sym_crate] = ACTIONS(3204), - [sym_metavariable] = ACTIONS(3206), + [sym_identifier] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(3106), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1108), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), }, [STATE(954)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2443), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(2072), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(3823), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2044), [sym_line_comment] = STATE(954), [sym_block_comment] = STATE(954), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_identifier] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(3106), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1108), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(3352), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), }, [STATE(955)] = { - [sym_function_modifiers] = STATE(3772), - [sym_removed_trait_bound] = STATE(1515), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(3522), - [sym_bracketed_type] = STATE(3685), - [sym_lifetime] = STATE(3522), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1647), - [sym_function_type] = STATE(1515), - [sym_tuple_type] = STATE(1515), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(1296), - [sym_generic_type_with_turbofish] = STATE(3673), - [sym_bounded_type] = STATE(1515), - [sym_use_bounds] = STATE(3522), - [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(3420), - [sym_scoped_type_identifier] = STATE(1091), + [sym_function_modifiers] = STATE(3576), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(2090), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(3771), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3771), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2285), [sym_line_comment] = STATE(955), [sym_block_comment] = STATE(955), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3322), - [anon_sym_LPAREN] = ACTIONS(3324), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(3182), - [anon_sym_u8] = ACTIONS(3326), - [anon_sym_i8] = ACTIONS(3326), - [anon_sym_u16] = ACTIONS(3326), - [anon_sym_i16] = ACTIONS(3326), - [anon_sym_u32] = ACTIONS(3326), - [anon_sym_i32] = ACTIONS(3326), - [anon_sym_u64] = ACTIONS(3326), - [anon_sym_i64] = ACTIONS(3326), - [anon_sym_u128] = ACTIONS(3326), - [anon_sym_i128] = ACTIONS(3326), - [anon_sym_isize] = ACTIONS(3326), - [anon_sym_usize] = ACTIONS(3326), - [anon_sym_f32] = ACTIONS(3326), - [anon_sym_f64] = ACTIONS(3326), - [anon_sym_bool] = ACTIONS(3326), - [anon_sym_str] = ACTIONS(3326), - [anon_sym_char] = ACTIONS(3326), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3190), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(3328), - [anon_sym_fn] = ACTIONS(3194), - [anon_sym_for] = ACTIONS(3330), - [anon_sym_gen] = ACTIONS(3332), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(3332), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3204), - [sym_super] = ACTIONS(3204), - [sym_crate] = ACTIONS(3204), - [sym_metavariable] = ACTIONS(3334), + [sym_identifier] = ACTIONS(3190), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1624), + [anon_sym_QMARK] = ACTIONS(1626), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1630), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1640), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1644), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1646), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), }, [STATE(956)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2463), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3822), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(1458), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(1511), + [sym_bracketed_type] = STATE(3719), + [sym_lifetime] = STATE(3837), + [sym_array_type] = STATE(1458), + [sym_for_lifetimes] = STATE(1623), + [sym_function_type] = STATE(1458), + [sym_tuple_type] = STATE(1458), + [sym_unit_type] = STATE(1458), + [sym_generic_type] = STATE(1416), + [sym_generic_type_with_turbofish] = STATE(3708), + [sym_bounded_type] = STATE(1458), + [sym_use_bounds] = STATE(3837), + [sym_reference_type] = STATE(1458), + [sym_pointer_type] = STATE(1458), + [sym_never_type] = STATE(1458), + [sym_abstract_type] = STATE(1458), + [sym_dynamic_type] = STATE(1458), + [sym_macro_invocation] = STATE(1458), + [sym_scoped_identifier] = STATE(3321), + [sym_scoped_type_identifier] = STATE(1113), [sym_line_comment] = STATE(956), [sym_block_comment] = STATE(956), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_identifier] = ACTIONS(3204), + [anon_sym_LPAREN] = ACTIONS(3206), + [anon_sym_LBRACK] = ACTIONS(3208), + [anon_sym_STAR] = ACTIONS(3212), + [anon_sym_QMARK] = ACTIONS(3214), + [anon_sym_u8] = ACTIONS(3216), + [anon_sym_i8] = ACTIONS(3216), + [anon_sym_u16] = ACTIONS(3216), + [anon_sym_i16] = ACTIONS(3216), + [anon_sym_u32] = ACTIONS(3216), + [anon_sym_i32] = ACTIONS(3216), + [anon_sym_u64] = ACTIONS(3216), + [anon_sym_i64] = ACTIONS(3216), + [anon_sym_u128] = ACTIONS(3216), + [anon_sym_i128] = ACTIONS(3216), + [anon_sym_isize] = ACTIONS(3216), + [anon_sym_usize] = ACTIONS(3216), + [anon_sym_f32] = ACTIONS(3216), + [anon_sym_f64] = ACTIONS(3216), + [anon_sym_bool] = ACTIONS(3216), + [anon_sym_str] = ACTIONS(3216), + [anon_sym_char] = ACTIONS(3216), + [anon_sym_BANG] = ACTIONS(3218), + [anon_sym_AMP] = ACTIONS(3220), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3222), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(3224), + [anon_sym_fn] = ACTIONS(3226), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(3228), + [anon_sym_impl] = ACTIONS(3230), + [anon_sym_union] = ACTIONS(3228), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(3232), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(3236), + [sym_super] = ACTIONS(3236), + [sym_crate] = ACTIONS(3236), + [sym_metavariable] = ACTIONS(3238), }, [STATE(957)] = { - [sym_function_modifiers] = STATE(3641), - [sym_removed_trait_bound] = STATE(1745), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(1872), - [sym_bracketed_type] = STATE(3701), - [sym_lifetime] = STATE(3813), - [sym_array_type] = STATE(1745), - [sym_for_lifetimes] = STATE(1625), - [sym_function_type] = STATE(1745), - [sym_tuple_type] = STATE(1745), - [sym_unit_type] = STATE(1745), - [sym_generic_type] = STATE(1692), - [sym_generic_type_with_turbofish] = STATE(3692), - [sym_bounded_type] = STATE(1745), - [sym_use_bounds] = STATE(3813), - [sym_reference_type] = STATE(1745), - [sym_pointer_type] = STATE(1745), - [sym_never_type] = STATE(1745), - [sym_abstract_type] = STATE(1745), - [sym_dynamic_type] = STATE(1745), - [sym_macro_invocation] = STATE(1745), - [sym_scoped_identifier] = STATE(3433), - [sym_scoped_type_identifier] = STATE(1614), + [sym_function_modifiers] = STATE(3822), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(1517), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(3837), + [sym_bracketed_type] = STATE(3719), + [sym_lifetime] = STATE(3837), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1623), + [sym_function_type] = STATE(1517), + [sym_tuple_type] = STATE(1517), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(1440), + [sym_generic_type_with_turbofish] = STATE(3708), + [sym_bounded_type] = STATE(1517), + [sym_use_bounds] = STATE(3837), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3429), + [sym_scoped_type_identifier] = STATE(1107), [sym_line_comment] = STATE(957), [sym_block_comment] = STATE(957), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3214), - [anon_sym_LPAREN] = ACTIONS(3216), - [anon_sym_LBRACK] = ACTIONS(3218), - [anon_sym_STAR] = ACTIONS(3222), - [anon_sym_QMARK] = ACTIONS(3224), - [anon_sym_u8] = ACTIONS(3226), - [anon_sym_i8] = ACTIONS(3226), - [anon_sym_u16] = ACTIONS(3226), - [anon_sym_i16] = ACTIONS(3226), - [anon_sym_u32] = ACTIONS(3226), - [anon_sym_i32] = ACTIONS(3226), - [anon_sym_u64] = ACTIONS(3226), - [anon_sym_i64] = ACTIONS(3226), - [anon_sym_u128] = ACTIONS(3226), - [anon_sym_i128] = ACTIONS(3226), - [anon_sym_isize] = ACTIONS(3226), - [anon_sym_usize] = ACTIONS(3226), - [anon_sym_f32] = ACTIONS(3226), - [anon_sym_f64] = ACTIONS(3226), - [anon_sym_bool] = ACTIONS(3226), - [anon_sym_str] = ACTIONS(3226), - [anon_sym_char] = ACTIONS(3226), - [anon_sym_BANG] = ACTIONS(3228), - [anon_sym_AMP] = ACTIONS(3230), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3232), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(3234), - [anon_sym_fn] = ACTIONS(3236), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(3238), - [anon_sym_impl] = ACTIONS(3240), - [anon_sym_union] = ACTIONS(3238), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(3242), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3246), - [sym_super] = ACTIONS(3246), - [sym_crate] = ACTIONS(3246), - [sym_metavariable] = ACTIONS(3248), + [sym_identifier] = ACTIONS(3354), + [anon_sym_LPAREN] = ACTIONS(3356), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(3214), + [anon_sym_u8] = ACTIONS(3358), + [anon_sym_i8] = ACTIONS(3358), + [anon_sym_u16] = ACTIONS(3358), + [anon_sym_i16] = ACTIONS(3358), + [anon_sym_u32] = ACTIONS(3358), + [anon_sym_i32] = ACTIONS(3358), + [anon_sym_u64] = ACTIONS(3358), + [anon_sym_i64] = ACTIONS(3358), + [anon_sym_u128] = ACTIONS(3358), + [anon_sym_i128] = ACTIONS(3358), + [anon_sym_isize] = ACTIONS(3358), + [anon_sym_usize] = ACTIONS(3358), + [anon_sym_f32] = ACTIONS(3358), + [anon_sym_f64] = ACTIONS(3358), + [anon_sym_bool] = ACTIONS(3358), + [anon_sym_str] = ACTIONS(3358), + [anon_sym_char] = ACTIONS(3358), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(3106), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3222), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(3360), + [anon_sym_fn] = ACTIONS(3226), + [anon_sym_for] = ACTIONS(3362), + [anon_sym_gen] = ACTIONS(3364), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(3364), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1108), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(3236), + [sym_super] = ACTIONS(3236), + [sym_crate] = ACTIONS(3236), + [sym_metavariable] = ACTIONS(3366), }, [STATE(958)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2520), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3676), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(1921), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(1902), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3578), + [sym_array_type] = STATE(1921), + [sym_for_lifetimes] = STATE(1632), + [sym_function_type] = STATE(1921), + [sym_tuple_type] = STATE(1921), + [sym_unit_type] = STATE(1921), + [sym_generic_type] = STATE(1720), + [sym_generic_type_with_turbofish] = STATE(3727), + [sym_bounded_type] = STATE(1921), + [sym_use_bounds] = STATE(3578), + [sym_reference_type] = STATE(1921), + [sym_pointer_type] = STATE(1921), + [sym_never_type] = STATE(1921), + [sym_abstract_type] = STATE(1921), + [sym_dynamic_type] = STATE(1921), + [sym_macro_invocation] = STATE(1921), + [sym_scoped_identifier] = STATE(3446), + [sym_scoped_type_identifier] = STATE(1611), [sym_line_comment] = STATE(958), [sym_block_comment] = STATE(958), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_identifier] = ACTIONS(3244), + [anon_sym_LPAREN] = ACTIONS(3246), + [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_STAR] = ACTIONS(3252), + [anon_sym_QMARK] = ACTIONS(3254), + [anon_sym_u8] = ACTIONS(3256), + [anon_sym_i8] = ACTIONS(3256), + [anon_sym_u16] = ACTIONS(3256), + [anon_sym_i16] = ACTIONS(3256), + [anon_sym_u32] = ACTIONS(3256), + [anon_sym_i32] = ACTIONS(3256), + [anon_sym_u64] = ACTIONS(3256), + [anon_sym_i64] = ACTIONS(3256), + [anon_sym_u128] = ACTIONS(3256), + [anon_sym_i128] = ACTIONS(3256), + [anon_sym_isize] = ACTIONS(3256), + [anon_sym_usize] = ACTIONS(3256), + [anon_sym_f32] = ACTIONS(3256), + [anon_sym_f64] = ACTIONS(3256), + [anon_sym_bool] = ACTIONS(3256), + [anon_sym_str] = ACTIONS(3256), + [anon_sym_char] = ACTIONS(3256), + [anon_sym_BANG] = ACTIONS(3258), + [anon_sym_AMP] = ACTIONS(3260), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3262), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(3264), + [anon_sym_fn] = ACTIONS(3266), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(3268), + [anon_sym_impl] = ACTIONS(3270), + [anon_sym_union] = ACTIONS(3268), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(3272), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(3276), + [sym_super] = ACTIONS(3276), + [sym_crate] = ACTIONS(3276), + [sym_metavariable] = ACTIONS(3278), }, [STATE(959)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2446), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2467), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(3461), - [sym_scoped_type_identifier] = STATE(2282), + [sym_function_modifiers] = STATE(3576), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(3354), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(3771), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3771), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2285), [sym_line_comment] = STATE(959), [sym_block_comment] = STATE(959), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3336), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(3338), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_identifier] = ACTIONS(3190), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1624), + [anon_sym_QMARK] = ACTIONS(1626), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1630), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1640), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1644), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1646), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), }, [STATE(960)] = { - [sym_function_modifiers] = STATE(3583), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(3359), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3531), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1632), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3531), - [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(3461), - [sym_scoped_type_identifier] = STATE(2255), + [sym_function_modifiers] = STATE(3576), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(3358), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(3771), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3771), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2285), [sym_line_comment] = STATE(960), [sym_block_comment] = STATE(960), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3208), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_QMARK] = ACTIONS(1621), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(1625), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1635), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1639), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1641), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_identifier] = ACTIONS(3190), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1624), + [anon_sym_QMARK] = ACTIONS(1626), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1630), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1640), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1644), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1646), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), }, [STATE(961)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2779), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(2675), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(3823), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2044), [sym_line_comment] = STATE(961), [sym_block_comment] = STATE(961), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_identifier] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(3106), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1108), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), }, [STATE(962)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2091), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(2091), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(2091), - [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(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(2073), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(2073), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(2073), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2044), [sym_line_comment] = STATE(962), [sym_block_comment] = STATE(962), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_identifier] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(3106), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1108), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), }, [STATE(963)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2305), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(2900), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(3823), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2044), [sym_line_comment] = STATE(963), [sym_block_comment] = STATE(963), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_identifier] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(3106), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1108), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), }, [STATE(964)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2309), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3576), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(3417), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(3771), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3771), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2285), [sym_line_comment] = STATE(964), [sym_block_comment] = STATE(964), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_identifier] = ACTIONS(3190), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1624), + [anon_sym_QMARK] = ACTIONS(1626), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1630), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1640), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1644), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1646), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), }, [STATE(965)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2756), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3822), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(1530), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(3837), + [sym_bracketed_type] = STATE(3719), + [sym_lifetime] = STATE(3837), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1623), + [sym_function_type] = STATE(1530), + [sym_tuple_type] = STATE(1530), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(1437), + [sym_generic_type_with_turbofish] = STATE(3708), + [sym_bounded_type] = STATE(1530), + [sym_use_bounds] = STATE(3837), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3429), + [sym_scoped_type_identifier] = STATE(1106), [sym_line_comment] = STATE(965), [sym_block_comment] = STATE(965), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_identifier] = ACTIONS(3368), + [anon_sym_LPAREN] = ACTIONS(3356), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(3214), + [anon_sym_u8] = ACTIONS(3358), + [anon_sym_i8] = ACTIONS(3358), + [anon_sym_u16] = ACTIONS(3358), + [anon_sym_i16] = ACTIONS(3358), + [anon_sym_u32] = ACTIONS(3358), + [anon_sym_i32] = ACTIONS(3358), + [anon_sym_u64] = ACTIONS(3358), + [anon_sym_i64] = ACTIONS(3358), + [anon_sym_u128] = ACTIONS(3358), + [anon_sym_i128] = ACTIONS(3358), + [anon_sym_isize] = ACTIONS(3358), + [anon_sym_usize] = ACTIONS(3358), + [anon_sym_f32] = ACTIONS(3358), + [anon_sym_f64] = ACTIONS(3358), + [anon_sym_bool] = ACTIONS(3358), + [anon_sym_str] = ACTIONS(3358), + [anon_sym_char] = ACTIONS(3358), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(3106), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3222), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(3360), + [anon_sym_fn] = ACTIONS(3226), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(3364), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(3364), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1108), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(3236), + [sym_super] = ACTIONS(3236), + [sym_crate] = ACTIONS(3236), + [sym_metavariable] = ACTIONS(3366), }, [STATE(966)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2981), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3576), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(3308), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(3771), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3771), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2285), [sym_line_comment] = STATE(966), [sym_block_comment] = STATE(966), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_identifier] = ACTIONS(3190), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1624), + [anon_sym_QMARK] = ACTIONS(1626), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1630), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1640), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1644), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1646), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), }, [STATE(967)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2910), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(3080), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(3823), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2044), [sym_line_comment] = STATE(967), [sym_block_comment] = STATE(967), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_identifier] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(3106), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1108), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), }, [STATE(968)] = { - [sym_function_modifiers] = STATE(3583), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(3202), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3531), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1632), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3531), - [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(3461), - [sym_scoped_type_identifier] = STATE(2255), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(3122), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(3823), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2044), [sym_line_comment] = STATE(968), [sym_block_comment] = STATE(968), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3208), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_QMARK] = ACTIONS(1621), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(1625), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1635), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1639), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1641), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_identifier] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(3106), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1108), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), }, [STATE(969)] = { - [sym_function_modifiers] = STATE(3772), - [sym_removed_trait_bound] = STATE(1511), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(3522), - [sym_bracketed_type] = STATE(3685), - [sym_lifetime] = STATE(3522), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1647), - [sym_function_type] = STATE(1511), - [sym_tuple_type] = STATE(1511), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(1150), - [sym_generic_type_with_turbofish] = STATE(3673), - [sym_bounded_type] = STATE(1511), - [sym_use_bounds] = STATE(3522), - [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(3420), - [sym_scoped_type_identifier] = STATE(1089), + [sym_function_modifiers] = STATE(3576), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(2072), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(3771), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3771), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2285), [sym_line_comment] = STATE(969), [sym_block_comment] = STATE(969), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3340), - [anon_sym_LPAREN] = ACTIONS(3324), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(3182), - [anon_sym_u8] = ACTIONS(3326), - [anon_sym_i8] = ACTIONS(3326), - [anon_sym_u16] = ACTIONS(3326), - [anon_sym_i16] = ACTIONS(3326), - [anon_sym_u32] = ACTIONS(3326), - [anon_sym_i32] = ACTIONS(3326), - [anon_sym_u64] = ACTIONS(3326), - [anon_sym_i64] = ACTIONS(3326), - [anon_sym_u128] = ACTIONS(3326), - [anon_sym_i128] = ACTIONS(3326), - [anon_sym_isize] = ACTIONS(3326), - [anon_sym_usize] = ACTIONS(3326), - [anon_sym_f32] = ACTIONS(3326), - [anon_sym_f64] = ACTIONS(3326), - [anon_sym_bool] = ACTIONS(3326), - [anon_sym_str] = ACTIONS(3326), - [anon_sym_char] = ACTIONS(3326), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3190), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(3328), - [anon_sym_fn] = ACTIONS(3194), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(3332), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(3332), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3204), - [sym_super] = ACTIONS(3204), - [sym_crate] = ACTIONS(3204), - [sym_metavariable] = ACTIONS(3334), + [sym_identifier] = ACTIONS(3190), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1624), + [anon_sym_QMARK] = ACTIONS(1626), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1630), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1640), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1644), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1646), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), }, [STATE(970)] = { - [sym_function_modifiers] = STATE(3583), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(3405), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3531), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1632), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3531), - [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(3461), - [sym_scoped_type_identifier] = STATE(2255), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(2438), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(3823), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2044), [sym_line_comment] = STATE(970), [sym_block_comment] = STATE(970), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3208), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_QMARK] = ACTIONS(1621), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(1625), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1635), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1639), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1641), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_identifier] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(3106), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1108), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), }, [STATE(971)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2648), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(2440), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(3823), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2044), [sym_line_comment] = STATE(971), [sym_block_comment] = STATE(971), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_identifier] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(3106), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1108), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), }, [STATE(972)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2455), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3822), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(1458), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(1557), + [sym_bracketed_type] = STATE(3719), + [sym_lifetime] = STATE(3837), + [sym_array_type] = STATE(1458), + [sym_for_lifetimes] = STATE(1623), + [sym_function_type] = STATE(1458), + [sym_tuple_type] = STATE(1458), + [sym_unit_type] = STATE(1458), + [sym_generic_type] = STATE(1416), + [sym_generic_type_with_turbofish] = STATE(3708), + [sym_bounded_type] = STATE(1458), + [sym_use_bounds] = STATE(3837), + [sym_reference_type] = STATE(1458), + [sym_pointer_type] = STATE(1458), + [sym_never_type] = STATE(1458), + [sym_abstract_type] = STATE(1458), + [sym_dynamic_type] = STATE(1458), + [sym_macro_invocation] = STATE(1458), + [sym_scoped_identifier] = STATE(3321), + [sym_scoped_type_identifier] = STATE(1113), [sym_line_comment] = STATE(972), [sym_block_comment] = STATE(972), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_identifier] = ACTIONS(3204), + [anon_sym_LPAREN] = ACTIONS(3206), + [anon_sym_LBRACK] = ACTIONS(3208), + [anon_sym_STAR] = ACTIONS(3212), + [anon_sym_QMARK] = ACTIONS(3214), + [anon_sym_u8] = ACTIONS(3216), + [anon_sym_i8] = ACTIONS(3216), + [anon_sym_u16] = ACTIONS(3216), + [anon_sym_i16] = ACTIONS(3216), + [anon_sym_u32] = ACTIONS(3216), + [anon_sym_i32] = ACTIONS(3216), + [anon_sym_u64] = ACTIONS(3216), + [anon_sym_i64] = ACTIONS(3216), + [anon_sym_u128] = ACTIONS(3216), + [anon_sym_i128] = ACTIONS(3216), + [anon_sym_isize] = ACTIONS(3216), + [anon_sym_usize] = ACTIONS(3216), + [anon_sym_f32] = ACTIONS(3216), + [anon_sym_f64] = ACTIONS(3216), + [anon_sym_bool] = ACTIONS(3216), + [anon_sym_str] = ACTIONS(3216), + [anon_sym_char] = ACTIONS(3216), + [anon_sym_BANG] = ACTIONS(3218), + [anon_sym_AMP] = ACTIONS(3220), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3222), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(3224), + [anon_sym_fn] = ACTIONS(3226), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(3228), + [anon_sym_impl] = ACTIONS(3230), + [anon_sym_union] = ACTIONS(3228), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(3232), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(3236), + [sym_super] = ACTIONS(3236), + [sym_crate] = ACTIONS(3236), + [sym_metavariable] = ACTIONS(3238), }, [STATE(973)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2507), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(2350), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(3823), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2044), [sym_line_comment] = STATE(973), [sym_block_comment] = STATE(973), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_identifier] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(3106), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1108), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), }, [STATE(974)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2502), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(2607), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(3823), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2044), [sym_line_comment] = STATE(974), [sym_block_comment] = STATE(974), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_identifier] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(3106), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1108), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), }, [STATE(975)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2335), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3576), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(2103), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(3771), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3771), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2285), [sym_line_comment] = STATE(975), [sym_block_comment] = STATE(975), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_identifier] = ACTIONS(3190), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1624), + [anon_sym_QMARK] = ACTIONS(1626), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1630), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1640), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1644), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1646), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), }, [STATE(976)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2436), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3576), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2102), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(3771), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(3771), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2102), + [sym_tuple_type] = STATE(2102), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2102), + [sym_use_bounds] = STATE(3771), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2269), [sym_line_comment] = STATE(976), [sym_block_comment] = STATE(976), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_identifier] = ACTIONS(3370), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1626), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(3106), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1640), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1108), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), }, [STATE(977)] = { - [sym_function_modifiers] = STATE(3772), - [sym_removed_trait_bound] = STATE(1456), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(1486), - [sym_bracketed_type] = STATE(3685), - [sym_lifetime] = STATE(3522), - [sym_array_type] = STATE(1456), - [sym_for_lifetimes] = STATE(1647), - [sym_function_type] = STATE(1456), - [sym_tuple_type] = STATE(1456), - [sym_unit_type] = STATE(1456), - [sym_generic_type] = STATE(1265), - [sym_generic_type_with_turbofish] = STATE(3673), - [sym_bounded_type] = STATE(1456), - [sym_use_bounds] = STATE(3522), - [sym_reference_type] = STATE(1456), - [sym_pointer_type] = STATE(1456), - [sym_never_type] = STATE(1456), - [sym_abstract_type] = STATE(1456), - [sym_dynamic_type] = STATE(1456), - [sym_macro_invocation] = STATE(1456), - [sym_scoped_identifier] = STATE(3339), - [sym_scoped_type_identifier] = STATE(1084), + [sym_function_modifiers] = STATE(3576), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(2089), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(3771), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3771), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2285), [sym_line_comment] = STATE(977), [sym_block_comment] = STATE(977), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [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(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(3192), - [anon_sym_fn] = ACTIONS(3194), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(3196), - [anon_sym_impl] = ACTIONS(3198), - [anon_sym_union] = ACTIONS(3196), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(3200), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3204), - [sym_super] = ACTIONS(3204), - [sym_crate] = ACTIONS(3204), - [sym_metavariable] = ACTIONS(3206), + [sym_identifier] = ACTIONS(3190), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1624), + [anon_sym_QMARK] = ACTIONS(1626), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1630), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1640), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1644), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1646), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), }, [STATE(978)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2334), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3576), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(2096), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(3771), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3771), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2285), [sym_line_comment] = STATE(978), [sym_block_comment] = STATE(978), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_identifier] = ACTIONS(3190), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1624), + [anon_sym_QMARK] = ACTIONS(1626), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1630), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1640), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1644), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1646), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), }, [STATE(979)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2719), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3676), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(1921), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(1947), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3578), + [sym_array_type] = STATE(1921), + [sym_for_lifetimes] = STATE(1632), + [sym_function_type] = STATE(1921), + [sym_tuple_type] = STATE(1921), + [sym_unit_type] = STATE(1921), + [sym_generic_type] = STATE(1720), + [sym_generic_type_with_turbofish] = STATE(3727), + [sym_bounded_type] = STATE(1921), + [sym_use_bounds] = STATE(3578), + [sym_reference_type] = STATE(1921), + [sym_pointer_type] = STATE(1921), + [sym_never_type] = STATE(1921), + [sym_abstract_type] = STATE(1921), + [sym_dynamic_type] = STATE(1921), + [sym_macro_invocation] = STATE(1921), + [sym_scoped_identifier] = STATE(3446), + [sym_scoped_type_identifier] = STATE(1611), [sym_line_comment] = STATE(979), [sym_block_comment] = STATE(979), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_identifier] = ACTIONS(3244), + [anon_sym_LPAREN] = ACTIONS(3246), + [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_STAR] = ACTIONS(3252), + [anon_sym_QMARK] = ACTIONS(3254), + [anon_sym_u8] = ACTIONS(3256), + [anon_sym_i8] = ACTIONS(3256), + [anon_sym_u16] = ACTIONS(3256), + [anon_sym_i16] = ACTIONS(3256), + [anon_sym_u32] = ACTIONS(3256), + [anon_sym_i32] = ACTIONS(3256), + [anon_sym_u64] = ACTIONS(3256), + [anon_sym_i64] = ACTIONS(3256), + [anon_sym_u128] = ACTIONS(3256), + [anon_sym_i128] = ACTIONS(3256), + [anon_sym_isize] = ACTIONS(3256), + [anon_sym_usize] = ACTIONS(3256), + [anon_sym_f32] = ACTIONS(3256), + [anon_sym_f64] = ACTIONS(3256), + [anon_sym_bool] = ACTIONS(3256), + [anon_sym_str] = ACTIONS(3256), + [anon_sym_char] = ACTIONS(3256), + [anon_sym_BANG] = ACTIONS(3258), + [anon_sym_AMP] = ACTIONS(3260), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3262), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(3264), + [anon_sym_fn] = ACTIONS(3266), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(3268), + [anon_sym_impl] = ACTIONS(3270), + [anon_sym_union] = ACTIONS(3268), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(3272), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(3276), + [sym_super] = ACTIONS(3276), + [sym_crate] = ACTIONS(3276), + [sym_metavariable] = ACTIONS(3278), }, [STATE(980)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2508), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3676), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(1931), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(3578), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3578), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1632), + [sym_function_type] = STATE(1931), + [sym_tuple_type] = STATE(1931), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(1666), + [sym_generic_type_with_turbofish] = STATE(3727), + [sym_bounded_type] = STATE(1931), + [sym_use_bounds] = STATE(3578), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3453), + [sym_scoped_type_identifier] = STATE(1619), [sym_line_comment] = STATE(980), [sym_block_comment] = STATE(980), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), + [sym_identifier] = ACTIONS(3372), + [anon_sym_LPAREN] = ACTIONS(3374), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(3254), + [anon_sym_u8] = ACTIONS(3376), + [anon_sym_i8] = ACTIONS(3376), + [anon_sym_u16] = ACTIONS(3376), + [anon_sym_i16] = ACTIONS(3376), + [anon_sym_u32] = ACTIONS(3376), + [anon_sym_i32] = ACTIONS(3376), + [anon_sym_u64] = ACTIONS(3376), + [anon_sym_i64] = ACTIONS(3376), + [anon_sym_u128] = ACTIONS(3376), + [anon_sym_i128] = ACTIONS(3376), + [anon_sym_isize] = ACTIONS(3376), + [anon_sym_usize] = ACTIONS(3376), + [anon_sym_f32] = ACTIONS(3376), + [anon_sym_f64] = ACTIONS(3376), + [anon_sym_bool] = ACTIONS(3376), + [anon_sym_str] = ACTIONS(3376), + [anon_sym_char] = ACTIONS(3376), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(3106), [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [anon_sym_COLON_COLON] = ACTIONS(3262), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(3378), + [anon_sym_fn] = ACTIONS(3266), + [anon_sym_for] = ACTIONS(3380), + [anon_sym_gen] = ACTIONS(3382), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(3382), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1108), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(3276), + [sym_super] = ACTIONS(3276), + [sym_crate] = ACTIONS(3276), + [sym_metavariable] = ACTIONS(3384), }, [STATE(981)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2431), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(2771), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(3823), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2044), [sym_line_comment] = STATE(981), [sym_block_comment] = STATE(981), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_identifier] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(3106), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1108), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), }, [STATE(982)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2447), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(2710), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(3823), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2044), [sym_line_comment] = STATE(982), [sym_block_comment] = STATE(982), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_identifier] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(3106), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1108), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), }, [STATE(983)] = { - [sym_function_modifiers] = STATE(3641), - [sym_removed_trait_bound] = STATE(1745), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(1756), - [sym_bracketed_type] = STATE(3701), - [sym_lifetime] = STATE(3813), - [sym_array_type] = STATE(1745), - [sym_for_lifetimes] = STATE(1625), - [sym_function_type] = STATE(1745), - [sym_tuple_type] = STATE(1745), - [sym_unit_type] = STATE(1745), - [sym_generic_type] = STATE(1692), - [sym_generic_type_with_turbofish] = STATE(3692), - [sym_bounded_type] = STATE(1745), - [sym_use_bounds] = STATE(3813), - [sym_reference_type] = STATE(1745), - [sym_pointer_type] = STATE(1745), - [sym_never_type] = STATE(1745), - [sym_abstract_type] = STATE(1745), - [sym_dynamic_type] = STATE(1745), - [sym_macro_invocation] = STATE(1745), - [sym_scoped_identifier] = STATE(3433), - [sym_scoped_type_identifier] = STATE(1614), + [sym_function_modifiers] = STATE(3576), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(2093), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(3771), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3771), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2285), [sym_line_comment] = STATE(983), [sym_block_comment] = STATE(983), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3214), - [anon_sym_LPAREN] = ACTIONS(3216), - [anon_sym_LBRACK] = ACTIONS(3218), - [anon_sym_STAR] = ACTIONS(3222), - [anon_sym_QMARK] = ACTIONS(3224), - [anon_sym_u8] = ACTIONS(3226), - [anon_sym_i8] = ACTIONS(3226), - [anon_sym_u16] = ACTIONS(3226), - [anon_sym_i16] = ACTIONS(3226), - [anon_sym_u32] = ACTIONS(3226), - [anon_sym_i32] = ACTIONS(3226), - [anon_sym_u64] = ACTIONS(3226), - [anon_sym_i64] = ACTIONS(3226), - [anon_sym_u128] = ACTIONS(3226), - [anon_sym_i128] = ACTIONS(3226), - [anon_sym_isize] = ACTIONS(3226), - [anon_sym_usize] = ACTIONS(3226), - [anon_sym_f32] = ACTIONS(3226), - [anon_sym_f64] = ACTIONS(3226), - [anon_sym_bool] = ACTIONS(3226), - [anon_sym_str] = ACTIONS(3226), - [anon_sym_char] = ACTIONS(3226), - [anon_sym_BANG] = ACTIONS(3228), - [anon_sym_AMP] = ACTIONS(3230), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3232), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(3234), - [anon_sym_fn] = ACTIONS(3236), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(3238), - [anon_sym_impl] = ACTIONS(3240), - [anon_sym_union] = ACTIONS(3238), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(3242), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3246), - [sym_super] = ACTIONS(3246), - [sym_crate] = ACTIONS(3246), - [sym_metavariable] = ACTIONS(3248), + [sym_identifier] = ACTIONS(3190), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1624), + [anon_sym_QMARK] = ACTIONS(1626), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1630), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1640), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1644), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1646), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), }, [STATE(984)] = { - [sym_function_modifiers] = STATE(3641), - [sym_removed_trait_bound] = STATE(1759), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(3813), - [sym_bracketed_type] = STATE(3701), - [sym_lifetime] = STATE(3813), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1625), - [sym_function_type] = STATE(1759), - [sym_tuple_type] = STATE(1759), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(1668), - [sym_generic_type_with_turbofish] = STATE(3692), - [sym_bounded_type] = STATE(1759), - [sym_use_bounds] = STATE(3813), - [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(3440), - [sym_scoped_type_identifier] = STATE(1609), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(2307), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(3823), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2044), [sym_line_comment] = STATE(984), [sym_block_comment] = STATE(984), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3342), - [anon_sym_LPAREN] = ACTIONS(3344), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(3224), - [anon_sym_u8] = ACTIONS(3346), - [anon_sym_i8] = ACTIONS(3346), - [anon_sym_u16] = ACTIONS(3346), - [anon_sym_i16] = ACTIONS(3346), - [anon_sym_u32] = ACTIONS(3346), - [anon_sym_i32] = ACTIONS(3346), - [anon_sym_u64] = ACTIONS(3346), - [anon_sym_i64] = ACTIONS(3346), - [anon_sym_u128] = ACTIONS(3346), - [anon_sym_i128] = ACTIONS(3346), - [anon_sym_isize] = ACTIONS(3346), - [anon_sym_usize] = ACTIONS(3346), - [anon_sym_f32] = ACTIONS(3346), - [anon_sym_f64] = ACTIONS(3346), - [anon_sym_bool] = ACTIONS(3346), - [anon_sym_str] = ACTIONS(3346), - [anon_sym_char] = ACTIONS(3346), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3232), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(3348), - [anon_sym_fn] = ACTIONS(3236), - [anon_sym_for] = ACTIONS(3350), - [anon_sym_gen] = ACTIONS(3352), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(3352), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3246), - [sym_super] = ACTIONS(3246), - [sym_crate] = ACTIONS(3246), - [sym_metavariable] = ACTIONS(3354), + [sym_identifier] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(3106), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1108), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), }, [STATE(985)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2524), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3676), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(1851), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(3578), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3578), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1632), + [sym_function_type] = STATE(1851), + [sym_tuple_type] = STATE(1851), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(1701), + [sym_generic_type_with_turbofish] = STATE(3727), + [sym_bounded_type] = STATE(1851), + [sym_use_bounds] = STATE(3578), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3453), + [sym_scoped_type_identifier] = STATE(1625), [sym_line_comment] = STATE(985), [sym_block_comment] = STATE(985), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), + [sym_identifier] = ACTIONS(3386), + [anon_sym_LPAREN] = ACTIONS(3374), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(3254), + [anon_sym_u8] = ACTIONS(3376), + [anon_sym_i8] = ACTIONS(3376), + [anon_sym_u16] = ACTIONS(3376), + [anon_sym_i16] = ACTIONS(3376), + [anon_sym_u32] = ACTIONS(3376), + [anon_sym_i32] = ACTIONS(3376), + [anon_sym_u64] = ACTIONS(3376), + [anon_sym_i64] = ACTIONS(3376), + [anon_sym_u128] = ACTIONS(3376), + [anon_sym_i128] = ACTIONS(3376), + [anon_sym_isize] = ACTIONS(3376), + [anon_sym_usize] = ACTIONS(3376), + [anon_sym_f32] = ACTIONS(3376), + [anon_sym_f64] = ACTIONS(3376), + [anon_sym_bool] = ACTIONS(3376), + [anon_sym_str] = ACTIONS(3376), + [anon_sym_char] = ACTIONS(3376), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(3106), [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [anon_sym_COLON_COLON] = ACTIONS(3262), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(3378), + [anon_sym_fn] = ACTIONS(3266), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(3382), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(3382), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1108), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(3276), + [sym_super] = ACTIONS(3276), + [sym_crate] = ACTIONS(3276), + [sym_metavariable] = ACTIONS(3384), }, [STATE(986)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2732), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(2565), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(3823), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2044), [sym_line_comment] = STATE(986), [sym_block_comment] = STATE(986), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_identifier] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(3106), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1108), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), }, [STATE(987)] = { - [sym_function_modifiers] = STATE(3772), - [sym_removed_trait_bound] = STATE(1456), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(1436), - [sym_bracketed_type] = STATE(3685), - [sym_lifetime] = STATE(3522), - [sym_array_type] = STATE(1456), - [sym_for_lifetimes] = STATE(1647), - [sym_function_type] = STATE(1456), - [sym_tuple_type] = STATE(1456), - [sym_unit_type] = STATE(1456), - [sym_generic_type] = STATE(1265), - [sym_generic_type_with_turbofish] = STATE(3673), - [sym_bounded_type] = STATE(1456), - [sym_use_bounds] = STATE(3522), - [sym_reference_type] = STATE(1456), - [sym_pointer_type] = STATE(1456), - [sym_never_type] = STATE(1456), - [sym_abstract_type] = STATE(1456), - [sym_dynamic_type] = STATE(1456), - [sym_macro_invocation] = STATE(1456), - [sym_scoped_identifier] = STATE(3339), - [sym_scoped_type_identifier] = STATE(1084), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(3176), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(3823), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2044), [sym_line_comment] = STATE(987), [sym_block_comment] = STATE(987), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [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(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(3192), - [anon_sym_fn] = ACTIONS(3194), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(3196), - [anon_sym_impl] = ACTIONS(3198), - [anon_sym_union] = ACTIONS(3196), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(3200), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3204), - [sym_super] = ACTIONS(3204), - [sym_crate] = ACTIONS(3204), - [sym_metavariable] = ACTIONS(3206), + [sym_identifier] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(3106), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1108), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), }, [STATE(988)] = { - [sym_function_modifiers] = STATE(3772), - [sym_removed_trait_bound] = STATE(1456), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(1437), - [sym_bracketed_type] = STATE(3685), - [sym_lifetime] = STATE(3522), - [sym_array_type] = STATE(1456), - [sym_for_lifetimes] = STATE(1647), - [sym_function_type] = STATE(1456), - [sym_tuple_type] = STATE(1456), - [sym_unit_type] = STATE(1456), - [sym_generic_type] = STATE(1265), - [sym_generic_type_with_turbofish] = STATE(3673), - [sym_bounded_type] = STATE(1456), - [sym_use_bounds] = STATE(3522), - [sym_reference_type] = STATE(1456), - [sym_pointer_type] = STATE(1456), - [sym_never_type] = STATE(1456), - [sym_abstract_type] = STATE(1456), - [sym_dynamic_type] = STATE(1456), - [sym_macro_invocation] = STATE(1456), - [sym_scoped_identifier] = STATE(3339), - [sym_scoped_type_identifier] = STATE(1084), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(2304), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(3823), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2044), [sym_line_comment] = STATE(988), [sym_block_comment] = STATE(988), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [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(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(3192), - [anon_sym_fn] = ACTIONS(3194), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(3196), - [anon_sym_impl] = ACTIONS(3198), - [anon_sym_union] = ACTIONS(3196), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(3200), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3204), - [sym_super] = ACTIONS(3204), - [sym_crate] = ACTIONS(3204), - [sym_metavariable] = ACTIONS(3206), + [sym_identifier] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(3106), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1108), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), }, [STATE(989)] = { - [sym_function_modifiers] = STATE(3641), - [sym_removed_trait_bound] = STATE(1792), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(3813), - [sym_bracketed_type] = STATE(3701), - [sym_lifetime] = STATE(3813), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1625), - [sym_function_type] = STATE(1792), - [sym_tuple_type] = STATE(1792), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(1656), - [sym_generic_type_with_turbofish] = STATE(3692), - [sym_bounded_type] = STATE(1792), - [sym_use_bounds] = STATE(3813), - [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(3440), - [sym_scoped_type_identifier] = STATE(1615), + [sym_function_modifiers] = STATE(3576), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(2094), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(3771), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3771), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2285), [sym_line_comment] = STATE(989), [sym_block_comment] = STATE(989), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3356), - [anon_sym_LPAREN] = ACTIONS(3344), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(3224), - [anon_sym_u8] = ACTIONS(3346), - [anon_sym_i8] = ACTIONS(3346), - [anon_sym_u16] = ACTIONS(3346), - [anon_sym_i16] = ACTIONS(3346), - [anon_sym_u32] = ACTIONS(3346), - [anon_sym_i32] = ACTIONS(3346), - [anon_sym_u64] = ACTIONS(3346), - [anon_sym_i64] = ACTIONS(3346), - [anon_sym_u128] = ACTIONS(3346), - [anon_sym_i128] = ACTIONS(3346), - [anon_sym_isize] = ACTIONS(3346), - [anon_sym_usize] = ACTIONS(3346), - [anon_sym_f32] = ACTIONS(3346), - [anon_sym_f64] = ACTIONS(3346), - [anon_sym_bool] = ACTIONS(3346), - [anon_sym_str] = ACTIONS(3346), - [anon_sym_char] = ACTIONS(3346), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3232), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(3348), - [anon_sym_fn] = ACTIONS(3236), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(3352), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(3352), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3246), - [sym_super] = ACTIONS(3246), - [sym_crate] = ACTIONS(3246), - [sym_metavariable] = ACTIONS(3354), + [sym_identifier] = ACTIONS(3190), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1624), + [anon_sym_QMARK] = ACTIONS(1626), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1630), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1640), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1644), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1646), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), }, [STATE(990)] = { - [sym_function_modifiers] = STATE(3772), - [sym_removed_trait_bound] = STATE(1456), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(1450), - [sym_bracketed_type] = STATE(3685), - [sym_lifetime] = STATE(1450), - [sym_array_type] = STATE(1456), - [sym_for_lifetimes] = STATE(1647), - [sym_function_type] = STATE(1456), - [sym_tuple_type] = STATE(1456), - [sym_unit_type] = STATE(1456), - [sym_generic_type] = STATE(1265), - [sym_generic_type_with_turbofish] = STATE(3673), - [sym_bounded_type] = STATE(1456), - [sym_use_bounds] = STATE(1450), - [sym_reference_type] = STATE(1456), - [sym_pointer_type] = STATE(1456), - [sym_never_type] = STATE(1456), - [sym_abstract_type] = STATE(1456), - [sym_dynamic_type] = STATE(1456), - [sym_macro_invocation] = STATE(1456), - [sym_scoped_identifier] = STATE(3339), - [sym_scoped_type_identifier] = STATE(1084), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(2418), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(3823), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2044), [sym_line_comment] = STATE(990), [sym_block_comment] = STATE(990), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [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(3358), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(3192), - [anon_sym_fn] = ACTIONS(3194), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(3196), - [anon_sym_impl] = ACTIONS(3198), - [anon_sym_union] = ACTIONS(3196), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(3360), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(3200), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3204), - [sym_super] = ACTIONS(3204), - [sym_crate] = ACTIONS(3204), - [sym_metavariable] = ACTIONS(3206), + [sym_identifier] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(3106), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1108), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), }, [STATE(991)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(3004), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(2523), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(3823), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2044), [sym_line_comment] = STATE(991), [sym_block_comment] = STATE(991), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_identifier] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(3106), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1108), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), }, [STATE(992)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(3073), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(3117), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(3823), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2044), [sym_line_comment] = STATE(992), [sym_block_comment] = STATE(992), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_identifier] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(3106), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1108), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), }, [STATE(993)] = { - [sym_function_modifiers] = STATE(3772), - [sym_removed_trait_bound] = STATE(1456), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(1554), - [sym_bracketed_type] = STATE(3685), - [sym_lifetime] = STATE(3522), - [sym_array_type] = STATE(1456), - [sym_for_lifetimes] = STATE(1647), - [sym_function_type] = STATE(1456), - [sym_tuple_type] = STATE(1456), - [sym_unit_type] = STATE(1456), - [sym_generic_type] = STATE(1265), - [sym_generic_type_with_turbofish] = STATE(3673), - [sym_bounded_type] = STATE(1456), - [sym_use_bounds] = STATE(3522), - [sym_reference_type] = STATE(1456), - [sym_pointer_type] = STATE(1456), - [sym_never_type] = STATE(1456), - [sym_abstract_type] = STATE(1456), - [sym_dynamic_type] = STATE(1456), - [sym_macro_invocation] = STATE(1456), - [sym_scoped_identifier] = STATE(3339), - [sym_scoped_type_identifier] = STATE(1084), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(2429), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(3823), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2044), [sym_line_comment] = STATE(993), [sym_block_comment] = STATE(993), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [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(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(3192), - [anon_sym_fn] = ACTIONS(3194), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(3196), - [anon_sym_impl] = ACTIONS(3198), - [anon_sym_union] = ACTIONS(3196), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(3200), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3204), - [sym_super] = ACTIONS(3204), - [sym_crate] = ACTIONS(3204), - [sym_metavariable] = ACTIONS(3206), + [sym_identifier] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(3106), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1108), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), }, [STATE(994)] = { - [sym_function_modifiers] = STATE(3772), - [sym_removed_trait_bound] = STATE(1456), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(1457), - [sym_bracketed_type] = STATE(3685), - [sym_lifetime] = STATE(3522), - [sym_array_type] = STATE(1456), - [sym_for_lifetimes] = STATE(1647), - [sym_function_type] = STATE(1456), - [sym_tuple_type] = STATE(1456), - [sym_unit_type] = STATE(1456), - [sym_generic_type] = STATE(1265), - [sym_generic_type_with_turbofish] = STATE(3673), - [sym_bounded_type] = STATE(1456), - [sym_use_bounds] = STATE(3522), - [sym_reference_type] = STATE(1456), - [sym_pointer_type] = STATE(1456), - [sym_never_type] = STATE(1456), - [sym_abstract_type] = STATE(1456), - [sym_dynamic_type] = STATE(1456), - [sym_macro_invocation] = STATE(1456), - [sym_scoped_identifier] = STATE(3339), - [sym_scoped_type_identifier] = STATE(1084), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(2430), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(3823), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2044), [sym_line_comment] = STATE(994), [sym_block_comment] = STATE(994), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [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(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(3192), - [anon_sym_fn] = ACTIONS(3194), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(3196), - [anon_sym_impl] = ACTIONS(3198), - [anon_sym_union] = ACTIONS(3196), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(3200), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3204), - [sym_super] = ACTIONS(3204), - [sym_crate] = ACTIONS(3204), - [sym_metavariable] = ACTIONS(3206), + [sym_identifier] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(3106), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1108), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), }, [STATE(995)] = { - [sym_function_modifiers] = STATE(3772), - [sym_removed_trait_bound] = STATE(1456), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(1538), - [sym_bracketed_type] = STATE(3685), - [sym_lifetime] = STATE(3522), - [sym_array_type] = STATE(1456), - [sym_for_lifetimes] = STATE(1647), - [sym_function_type] = STATE(1456), - [sym_tuple_type] = STATE(1456), - [sym_unit_type] = STATE(1456), - [sym_generic_type] = STATE(1265), - [sym_generic_type_with_turbofish] = STATE(3673), - [sym_bounded_type] = STATE(1456), - [sym_use_bounds] = STATE(3522), - [sym_reference_type] = STATE(1456), - [sym_pointer_type] = STATE(1456), - [sym_never_type] = STATE(1456), - [sym_abstract_type] = STATE(1456), - [sym_dynamic_type] = STATE(1456), - [sym_macro_invocation] = STATE(1456), - [sym_scoped_identifier] = STATE(3339), - [sym_scoped_type_identifier] = STATE(1084), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(2695), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(3823), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2044), [sym_line_comment] = STATE(995), [sym_block_comment] = STATE(995), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [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(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(3192), - [anon_sym_fn] = ACTIONS(3194), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(3196), - [anon_sym_impl] = ACTIONS(3198), - [anon_sym_union] = ACTIONS(3196), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(3200), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3204), - [sym_super] = ACTIONS(3204), - [sym_crate] = ACTIONS(3204), - [sym_metavariable] = ACTIONS(3206), + [sym_identifier] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(3106), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1108), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), }, [STATE(996)] = { - [sym_function_modifiers] = STATE(3772), - [sym_removed_trait_bound] = STATE(1456), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(1523), - [sym_bracketed_type] = STATE(3685), - [sym_lifetime] = STATE(3522), - [sym_array_type] = STATE(1456), - [sym_for_lifetimes] = STATE(1647), - [sym_function_type] = STATE(1456), - [sym_tuple_type] = STATE(1456), - [sym_unit_type] = STATE(1456), - [sym_generic_type] = STATE(1265), - [sym_generic_type_with_turbofish] = STATE(3673), - [sym_bounded_type] = STATE(1456), - [sym_use_bounds] = STATE(3522), - [sym_reference_type] = STATE(1456), - [sym_pointer_type] = STATE(1456), - [sym_never_type] = STATE(1456), - [sym_abstract_type] = STATE(1456), - [sym_dynamic_type] = STATE(1456), - [sym_macro_invocation] = STATE(1456), - [sym_scoped_identifier] = STATE(3339), - [sym_scoped_type_identifier] = STATE(1084), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(3094), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(3823), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2044), [sym_line_comment] = STATE(996), [sym_block_comment] = STATE(996), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [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(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(3192), - [anon_sym_fn] = ACTIONS(3194), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(3196), - [anon_sym_impl] = ACTIONS(3198), - [anon_sym_union] = ACTIONS(3196), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(3200), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3204), - [sym_super] = ACTIONS(3204), - [sym_crate] = ACTIONS(3204), - [sym_metavariable] = ACTIONS(3206), + [sym_identifier] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(3106), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1108), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), }, [STATE(997)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(3150), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(2420), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(3823), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2513), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2296), [sym_line_comment] = STATE(997), [sym_block_comment] = STATE(997), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_identifier] = ACTIONS(3388), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(3390), + [anon_sym_AMP] = ACTIONS(3106), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1108), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), }, [STATE(998)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2440), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2483), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(3461), - [sym_scoped_type_identifier] = STATE(2278), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(2606), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(3823), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2044), [sym_line_comment] = STATE(998), [sym_block_comment] = STATE(998), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3362), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(3364), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_identifier] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(3106), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1108), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), }, [STATE(999)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2556), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(2081), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(3823), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2044), [sym_line_comment] = STATE(999), [sym_block_comment] = STATE(999), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_identifier] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(3106), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1108), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), }, [STATE(1000)] = { - [sym_function_modifiers] = STATE(3772), - [sym_removed_trait_bound] = STATE(1456), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(1506), - [sym_bracketed_type] = STATE(3685), - [sym_lifetime] = STATE(3522), - [sym_array_type] = STATE(1456), - [sym_for_lifetimes] = STATE(1647), - [sym_function_type] = STATE(1456), - [sym_tuple_type] = STATE(1456), - [sym_unit_type] = STATE(1456), - [sym_generic_type] = STATE(1265), - [sym_generic_type_with_turbofish] = STATE(3673), - [sym_bounded_type] = STATE(1456), - [sym_use_bounds] = STATE(3522), - [sym_reference_type] = STATE(1456), - [sym_pointer_type] = STATE(1456), - [sym_never_type] = STATE(1456), - [sym_abstract_type] = STATE(1456), - [sym_dynamic_type] = STATE(1456), - [sym_macro_invocation] = STATE(1456), - [sym_scoped_identifier] = STATE(3339), - [sym_scoped_type_identifier] = STATE(1084), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(2082), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(3823), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2044), [sym_line_comment] = STATE(1000), [sym_block_comment] = STATE(1000), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [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(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(3192), - [anon_sym_fn] = ACTIONS(3194), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(3196), - [anon_sym_impl] = ACTIONS(3198), - [anon_sym_union] = ACTIONS(3196), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(3200), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3204), - [sym_super] = ACTIONS(3204), - [sym_crate] = ACTIONS(3204), - [sym_metavariable] = ACTIONS(3206), + [sym_identifier] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(3106), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1108), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), }, [STATE(1001)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2438), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(2555), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(3823), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2044), [sym_line_comment] = STATE(1001), [sym_block_comment] = STATE(1001), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_identifier] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(3106), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1108), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), }, [STATE(1002)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2076), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(2915), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(3823), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2044), [sym_line_comment] = STATE(1002), [sym_block_comment] = STATE(1002), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_identifier] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(3106), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1108), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), }, [STATE(1003)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2061), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(2434), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(3823), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2044), [sym_line_comment] = STATE(1003), [sym_block_comment] = STATE(1003), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_identifier] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(3106), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1108), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), }, [STATE(1004)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2567), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(2435), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(3823), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2044), [sym_line_comment] = STATE(1004), [sym_block_comment] = STATE(1004), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_identifier] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(3106), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1108), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), }, [STATE(1005)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2887), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(2700), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(3823), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2044), [sym_line_comment] = STATE(1005), [sym_block_comment] = STATE(1005), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_identifier] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(3106), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1108), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), }, [STATE(1006)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2427), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(2923), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(3823), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2044), [sym_line_comment] = STATE(1006), [sym_block_comment] = STATE(1006), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_identifier] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(3106), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1108), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), }, [STATE(1007)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2430), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(2703), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(3823), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2044), [sym_line_comment] = STATE(1007), [sym_block_comment] = STATE(1007), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_identifier] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(3106), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1108), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), }, [STATE(1008)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2737), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(2940), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(3823), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2044), [sym_line_comment] = STATE(1008), [sym_block_comment] = STATE(1008), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_identifier] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(3106), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1108), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), }, [STATE(1009)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2897), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(3023), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(3823), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2044), [sym_line_comment] = STATE(1009), [sym_block_comment] = STATE(1009), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_identifier] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(3106), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1108), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), }, [STATE(1010)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2741), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(2072), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(3823), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2044), [sym_line_comment] = STATE(1010), [sym_block_comment] = STATE(1010), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_identifier] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(3106), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1108), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), }, [STATE(1011)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2432), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2492), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(3461), - [sym_scoped_type_identifier] = STATE(2233), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(2713), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(3823), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2044), [sym_line_comment] = STATE(1011), [sym_block_comment] = STATE(1011), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3366), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(3368), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_identifier] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(3106), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1108), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), }, [STATE(1012)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2802), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(2103), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(3823), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2044), [sym_line_comment] = STATE(1012), [sym_block_comment] = STATE(1012), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_identifier] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(3106), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1108), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), }, [STATE(1013)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2088), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2102), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(3823), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(3823), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2102), + [sym_tuple_type] = STATE(2102), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2049), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2102), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2036), [sym_line_comment] = STATE(1013), [sym_block_comment] = STATE(1013), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_identifier] = ACTIONS(3392), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(3106), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1108), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), }, [STATE(1014)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2059), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(2089), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(3823), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2044), [sym_line_comment] = STATE(1014), [sym_block_comment] = STATE(1014), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_identifier] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(3106), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1108), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), }, [STATE(1015)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2072), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(3775), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2072), - [sym_tuple_type] = STATE(2072), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2032), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2072), - [sym_use_bounds] = STATE(3775), - [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(3461), - [sym_scoped_type_identifier] = STATE(2030), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(2096), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(3823), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2044), [sym_line_comment] = STATE(1015), [sym_block_comment] = STATE(1015), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3370), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_identifier] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(3106), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1108), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), }, [STATE(1016)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2085), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(2093), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(3823), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2044), [sym_line_comment] = STATE(1016), [sym_block_comment] = STATE(1016), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_identifier] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(3106), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1108), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), }, [STATE(1017)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2086), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(2539), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(3823), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2044), [sym_line_comment] = STATE(1017), [sym_block_comment] = STATE(1017), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_identifier] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(3106), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1108), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), }, [STATE(1018)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2087), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(2313), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(3823), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2044), [sym_line_comment] = STATE(1018), [sym_block_comment] = STATE(1018), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_identifier] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(3106), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1108), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), }, [STATE(1019)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2593), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(2444), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(3823), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2044), [sym_line_comment] = STATE(1019), [sym_block_comment] = STATE(1019), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_identifier] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(3106), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1108), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), }, [STATE(1020)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2330), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(2445), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(3823), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2044), [sym_line_comment] = STATE(1020), [sym_block_comment] = STATE(1020), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_identifier] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(3106), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1108), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), }, [STATE(1021)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2478), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(2446), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(3823), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2044), [sym_line_comment] = STATE(1021), [sym_block_comment] = STATE(1021), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_identifier] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(3106), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1108), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), }, [STATE(1022)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2480), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(2447), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(3823), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2044), [sym_line_comment] = STATE(1022), [sym_block_comment] = STATE(1022), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_identifier] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(3106), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1108), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), }, [STATE(1023)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2484), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(2718), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(3823), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2044), [sym_line_comment] = STATE(1023), [sym_block_comment] = STATE(1023), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_identifier] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(3106), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1108), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), }, [STATE(1024)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2489), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(2962), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(3823), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2044), [sym_line_comment] = STATE(1024), [sym_block_comment] = STATE(1024), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_identifier] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(3106), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1108), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), }, [STATE(1025)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2823), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(2719), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(3823), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2044), [sym_line_comment] = STATE(1025), [sym_block_comment] = STATE(1025), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_identifier] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(3106), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1108), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), }, [STATE(1026)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2934), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(2720), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(3823), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2044), [sym_line_comment] = STATE(1026), [sym_block_comment] = STATE(1026), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_identifier] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(3106), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1108), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), }, [STATE(1027)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2831), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(2967), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(3823), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2044), [sym_line_comment] = STATE(1027), [sym_block_comment] = STATE(1027), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_identifier] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(3106), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1108), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), }, [STATE(1028)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2832), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(2722), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(3823), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2044), [sym_line_comment] = STATE(1028), [sym_block_comment] = STATE(1028), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_identifier] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(3106), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1108), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), }, [STATE(1029)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2942), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(2086), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(3823), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2044), [sym_line_comment] = STATE(1029), [sym_block_comment] = STATE(1029), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_identifier] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(3106), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1108), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), }, [STATE(1030)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2840), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(2087), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(3823), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2044), [sym_line_comment] = STATE(1030), [sym_block_comment] = STATE(1030), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_identifier] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(3106), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1108), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), }, [STATE(1031)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2077), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(2095), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(3823), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2044), [sym_line_comment] = STATE(1031), [sym_block_comment] = STATE(1031), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_identifier] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(3106), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1108), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), }, [STATE(1032)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2078), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(2319), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(3823), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2044), [sym_line_comment] = STATE(1032), [sym_block_comment] = STATE(1032), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_identifier] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(3106), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1108), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), }, [STATE(1033)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2079), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(2454), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(3823), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2044), [sym_line_comment] = STATE(1033), [sym_block_comment] = STATE(1033), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_identifier] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(3106), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1108), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), }, [STATE(1034)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2286), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(2455), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(3823), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2044), [sym_line_comment] = STATE(1034), [sym_block_comment] = STATE(1034), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_identifier] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(3106), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1108), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), }, [STATE(1035)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2412), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(2581), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(3823), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2044), [sym_line_comment] = STATE(1035), [sym_block_comment] = STATE(1035), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_identifier] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(3106), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1108), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), }, [STATE(1036)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2413), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(2995), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(3823), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2044), [sym_line_comment] = STATE(1036), [sym_block_comment] = STATE(1036), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_identifier] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(3106), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1108), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), }, [STATE(1037)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2604), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(2734), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(3823), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2044), [sym_line_comment] = STATE(1037), [sym_block_comment] = STATE(1037), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_identifier] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(3106), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1108), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), }, [STATE(1038)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2964), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(2456), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(3823), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2044), [sym_line_comment] = STATE(1038), [sym_block_comment] = STATE(1038), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_identifier] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(3106), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1108), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), }, [STATE(1039)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2718), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(2457), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(3823), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2044), [sym_line_comment] = STATE(1039), [sym_block_comment] = STATE(1039), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_identifier] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(3106), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1108), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), }, [STATE(1040)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2415), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(2458), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(3823), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2044), [sym_line_comment] = STATE(1040), [sym_block_comment] = STATE(1040), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_identifier] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(3106), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1108), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), }, [STATE(1041)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2417), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(2459), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(3823), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2044), [sym_line_comment] = STATE(1041), [sym_block_comment] = STATE(1041), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_identifier] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(3106), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1108), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), }, [STATE(1042)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2418), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(2321), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(3823), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2044), [sym_line_comment] = STATE(1042), [sym_block_comment] = STATE(1042), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_identifier] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(3106), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1108), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), }, [STATE(1043)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2419), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(2735), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(3823), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2044), [sym_line_comment] = STATE(1043), [sym_block_comment] = STATE(1043), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_identifier] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(3106), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1108), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), }, [STATE(1044)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2289), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(2736), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(3823), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2044), [sym_line_comment] = STATE(1044), [sym_block_comment] = STATE(1044), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_identifier] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(3106), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1108), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), }, [STATE(1045)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2837), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(2090), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(3823), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2044), [sym_line_comment] = STATE(1045), [sym_block_comment] = STATE(1045), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_identifier] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(3106), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1108), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), }, [STATE(1046)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2844), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(2461), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(3823), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2044), [sym_line_comment] = STATE(1046), [sym_block_comment] = STATE(1046), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_identifier] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(3106), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1108), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), }, [STATE(1047)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2083), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(2462), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(3823), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2044), [sym_line_comment] = STATE(1047), [sym_block_comment] = STATE(1047), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_identifier] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(3106), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1108), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), }, [STATE(1048)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2428), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(3015), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(3823), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2044), [sym_line_comment] = STATE(1048), [sym_block_comment] = STATE(1048), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_identifier] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(3106), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1108), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), }, [STATE(1049)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2429), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(2325), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(3823), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2044), [sym_line_comment] = STATE(1049), [sym_block_comment] = STATE(1049), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_identifier] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(3106), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1108), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), }, [STATE(1050)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2293), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(2748), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(3823), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2044), [sym_line_comment] = STATE(1050), [sym_block_comment] = STATE(1050), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_identifier] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(3106), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1108), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), }, [STATE(1051)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2988), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(2326), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(3823), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2044), [sym_line_comment] = STATE(1051), [sym_block_comment] = STATE(1051), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_identifier] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(3106), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1108), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), }, [STATE(1052)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2791), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3576), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2098), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(3771), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(3771), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2098), + [sym_tuple_type] = STATE(2098), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2048), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2098), + [sym_use_bounds] = STATE(3771), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2249), [sym_line_comment] = STATE(1052), [sym_block_comment] = STATE(1052), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_identifier] = ACTIONS(3394), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1626), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(3106), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1640), + [anon_sym_for] = ACTIONS(3396), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1108), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), }, [STATE(1053)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2294), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(3022), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(3823), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2044), [sym_line_comment] = STATE(1053), [sym_block_comment] = STATE(1053), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_identifier] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(3106), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1108), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), }, [STATE(1054)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2295), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(2355), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(3823), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2044), [sym_line_comment] = STATE(1054), [sym_block_comment] = STATE(1054), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_identifier] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(3106), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1108), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), }, [STATE(1055)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(2055), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3775), - [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(3461), - [sym_scoped_type_identifier] = STATE(2028), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(2764), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(3823), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2044), [sym_line_comment] = STATE(1055), [sym_block_comment] = STATE(1055), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_identifier] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(3106), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1108), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), }, [STATE(1056)] = { - [sym_function_modifiers] = STATE(3812), - [sym_removed_trait_bound] = STATE(2062), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(3775), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3775), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1652), - [sym_function_type] = STATE(2062), - [sym_tuple_type] = STATE(2062), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2042), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2062), - [sym_use_bounds] = STATE(3775), - [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(3461), - [sym_scoped_type_identifier] = STATE(2029), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(2772), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(3823), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2044), [sym_line_comment] = STATE(1056), [sym_block_comment] = STATE(1056), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3372), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(3374), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1153), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_identifier] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(3106), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1108), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), }, [STATE(1057)] = { - [sym_function_modifiers] = STATE(3583), - [sym_removed_trait_bound] = STATE(2069), - [sym_extern_modifier] = STATE(2461), - [sym__type] = STATE(3358), - [sym_bracketed_type] = STATE(3752), - [sym_lifetime] = STATE(3531), - [sym_array_type] = STATE(2069), - [sym_for_lifetimes] = STATE(1632), - [sym_function_type] = STATE(2069), - [sym_tuple_type] = STATE(2069), - [sym_unit_type] = STATE(2069), - [sym_generic_type] = STATE(2040), - [sym_generic_type_with_turbofish] = STATE(3736), - [sym_bounded_type] = STATE(2069), - [sym_use_bounds] = STATE(3531), - [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(3461), - [sym_scoped_type_identifier] = STATE(2255), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(2849), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(3823), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2044), [sym_line_comment] = STATE(1057), [sym_block_comment] = STATE(1057), - [aux_sym_function_modifiers_repeat1] = STATE(2317), - [sym_identifier] = ACTIONS(3208), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_QMARK] = ACTIONS(1621), - [anon_sym_u8] = ACTIONS(1623), - [anon_sym_i8] = ACTIONS(1623), - [anon_sym_u16] = ACTIONS(1623), - [anon_sym_i16] = ACTIONS(1623), - [anon_sym_u32] = ACTIONS(1623), - [anon_sym_i32] = ACTIONS(1623), - [anon_sym_u64] = ACTIONS(1623), - [anon_sym_i64] = ACTIONS(1623), - [anon_sym_u128] = ACTIONS(1623), - [anon_sym_i128] = ACTIONS(1623), - [anon_sym_isize] = ACTIONS(1623), - [anon_sym_usize] = ACTIONS(1623), - [anon_sym_f32] = ACTIONS(1623), - [anon_sym_f64] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_str] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(1625), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_async] = ACTIONS(1141), - [anon_sym_const] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1635), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_gen] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1639), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_use] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_dyn] = ACTIONS(1641), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1647), + [sym_identifier] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(3106), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1108), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), }, [STATE(1058)] = { - [sym_attribute_item] = STATE(1059), + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(3039), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(3823), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2044), [sym_line_comment] = STATE(1058), [sym_block_comment] = STATE(1058), - [aux_sym_enum_variant_list_repeat1] = STATE(1058), - [sym_identifier] = ACTIONS(3376), - [anon_sym_LPAREN] = ACTIONS(763), - [anon_sym_LBRACK] = ACTIONS(763), - [anon_sym_RBRACK] = ACTIONS(763), - [anon_sym_LBRACE] = ACTIONS(763), - [anon_sym_STAR] = ACTIONS(763), - [anon_sym_u8] = ACTIONS(3376), - [anon_sym_i8] = ACTIONS(3376), - [anon_sym_u16] = ACTIONS(3376), - [anon_sym_i16] = ACTIONS(3376), - [anon_sym_u32] = ACTIONS(3376), - [anon_sym_i32] = ACTIONS(3376), - [anon_sym_u64] = ACTIONS(3376), - [anon_sym_i64] = ACTIONS(3376), - [anon_sym_u128] = ACTIONS(3376), - [anon_sym_i128] = ACTIONS(3376), - [anon_sym_isize] = ACTIONS(3376), - [anon_sym_usize] = ACTIONS(3376), - [anon_sym_f32] = ACTIONS(3376), - [anon_sym_f64] = ACTIONS(3376), - [anon_sym_bool] = ACTIONS(3376), - [anon_sym_str] = ACTIONS(3376), - [anon_sym_char] = ACTIONS(3376), - [anon_sym_DASH] = ACTIONS(763), - [anon_sym_BANG] = ACTIONS(763), - [anon_sym_AMP] = ACTIONS(763), - [anon_sym_PIPE] = ACTIONS(763), - [anon_sym_LT] = ACTIONS(763), - [anon_sym_DOT_DOT] = ACTIONS(763), - [anon_sym_COMMA] = ACTIONS(763), - [anon_sym_COLON_COLON] = ACTIONS(763), - [anon_sym_POUND] = ACTIONS(789), - [anon_sym_SQUOTE] = ACTIONS(3376), - [anon_sym_async] = ACTIONS(3376), - [anon_sym_break] = ACTIONS(3376), - [anon_sym_const] = ACTIONS(3376), - [anon_sym_continue] = ACTIONS(3376), - [anon_sym_default] = ACTIONS(3376), - [anon_sym_for] = ACTIONS(3376), - [anon_sym_gen] = ACTIONS(3376), - [anon_sym_if] = ACTIONS(3376), - [anon_sym_loop] = ACTIONS(3376), - [anon_sym_match] = ACTIONS(3376), - [anon_sym_return] = ACTIONS(3376), - [anon_sym_static] = ACTIONS(3376), - [anon_sym_union] = ACTIONS(3376), - [anon_sym_unsafe] = ACTIONS(3376), - [anon_sym_while] = ACTIONS(3376), - [anon_sym_yield] = ACTIONS(3376), - [anon_sym_move] = ACTIONS(3376), - [anon_sym_try] = ACTIONS(3376), - [sym_integer_literal] = ACTIONS(763), - [aux_sym_string_literal_token1] = ACTIONS(763), - [sym_char_literal] = ACTIONS(763), - [anon_sym_true] = ACTIONS(3376), - [anon_sym_false] = ACTIONS(3376), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3376), - [sym_super] = ACTIONS(3376), - [sym_crate] = ACTIONS(3376), - [sym_metavariable] = ACTIONS(763), - [sym__raw_string_literal_start] = ACTIONS(763), - [sym_float_literal] = ACTIONS(763), + [sym_identifier] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(3106), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1108), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), }, [STATE(1059)] = { + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(3089), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(3823), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2044), [sym_line_comment] = STATE(1059), [sym_block_comment] = STATE(1059), - [sym_identifier] = ACTIONS(3378), - [anon_sym_LPAREN] = ACTIONS(3380), - [anon_sym_LBRACK] = ACTIONS(3380), - [anon_sym_RBRACK] = ACTIONS(3380), - [anon_sym_LBRACE] = ACTIONS(3380), - [anon_sym_STAR] = ACTIONS(3380), - [anon_sym_u8] = ACTIONS(3378), - [anon_sym_i8] = ACTIONS(3378), - [anon_sym_u16] = ACTIONS(3378), - [anon_sym_i16] = ACTIONS(3378), - [anon_sym_u32] = ACTIONS(3378), - [anon_sym_i32] = ACTIONS(3378), - [anon_sym_u64] = ACTIONS(3378), - [anon_sym_i64] = ACTIONS(3378), - [anon_sym_u128] = ACTIONS(3378), - [anon_sym_i128] = ACTIONS(3378), - [anon_sym_isize] = ACTIONS(3378), - [anon_sym_usize] = ACTIONS(3378), - [anon_sym_f32] = ACTIONS(3378), - [anon_sym_f64] = ACTIONS(3378), - [anon_sym_bool] = ACTIONS(3378), - [anon_sym_str] = ACTIONS(3378), - [anon_sym_char] = ACTIONS(3378), - [anon_sym_DASH] = ACTIONS(3380), - [anon_sym_BANG] = ACTIONS(3380), - [anon_sym_AMP] = ACTIONS(3380), - [anon_sym_PIPE] = ACTIONS(3380), - [anon_sym_LT] = ACTIONS(3380), - [anon_sym_DOT_DOT] = ACTIONS(3380), - [anon_sym_COMMA] = ACTIONS(3380), - [anon_sym_COLON_COLON] = ACTIONS(3380), - [anon_sym_POUND] = ACTIONS(3380), - [anon_sym_SQUOTE] = ACTIONS(3378), - [anon_sym_async] = ACTIONS(3378), - [anon_sym_break] = ACTIONS(3378), - [anon_sym_const] = ACTIONS(3378), - [anon_sym_continue] = ACTIONS(3378), - [anon_sym_default] = ACTIONS(3378), - [anon_sym_for] = ACTIONS(3378), - [anon_sym_gen] = ACTIONS(3378), - [anon_sym_if] = ACTIONS(3378), - [anon_sym_loop] = ACTIONS(3378), - [anon_sym_match] = ACTIONS(3378), - [anon_sym_return] = ACTIONS(3378), - [anon_sym_static] = ACTIONS(3378), - [anon_sym_union] = ACTIONS(3378), - [anon_sym_unsafe] = ACTIONS(3378), - [anon_sym_while] = ACTIONS(3378), - [anon_sym_yield] = ACTIONS(3378), - [anon_sym_move] = ACTIONS(3378), - [anon_sym_try] = ACTIONS(3378), - [sym_integer_literal] = ACTIONS(3380), - [aux_sym_string_literal_token1] = ACTIONS(3380), - [sym_char_literal] = ACTIONS(3380), - [anon_sym_true] = ACTIONS(3378), - [anon_sym_false] = ACTIONS(3378), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3378), - [sym_super] = ACTIONS(3378), - [sym_crate] = ACTIONS(3378), - [sym_metavariable] = ACTIONS(3380), - [sym__raw_string_literal_start] = ACTIONS(3380), - [sym_float_literal] = ACTIONS(3380), + [sym_identifier] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(3106), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1108), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), }, [STATE(1060)] = { + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(2320), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(3823), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2044), [sym_line_comment] = STATE(1060), [sym_block_comment] = STATE(1060), - [sym_identifier] = ACTIONS(2380), - [anon_sym_LPAREN] = ACTIONS(2378), - [anon_sym_LBRACK] = ACTIONS(2378), - [anon_sym_RBRACK] = ACTIONS(2378), - [anon_sym_LBRACE] = 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_COMMA] = 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_for] = ACTIONS(2380), - [anon_sym_gen] = ACTIONS(2380), - [anon_sym_if] = ACTIONS(2380), - [anon_sym_loop] = ACTIONS(2380), - [anon_sym_match] = ACTIONS(2380), - [anon_sym_return] = ACTIONS(2380), - [anon_sym_static] = ACTIONS(2380), - [anon_sym_union] = ACTIONS(2380), - [anon_sym_unsafe] = ACTIONS(2380), - [anon_sym_while] = 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), + [sym_identifier] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(3106), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1108), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), }, [STATE(1061)] = { + [sym_function_modifiers] = STATE(3576), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(2081), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(3771), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3771), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2285), [sym_line_comment] = STATE(1061), [sym_block_comment] = STATE(1061), - [sym_identifier] = ACTIONS(3382), - [anon_sym_LPAREN] = ACTIONS(3384), - [anon_sym_LBRACK] = ACTIONS(3384), - [anon_sym_LBRACE] = ACTIONS(3384), - [anon_sym_STAR] = ACTIONS(3384), - [anon_sym_u8] = ACTIONS(3382), - [anon_sym_i8] = ACTIONS(3382), - [anon_sym_u16] = ACTIONS(3382), - [anon_sym_i16] = ACTIONS(3382), - [anon_sym_u32] = ACTIONS(3382), - [anon_sym_i32] = ACTIONS(3382), - [anon_sym_u64] = ACTIONS(3382), - [anon_sym_i64] = ACTIONS(3382), - [anon_sym_u128] = ACTIONS(3382), - [anon_sym_i128] = ACTIONS(3382), - [anon_sym_isize] = ACTIONS(3382), - [anon_sym_usize] = ACTIONS(3382), - [anon_sym_f32] = ACTIONS(3382), - [anon_sym_f64] = ACTIONS(3382), - [anon_sym_bool] = ACTIONS(3382), - [anon_sym_str] = ACTIONS(3382), - [anon_sym_char] = ACTIONS(3382), - [anon_sym_DASH] = ACTIONS(3382), - [anon_sym_BANG] = ACTIONS(3384), - [anon_sym_AMP] = ACTIONS(3384), - [anon_sym_PIPE] = ACTIONS(3384), - [anon_sym_LT] = ACTIONS(3384), - [anon_sym__] = ACTIONS(3382), - [anon_sym_DOT_DOT] = ACTIONS(3384), - [anon_sym_COLON_COLON] = ACTIONS(3384), - [anon_sym_DASH_GT] = ACTIONS(3384), - [anon_sym_SQUOTE] = ACTIONS(3382), - [anon_sym_async] = ACTIONS(3382), - [anon_sym_break] = ACTIONS(3382), - [anon_sym_const] = ACTIONS(3382), - [anon_sym_continue] = ACTIONS(3382), - [anon_sym_default] = ACTIONS(3382), - [anon_sym_for] = ACTIONS(3382), - [anon_sym_gen] = ACTIONS(3382), - [anon_sym_if] = ACTIONS(3382), - [anon_sym_loop] = ACTIONS(3382), - [anon_sym_match] = ACTIONS(3382), - [anon_sym_return] = ACTIONS(3382), - [anon_sym_static] = ACTIONS(3382), - [anon_sym_union] = ACTIONS(3382), - [anon_sym_unsafe] = ACTIONS(3382), - [anon_sym_while] = ACTIONS(3382), - [anon_sym_yield] = ACTIONS(3382), - [anon_sym_move] = ACTIONS(3382), - [anon_sym_try] = ACTIONS(3382), - [sym_integer_literal] = ACTIONS(3384), - [aux_sym_string_literal_token1] = ACTIONS(3384), - [sym_char_literal] = ACTIONS(3384), - [anon_sym_true] = ACTIONS(3382), - [anon_sym_false] = ACTIONS(3382), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3382), - [sym_super] = ACTIONS(3382), - [sym_crate] = ACTIONS(3382), - [sym_metavariable] = ACTIONS(3384), - [sym__raw_string_literal_start] = ACTIONS(3384), - [sym_float_literal] = ACTIONS(3384), + [sym_identifier] = ACTIONS(3190), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1624), + [anon_sym_QMARK] = ACTIONS(1626), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1630), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1640), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1644), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1646), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), }, [STATE(1062)] = { + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(2094), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(3823), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2044), [sym_line_comment] = STATE(1062), [sym_block_comment] = STATE(1062), - [sym_identifier] = ACTIONS(1603), - [anon_sym_LPAREN] = ACTIONS(1605), - [anon_sym_LBRACK] = ACTIONS(1605), - [anon_sym_LBRACE] = ACTIONS(1605), - [anon_sym_STAR] = ACTIONS(1605), - [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_DASH] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1605), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_PIPE] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(1605), - [anon_sym__] = ACTIONS(1603), - [anon_sym_DOT_DOT] = ACTIONS(1605), - [anon_sym_COLON_COLON] = ACTIONS(1605), - [anon_sym_DASH_GT] = ACTIONS(1605), - [anon_sym_SQUOTE] = ACTIONS(1603), - [anon_sym_async] = ACTIONS(1603), - [anon_sym_break] = ACTIONS(1603), - [anon_sym_const] = ACTIONS(1603), - [anon_sym_continue] = ACTIONS(1603), - [anon_sym_default] = ACTIONS(1603), - [anon_sym_for] = ACTIONS(1603), - [anon_sym_gen] = ACTIONS(1603), - [anon_sym_if] = ACTIONS(1603), - [anon_sym_loop] = ACTIONS(1603), - [anon_sym_match] = ACTIONS(1603), - [anon_sym_return] = ACTIONS(1603), - [anon_sym_static] = ACTIONS(1603), - [anon_sym_union] = ACTIONS(1603), - [anon_sym_unsafe] = ACTIONS(1603), - [anon_sym_while] = ACTIONS(1603), - [anon_sym_yield] = ACTIONS(1603), - [anon_sym_move] = ACTIONS(1603), - [anon_sym_try] = ACTIONS(1603), - [sym_integer_literal] = ACTIONS(1605), - [aux_sym_string_literal_token1] = ACTIONS(1605), - [sym_char_literal] = ACTIONS(1605), - [anon_sym_true] = ACTIONS(1603), - [anon_sym_false] = ACTIONS(1603), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1603), - [sym_super] = ACTIONS(1603), - [sym_crate] = ACTIONS(1603), - [sym_metavariable] = ACTIONS(1605), - [sym__raw_string_literal_start] = ACTIONS(1605), - [sym_float_literal] = ACTIONS(1605), + [sym_identifier] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(3106), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1108), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), + }, + [STATE(1063)] = { + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2098), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(3823), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(3823), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2098), + [sym_tuple_type] = STATE(2098), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2048), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2098), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2045), + [sym_line_comment] = STATE(1063), + [sym_block_comment] = STATE(1063), + [sym_identifier] = ACTIONS(3398), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(3106), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(3400), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1108), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), + }, + [STATE(1064)] = { + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(3083), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(3823), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2044), + [sym_line_comment] = STATE(1064), + [sym_block_comment] = STATE(1064), + [sym_identifier] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(3106), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1108), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), + }, + [STATE(1065)] = { + [sym_function_modifiers] = STATE(3849), + [aux_sym__item_modifiers] = STATE(2284), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(3738), + [sym__type] = STATE(2914), + [sym_bracketed_type] = STATE(3806), + [sym_lifetime] = STATE(3823), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2054), + [sym_generic_type_with_turbofish] = STATE(3573), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3823), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3527), + [sym_scoped_type_identifier] = STATE(2044), + [sym_line_comment] = STATE(1065), + [sym_block_comment] = STATE(1065), + [sym_identifier] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(3106), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_gen] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_safe] = ACTIONS(1088), + [anon_sym_dyn] = ACTIONS(1108), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1652), + }, + [STATE(1066)] = { + [sym_attribute_item] = STATE(1068), + [sym_line_comment] = STATE(1066), + [sym_block_comment] = STATE(1066), + [aux_sym_enum_variant_list_repeat1] = STATE(1066), + [sym_identifier] = ACTIONS(3402), + [anon_sym_LPAREN] = ACTIONS(786), + [anon_sym_LBRACK] = ACTIONS(786), + [anon_sym_RBRACK] = ACTIONS(786), + [anon_sym_LBRACE] = ACTIONS(786), + [anon_sym_STAR] = ACTIONS(786), + [anon_sym_u8] = ACTIONS(3402), + [anon_sym_i8] = ACTIONS(3402), + [anon_sym_u16] = ACTIONS(3402), + [anon_sym_i16] = ACTIONS(3402), + [anon_sym_u32] = ACTIONS(3402), + [anon_sym_i32] = ACTIONS(3402), + [anon_sym_u64] = ACTIONS(3402), + [anon_sym_i64] = ACTIONS(3402), + [anon_sym_u128] = ACTIONS(3402), + [anon_sym_i128] = ACTIONS(3402), + [anon_sym_isize] = ACTIONS(3402), + [anon_sym_usize] = ACTIONS(3402), + [anon_sym_f32] = ACTIONS(3402), + [anon_sym_f64] = ACTIONS(3402), + [anon_sym_bool] = ACTIONS(3402), + [anon_sym_str] = ACTIONS(3402), + [anon_sym_char] = ACTIONS(3402), + [anon_sym_DASH] = ACTIONS(786), + [anon_sym_BANG] = ACTIONS(786), + [anon_sym_AMP] = ACTIONS(786), + [anon_sym_PIPE] = ACTIONS(786), + [anon_sym_LT] = ACTIONS(786), + [anon_sym_DOT_DOT] = ACTIONS(786), + [anon_sym_COMMA] = ACTIONS(786), + [anon_sym_COLON_COLON] = ACTIONS(786), + [anon_sym_POUND] = ACTIONS(812), + [anon_sym_SQUOTE] = ACTIONS(3402), + [anon_sym_async] = ACTIONS(3402), + [anon_sym_break] = ACTIONS(3402), + [anon_sym_const] = ACTIONS(3402), + [anon_sym_continue] = ACTIONS(3402), + [anon_sym_default] = ACTIONS(3402), + [anon_sym_for] = ACTIONS(3402), + [anon_sym_gen] = ACTIONS(3402), + [anon_sym_if] = ACTIONS(3402), + [anon_sym_loop] = ACTIONS(3402), + [anon_sym_match] = ACTIONS(3402), + [anon_sym_return] = ACTIONS(3402), + [anon_sym_static] = ACTIONS(3402), + [anon_sym_union] = ACTIONS(3402), + [anon_sym_unsafe] = ACTIONS(3402), + [anon_sym_while] = ACTIONS(3402), + [anon_sym_yield] = ACTIONS(3402), + [anon_sym_move] = ACTIONS(3402), + [anon_sym_try] = ACTIONS(3402), + [sym_integer_literal] = ACTIONS(786), + [aux_sym_string_literal_token1] = ACTIONS(786), + [sym_char_literal] = ACTIONS(786), + [anon_sym_true] = ACTIONS(3402), + [anon_sym_false] = ACTIONS(3402), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(3402), + [sym_super] = ACTIONS(3402), + [sym_crate] = ACTIONS(3402), + [sym_metavariable] = ACTIONS(786), + [sym__raw_string_literal_start] = ACTIONS(786), + [sym_float_literal] = ACTIONS(786), + }, + [STATE(1067)] = { + [sym_line_comment] = STATE(1067), + [sym_block_comment] = STATE(1067), + [sym_identifier] = ACTIONS(1937), + [anon_sym_LPAREN] = ACTIONS(1935), + [anon_sym_LBRACK] = ACTIONS(1935), + [anon_sym_RBRACK] = ACTIONS(1935), + [anon_sym_LBRACE] = 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_COMMA] = 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_for] = ACTIONS(1937), + [anon_sym_gen] = ACTIONS(1937), + [anon_sym_if] = ACTIONS(1937), + [anon_sym_loop] = ACTIONS(1937), + [anon_sym_match] = ACTIONS(1937), + [anon_sym_return] = ACTIONS(1937), + [anon_sym_static] = ACTIONS(1937), + [anon_sym_union] = ACTIONS(1937), + [anon_sym_unsafe] = ACTIONS(1937), + [anon_sym_while] = 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(1068)] = { + [sym_line_comment] = STATE(1068), + [sym_block_comment] = STATE(1068), + [sym_identifier] = ACTIONS(3404), + [anon_sym_LPAREN] = ACTIONS(3406), + [anon_sym_LBRACK] = ACTIONS(3406), + [anon_sym_RBRACK] = ACTIONS(3406), + [anon_sym_LBRACE] = ACTIONS(3406), + [anon_sym_STAR] = ACTIONS(3406), + [anon_sym_u8] = ACTIONS(3404), + [anon_sym_i8] = ACTIONS(3404), + [anon_sym_u16] = ACTIONS(3404), + [anon_sym_i16] = ACTIONS(3404), + [anon_sym_u32] = ACTIONS(3404), + [anon_sym_i32] = ACTIONS(3404), + [anon_sym_u64] = ACTIONS(3404), + [anon_sym_i64] = ACTIONS(3404), + [anon_sym_u128] = ACTIONS(3404), + [anon_sym_i128] = ACTIONS(3404), + [anon_sym_isize] = ACTIONS(3404), + [anon_sym_usize] = ACTIONS(3404), + [anon_sym_f32] = ACTIONS(3404), + [anon_sym_f64] = ACTIONS(3404), + [anon_sym_bool] = ACTIONS(3404), + [anon_sym_str] = ACTIONS(3404), + [anon_sym_char] = ACTIONS(3404), + [anon_sym_DASH] = ACTIONS(3406), + [anon_sym_BANG] = ACTIONS(3406), + [anon_sym_AMP] = ACTIONS(3406), + [anon_sym_PIPE] = ACTIONS(3406), + [anon_sym_LT] = ACTIONS(3406), + [anon_sym_DOT_DOT] = ACTIONS(3406), + [anon_sym_COMMA] = ACTIONS(3406), + [anon_sym_COLON_COLON] = ACTIONS(3406), + [anon_sym_POUND] = ACTIONS(3406), + [anon_sym_SQUOTE] = ACTIONS(3404), + [anon_sym_async] = ACTIONS(3404), + [anon_sym_break] = ACTIONS(3404), + [anon_sym_const] = ACTIONS(3404), + [anon_sym_continue] = ACTIONS(3404), + [anon_sym_default] = ACTIONS(3404), + [anon_sym_for] = ACTIONS(3404), + [anon_sym_gen] = ACTIONS(3404), + [anon_sym_if] = ACTIONS(3404), + [anon_sym_loop] = ACTIONS(3404), + [anon_sym_match] = ACTIONS(3404), + [anon_sym_return] = ACTIONS(3404), + [anon_sym_static] = ACTIONS(3404), + [anon_sym_union] = ACTIONS(3404), + [anon_sym_unsafe] = ACTIONS(3404), + [anon_sym_while] = ACTIONS(3404), + [anon_sym_yield] = ACTIONS(3404), + [anon_sym_move] = ACTIONS(3404), + [anon_sym_try] = ACTIONS(3404), + [sym_integer_literal] = ACTIONS(3406), + [aux_sym_string_literal_token1] = ACTIONS(3406), + [sym_char_literal] = ACTIONS(3406), + [anon_sym_true] = ACTIONS(3404), + [anon_sym_false] = ACTIONS(3404), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(3404), + [sym_super] = ACTIONS(3404), + [sym_crate] = ACTIONS(3404), + [sym_metavariable] = ACTIONS(3406), + [sym__raw_string_literal_start] = ACTIONS(3406), + [sym_float_literal] = ACTIONS(3406), + }, + [STATE(1069)] = { + [sym_line_comment] = STATE(1069), + [sym_block_comment] = STATE(1069), + [sym_identifier] = ACTIONS(3408), + [anon_sym_LPAREN] = ACTIONS(3410), + [anon_sym_LBRACK] = ACTIONS(3410), + [anon_sym_LBRACE] = ACTIONS(3410), + [anon_sym_STAR] = ACTIONS(3410), + [anon_sym_u8] = ACTIONS(3408), + [anon_sym_i8] = ACTIONS(3408), + [anon_sym_u16] = ACTIONS(3408), + [anon_sym_i16] = ACTIONS(3408), + [anon_sym_u32] = ACTIONS(3408), + [anon_sym_i32] = ACTIONS(3408), + [anon_sym_u64] = ACTIONS(3408), + [anon_sym_i64] = ACTIONS(3408), + [anon_sym_u128] = ACTIONS(3408), + [anon_sym_i128] = ACTIONS(3408), + [anon_sym_isize] = ACTIONS(3408), + [anon_sym_usize] = ACTIONS(3408), + [anon_sym_f32] = ACTIONS(3408), + [anon_sym_f64] = ACTIONS(3408), + [anon_sym_bool] = ACTIONS(3408), + [anon_sym_str] = ACTIONS(3408), + [anon_sym_char] = ACTIONS(3408), + [anon_sym_DASH] = ACTIONS(3408), + [anon_sym_BANG] = ACTIONS(3410), + [anon_sym_AMP] = ACTIONS(3410), + [anon_sym_PIPE] = ACTIONS(3410), + [anon_sym_LT] = ACTIONS(3410), + [anon_sym__] = ACTIONS(3408), + [anon_sym_DOT_DOT] = ACTIONS(3410), + [anon_sym_COLON_COLON] = ACTIONS(3410), + [anon_sym_DASH_GT] = ACTIONS(3410), + [anon_sym_SQUOTE] = ACTIONS(3408), + [anon_sym_async] = ACTIONS(3408), + [anon_sym_break] = ACTIONS(3408), + [anon_sym_const] = ACTIONS(3408), + [anon_sym_continue] = ACTIONS(3408), + [anon_sym_default] = ACTIONS(3408), + [anon_sym_for] = ACTIONS(3408), + [anon_sym_gen] = ACTIONS(3408), + [anon_sym_if] = ACTIONS(3408), + [anon_sym_loop] = ACTIONS(3408), + [anon_sym_match] = ACTIONS(3408), + [anon_sym_return] = ACTIONS(3408), + [anon_sym_static] = ACTIONS(3408), + [anon_sym_union] = ACTIONS(3408), + [anon_sym_unsafe] = ACTIONS(3408), + [anon_sym_while] = ACTIONS(3408), + [anon_sym_yield] = ACTIONS(3408), + [anon_sym_move] = ACTIONS(3408), + [anon_sym_try] = ACTIONS(3408), + [sym_integer_literal] = ACTIONS(3410), + [aux_sym_string_literal_token1] = ACTIONS(3410), + [sym_char_literal] = ACTIONS(3410), + [anon_sym_true] = ACTIONS(3408), + [anon_sym_false] = ACTIONS(3408), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(3408), + [sym_super] = ACTIONS(3408), + [sym_crate] = ACTIONS(3408), + [sym_metavariable] = ACTIONS(3410), + [sym__raw_string_literal_start] = ACTIONS(3410), + [sym_float_literal] = ACTIONS(3410), + }, + [STATE(1070)] = { + [sym_line_comment] = STATE(1070), + [sym_block_comment] = STATE(1070), + [sym_identifier] = ACTIONS(1612), + [anon_sym_LPAREN] = ACTIONS(1614), + [anon_sym_LBRACK] = ACTIONS(1614), + [anon_sym_LBRACE] = ACTIONS(1614), + [anon_sym_STAR] = ACTIONS(1614), + [anon_sym_u8] = ACTIONS(1612), + [anon_sym_i8] = ACTIONS(1612), + [anon_sym_u16] = ACTIONS(1612), + [anon_sym_i16] = ACTIONS(1612), + [anon_sym_u32] = ACTIONS(1612), + [anon_sym_i32] = ACTIONS(1612), + [anon_sym_u64] = ACTIONS(1612), + [anon_sym_i64] = ACTIONS(1612), + [anon_sym_u128] = ACTIONS(1612), + [anon_sym_i128] = ACTIONS(1612), + [anon_sym_isize] = ACTIONS(1612), + [anon_sym_usize] = ACTIONS(1612), + [anon_sym_f32] = ACTIONS(1612), + [anon_sym_f64] = ACTIONS(1612), + [anon_sym_bool] = ACTIONS(1612), + [anon_sym_str] = ACTIONS(1612), + [anon_sym_char] = ACTIONS(1612), + [anon_sym_DASH] = ACTIONS(1612), + [anon_sym_BANG] = ACTIONS(1614), + [anon_sym_AMP] = ACTIONS(1614), + [anon_sym_PIPE] = ACTIONS(1614), + [anon_sym_LT] = ACTIONS(1614), + [anon_sym__] = ACTIONS(1612), + [anon_sym_DOT_DOT] = ACTIONS(1614), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_DASH_GT] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(1612), + [anon_sym_async] = ACTIONS(1612), + [anon_sym_break] = ACTIONS(1612), + [anon_sym_const] = ACTIONS(1612), + [anon_sym_continue] = ACTIONS(1612), + [anon_sym_default] = ACTIONS(1612), + [anon_sym_for] = ACTIONS(1612), + [anon_sym_gen] = ACTIONS(1612), + [anon_sym_if] = ACTIONS(1612), + [anon_sym_loop] = ACTIONS(1612), + [anon_sym_match] = ACTIONS(1612), + [anon_sym_return] = ACTIONS(1612), + [anon_sym_static] = ACTIONS(1612), + [anon_sym_union] = ACTIONS(1612), + [anon_sym_unsafe] = ACTIONS(1612), + [anon_sym_while] = ACTIONS(1612), + [anon_sym_yield] = ACTIONS(1612), + [anon_sym_move] = ACTIONS(1612), + [anon_sym_try] = ACTIONS(1612), + [sym_integer_literal] = ACTIONS(1614), + [aux_sym_string_literal_token1] = ACTIONS(1614), + [sym_char_literal] = ACTIONS(1614), + [anon_sym_true] = ACTIONS(1612), + [anon_sym_false] = ACTIONS(1612), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1612), + [sym_super] = ACTIONS(1612), + [sym_crate] = ACTIONS(1612), + [sym_metavariable] = ACTIONS(1614), + [sym__raw_string_literal_start] = ACTIONS(1614), + [sym_float_literal] = ACTIONS(1614), }, }; 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(1063), 2, + STATE(1071), 2, sym_line_comment, sym_block_comment, - ACTIONS(1227), 18, + ACTIONS(1278), 18, sym__raw_string_literal_start, sym_float_literal, anon_sym_LPAREN, @@ -116025,7 +117442,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(3386), 42, + ACTIONS(3412), 42, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116069,14 +117486,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(1064), 2, + STATE(1072), 2, sym_line_comment, sym_block_comment, - ACTIONS(2378), 18, + ACTIONS(1935), 18, sym__raw_string_literal_start, sym_float_literal, anon_sym_LPAREN, @@ -116095,7 +117512,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(2380), 40, + ACTIONS(1937), 41, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116127,6 +117544,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, anon_sym_ref, anon_sym_dyn, sym_mutable_specifier, @@ -116136,15 +117554,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [148] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [149] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1065), 2, + STATE(1073), 2, sym_line_comment, sym_block_comment, - ACTIONS(3390), 20, + ACTIONS(3416), 20, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -116165,7 +117583,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_SQUOTE, sym_metavariable, - ACTIONS(3388), 36, + ACTIONS(3414), 37, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116195,6 +117613,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_where, anon_sym_extern, + anon_sym_safe, anon_sym_else, anon_sym_dyn, sym_mutable_specifier, @@ -116202,57 +117621,57 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [219] = 21, + [221] = 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(1117), 1, + ACTIONS(1064), 1, anon_sym_DASH, - ACTIONS(1167), 1, + ACTIONS(1114), 1, aux_sym_string_literal_token1, - ACTIONS(1177), 1, + ACTIONS(1124), 1, sym__raw_string_literal_start, - ACTIONS(2098), 1, + ACTIONS(2390), 1, anon_sym_COLON_COLON, - ACTIONS(3392), 1, + ACTIONS(3418), 1, sym_identifier, - ACTIONS(3402), 1, + ACTIONS(3428), 1, sym_metavariable, - STATE(2129), 1, + STATE(2174), 1, sym_scoped_identifier, - STATE(2204), 1, + STATE(2210), 1, sym__literal_pattern, - STATE(3732), 1, + STATE(3790), 1, sym_bracketed_type, - STATE(3800), 1, + STATE(3839), 1, sym_generic_type_with_turbofish, - ACTIONS(1169), 2, + ACTIONS(1116), 2, anon_sym_true, anon_sym_false, - STATE(1066), 2, + STATE(1074), 2, sym_line_comment, sym_block_comment, - ACTIONS(1165), 3, + ACTIONS(1112), 3, sym_float_literal, sym_integer_literal, sym_char_literal, - ACTIONS(3396), 3, + ACTIONS(3422), 3, anon_sym_COLON, anon_sym_else, anon_sym_in, - ACTIONS(3400), 3, + ACTIONS(3426), 3, sym_self, sym_super, sym_crate, - STATE(2110), 4, + STATE(2129), 4, sym_negative_literal, sym_string_literal, sym_raw_string_literal, sym_boolean_literal, - ACTIONS(3394), 7, + ACTIONS(3420), 7, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -116260,7 +117679,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_EQ, anon_sym_COMMA, - ACTIONS(3398), 20, + ACTIONS(3424), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116281,57 +117700,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_gen, anon_sym_union, - [319] = 21, + [321] = 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(1117), 1, + ACTIONS(1064), 1, anon_sym_DASH, - ACTIONS(1167), 1, + ACTIONS(1114), 1, aux_sym_string_literal_token1, - ACTIONS(1177), 1, + ACTIONS(1124), 1, sym__raw_string_literal_start, - ACTIONS(2098), 1, + ACTIONS(2390), 1, anon_sym_COLON_COLON, - ACTIONS(3404), 1, + ACTIONS(3430), 1, sym_identifier, - ACTIONS(3414), 1, + ACTIONS(3440), 1, sym_metavariable, - STATE(2154), 1, + STATE(2168), 1, sym_scoped_identifier, - STATE(2216), 1, + STATE(2209), 1, sym__literal_pattern, - STATE(3732), 1, + STATE(3790), 1, sym_bracketed_type, - STATE(3800), 1, + STATE(3839), 1, sym_generic_type_with_turbofish, - ACTIONS(1169), 2, + ACTIONS(1116), 2, anon_sym_true, anon_sym_false, - STATE(1067), 2, + STATE(1075), 2, sym_line_comment, sym_block_comment, - ACTIONS(1165), 3, + ACTIONS(1112), 3, sym_float_literal, sym_integer_literal, sym_char_literal, - ACTIONS(3408), 3, + ACTIONS(3434), 3, anon_sym_COLON, anon_sym_else, anon_sym_in, - ACTIONS(3412), 3, + ACTIONS(3438), 3, sym_self, sym_super, sym_crate, - STATE(2110), 4, + STATE(2129), 4, sym_negative_literal, sym_string_literal, sym_raw_string_literal, sym_boolean_literal, - ACTIONS(3406), 7, + ACTIONS(3432), 7, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -116339,7 +117758,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_EQ, anon_sym_COMMA, - ACTIONS(3410), 20, + ACTIONS(3436), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116360,57 +117779,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_gen, anon_sym_union, - [419] = 21, + [421] = 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(1117), 1, + ACTIONS(1064), 1, anon_sym_DASH, - ACTIONS(1167), 1, + ACTIONS(1114), 1, aux_sym_string_literal_token1, - ACTIONS(1177), 1, + ACTIONS(1124), 1, sym__raw_string_literal_start, - ACTIONS(2098), 1, + ACTIONS(2390), 1, anon_sym_COLON_COLON, - ACTIONS(3416), 1, + ACTIONS(3442), 1, sym_identifier, - ACTIONS(3426), 1, + ACTIONS(3452), 1, sym_metavariable, - STATE(2166), 1, + STATE(2160), 1, sym_scoped_identifier, - STATE(2179), 1, + STATE(2225), 1, sym__literal_pattern, - STATE(3732), 1, + STATE(3790), 1, sym_bracketed_type, - STATE(3800), 1, + STATE(3839), 1, sym_generic_type_with_turbofish, - ACTIONS(1169), 2, + ACTIONS(1116), 2, anon_sym_true, anon_sym_false, - STATE(1068), 2, + STATE(1076), 2, sym_line_comment, sym_block_comment, - ACTIONS(1165), 3, + ACTIONS(1112), 3, sym_float_literal, sym_integer_literal, sym_char_literal, - ACTIONS(3420), 3, + ACTIONS(3446), 3, anon_sym_COLON, anon_sym_else, anon_sym_in, - ACTIONS(3424), 3, + ACTIONS(3450), 3, sym_self, sym_super, sym_crate, - STATE(2110), 4, + STATE(2129), 4, sym_negative_literal, sym_string_literal, sym_raw_string_literal, sym_boolean_literal, - ACTIONS(3418), 7, + ACTIONS(3444), 7, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -116418,7 +117837,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_EQ, anon_sym_COMMA, - ACTIONS(3422), 20, + ACTIONS(3448), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116439,160 +117858,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_gen, anon_sym_union, - [519] = 11, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [521] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3430), 1, - anon_sym_LPAREN, - ACTIONS(3434), 1, - anon_sym_BANG, - ACTIONS(3436), 1, - anon_sym_COLON_COLON, - ACTIONS(3438), 1, - anon_sym_LT2, - STATE(1288), 1, - sym_type_arguments, - STATE(1301), 1, - sym_parameters, - STATE(1069), 2, + STATE(1077), 2, sym_line_comment, sym_block_comment, - ACTIONS(3432), 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(3428), 27, + ACTIONS(1552), 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, - [596] = 12, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3444), 1, - anon_sym_BANG, - ACTIONS(3446), 1, - anon_sym_COLON_COLON, - ACTIONS(3448), 1, - anon_sym_SQUOTE, - ACTIONS(3450), 1, - anon_sym_move, - STATE(1468), 1, - sym_block, - STATE(3714), 1, - sym_label, - STATE(1070), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3442), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, + anon_sym_EQ_GT, anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3440), 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, - [675] = 11, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1554), 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, + [586] = 11, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3430), 1, + ACTIONS(3456), 1, anon_sym_LPAREN, - ACTIONS(3436), 1, + ACTIONS(3460), 1, + anon_sym_BANG, + ACTIONS(3462), 1, anon_sym_COLON_COLON, - ACTIONS(3438), 1, + ACTIONS(3464), 1, anon_sym_LT2, - ACTIONS(3456), 1, - anon_sym_BANG, - STATE(1288), 1, + STATE(1430), 1, sym_type_arguments, - STATE(1301), 1, + STATE(1444), 1, sym_parameters, - STATE(1071), 2, + STATE(1078), 2, sym_line_comment, sym_block_comment, - ACTIONS(3454), 17, + ACTIONS(3458), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -116610,7 +117956,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3452), 27, + ACTIONS(3454), 27, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACK, @@ -116638,81 +117984,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [752] = 11, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [663] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3430), 1, - anon_sym_LPAREN, - ACTIONS(3434), 1, - anon_sym_BANG, - ACTIONS(3436), 1, - anon_sym_COLON_COLON, - ACTIONS(3438), 1, - anon_sym_LT2, - STATE(1288), 1, - sym_type_arguments, - STATE(1301), 1, - sym_parameters, - STATE(1072), 2, + STATE(1079), 2, sym_line_comment, sym_block_comment, - ACTIONS(3460), 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(3458), 27, + ACTIONS(1048), 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, - [829] = 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(1046), 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, + [728] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1073), 2, + STATE(1080), 2, sym_line_comment, sym_block_comment, - ACTIONS(1467), 9, + ACTIONS(1438), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116722,7 +118062,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1469), 40, + ACTIONS(1440), 41, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116759,19 +118099,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, - [893] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [793] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1074), 2, + STATE(1081), 2, sym_line_comment, sym_block_comment, - ACTIONS(1449), 9, + ACTIONS(1446), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116781,7 +118122,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1451), 40, + ACTIONS(1448), 41, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116818,19 +118159,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, - [957] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [858] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1075), 2, + STATE(1082), 2, sym_line_comment, sym_block_comment, - ACTIONS(1433), 9, + ACTIONS(1178), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116840,7 +118182,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1435), 40, + ACTIONS(1176), 41, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116877,19 +118219,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, - [1021] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [923] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1076), 2, + STATE(1083), 2, sym_line_comment, sym_block_comment, - ACTIONS(1441), 9, + ACTIONS(1454), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116899,7 +118242,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1443), 40, + ACTIONS(1456), 41, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116936,40 +118279,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, - [1085] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [988] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3466), 1, - anon_sym_POUND, - STATE(1145), 2, - sym_attribute_item, - sym_inner_attribute_item, - STATE(1077), 3, + STATE(1084), 2, sym_line_comment, sym_block_comment, - aux_sym_match_arm_repeat1, - ACTIONS(3464), 14, - sym__raw_string_literal_start, - sym_float_literal, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DASH, - anon_sym_AMP, + ACTIONS(1442), 9, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_LT, - anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, + anon_sym_POUND, sym_metavariable, - ACTIONS(3462), 31, + ACTIONS(1444), 41, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116987,29 +118320,39 @@ 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_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_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, - [1153] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [1053] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1078), 2, + STATE(1085), 2, sym_line_comment, sym_block_comment, - ACTIONS(1047), 9, + ACTIONS(1450), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117019,7 +118362,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1045), 40, + ACTIONS(1452), 41, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117056,29 +118399,99 @@ 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, - [1217] = 10, - ACTIONS(103), 1, + [1118] = 12, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(348), 1, + anon_sym_LBRACE, + ACTIONS(3470), 1, + anon_sym_BANG, + ACTIONS(3472), 1, + anon_sym_COLON_COLON, + ACTIONS(3474), 1, + anon_sym_SQUOTE, + ACTIONS(3476), 1, + anon_sym_move, + STATE(1539), 1, + sym_block, + STATE(3750), 1, + sym_label, + STATE(1086), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3468), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3466), 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, + [1197] = 11, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3430), 1, + ACTIONS(3456), 1, anon_sym_LPAREN, - ACTIONS(3438), 1, - anon_sym_LT2, - ACTIONS(3473), 1, + ACTIONS(3460), 1, + anon_sym_BANG, + ACTIONS(3462), 1, anon_sym_COLON_COLON, - STATE(1288), 1, + ACTIONS(3464), 1, + anon_sym_LT2, + STATE(1430), 1, sym_type_arguments, - STATE(1301), 1, + STATE(1444), 1, sym_parameters, - STATE(1079), 2, + STATE(1087), 2, sym_line_comment, sym_block_comment, - ACTIONS(3471), 17, + ACTIONS(3480), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -117096,7 +118509,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3469), 27, + ACTIONS(3478), 27, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACK, @@ -117124,15 +118537,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [1291] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [1274] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1080), 2, + STATE(1088), 2, sym_line_comment, sym_block_comment, - ACTIONS(1531), 9, + ACTIONS(1518), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117142,7 +118555,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1533), 40, + ACTIONS(1520), 41, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117179,29 +118592,160 @@ 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, - [1355] = 5, - ACTIONS(103), 1, + [1339] = 11, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(3456), 1, + anon_sym_LPAREN, + ACTIONS(3462), 1, + anon_sym_COLON_COLON, + ACTIONS(3464), 1, + anon_sym_LT2, + ACTIONS(3486), 1, + anon_sym_BANG, + STATE(1430), 1, + sym_type_arguments, + STATE(1444), 1, + sym_parameters, + STATE(1089), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3484), 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(3482), 27, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [1416] = 10, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(3456), 1, + anon_sym_LPAREN, + ACTIONS(3464), 1, + anon_sym_LT2, + ACTIONS(3492), 1, + anon_sym_COLON_COLON, + STATE(1430), 1, + sym_type_arguments, + STATE(1444), 1, + sym_parameters, + STATE(1090), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3490), 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(3488), 27, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [1490] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1081), 2, + STATE(1091), 2, sym_line_comment, sym_block_comment, - ACTIONS(1055), 9, + ACTIONS(2558), 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(1053), 40, + ACTIONS(2560), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117225,7 +118769,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, @@ -117238,29 +118781,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, - [1419] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [1554] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1082), 2, + STATE(1092), 2, sym_line_comment, sym_block_comment, - ACTIONS(1437), 9, + ACTIONS(2912), 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(1439), 40, + ACTIONS(2914), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117284,7 +118828,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, @@ -117297,29 +118840,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, - [1483] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [1618] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1083), 2, + STATE(1093), 2, sym_line_comment, sym_block_comment, - ACTIONS(1445), 9, + ACTIONS(2039), 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(1447), 40, + ACTIONS(2041), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117343,7 +118887,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, @@ -117356,81 +118899,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, - [1547] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [1682] = 5, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3430), 1, - anon_sym_LPAREN, - ACTIONS(3438), 1, - anon_sym_LT2, - STATE(1289), 1, - sym_type_arguments, - STATE(1303), 1, - sym_parameters, - STATE(1084), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3477), 17, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_EQ, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3475), 27, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [1618] = 5, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1085), 2, + STATE(1094), 2, sym_line_comment, sym_block_comment, - ACTIONS(2250), 9, + ACTIONS(2274), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117440,7 +118922,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2252), 39, + ACTIONS(2276), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117476,70 +118958,100 @@ 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, - [1681] = 24, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [1746] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1615), 1, - anon_sym_LBRACK, - ACTIONS(3358), 1, - anon_sym_SQUOTE, - ACTIONS(3479), 1, - sym_identifier, - ACTIONS(3483), 1, - anon_sym_LPAREN, - ACTIONS(3485), 1, - anon_sym_STAR, - ACTIONS(3489), 1, - anon_sym_AMP, - ACTIONS(3491), 1, - anon_sym_COLON_COLON, - ACTIONS(3495), 1, - anon_sym_for, - ACTIONS(3499), 1, - sym_metavariable, - STATE(2559), 1, - sym_where_predicate, - STATE(2796), 1, - sym_scoped_type_identifier, - STATE(3036), 1, - sym_generic_type, - STATE(3610), 1, - sym_scoped_identifier, - STATE(3633), 1, - sym_bracketed_type, - STATE(3780), 1, - sym_generic_type_with_turbofish, - STATE(1086), 2, + STATE(1095), 2, sym_line_comment, sym_block_comment, - ACTIONS(3481), 3, + ACTIONS(2774), 9, anon_sym_SEMI, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, anon_sym_EQ, - ACTIONS(3493), 3, + anon_sym_LT, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2776), 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(3497), 3, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + anon_sym_safe, + sym_identifier, sym_self, sym_super, sym_crate, - STATE(3215), 6, - sym_higher_ranked_trait_bound, - sym_lifetime, - sym_array_type, - sym_tuple_type, - sym_reference_type, - sym_pointer_type, - ACTIONS(3487), 17, + [1810] = 7, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(3498), 1, + anon_sym_POUND, + STATE(1423), 2, + sym_attribute_item, + sym_inner_attribute_item, + STATE(1096), 3, + sym_line_comment, + sym_block_comment, + aux_sym_match_arm_repeat1, + ACTIONS(3496), 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(3494), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117557,25 +119069,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [1782] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + 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, + [1878] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1087), 2, + ACTIONS(3501), 1, + anon_sym_POUND, + STATE(1314), 1, + sym_attribute_item, + STATE(1097), 3, sym_line_comment, sym_block_comment, - ACTIONS(2512), 9, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_EQ, + aux_sym_enum_variant_list_repeat1, + ACTIONS(786), 11, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AMP, anon_sym_LT, - anon_sym_COMMA, anon_sym_COLON_COLON, - anon_sym_POUND, + anon_sym_SQUOTE, + sym_integer_literal, sym_metavariable, - ACTIONS(2514), 39, + ACTIONS(3402), 35, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117596,38 +119129,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_const, anon_sym_default, - anon_sym_enum, anon_sym_fn, + anon_sym_for, anon_sym_gen, anon_sym_impl, - anon_sym_let, - anon_sym_mod, anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, anon_sym_union, anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, + anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [1845] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [1946] = 9, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3505), 1, - anon_sym_BANG, - ACTIONS(3507), 1, - anon_sym_COLON_COLON, - STATE(1088), 2, + ACTIONS(3456), 1, + anon_sym_LPAREN, + ACTIONS(3464), 1, + anon_sym_LT2, + STATE(1420), 1, + sym_parameters, + STATE(1431), 1, + sym_type_arguments, + STATE(1098), 2, sym_line_comment, sym_block_comment, - ACTIONS(3503), 17, + ACTIONS(3506), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -117645,9 +119178,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3501), 29, + ACTIONS(3504), 27, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, @@ -117674,24 +119206,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - anon_sym_LT2, - [1912] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [2017] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3430), 1, - anon_sym_LPAREN, - ACTIONS(3438), 1, - anon_sym_LT2, - STATE(1289), 1, - sym_type_arguments, - STATE(1303), 1, - sym_parameters, - STATE(1089), 2, + ACTIONS(3512), 1, + anon_sym_BANG, + ACTIONS(3514), 1, + anon_sym_COLON_COLON, + STATE(1099), 2, sym_line_comment, sym_block_comment, - ACTIONS(3511), 17, + ACTIONS(3510), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -117709,8 +119236,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3509), 27, + ACTIONS(3508), 29, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, @@ -117737,100 +119265,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [1983] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_LT2, + [2084] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1090), 2, + ACTIONS(3520), 1, + anon_sym_BANG, + ACTIONS(3522), 1, + anon_sym_COLON_COLON, + STATE(1100), 2, sym_line_comment, sym_block_comment, - ACTIONS(2974), 9, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, + ACTIONS(3518), 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_LT, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2976), 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, - [2046] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3430), 1, - anon_sym_LPAREN, - ACTIONS(3438), 1, - anon_sym_LT2, - STATE(1289), 1, - sym_type_arguments, - STATE(1303), 1, - sym_parameters, - STATE(1091), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3515), 17, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_EQ, - anon_sym_EQ, - anon_sym_GT, + anon_sym_GT, anon_sym_LT, anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3513), 27, + ACTIONS(3516), 29, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, @@ -117857,23 +119325,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [2117] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_LT2, + [2151] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3430), 1, - anon_sym_LPAREN, - ACTIONS(3438), 1, - anon_sym_LT2, - STATE(1289), 1, - sym_type_arguments, - STATE(1303), 1, - sym_parameters, - STATE(1092), 2, + ACTIONS(3528), 1, + anon_sym_BANG, + ACTIONS(3530), 1, + anon_sym_COLON_COLON, + STATE(1101), 2, sym_line_comment, sym_block_comment, - ACTIONS(3519), 17, + ACTIONS(3526), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -117891,8 +119356,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3517), 27, + ACTIONS(3524), 29, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, @@ -117919,32 +119385,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [2188] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_LT2, + [2218] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3521), 1, - anon_sym_POUND, - STATE(1254), 1, - sym_attribute_item, - STATE(1093), 3, + STATE(1102), 2, sym_line_comment, sym_block_comment, - aux_sym_enum_variant_list_repeat1, - ACTIONS(763), 11, + ACTIONS(3534), 13, + anon_sym_SEMI, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_STAR, anon_sym_QMARK, anon_sym_BANG, anon_sym_AMP, + anon_sym_EQ, anon_sym_LT, anon_sym_COLON_COLON, anon_sym_SQUOTE, - sym_integer_literal, sym_metavariable, - ACTIONS(3376), 34, + ACTIONS(3532), 35, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117969,76 +119433,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_gen, anon_sym_impl, - anon_sym_pub, anon_sym_union, anon_sym_unsafe, anon_sym_use, + anon_sym_where, anon_sym_extern, + anon_sym_safe, anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [2255] = 24, + [2281] = 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(1615), 1, + ACTIONS(1620), 1, anon_sym_LBRACK, - ACTIONS(3358), 1, + ACTIONS(3340), 1, anon_sym_SQUOTE, - ACTIONS(3479), 1, + ACTIONS(3536), 1, sym_identifier, - ACTIONS(3483), 1, + ACTIONS(3540), 1, anon_sym_LPAREN, - ACTIONS(3485), 1, + ACTIONS(3542), 1, anon_sym_STAR, - ACTIONS(3489), 1, + ACTIONS(3546), 1, anon_sym_AMP, - ACTIONS(3491), 1, + ACTIONS(3548), 1, anon_sym_COLON_COLON, - ACTIONS(3495), 1, + ACTIONS(3552), 1, anon_sym_for, - ACTIONS(3499), 1, + ACTIONS(3556), 1, sym_metavariable, - STATE(2559), 1, + STATE(2591), 1, sym_where_predicate, - STATE(2796), 1, + STATE(2676), 1, sym_scoped_type_identifier, - STATE(3036), 1, + STATE(3070), 1, sym_generic_type, - STATE(3610), 1, - sym_scoped_identifier, - STATE(3633), 1, + STATE(3668), 1, sym_bracketed_type, - STATE(3780), 1, + STATE(3766), 1, + sym_scoped_identifier, + STATE(3828), 1, sym_generic_type_with_turbofish, - STATE(1094), 2, + STATE(1103), 2, sym_line_comment, sym_block_comment, - ACTIONS(3493), 3, + ACTIONS(3538), 3, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + ACTIONS(3550), 3, anon_sym_default, anon_sym_gen, anon_sym_union, - ACTIONS(3497), 3, + ACTIONS(3554), 3, sym_self, sym_super, sym_crate, - ACTIONS(3524), 3, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - STATE(3215), 6, + STATE(3369), 6, sym_higher_ranked_trait_bound, sym_lifetime, sym_array_type, sym_tuple_type, sym_reference_type, sym_pointer_type, - ACTIONS(3487), 17, + ACTIONS(3544), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118056,85 +119521,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [2356] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [2382] = 24, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3530), 1, - anon_sym_BANG, - ACTIONS(3532), 1, - anon_sym_COLON_COLON, - STATE(1095), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3528), 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(3526), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(1620), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, + ACTIONS(3340), 1, anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - anon_sym_LT2, - [2423] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1096), 2, + ACTIONS(3536), 1, + sym_identifier, + ACTIONS(3540), 1, + anon_sym_LPAREN, + ACTIONS(3542), 1, + anon_sym_STAR, + ACTIONS(3546), 1, + anon_sym_AMP, + ACTIONS(3548), 1, + anon_sym_COLON_COLON, + ACTIONS(3552), 1, + anon_sym_for, + ACTIONS(3556), 1, + sym_metavariable, + STATE(2426), 1, + sym_where_predicate, + STATE(2676), 1, + sym_scoped_type_identifier, + STATE(3070), 1, + sym_generic_type, + STATE(3668), 1, + sym_bracketed_type, + STATE(3766), 1, + sym_scoped_identifier, + STATE(3828), 1, + sym_generic_type_with_turbofish, + STATE(1104), 2, sym_line_comment, sym_block_comment, - ACTIONS(2658), 9, + ACTIONS(3550), 3, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + ACTIONS(3554), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(3558), 3, anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_EQ, - anon_sym_LT, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2660), 39, + STATE(3369), 6, + sym_higher_ranked_trait_bound, + sym_lifetime, + sym_array_type, + sym_tuple_type, + sym_reference_type, + sym_pointer_type, + ACTIONS(3544), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118152,47 +119598,29 @@ 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, - [2486] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [2483] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1097), 2, + STATE(1105), 2, sym_line_comment, sym_block_comment, - ACTIONS(2794), 9, + ACTIONS(3562), 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_COMMA, anon_sym_COLON_COLON, - anon_sym_POUND, + anon_sym_SQUOTE, sym_metavariable, - ACTIONS(2796), 39, + ACTIONS(3560), 35, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118213,98 +119641,38 @@ 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, - [2549] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [2546] = 9, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3538), 1, - anon_sym_BANG, - ACTIONS(3540), 1, - anon_sym_COLON_COLON, - STATE(1098), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3536), 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(3534), 29, - anon_sym_SEMI, + ACTIONS(3456), 1, 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, + ACTIONS(3464), 1, anon_sym_LT2, - [2616] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3546), 1, - anon_sym_BANG, - ACTIONS(3548), 1, - anon_sym_COLON_COLON, - STATE(1099), 2, + STATE(1420), 1, + sym_parameters, + STATE(1431), 1, + sym_type_arguments, + STATE(1106), 2, sym_line_comment, sym_block_comment, - ACTIONS(3544), 17, + ACTIONS(3566), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -118322,9 +119690,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3542), 29, + ACTIONS(3564), 27, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, @@ -118351,228 +119718,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - anon_sym_LT2, - [2683] = 24, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1615), 1, - anon_sym_LBRACK, - ACTIONS(3358), 1, - anon_sym_SQUOTE, - ACTIONS(3479), 1, - sym_identifier, - ACTIONS(3483), 1, - anon_sym_LPAREN, - ACTIONS(3485), 1, - anon_sym_STAR, - ACTIONS(3489), 1, - anon_sym_AMP, - ACTIONS(3491), 1, - anon_sym_COLON_COLON, - ACTIONS(3495), 1, - anon_sym_for, - ACTIONS(3499), 1, - sym_metavariable, - STATE(2425), 1, - sym_where_predicate, - STATE(2796), 1, - sym_scoped_type_identifier, - STATE(3036), 1, - sym_generic_type, - STATE(3610), 1, - sym_scoped_identifier, - STATE(3633), 1, - sym_bracketed_type, - STATE(3780), 1, - sym_generic_type_with_turbofish, - STATE(1100), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3493), 3, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - ACTIONS(3497), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(3550), 3, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - STATE(3215), 6, - sym_higher_ranked_trait_bound, - sym_lifetime, - sym_array_type, - sym_tuple_type, - sym_reference_type, - sym_pointer_type, - ACTIONS(3487), 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, - [2784] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [2617] = 9, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3556), 1, - anon_sym_RBRACE, - STATE(1101), 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, - [2848] = 6, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3562), 1, - anon_sym_RBRACE, - STATE(1102), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3560), 15, - sym__raw_string_literal_start, - sym_float_literal, + ACTIONS(3456), 1, 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(3558), 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, - [2912] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1103), 2, + ACTIONS(3464), 1, + anon_sym_LT2, + STATE(1420), 1, + sym_parameters, + STATE(1431), 1, + sym_type_arguments, + STATE(1107), 2, sym_line_comment, sym_block_comment, - ACTIONS(3530), 16, + ACTIONS(3570), 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(3532), 31, + ACTIONS(3568), 27, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, @@ -118589,39 +119770,37 @@ 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, - [2974] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [2688] = 8, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3446), 1, + ACTIONS(3472), 1, anon_sym_COLON_COLON, - ACTIONS(3564), 1, + ACTIONS(3572), 1, anon_sym_BANG, - STATE(1104), 2, + STATE(1108), 2, sym_line_comment, sym_block_comment, - ACTIONS(3566), 6, + ACTIONS(3574), 7, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - ACTIONS(3442), 16, + anon_sym_safe, + ACTIONS(3468), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -118638,7 +119817,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_DOT_DOT, anon_sym_as, - ACTIONS(3440), 23, + ACTIONS(3466), 23, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_LBRACK, @@ -118662,15 +119841,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [3042] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [2757] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1105), 2, + STATE(1109), 2, sym_line_comment, sym_block_comment, - ACTIONS(3570), 13, + ACTIONS(3578), 13, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_LBRACK, @@ -118684,7 +119863,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_SQUOTE, sym_metavariable, - ACTIONS(3568), 34, + ACTIONS(3576), 35, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118714,94 +119893,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_where, anon_sym_extern, + anon_sym_safe, anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [3104] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [2820] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1106), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3574), 13, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_QMARK, + ACTIONS(3584), 1, anon_sym_BANG, - anon_sym_AMP, - anon_sym_EQ, - anon_sym_LT, + ACTIONS(3586), 1, anon_sym_COLON_COLON, - anon_sym_SQUOTE, - sym_metavariable, - ACTIONS(3572), 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_use, - anon_sym_where, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [3166] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1107), 2, + STATE(1110), 2, sym_line_comment, sym_block_comment, - ACTIONS(3505), 16, + ACTIONS(3582), 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(3507), 31, + ACTIONS(3580), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -118820,165 +119948,188 @@ 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, - [3228] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_LT2, + [2887] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3456), 1, - anon_sym_BANG, - ACTIONS(3576), 1, - anon_sym_LBRACE, - ACTIONS(3578), 1, - anon_sym_COLON_COLON, - STATE(1481), 1, - sym_field_initializer_list, - STATE(1108), 2, + STATE(1111), 2, sym_line_comment, sym_block_comment, - ACTIONS(1459), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1457), 28, + ACTIONS(3590), 13, 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, - [3298] = 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(3538), 16, - anon_sym_PLUS, + anon_sym_LBRACE, 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(3540), 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, - [3360] = 5, - ACTIONS(103), 1, + sym_metavariable, + ACTIONS(3588), 35, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_gen, + anon_sym_impl, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_where, + anon_sym_extern, + anon_sym_safe, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [2950] = 24, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(1620), 1, + anon_sym_LBRACK, + ACTIONS(3340), 1, + anon_sym_SQUOTE, + ACTIONS(3536), 1, + sym_identifier, + ACTIONS(3540), 1, + anon_sym_LPAREN, + ACTIONS(3542), 1, + anon_sym_STAR, + ACTIONS(3546), 1, + anon_sym_AMP, + ACTIONS(3548), 1, + anon_sym_COLON_COLON, + ACTIONS(3552), 1, + anon_sym_for, + ACTIONS(3556), 1, + sym_metavariable, + STATE(2591), 1, + sym_where_predicate, + STATE(2676), 1, + sym_scoped_type_identifier, + STATE(3070), 1, + sym_generic_type, + STATE(3668), 1, + sym_bracketed_type, + STATE(3766), 1, + sym_scoped_identifier, + STATE(3828), 1, + sym_generic_type_with_turbofish, + STATE(1112), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3550), 3, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + ACTIONS(3554), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(3592), 3, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + STATE(3369), 6, + sym_higher_ranked_trait_bound, + sym_lifetime, + sym_array_type, + sym_tuple_type, + sym_reference_type, + sym_pointer_type, + ACTIONS(3544), 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, + [3051] = 9, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1110), 2, + ACTIONS(3456), 1, + anon_sym_LPAREN, + ACTIONS(3464), 1, + anon_sym_LT2, + STATE(1420), 1, + sym_parameters, + STATE(1431), 1, + sym_type_arguments, + STATE(1113), 2, sym_line_comment, sym_block_comment, - ACTIONS(3546), 16, + ACTIONS(3596), 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(3548), 31, + ACTIONS(3594), 27, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, @@ -118995,42 +120146,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_COMMA, - anon_sym_COLON_COLON, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [3422] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [3122] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1111), 2, + STATE(1114), 2, sym_line_comment, sym_block_comment, - ACTIONS(3582), 13, + ACTIONS(2678), 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(3580), 34, + ACTIONS(2680), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119051,43 +120193,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_const, anon_sym_default, + anon_sym_enum, anon_sym_fn, - anon_sym_for, anon_sym_gen, anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, anon_sym_unsafe, anon_sym_use, - anon_sym_where, anon_sym_extern, - anon_sym_dyn, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [3484] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [3184] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1112), 2, + STATE(1115), 2, sym_line_comment, sym_block_comment, - ACTIONS(3586), 13, + ACTIONS(2562), 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(3584), 34, + ACTIONS(2564), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119108,29 +120250,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_use, - anon_sym_where, anon_sym_extern, - anon_sym_dyn, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [3546] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [3246] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1113), 2, + STATE(1116), 2, sym_line_comment, sym_block_comment, - ACTIONS(2060), 7, + ACTIONS(2568), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119138,7 +120286,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2062), 39, + ACTIONS(2570), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119174,19 +120322,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, - [3607] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [3308] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1114), 2, + STATE(1117), 2, sym_line_comment, sym_block_comment, - ACTIONS(1838), 7, + ACTIONS(2572), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119194,7 +120343,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1840), 39, + ACTIONS(2574), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119230,19 +120379,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, - [3668] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [3370] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1115), 2, + STATE(1118), 2, sym_line_comment, sym_block_comment, - ACTIONS(3030), 7, + ACTIONS(2576), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119250,7 +120400,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(3032), 39, + ACTIONS(2578), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119286,19 +120436,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, - [3729] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [3432] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1116), 2, + STATE(1119), 2, sym_line_comment, sym_block_comment, - ACTIONS(3034), 7, + ACTIONS(2580), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119306,7 +120457,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(3036), 39, + ACTIONS(2582), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119342,19 +120493,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, - [3790] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [3494] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1117), 2, + STATE(1120), 2, sym_line_comment, sym_block_comment, - ACTIONS(3038), 7, + ACTIONS(2584), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119362,7 +120514,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(3040), 39, + ACTIONS(2586), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119398,19 +120550,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, - [3851] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [3556] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1118), 2, + STATE(1121), 2, sym_line_comment, sym_block_comment, - ACTIONS(3042), 7, + ACTIONS(2588), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119418,7 +120571,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(3044), 39, + ACTIONS(2590), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119454,19 +120607,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, - [3912] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [3618] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1119), 2, + STATE(1122), 2, sym_line_comment, sym_block_comment, - ACTIONS(3046), 7, + ACTIONS(2598), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119474,7 +120628,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(3048), 39, + ACTIONS(2600), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119510,19 +120664,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, - [3973] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [3680] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1120), 2, + STATE(1123), 2, sym_line_comment, sym_block_comment, - ACTIONS(3054), 7, + ACTIONS(2602), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119530,7 +120685,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(3056), 39, + ACTIONS(2604), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119566,19 +120721,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, - [4034] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [3742] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1121), 2, + STATE(1124), 2, sym_line_comment, sym_block_comment, - ACTIONS(3058), 7, + ACTIONS(2606), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119586,7 +120742,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(3060), 39, + ACTIONS(2608), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119622,19 +120778,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, - [4095] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [3804] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1122), 2, + STATE(1125), 2, sym_line_comment, sym_block_comment, - ACTIONS(1842), 7, + ACTIONS(2610), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119642,7 +120799,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1844), 39, + ACTIONS(2612), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119678,19 +120835,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, - [4156] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [3866] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1123), 2, + STATE(1126), 2, sym_line_comment, sym_block_comment, - ACTIONS(1846), 7, + ACTIONS(2614), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119698,7 +120856,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1848), 39, + ACTIONS(2616), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119734,19 +120892,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, - [4217] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [3928] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1124), 2, + STATE(1127), 2, sym_line_comment, sym_block_comment, - ACTIONS(1850), 7, + ACTIONS(2618), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119754,7 +120913,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1852), 39, + ACTIONS(2620), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119790,19 +120949,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, - [4278] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [3990] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1125), 2, + STATE(1128), 2, sym_line_comment, sym_block_comment, - ACTIONS(1854), 7, + ACTIONS(2622), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119810,7 +120970,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1856), 39, + ACTIONS(2624), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119846,19 +121006,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, - [4339] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [4052] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1126), 2, + STATE(1129), 2, sym_line_comment, sym_block_comment, - ACTIONS(1858), 7, + ACTIONS(2628), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119866,7 +121027,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1860), 39, + ACTIONS(2630), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119902,19 +121063,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, - [4400] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [4114] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1127), 2, + STATE(1130), 2, sym_line_comment, sym_block_comment, - ACTIONS(1862), 7, + ACTIONS(2632), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119922,7 +121084,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1864), 39, + ACTIONS(2634), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119958,19 +121120,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, - [4461] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [4176] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1128), 2, + STATE(1131), 2, sym_line_comment, sym_block_comment, - ACTIONS(1874), 7, + ACTIONS(2636), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119978,7 +121141,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1876), 39, + ACTIONS(2638), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120014,19 +121177,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, - [4522] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [4238] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1129), 2, + STATE(1132), 2, sym_line_comment, sym_block_comment, - ACTIONS(1878), 7, + ACTIONS(2640), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120034,7 +121198,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1880), 39, + ACTIONS(2642), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120070,19 +121234,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, - [4583] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [4300] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1130), 2, + STATE(1133), 2, sym_line_comment, sym_block_comment, - ACTIONS(1882), 7, + ACTIONS(2652), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120090,7 +121255,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1884), 39, + ACTIONS(2654), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120126,19 +121291,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, - [4644] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [4362] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1131), 2, + STATE(1134), 2, sym_line_comment, sym_block_comment, - ACTIONS(1886), 7, + ACTIONS(2656), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120146,7 +121312,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1888), 39, + ACTIONS(2658), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120182,19 +121348,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, - [4705] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [4424] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1132), 2, + STATE(1135), 2, sym_line_comment, sym_block_comment, - ACTIONS(1890), 7, + ACTIONS(2660), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120202,7 +121369,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1892), 39, + ACTIONS(2662), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120238,19 +121405,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, - [4766] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [4486] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1133), 2, + STATE(1136), 2, sym_line_comment, sym_block_comment, - ACTIONS(1894), 7, + ACTIONS(2664), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120258,7 +121426,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1896), 39, + ACTIONS(2666), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120294,19 +121462,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, - [4827] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [4548] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1134), 2, + STATE(1137), 2, sym_line_comment, sym_block_comment, - ACTIONS(1898), 7, + ACTIONS(2668), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120314,7 +121483,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1900), 39, + ACTIONS(2670), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120350,19 +121519,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, - [4888] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [4610] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1135), 2, + STATE(1138), 2, sym_line_comment, sym_block_comment, - ACTIONS(1902), 7, + ACTIONS(2682), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120370,7 +121540,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1904), 39, + ACTIONS(2684), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120406,19 +121576,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, - [4949] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [4672] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1136), 2, + STATE(1139), 2, sym_line_comment, sym_block_comment, - ACTIONS(1906), 7, + ACTIONS(2686), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120426,7 +121597,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1908), 39, + ACTIONS(2688), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120462,19 +121633,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, - [5010] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [4734] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1137), 2, + STATE(1140), 2, sym_line_comment, sym_block_comment, - ACTIONS(1910), 7, + ACTIONS(2690), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120482,7 +121654,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1912), 39, + ACTIONS(2692), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120518,19 +121690,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, - [5071] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [4796] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1138), 2, + STATE(1141), 2, sym_line_comment, sym_block_comment, - ACTIONS(1914), 7, + ACTIONS(2694), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120538,7 +121711,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1916), 39, + ACTIONS(2696), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120574,19 +121747,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, - [5132] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [4858] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1139), 2, + STATE(1142), 2, sym_line_comment, sym_block_comment, - ACTIONS(3062), 7, + ACTIONS(2702), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120594,7 +121768,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(3064), 39, + ACTIONS(2704), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120630,19 +121804,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, - [5193] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [4920] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1140), 2, + STATE(1143), 2, sym_line_comment, sym_block_comment, - ACTIONS(1922), 7, + ACTIONS(2706), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120650,7 +121825,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1924), 39, + ACTIONS(2708), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120686,19 +121861,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, - [5254] = 5, - ACTIONS(103), 1, + [4982] = 5, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + STATE(1144), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2738), 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(2740), 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, + [5044] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1141), 2, + STATE(1145), 2, sym_line_comment, sym_block_comment, - ACTIONS(1930), 7, + ACTIONS(2754), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120706,7 +121939,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1932), 39, + ACTIONS(2756), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120742,19 +121975,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, - [5315] = 5, - ACTIONS(103), 1, + [5106] = 5, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + STATE(1146), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2790), 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(2792), 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, + [5168] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1142), 2, + STATE(1147), 2, sym_line_comment, sym_block_comment, - ACTIONS(1934), 7, + ACTIONS(2798), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120762,7 +122053,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1936), 39, + ACTIONS(2800), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120798,19 +122089,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, - [5376] = 5, - ACTIONS(103), 1, + [5230] = 5, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + STATE(1148), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2802), 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(2804), 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, + [5292] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1143), 2, + STATE(1149), 2, sym_line_comment, sym_block_comment, - ACTIONS(1938), 7, + ACTIONS(2806), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120818,7 +122167,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1940), 39, + ACTIONS(2808), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120854,19 +122203,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, - [5437] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [5354] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1144), 2, + STATE(1150), 2, sym_line_comment, sym_block_comment, - ACTIONS(1942), 7, + ACTIONS(2810), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120874,7 +122224,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1944), 39, + ACTIONS(2812), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120910,35 +122260,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, - [5498] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [5416] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1145), 2, + STATE(1151), 2, sym_line_comment, sym_block_comment, - ACTIONS(3590), 15, - sym__raw_string_literal_start, - sym_float_literal, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DASH, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(2818), 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(3588), 31, + ACTIONS(2820), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120956,45 +122299,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, - [5559] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [5478] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1146), 2, + STATE(1152), 2, sym_line_comment, sym_block_comment, - ACTIONS(3594), 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(2822), 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(3592), 31, + ACTIONS(2824), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121012,29 +122356,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, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [5620] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [5540] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1147), 2, + STATE(1153), 2, sym_line_comment, sym_block_comment, - ACTIONS(2166), 7, + ACTIONS(2826), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121042,7 +122395,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2168), 39, + ACTIONS(2828), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121078,82 +122431,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, - [5681] = 12, - ACTIONS(19), 1, - anon_sym_LBRACE, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [5602] = 5, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3446), 1, - anon_sym_COLON_COLON, - ACTIONS(3448), 1, - anon_sym_SQUOTE, - ACTIONS(3564), 1, - anon_sym_BANG, - ACTIONS(3596), 1, - anon_sym_move, - STATE(413), 1, - sym_block, - STATE(3621), 1, - sym_label, - STATE(1148), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3442), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3440), 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, - [5756] = 5, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1149), 2, + STATE(1154), 2, sym_line_comment, sym_block_comment, - ACTIONS(2170), 7, + ACTIONS(2830), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121161,7 +122452,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2172), 39, + ACTIONS(2832), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121197,76 +122488,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, - [5817] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [5664] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3598), 1, - anon_sym_COLON_COLON, - STATE(1150), 2, + STATE(1155), 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, + ACTIONS(2834), 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, - [5880] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2836), 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, + [5726] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1151), 2, + STATE(1156), 2, sym_line_comment, sym_block_comment, - ACTIONS(2178), 7, + ACTIONS(2850), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121274,7 +122566,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2180), 39, + ACTIONS(2852), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121310,19 +122602,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, - [5941] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [5788] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1152), 2, + STATE(1157), 2, sym_line_comment, sym_block_comment, - ACTIONS(2182), 7, + ACTIONS(2854), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121330,7 +122623,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2184), 39, + ACTIONS(2856), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121366,19 +122659,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, - [6002] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [5850] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1153), 2, + STATE(1158), 2, sym_line_comment, sym_block_comment, - ACTIONS(2186), 7, + ACTIONS(2858), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121386,7 +122680,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2188), 39, + ACTIONS(2860), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121422,19 +122716,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, - [6063] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [5912] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1154), 2, + STATE(1159), 2, sym_line_comment, sym_block_comment, - ACTIONS(2190), 7, + ACTIONS(2862), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121442,7 +122737,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2192), 39, + ACTIONS(2864), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121478,19 +122773,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, - [6124] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [5974] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1155), 2, + STATE(1160), 2, sym_line_comment, sym_block_comment, - ACTIONS(2194), 7, + ACTIONS(2866), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121498,7 +122794,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2196), 39, + ACTIONS(2868), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121534,76 +122830,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, - [6185] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [6036] = 5, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3600), 1, - anon_sym_COLON_COLON, - STATE(1156), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1459), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1457), 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, - [6248] = 5, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1157), 2, + STATE(1161), 2, sym_line_comment, sym_block_comment, - ACTIONS(2198), 7, + ACTIONS(2870), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121611,7 +122851,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2200), 39, + ACTIONS(2872), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121647,76 +122887,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, - [6309] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [6098] = 5, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3602), 1, - anon_sym_LBRACE, - STATE(1158), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3530), 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(3532), 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, - [6372] = 5, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1159), 2, + STATE(1162), 2, sym_line_comment, sym_block_comment, - ACTIONS(2206), 7, + ACTIONS(2874), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121724,7 +122908,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2208), 39, + ACTIONS(2876), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121760,19 +122944,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, - [6433] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [6160] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1160), 2, + STATE(1163), 2, sym_line_comment, sym_block_comment, - ACTIONS(2210), 7, + ACTIONS(2878), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121780,7 +122965,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2212), 39, + ACTIONS(2880), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121816,76 +123001,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, - [6494] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [6222] = 5, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3604), 1, - anon_sym_LBRACE, - STATE(1161), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3505), 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(3507), 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, - [6557] = 5, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1162), 2, + STATE(1164), 2, sym_line_comment, sym_block_comment, - ACTIONS(2214), 7, + ACTIONS(2886), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121893,7 +123022,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2216), 39, + ACTIONS(2888), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121929,75 +123058,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, - [6618] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [6284] = 5, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1163), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2218), 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(2220), 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, - [6679] = 5, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1164), 2, + STATE(1165), 2, sym_line_comment, sym_block_comment, - ACTIONS(2222), 7, + ACTIONS(2890), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122005,7 +123079,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2224), 39, + ACTIONS(2892), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122041,19 +123115,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, - [6740] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [6346] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1165), 2, + STATE(1166), 2, sym_line_comment, sym_block_comment, - ACTIONS(2226), 7, + ACTIONS(2904), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122061,7 +123136,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2228), 39, + ACTIONS(2906), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122097,19 +123172,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, - [6801] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [6408] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1166), 2, + STATE(1167), 2, sym_line_comment, sym_block_comment, - ACTIONS(2230), 7, + ACTIONS(2368), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122117,7 +123193,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2232), 39, + ACTIONS(2370), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122153,19 +123229,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, - [6862] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [6470] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1167), 2, + STATE(1168), 2, sym_line_comment, sym_block_comment, - ACTIONS(2234), 7, + ACTIONS(2916), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122173,7 +123250,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2236), 39, + ACTIONS(2918), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122209,19 +123286,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, - [6923] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [6532] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1168), 2, + STATE(1169), 2, sym_line_comment, sym_block_comment, - ACTIONS(2238), 7, + ACTIONS(2920), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122229,7 +123307,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2240), 39, + ACTIONS(2922), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122265,19 +123343,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, - [6984] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [6594] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1169), 2, + STATE(1170), 2, sym_line_comment, sym_block_comment, - ACTIONS(2242), 7, + ACTIONS(2924), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122285,7 +123364,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2244), 39, + ACTIONS(2926), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122321,19 +123400,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, - [7045] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [6656] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1170), 2, + STATE(1171), 2, sym_line_comment, sym_block_comment, - ACTIONS(3608), 7, + ACTIONS(2928), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122341,7 +123421,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(3606), 39, + ACTIONS(2930), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122377,75 +123457,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, - [7106] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [6718] = 5, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1171), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3612), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3610), 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, - [7167] = 5, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, STATE(1172), 2, sym_line_comment, sym_block_comment, - ACTIONS(2254), 7, + ACTIONS(2932), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122453,7 +123478,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2256), 39, + ACTIONS(2934), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122489,19 +123514,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, - [7228] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [6780] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, STATE(1173), 2, sym_line_comment, sym_block_comment, - ACTIONS(2258), 7, + ACTIONS(2936), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122509,7 +123535,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2260), 39, + ACTIONS(2938), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122545,19 +123571,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, - [7289] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [6842] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, STATE(1174), 2, sym_line_comment, sym_block_comment, - ACTIONS(2262), 7, + ACTIONS(2940), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122565,7 +123592,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2264), 39, + ACTIONS(2942), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122601,19 +123628,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, - [7350] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [6904] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, STATE(1175), 2, sym_line_comment, sym_block_comment, - ACTIONS(2266), 7, + ACTIONS(2944), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122621,7 +123649,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2268), 39, + ACTIONS(2946), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122657,19 +123685,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, - [7411] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [6966] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, STATE(1176), 2, sym_line_comment, sym_block_comment, - ACTIONS(2270), 7, + ACTIONS(2948), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122677,7 +123706,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2272), 39, + ACTIONS(2950), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122713,19 +123742,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, - [7472] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [7028] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, STATE(1177), 2, sym_line_comment, sym_block_comment, - ACTIONS(2274), 7, + ACTIONS(2956), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122733,7 +123763,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2276), 39, + ACTIONS(2958), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122769,19 +123799,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, - [7533] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [7090] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, STATE(1178), 2, sym_line_comment, sym_block_comment, - ACTIONS(2278), 7, + ACTIONS(2960), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122789,7 +123820,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2280), 39, + ACTIONS(2962), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122825,19 +123856,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, - [7594] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [7152] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, STATE(1179), 2, sym_line_comment, sym_block_comment, - ACTIONS(2282), 7, + ACTIONS(2964), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122845,7 +123877,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2284), 39, + ACTIONS(2966), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122881,32 +123913,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, - [7655] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [7214] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, STATE(1180), 2, sym_line_comment, sym_block_comment, - ACTIONS(2378), 12, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_AMP, + ACTIONS(2968), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, anon_sym_LT, anon_sym_COLON_COLON, anon_sym_POUND, - anon_sym_SQUOTE, - sym_integer_literal, sym_metavariable, - ACTIONS(2380), 34, + ACTIONS(2970), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122927,86 +123955,206 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_const, anon_sym_default, + anon_sym_enum, anon_sym_fn, - anon_sym_for, anon_sym_gen, anon_sym_impl, + anon_sym_let, + anon_sym_mod, anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, anon_sym_unsafe, anon_sym_use, anon_sym_extern, - anon_sym_dyn, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [7716] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [7276] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3614), 1, - anon_sym_LBRACE, STATE(1181), 2, sym_line_comment, sym_block_comment, - ACTIONS(3546), 16, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, + ACTIONS(2972), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3548), 29, + 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, + [7338] = 5, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + STATE(1182), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2976), 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_LT, anon_sym_COLON_COLON, - anon_sym_as, - anon_sym_else, - [7779] = 5, - ACTIONS(103), 1, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2978), 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, + [7400] = 5, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + STATE(1183), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2980), 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(2982), 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, + [7462] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1182), 2, + STATE(1184), 2, sym_line_comment, sym_block_comment, - ACTIONS(2286), 7, + ACTIONS(2988), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123014,7 +124162,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2288), 39, + ACTIONS(2990), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123050,19 +124198,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, - [7840] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [7524] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1183), 2, + STATE(1185), 2, sym_line_comment, sym_block_comment, - ACTIONS(2290), 7, + ACTIONS(2996), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123070,7 +124219,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2292), 39, + ACTIONS(2998), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123106,19 +124255,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, - [7901] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [7586] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1184), 2, + STATE(1186), 2, sym_line_comment, sym_block_comment, - ACTIONS(2294), 7, + ACTIONS(3000), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123126,7 +124276,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2296), 39, + ACTIONS(3002), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123162,19 +124312,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, - [7962] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [7648] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1185), 2, + STATE(1187), 2, sym_line_comment, sym_block_comment, - ACTIONS(2298), 7, + ACTIONS(3004), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123182,7 +124333,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2300), 39, + ACTIONS(3006), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123218,35 +124369,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, - [8023] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [7710] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1186), 2, + STATE(1188), 2, sym_line_comment, sym_block_comment, - ACTIONS(2166), 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(3008), 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(2168), 31, + ACTIONS(3010), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123264,29 +124408,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, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [8084] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [7772] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1187), 2, + STATE(1189), 2, sym_line_comment, sym_block_comment, - ACTIONS(2302), 7, + ACTIONS(3012), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123294,7 +124447,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2304), 39, + ACTIONS(3014), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123330,19 +124483,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, - [8145] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [7834] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1188), 2, + STATE(1190), 2, sym_line_comment, sym_block_comment, - ACTIONS(2306), 7, + ACTIONS(3016), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123350,7 +124504,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2308), 39, + ACTIONS(3018), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123386,131 +124540,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, - [8206] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [7896] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1189), 2, + STATE(1191), 2, sym_line_comment, sym_block_comment, - ACTIONS(3618), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3616), 31, + ACTIONS(3020), 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, - [8267] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_POUND, + sym_metavariable, + ACTIONS(3022), 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, + [7958] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1190), 2, + STATE(1192), 2, sym_line_comment, sym_block_comment, - ACTIONS(3622), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3620), 31, + ACTIONS(3024), 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, - [8328] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_POUND, + sym_metavariable, + ACTIONS(3026), 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, + [8020] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1191), 2, + STATE(1193), 2, sym_line_comment, sym_block_comment, - ACTIONS(2310), 7, + ACTIONS(3028), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123518,7 +124675,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2312), 39, + ACTIONS(3030), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123554,19 +124711,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, - [8389] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [8082] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1192), 2, + STATE(1194), 2, sym_line_comment, sym_block_comment, - ACTIONS(2314), 7, + ACTIONS(3032), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123574,7 +124732,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2316), 39, + ACTIONS(3034), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123610,19 +124768,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, - [8450] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [8144] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1193), 2, + STATE(1195), 2, sym_line_comment, sym_block_comment, - ACTIONS(2318), 7, + ACTIONS(3036), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123630,7 +124789,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2320), 39, + ACTIONS(3038), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123666,19 +124825,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, - [8511] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [8206] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1194), 2, + STATE(1196), 2, sym_line_comment, sym_block_comment, - ACTIONS(2322), 7, + ACTIONS(3076), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123686,7 +124846,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2324), 39, + ACTIONS(3078), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123722,19 +124882,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, - [8572] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [8268] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1195), 2, + STATE(1197), 2, sym_line_comment, sym_block_comment, - ACTIONS(2326), 7, + ACTIONS(3080), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123742,7 +124903,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2328), 39, + ACTIONS(3082), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123778,19 +124939,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, - [8633] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [8330] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1196), 2, + STATE(1198), 2, sym_line_comment, sym_block_comment, - ACTIONS(2330), 7, + ACTIONS(2766), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123798,7 +124960,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2332), 39, + ACTIONS(2768), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123834,19 +124996,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, - [8694] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [8392] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1197), 2, + STATE(1199), 2, sym_line_comment, sym_block_comment, - ACTIONS(2334), 7, + ACTIONS(3064), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123854,7 +125017,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2336), 39, + ACTIONS(3066), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123890,19 +125053,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, - [8755] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [8454] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1198), 2, + STATE(1200), 2, sym_line_comment, sym_block_comment, - ACTIONS(2338), 7, + ACTIONS(1911), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123910,7 +125074,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2340), 39, + ACTIONS(1913), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123946,19 +125110,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, - [8816] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [8516] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1199), 2, + STATE(1201), 2, sym_line_comment, sym_block_comment, - ACTIONS(2342), 7, + ACTIONS(1931), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123966,7 +125131,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2344), 39, + ACTIONS(1933), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124002,19 +125167,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, - [8877] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [8578] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1200), 2, + STATE(1202), 2, sym_line_comment, sym_block_comment, - ACTIONS(2346), 7, + ACTIONS(1955), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124022,7 +125188,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2348), 39, + ACTIONS(1957), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124058,19 +125224,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, - [8938] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [8640] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1201), 2, + STATE(1203), 2, sym_line_comment, sym_block_comment, - ACTIONS(2350), 7, + ACTIONS(1963), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124078,7 +125245,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2352), 39, + ACTIONS(1965), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124114,19 +125281,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, - [8999] = 5, - ACTIONS(103), 1, + [8702] = 5, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + STATE(1204), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1967), 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(1969), 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, + [8764] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1202), 2, + STATE(1205), 2, sym_line_comment, sym_block_comment, - ACTIONS(2354), 7, + ACTIONS(1971), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124134,7 +125359,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2356), 39, + ACTIONS(1973), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124170,19 +125395,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, - [9060] = 5, - ACTIONS(103), 1, + [8826] = 5, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + STATE(1206), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1975), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1977), 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, + [8888] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1203), 2, + STATE(1207), 2, sym_line_comment, sym_block_comment, - ACTIONS(2358), 7, + ACTIONS(1983), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124190,7 +125473,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2360), 39, + ACTIONS(1985), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124226,19 +125509,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, - [9121] = 5, - ACTIONS(103), 1, + [8950] = 5, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + STATE(1208), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2003), 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(2005), 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, + [9012] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1204), 2, + STATE(1209), 2, sym_line_comment, sym_block_comment, - ACTIONS(2362), 7, + ACTIONS(2007), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124246,7 +125587,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2364), 39, + ACTIONS(2009), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124282,19 +125623,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, - [9182] = 5, - ACTIONS(103), 1, + [9074] = 5, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + STATE(1210), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2031), 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(2033), 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, + [9136] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1205), 2, + STATE(1211), 2, sym_line_comment, sym_block_comment, - ACTIONS(2366), 7, + ACTIONS(2035), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124302,7 +125701,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2368), 39, + ACTIONS(2037), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124338,19 +125737,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, - [9243] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [9198] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1206), 2, + STATE(1212), 2, sym_line_comment, sym_block_comment, - ACTIONS(2370), 7, + ACTIONS(2047), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124358,7 +125758,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2372), 39, + ACTIONS(2049), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124394,19 +125794,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, - [9304] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [9260] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1207), 2, + STATE(1213), 2, sym_line_comment, sym_block_comment, - ACTIONS(2378), 7, + ACTIONS(2067), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124414,7 +125815,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2380), 39, + ACTIONS(2069), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124450,19 +125851,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, - [9365] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [9322] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1208), 2, + STATE(1214), 2, sym_line_comment, sym_block_comment, - ACTIONS(2382), 7, + ACTIONS(2071), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124470,7 +125872,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2384), 39, + ACTIONS(2073), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124506,19 +125908,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, - [9426] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [9384] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1209), 2, + STATE(1215), 2, sym_line_comment, sym_block_comment, - ACTIONS(2386), 7, + ACTIONS(2083), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124526,7 +125929,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2388), 39, + ACTIONS(2085), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124562,182 +125965,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, - [9487] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [9446] = 5, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1210), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3626), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3624), 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, - [9548] = 5, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1211), 2, + STATE(1216), 2, sym_line_comment, sym_block_comment, - ACTIONS(3630), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3628), 31, + ACTIONS(2123), 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, - [9609] = 26, - ACTIONS(29), 1, anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1157), 1, - anon_sym_extern, - ACTIONS(1635), 1, - anon_sym_fn, - ACTIONS(3483), 1, - anon_sym_LPAREN, - ACTIONS(3491), 1, anon_sym_COLON_COLON, - ACTIONS(3499), 1, + anon_sym_POUND, sym_metavariable, - ACTIONS(3632), 1, - sym_identifier, - ACTIONS(3636), 1, - anon_sym_default, - ACTIONS(3638), 1, - anon_sym_for, - STATE(1632), 1, - sym_for_lifetimes, - STATE(2047), 1, - sym_generic_type, - STATE(2239), 1, - sym_scoped_type_identifier, - STATE(2317), 1, - aux_sym_function_modifiers_repeat1, - STATE(2461), 1, - sym_extern_modifier, - STATE(3583), 1, - sym_function_modifiers, - STATE(3610), 1, - sym_scoped_identifier, - STATE(3633), 1, - sym_bracketed_type, - STATE(3780), 1, - sym_generic_type_with_turbofish, - ACTIONS(3493), 2, - anon_sym_gen, - anon_sym_union, - STATE(1212), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1141), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(3497), 3, - sym_self, - sym_super, - sym_crate, - STATE(2063), 3, - sym_higher_ranked_trait_bound, - sym_function_type, - sym_tuple_type, - ACTIONS(3634), 17, + ACTIONS(2125), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124755,72 +126004,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [9712] = 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, + [9508] = 5, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3640), 1, - anon_sym_LBRACE, - STATE(1213), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3538), 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(3540), 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, - [9775] = 5, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1214), 2, + STATE(1217), 2, sym_line_comment, sym_block_comment, - ACTIONS(2410), 7, + ACTIONS(2127), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124828,7 +126043,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2412), 39, + ACTIONS(2129), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124864,35 +126079,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, - [9836] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [9570] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1215), 2, + STATE(1218), 2, sym_line_comment, sym_block_comment, - ACTIONS(2378), 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(2135), 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(2380), 31, + ACTIONS(2137), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124910,29 +126118,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, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [9897] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [9632] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1216), 2, + STATE(1219), 2, sym_line_comment, sym_block_comment, - ACTIONS(2418), 7, + ACTIONS(2141), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124940,7 +126157,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2420), 39, + ACTIONS(2143), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124976,19 +126193,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, - [9958] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [9694] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1217), 2, + STATE(1220), 2, sym_line_comment, sym_block_comment, - ACTIONS(2422), 7, + ACTIONS(2270), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124996,7 +126214,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2424), 39, + ACTIONS(2272), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125032,19 +126250,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, - [10019] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [9756] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1218), 2, + STATE(1221), 2, sym_line_comment, sym_block_comment, - ACTIONS(2426), 7, + ACTIONS(2534), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125052,7 +126271,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2428), 39, + ACTIONS(2536), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125088,19 +126307,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, - [10080] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [9818] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1219), 2, + STATE(1222), 2, sym_line_comment, sym_block_comment, - ACTIONS(2430), 7, + ACTIONS(2278), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125108,7 +126328,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2432), 39, + ACTIONS(2280), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125144,19 +126364,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, - [10141] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [9880] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1220), 2, + STATE(1223), 2, sym_line_comment, sym_block_comment, - ACTIONS(2434), 7, + ACTIONS(2282), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125164,7 +126385,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2436), 39, + ACTIONS(2284), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125200,19 +126421,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, - [10202] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [9942] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1221), 2, + STATE(1224), 2, sym_line_comment, sym_block_comment, - ACTIONS(2438), 7, + ACTIONS(2286), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125220,7 +126442,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2440), 39, + ACTIONS(2288), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125256,19 +126478,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, - [10263] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [10004] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1222), 2, + STATE(1225), 2, sym_line_comment, sym_block_comment, - ACTIONS(2442), 7, + ACTIONS(2290), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125276,7 +126499,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2444), 39, + ACTIONS(2292), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125312,19 +126535,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, - [10324] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [10066] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1223), 2, + STATE(1226), 2, sym_line_comment, sym_block_comment, - ACTIONS(2446), 7, + ACTIONS(2294), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125332,7 +126556,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2448), 39, + ACTIONS(2296), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125368,35 +126592,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, - [10385] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [10128] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1224), 2, + STATE(1227), 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, + ACTIONS(2302), 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(3552), 31, + ACTIONS(2304), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125414,29 +126631,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, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [10446] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [10190] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1225), 2, + STATE(1228), 2, sym_line_comment, sym_block_comment, - ACTIONS(2450), 7, + ACTIONS(2306), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125444,7 +126670,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2452), 39, + ACTIONS(2308), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125480,19 +126706,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, - [10507] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [10252] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1226), 2, + STATE(1229), 2, sym_line_comment, sym_block_comment, - ACTIONS(2454), 7, + ACTIONS(2310), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125500,7 +126727,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2456), 39, + ACTIONS(2312), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125536,19 +126763,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, - [10568] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [10314] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1227), 2, + STATE(1230), 2, sym_line_comment, sym_block_comment, - ACTIONS(2458), 7, + ACTIONS(2314), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125556,7 +126784,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2460), 39, + ACTIONS(2316), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125592,19 +126820,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, - [10629] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [10376] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1228), 2, + STATE(1231), 2, sym_line_comment, sym_block_comment, - ACTIONS(2462), 7, + ACTIONS(2318), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125612,7 +126841,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2464), 39, + ACTIONS(2320), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125648,19 +126877,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, - [10690] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [10438] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1229), 2, + STATE(1232), 2, sym_line_comment, sym_block_comment, - ACTIONS(2466), 7, + ACTIONS(2322), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125668,7 +126898,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2468), 39, + ACTIONS(2324), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125704,19 +126934,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, - [10751] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [10500] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1230), 2, + STATE(1233), 2, sym_line_comment, sym_block_comment, - ACTIONS(2470), 7, + ACTIONS(2326), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125724,7 +126955,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2472), 39, + ACTIONS(2328), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125760,19 +126991,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, - [10812] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [10562] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1231), 2, + STATE(1234), 2, sym_line_comment, sym_block_comment, - ACTIONS(2474), 7, + ACTIONS(2330), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125780,7 +127012,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2476), 39, + ACTIONS(2332), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125816,19 +127048,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, - [10873] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [10624] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1232), 2, + STATE(1235), 2, sym_line_comment, sym_block_comment, - ACTIONS(2478), 7, + ACTIONS(2334), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125836,7 +127069,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2480), 39, + ACTIONS(2336), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125872,19 +127105,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, - [10934] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [10686] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1233), 2, + STATE(1236), 2, sym_line_comment, sym_block_comment, - ACTIONS(2482), 7, + ACTIONS(2346), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125892,7 +127126,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2484), 39, + ACTIONS(2348), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125928,19 +127162,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, - [10995] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [10748] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1234), 2, + STATE(1237), 2, sym_line_comment, sym_block_comment, - ACTIONS(2490), 7, + ACTIONS(2352), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125948,7 +127183,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2492), 39, + ACTIONS(2354), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125984,19 +127219,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, - [11056] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [10810] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1235), 2, + STATE(1238), 2, sym_line_comment, sym_block_comment, - ACTIONS(2494), 7, + ACTIONS(2356), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126004,7 +127240,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2496), 39, + ACTIONS(2358), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126040,19 +127276,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, - [11117] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [10872] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1236), 2, + STATE(1239), 2, sym_line_comment, sym_block_comment, - ACTIONS(2504), 7, + ACTIONS(2360), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126060,7 +127297,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2506), 39, + ACTIONS(2362), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126096,70 +127333,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, - [11178] = 26, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [10934] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1157), 1, - anon_sym_extern, - ACTIONS(3194), 1, - anon_sym_fn, - ACTIONS(3642), 1, - sym_identifier, - ACTIONS(3644), 1, - anon_sym_LPAREN, - ACTIONS(3648), 1, - anon_sym_COLON_COLON, - ACTIONS(3650), 1, - anon_sym_default, - ACTIONS(3652), 1, - anon_sym_for, - ACTIONS(3658), 1, - sym_metavariable, - STATE(1092), 1, - sym_scoped_type_identifier, - STATE(1299), 1, - sym_generic_type, - STATE(1647), 1, - sym_for_lifetimes, - STATE(2317), 1, - aux_sym_function_modifiers_repeat1, - STATE(2461), 1, - sym_extern_modifier, - STATE(3651), 1, - sym_scoped_identifier, - STATE(3686), 1, - sym_generic_type_with_turbofish, - STATE(3698), 1, - sym_bracketed_type, - STATE(3772), 1, - sym_function_modifiers, - ACTIONS(3654), 2, - anon_sym_gen, - anon_sym_union, - STATE(1237), 2, + STATE(1240), 2, sym_line_comment, sym_block_comment, - ACTIONS(1141), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(3656), 3, - sym_self, - sym_super, - sym_crate, - STATE(1519), 3, - sym_higher_ranked_trait_bound, - sym_function_type, - sym_tuple_type, - ACTIONS(3646), 17, + ACTIONS(2364), 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(2366), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126177,71 +127372,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [11281] = 5, - 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, + [10996] = 5, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1238), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1599), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1601), 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, - [11342] = 5, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1239), 2, + STATE(1241), 2, sym_line_comment, sym_block_comment, - ACTIONS(2516), 7, + ACTIONS(2438), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126249,7 +127411,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2518), 39, + ACTIONS(2440), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126285,75 +127447,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, - [11403] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [11058] = 5, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1240), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3560), 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(3558), 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, - [11464] = 5, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1241), 2, + STATE(1242), 2, sym_line_comment, sym_block_comment, - ACTIONS(2520), 7, + ACTIONS(2478), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126361,7 +127468,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2522), 39, + ACTIONS(2480), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126397,19 +127504,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, - [11525] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [11120] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1242), 2, + STATE(1243), 2, sym_line_comment, sym_block_comment, - ACTIONS(2526), 7, + ACTIONS(2482), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126417,7 +127525,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2528), 39, + ACTIONS(2484), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126453,19 +127561,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, - [11586] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [11182] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1243), 2, + STATE(1244), 2, sym_line_comment, sym_block_comment, - ACTIONS(2530), 7, + ACTIONS(2486), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126473,7 +127582,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2532), 39, + ACTIONS(2488), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126509,19 +127618,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, - [11647] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [11244] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1244), 2, + STATE(1245), 2, sym_line_comment, sym_block_comment, - ACTIONS(2534), 7, + ACTIONS(2494), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126529,7 +127639,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2536), 39, + ACTIONS(2496), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126565,19 +127675,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, - [11708] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [11306] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1245), 2, + STATE(1246), 2, sym_line_comment, sym_block_comment, - ACTIONS(2538), 7, + ACTIONS(2502), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126585,7 +127696,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2540), 39, + ACTIONS(2504), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126621,19 +127732,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, - [11769] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [11368] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1246), 2, + STATE(1247), 2, sym_line_comment, sym_block_comment, - ACTIONS(2542), 7, + ACTIONS(2510), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126641,7 +127753,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2544), 39, + ACTIONS(2512), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126677,19 +127789,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, - [11830] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [11430] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1247), 2, + STATE(1248), 2, sym_line_comment, sym_block_comment, - ACTIONS(1918), 7, + ACTIONS(2514), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126697,7 +127810,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1920), 39, + ACTIONS(2516), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126733,16 +127846,17 @@ 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, - [11891] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [11492] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1248), 2, + STATE(1249), 2, sym_line_comment, sym_block_comment, ACTIONS(2546), 7, @@ -126753,7 +127867,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2548), 39, + ACTIONS(2548), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126789,19 +127903,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, - [11952] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [11554] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1249), 2, + STATE(1250), 2, sym_line_comment, sym_block_comment, - ACTIONS(2550), 7, + ACTIONS(2592), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126809,7 +127924,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2552), 39, + ACTIONS(2594), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126845,19 +127960,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, - [12013] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [11616] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1250), 2, + STATE(1251), 2, sym_line_comment, sym_block_comment, - ACTIONS(2554), 7, + ACTIONS(2674), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126865,7 +127981,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2556), 39, + ACTIONS(2676), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126901,77 +128017,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, - [12074] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [11678] = 5, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3448), 1, - anon_sym_SQUOTE, - STATE(1496), 1, - sym_label, - STATE(1251), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3662), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3660), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_as, - anon_sym_else, - [12139] = 5, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, STATE(1252), 2, sym_line_comment, sym_block_comment, - ACTIONS(2558), 7, + ACTIONS(2710), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126979,7 +128038,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2560), 39, + ACTIONS(2712), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127015,19 +128074,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, - [12200] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [11740] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, STATE(1253), 2, sym_line_comment, sym_block_comment, - ACTIONS(2562), 7, + ACTIONS(2714), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127035,7 +128095,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2564), 39, + ACTIONS(2716), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127071,32 +128131,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, - [12261] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [11802] = 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(3380), 12, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_AMP, + ACTIONS(2722), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, anon_sym_LT, anon_sym_COLON_COLON, anon_sym_POUND, - anon_sym_SQUOTE, - sym_integer_literal, sym_metavariable, - ACTIONS(3378), 34, + ACTIONS(2724), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127117,29 +128173,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_use, anon_sym_extern, - anon_sym_dyn, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [12322] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [11864] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, STATE(1255), 2, sym_line_comment, sym_block_comment, - ACTIONS(2566), 7, + ACTIONS(2730), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127147,7 +128209,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2568), 39, + ACTIONS(2732), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127183,19 +128245,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, - [12383] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [11926] = 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(2570), 7, + ACTIONS(2750), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127203,7 +128266,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2572), 39, + ACTIONS(2752), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127239,91 +128302,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, - [12444] = 21, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [11988] = 5, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1681), 1, - anon_sym_DASH, - ACTIONS(1707), 1, - aux_sym_string_literal_token1, - ACTIONS(1715), 1, - sym__raw_string_literal_start, - ACTIONS(3420), 1, - anon_sym_if, - ACTIONS(3664), 1, - sym_identifier, - ACTIONS(3668), 1, - anon_sym_COLON_COLON, - ACTIONS(3672), 1, - sym_metavariable, - STATE(2830), 1, - sym_scoped_identifier, - STATE(3090), 1, - sym__literal_pattern, - STATE(3629), 1, - sym_bracketed_type, - STATE(3646), 1, - sym_generic_type_with_turbofish, - ACTIONS(1709), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3418), 2, - anon_sym_EQ_GT, - anon_sym_PIPE, - STATE(1257), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1705), 3, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(3670), 3, - sym_self, - sym_super, - sym_crate, - STATE(2408), 4, - sym_negative_literal, - sym_string_literal, - sym_raw_string_literal, - sym_boolean_literal, - ACTIONS(3666), 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, - [12537] = 5, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1258), 2, + STATE(1257), 2, sym_line_comment, sym_block_comment, - ACTIONS(2574), 7, + ACTIONS(2758), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127331,7 +128323,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2576), 39, + ACTIONS(2760), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127367,19 +128359,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, - [12598] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [12050] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1259), 2, + STATE(1258), 2, sym_line_comment, sym_block_comment, - ACTIONS(2578), 7, + ACTIONS(2762), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127387,7 +128380,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2580), 39, + ACTIONS(2764), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127423,19 +128416,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, - [12659] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [12112] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1260), 2, + STATE(1259), 2, sym_line_comment, sym_block_comment, - ACTIONS(3026), 7, + ACTIONS(2770), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127443,7 +128437,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(3028), 39, + ACTIONS(2772), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127479,83 +128473,27 @@ 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, - [12720] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [12174] = 5, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1261), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2590), 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(2592), 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, - [12781] = 6, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3674), 1, - anon_sym_COLON_COLON, - STATE(1262), 2, + STATE(1260), 2, sym_line_comment, sym_block_comment, - ACTIONS(3477), 15, + ACTIONS(3584), 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, @@ -127565,7 +128503,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3475), 30, + ACTIONS(3586), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -127593,18 +128531,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, + anon_sym_COLON_COLON, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [12844] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [12236] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1263), 2, + STATE(1261), 2, sym_line_comment, sym_block_comment, - ACTIONS(2594), 7, + ACTIONS(2778), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127612,7 +128551,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2596), 39, + ACTIONS(2780), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127648,133 +128587,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, - [12905] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3676), 1, - anon_sym_COLON_COLON, - STATE(1264), 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, - [12968] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [12298] = 5, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3598), 1, - anon_sym_COLON_COLON, - STATE(1265), 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, - [13031] = 5, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1266), 2, + STATE(1262), 2, sym_line_comment, sym_block_comment, - ACTIONS(2598), 7, + ACTIONS(2786), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127782,7 +128608,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2600), 39, + ACTIONS(2788), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127818,77 +128644,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, - [13092] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [12360] = 5, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3680), 1, - anon_sym_LPAREN, - STATE(1552), 1, - sym_arguments, - STATE(1267), 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(3678), 29, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_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, - [13157] = 5, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1268), 2, + STATE(1263), 2, sym_line_comment, sym_block_comment, - ACTIONS(2602), 7, + ACTIONS(2814), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127896,7 +128665,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2604), 39, + ACTIONS(2816), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127932,19 +128701,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, - [13218] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [12422] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1269), 2, + STATE(1264), 2, sym_line_comment, sym_block_comment, - ACTIONS(2606), 7, + ACTIONS(2838), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127952,7 +128722,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2608), 39, + ACTIONS(2840), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127988,19 +128758,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, - [13279] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [12484] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1270), 2, + STATE(1265), 2, sym_line_comment, sym_block_comment, - ACTIONS(2610), 7, + ACTIONS(2842), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128008,7 +128779,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2612), 39, + ACTIONS(2844), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128044,19 +128815,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, - [13340] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [12546] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1271), 2, + STATE(1266), 2, sym_line_comment, sym_block_comment, - ACTIONS(2152), 7, + ACTIONS(2846), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128064,7 +128836,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2154), 39, + ACTIONS(2848), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128100,19 +128872,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, - [13401] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [12608] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1272), 2, + STATE(1267), 2, sym_line_comment, sym_block_comment, - ACTIONS(2158), 7, + ACTIONS(2894), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128120,7 +128893,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2160), 39, + ACTIONS(2896), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128156,19 +128929,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, - [13462] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [12670] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1273), 2, + STATE(1268), 2, sym_line_comment, sym_block_comment, - ACTIONS(2614), 7, + ACTIONS(2898), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128176,7 +128950,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2616), 39, + ACTIONS(2900), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128212,19 +128986,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, - [13523] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [12732] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1274), 2, + STATE(1269), 2, sym_line_comment, sym_block_comment, - ACTIONS(2618), 7, + ACTIONS(2952), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128232,7 +129007,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2620), 39, + ACTIONS(2954), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128268,19 +129043,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, - [13584] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [12794] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1275), 2, + STATE(1270), 2, sym_line_comment, sym_block_comment, - ACTIONS(2622), 7, + ACTIONS(2984), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128288,7 +129064,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2624), 39, + ACTIONS(2986), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128324,19 +129100,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, - [13645] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [12856] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1276), 2, + STATE(1271), 2, sym_line_comment, sym_block_comment, - ACTIONS(2626), 7, + ACTIONS(2992), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128344,7 +129121,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2628), 39, + ACTIONS(2994), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128380,19 +129157,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, - [13706] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [12918] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1277), 2, + STATE(1272), 2, sym_line_comment, sym_block_comment, - ACTIONS(2630), 7, + ACTIONS(3040), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128400,7 +129178,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2632), 39, + ACTIONS(3042), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128436,19 +129214,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, - [13767] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [12980] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1278), 2, + STATE(1273), 2, sym_line_comment, sym_block_comment, - ACTIONS(2662), 7, + ACTIONS(3048), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128456,7 +129235,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2664), 39, + ACTIONS(3050), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128492,19 +129271,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, - [13828] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [13042] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1279), 2, + STATE(1274), 2, sym_line_comment, sym_block_comment, - ACTIONS(2666), 7, + ACTIONS(3052), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128512,7 +129292,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2668), 39, + ACTIONS(3054), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128548,174 +129328,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, - [13889] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [13104] = 5, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1280), 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, - [13950] = 5, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1281), 2, + STATE(1275), 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, + ACTIONS(3068), 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, - [14011] = 21, - ACTIONS(29), 1, anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1681), 1, - anon_sym_DASH, - ACTIONS(1707), 1, - aux_sym_string_literal_token1, - ACTIONS(1715), 1, - sym__raw_string_literal_start, - ACTIONS(3408), 1, - anon_sym_if, - ACTIONS(3668), 1, anon_sym_COLON_COLON, - ACTIONS(3692), 1, - sym_identifier, - ACTIONS(3698), 1, + anon_sym_POUND, sym_metavariable, - STATE(2752), 1, - sym_scoped_identifier, - STATE(2987), 1, - sym__literal_pattern, - STATE(3629), 1, - sym_bracketed_type, - STATE(3646), 1, - sym_generic_type_with_turbofish, - ACTIONS(1709), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3406), 2, - anon_sym_EQ_GT, - anon_sym_PIPE, - STATE(1282), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1705), 3, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(3696), 3, - sym_self, - sym_super, - sym_crate, - STATE(2408), 4, - sym_negative_literal, - sym_string_literal, - sym_raw_string_literal, - sym_boolean_literal, - ACTIONS(3694), 20, + ACTIONS(3070), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128733,214 +129367,38 @@ 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_gen, - anon_sym_union, - [14104] = 12, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1383), 1, - anon_sym_LBRACE, - ACTIONS(3444), 1, - anon_sym_BANG, - ACTIONS(3446), 1, - anon_sym_COLON_COLON, - ACTIONS(3448), 1, - anon_sym_SQUOTE, - ACTIONS(3700), 1, - anon_sym_move, - STATE(486), 1, - sym_block, - STATE(3778), 1, - sym_label, - STATE(1283), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3442), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3440), 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, - [14179] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1284), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3704), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3702), 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, - [14240] = 26, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1157), 1, - anon_sym_extern, - ACTIONS(3236), 1, + anon_sym_enum, anon_sym_fn, - ACTIONS(3706), 1, - sym_identifier, - ACTIONS(3708), 1, - anon_sym_LPAREN, - ACTIONS(3712), 1, - anon_sym_COLON_COLON, - ACTIONS(3714), 1, - anon_sym_default, - ACTIONS(3716), 1, - anon_sym_for, - ACTIONS(3722), 1, - sym_metavariable, - STATE(1611), 1, - sym_scoped_type_identifier, - STATE(1625), 1, - sym_for_lifetimes, - STATE(1683), 1, - sym_generic_type, - STATE(2317), 1, - aux_sym_function_modifiers_repeat1, - STATE(2461), 1, - sym_extern_modifier, - STATE(3641), 1, - sym_function_modifiers, - STATE(3678), 1, - sym_scoped_identifier, - STATE(3696), 1, - sym_generic_type_with_turbofish, - STATE(3702), 1, - sym_bracketed_type, - ACTIONS(3718), 2, 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(1285), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1141), 3, - anon_sym_async, - anon_sym_const, anon_sym_unsafe, - ACTIONS(3720), 3, + anon_sym_use, + anon_sym_extern, + anon_sym_safe, + sym_identifier, sym_self, sym_super, sym_crate, - STATE(1762), 3, - sym_higher_ranked_trait_bound, - sym_function_type, - sym_tuple_type, - ACTIONS(3710), 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, - [14343] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [13166] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1286), 2, + STATE(1276), 2, sym_line_comment, sym_block_comment, - ACTIONS(2686), 7, + ACTIONS(3072), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128948,7 +129406,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2688), 39, + ACTIONS(3074), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128984,62 +129442,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, - [14404] = 21, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [13228] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1681), 1, - anon_sym_DASH, - ACTIONS(1707), 1, - aux_sym_string_literal_token1, - ACTIONS(1715), 1, - sym__raw_string_literal_start, - ACTIONS(3396), 1, - anon_sym_if, - ACTIONS(3668), 1, - anon_sym_COLON_COLON, - ACTIONS(3724), 1, - sym_identifier, - ACTIONS(3730), 1, - sym_metavariable, - STATE(2827), 1, - sym_scoped_identifier, - STATE(3007), 1, - sym__literal_pattern, - STATE(3629), 1, - sym_bracketed_type, - STATE(3646), 1, - sym_generic_type_with_turbofish, - ACTIONS(1709), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3394), 2, - anon_sym_EQ_GT, - anon_sym_PIPE, - STATE(1287), 2, + STATE(1277), 2, sym_line_comment, sym_block_comment, - ACTIONS(1705), 3, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(3728), 3, - sym_self, - sym_super, - sym_crate, - STATE(2408), 4, - sym_negative_literal, - sym_string_literal, - sym_raw_string_literal, - sym_boolean_literal, - ACTIONS(3726), 20, + ACTIONS(3084), 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(3086), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129057,130 +129481,38 @@ 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, - [14497] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1288), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3734), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - 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, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_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, - [14558] = 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, + [13290] = 5, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1289), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3738), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3736), 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, - [14619] = 5, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1290), 2, + STATE(1278), 2, sym_line_comment, sym_block_comment, - ACTIONS(2690), 7, + ACTIONS(1919), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129188,7 +129520,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2692), 39, + ACTIONS(1921), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129224,19 +129556,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, - [14680] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [13352] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1291), 2, + STATE(1279), 2, sym_line_comment, sym_block_comment, - ACTIONS(2698), 7, + ACTIONS(1835), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129244,7 +129577,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2700), 39, + ACTIONS(1837), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129280,19 +129613,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, - [14741] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [13414] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1292), 2, + STATE(1280), 2, sym_line_comment, sym_block_comment, - ACTIONS(2702), 7, + ACTIONS(1839), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129300,7 +129634,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2704), 39, + ACTIONS(1841), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129336,132 +129670,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, - [14802] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [13476] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1293), 2, + STATE(1281), 2, sym_line_comment, sym_block_comment, - ACTIONS(3388), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3390), 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, - [14863] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3744), 1, - anon_sym_DASH_GT, - STATE(1294), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3742), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3740), 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, - [14926] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1295), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2706), 7, + ACTIONS(1843), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129469,7 +129691,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2708), 39, + ACTIONS(1845), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129505,76 +129727,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, - [14987] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [13538] = 5, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3598), 1, - anon_sym_COLON_COLON, - STATE(1296), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3515), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3513), 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, - [15050] = 5, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1297), 2, + STATE(1282), 2, sym_line_comment, sym_block_comment, - ACTIONS(2710), 7, + ACTIONS(1847), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129582,7 +129748,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2712), 39, + ACTIONS(1849), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129618,19 +129784,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, - [15111] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [13600] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1298), 2, + STATE(1283), 2, sym_line_comment, sym_block_comment, - ACTIONS(2714), 7, + ACTIONS(1851), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129638,7 +129805,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2716), 39, + ACTIONS(1853), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129674,76 +129841,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, - [15172] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [13662] = 5, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3598), 1, - anon_sym_COLON_COLON, - STATE(1299), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3519), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3517), 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, - [15235] = 5, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1300), 2, + STATE(1284), 2, sym_line_comment, sym_block_comment, - ACTIONS(2718), 7, + ACTIONS(1855), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129751,7 +129862,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2720), 39, + ACTIONS(1857), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129787,76 +129898,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, - [15296] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [13724] = 5, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3750), 1, - anon_sym_DASH_GT, - STATE(1301), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3748), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3746), 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, - [15359] = 5, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1302), 2, + STATE(1285), 2, sym_line_comment, sym_block_comment, - ACTIONS(2722), 7, + ACTIONS(1859), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129864,7 +129919,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2724), 39, + ACTIONS(1861), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129900,76 +129955,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, - [15420] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [13786] = 5, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3756), 1, - anon_sym_DASH_GT, - STATE(1303), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3754), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3752), 30, - anon_sym_SEMI, - anon_sym_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, - [15483] = 5, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1304), 2, + STATE(1286), 2, sym_line_comment, sym_block_comment, - ACTIONS(2374), 7, + ACTIONS(1863), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129977,7 +129976,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2376), 39, + ACTIONS(1865), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130013,19 +130012,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, - [15544] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [13848] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1305), 2, + STATE(1287), 2, sym_line_comment, sym_block_comment, - ACTIONS(2726), 7, + ACTIONS(1867), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130033,7 +130033,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2728), 39, + ACTIONS(1869), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130069,19 +130069,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, - [15605] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [13910] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1306), 2, + STATE(1288), 2, sym_line_comment, sym_block_comment, - ACTIONS(2730), 7, + ACTIONS(1871), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130089,7 +130090,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2732), 39, + ACTIONS(1873), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130125,77 +130126,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, - [15666] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [13972] = 5, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3758), 1, - anon_sym_else, - STATE(1475), 1, - sym_else_clause, - STATE(1307), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1407), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1405), 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, - [15731] = 5, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1308), 2, + STATE(1289), 2, sym_line_comment, sym_block_comment, - ACTIONS(2390), 7, + ACTIONS(1875), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130203,7 +130147,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2392), 39, + ACTIONS(1877), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130239,19 +130183,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, - [15792] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [14034] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1309), 2, + STATE(1290), 2, sym_line_comment, sym_block_comment, - ACTIONS(2394), 7, + ACTIONS(1879), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130259,7 +130204,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2396), 39, + ACTIONS(1881), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130295,19 +130240,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, - [15853] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [14096] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1310), 2, + STATE(1291), 2, sym_line_comment, sym_block_comment, - ACTIONS(2398), 7, + ACTIONS(1883), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130315,7 +130261,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2400), 39, + ACTIONS(1885), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130351,19 +130297,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, - [15914] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [14158] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1311), 2, + STATE(1292), 2, sym_line_comment, sym_block_comment, - ACTIONS(2646), 7, + ACTIONS(1887), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130371,7 +130318,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2648), 39, + ACTIONS(1889), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130407,19 +130354,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, - [15975] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [14220] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1312), 2, + STATE(1293), 2, sym_line_comment, sym_block_comment, - ACTIONS(2650), 7, + ACTIONS(1891), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130427,7 +130375,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2652), 39, + ACTIONS(1893), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130463,19 +130411,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, - [16036] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [14282] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1313), 2, + STATE(1294), 2, sym_line_comment, sym_block_comment, - ACTIONS(2654), 7, + ACTIONS(1895), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130483,7 +130432,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2656), 39, + ACTIONS(1897), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130519,19 +130468,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, - [16097] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [14344] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1314), 2, + STATE(1295), 2, sym_line_comment, sym_block_comment, - ACTIONS(1926), 7, + ACTIONS(1899), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130539,7 +130489,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1928), 39, + ACTIONS(1901), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130575,19 +130525,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, - [16158] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [14406] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1315), 2, + STATE(1296), 2, sym_line_comment, sym_block_comment, - ACTIONS(2064), 7, + ACTIONS(1903), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130595,7 +130546,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2066), 39, + ACTIONS(1905), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130631,19 +130582,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, - [16219] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [14468] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1316), 2, + STATE(1297), 2, sym_line_comment, sym_block_comment, - ACTIONS(2068), 7, + ACTIONS(1907), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130651,7 +130603,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2070), 39, + ACTIONS(1909), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130687,19 +130639,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, - [16280] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [14530] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1317), 2, + STATE(1298), 2, sym_line_comment, sym_block_comment, - ACTIONS(2072), 7, + ACTIONS(1915), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130707,7 +130660,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2074), 39, + ACTIONS(1917), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130743,19 +130696,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, - [16341] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [14592] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1318), 2, + STATE(1299), 2, sym_line_comment, sym_block_comment, - ACTIONS(2076), 7, + ACTIONS(3088), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130763,7 +130717,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2078), 39, + ACTIONS(3090), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130799,19 +130753,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, - [16402] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [14654] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1319), 2, + STATE(1300), 2, sym_line_comment, sym_block_comment, - ACTIONS(2084), 7, + ACTIONS(1923), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130819,7 +130774,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2086), 39, + ACTIONS(1925), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130855,19 +130810,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, - [16463] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [14716] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1320), 2, + STATE(1301), 2, sym_line_comment, sym_block_comment, - ACTIONS(2144), 7, + ACTIONS(1927), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130875,7 +130831,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2146), 39, + ACTIONS(1929), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130911,19 +130867,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, - [16524] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [14778] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1321), 2, + STATE(1302), 2, sym_line_comment, sym_block_comment, - ACTIONS(2148), 7, + ACTIONS(1939), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130931,7 +130888,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2150), 39, + ACTIONS(1941), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130967,19 +130924,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, - [16585] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [14840] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1322), 2, + STATE(1303), 2, sym_line_comment, sym_block_comment, - ACTIONS(2162), 7, + ACTIONS(1943), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130987,7 +130945,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2164), 39, + ACTIONS(1945), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131023,19 +130981,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, - [16646] = 5, - ACTIONS(103), 1, + [14902] = 5, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + STATE(1304), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1947), 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(1949), 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, + [14964] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1323), 2, + STATE(1305), 2, sym_line_comment, sym_block_comment, - ACTIONS(2174), 7, + ACTIONS(1951), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131043,7 +131059,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2176), 39, + ACTIONS(1953), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131079,37 +131095,94 @@ 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, - [16707] = 5, - ACTIONS(103), 1, + [15026] = 5, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + STATE(1306), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1959), 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(1961), 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, + [15088] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1324), 2, + STATE(1307), 2, sym_line_comment, sym_block_comment, - ACTIONS(3503), 17, + ACTIONS(3520), 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(3501), 29, + ACTIONS(3522), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -131128,26 +131201,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, + anon_sym_COLON_COLON, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - anon_sym_LT2, - [16768] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [15150] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1325), 2, + STATE(1308), 2, sym_line_comment, sym_block_comment, - ACTIONS(2734), 7, + ACTIONS(3600), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131155,7 +131230,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2736), 39, + ACTIONS(3598), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131191,25 +131266,27 @@ 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, - [16829] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [15212] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1326), 2, + STATE(1309), 2, sym_line_comment, sym_block_comment, - ACTIONS(3762), 15, + ACTIONS(3528), 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, @@ -131219,7 +131296,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3760), 31, + ACTIONS(3530), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -131247,19 +131324,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_DASH_GT, + anon_sym_COLON_COLON, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [16890] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [15274] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1327), 2, + STATE(1310), 2, sym_line_comment, sym_block_comment, - ACTIONS(2738), 7, + ACTIONS(2466), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131267,7 +131344,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2740), 39, + ACTIONS(2468), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131303,27 +131380,38 @@ 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, - [16951] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [15336] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1328), 2, + ACTIONS(3606), 1, + anon_sym_RBRACE, + STATE(1311), 2, sym_line_comment, sym_block_comment, - ACTIONS(2742), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, + ACTIONS(3604), 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(2744), 39, + ACTIONS(3602), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131341,45 +131429,42 @@ 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, - [17012] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [15400] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1329), 2, + STATE(1312), 2, sym_line_comment, sym_block_comment, - ACTIONS(2746), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, + ACTIONS(1935), 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(2748), 39, + ACTIONS(1937), 35, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131400,34 +131485,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_const, anon_sym_default, - anon_sym_enum, anon_sym_fn, + anon_sym_for, anon_sym_gen, anon_sym_impl, - anon_sym_let, - anon_sym_mod, anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, anon_sym_union, anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, + anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [17073] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [15462] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1330), 2, + STATE(1313), 2, sym_line_comment, sym_block_comment, - ACTIONS(2750), 7, + ACTIONS(1935), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131435,7 +131516,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2752), 39, + ACTIONS(1937), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131471,27 +131552,33 @@ 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, - [17134] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [15524] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1331), 2, + STATE(1314), 2, sym_line_comment, sym_block_comment, - ACTIONS(2754), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, + ACTIONS(3406), 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(2756), 39, + ACTIONS(3404), 35, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131512,34 +131599,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_const, anon_sym_default, - anon_sym_enum, anon_sym_fn, + anon_sym_for, anon_sym_gen, anon_sym_impl, - anon_sym_let, - anon_sym_mod, anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, anon_sym_union, anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, + anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [17195] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [15586] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1332), 2, + STATE(1315), 2, sym_line_comment, sym_block_comment, - ACTIONS(2758), 7, + ACTIONS(2342), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131547,7 +131630,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2760), 39, + ACTIONS(2344), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131583,76 +131666,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, - [17256] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [15648] = 5, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3768), 1, - anon_sym_DASH_GT, - STATE(1333), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3766), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3764), 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, - [17319] = 5, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1334), 2, + STATE(1316), 2, sym_line_comment, sym_block_comment, - ACTIONS(2762), 7, + ACTIONS(2434), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131660,7 +131687,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2764), 39, + ACTIONS(2436), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131696,133 +131723,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, - [17380] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [15710] = 5, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3774), 1, - anon_sym_DASH_GT, - STATE(1335), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3772), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3770), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [17443] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3780), 1, - anon_sym_DASH_GT, - STATE(1336), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3778), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3776), 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, - [17506] = 5, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1337), 2, + STATE(1317), 2, sym_line_comment, sym_block_comment, - ACTIONS(2766), 7, + ACTIONS(2442), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131830,7 +131744,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2768), 39, + ACTIONS(2444), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131866,19 +131780,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, - [17567] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [15772] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1338), 2, + STATE(1318), 2, sym_line_comment, sym_block_comment, - ACTIONS(2770), 7, + ACTIONS(2450), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131886,7 +131801,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2772), 39, + ACTIONS(2452), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131922,19 +131837,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, - [17628] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [15834] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1339), 2, + STATE(1319), 2, sym_line_comment, sym_block_comment, - ACTIONS(2782), 7, + ACTIONS(2554), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131942,7 +131858,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2784), 39, + ACTIONS(2556), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131978,19 +131894,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, - [17689] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [15896] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1340), 2, + STATE(1320), 2, sym_line_comment, sym_block_comment, - ACTIONS(2790), 7, + ACTIONS(2644), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131998,7 +131915,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2792), 39, + ACTIONS(2646), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132034,19 +131951,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, - [17750] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [15958] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1341), 2, + STATE(1321), 2, sym_line_comment, sym_block_comment, - ACTIONS(2798), 7, + ACTIONS(2648), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132054,7 +131972,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2800), 39, + ACTIONS(2650), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132090,19 +132008,98 @@ 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, - [17811] = 5, - ACTIONS(103), 1, + [16020] = 26, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(1104), 1, + anon_sym_extern, + ACTIONS(3226), 1, + anon_sym_fn, + ACTIONS(3608), 1, + sym_identifier, + ACTIONS(3610), 1, + anon_sym_LPAREN, + ACTIONS(3614), 1, + anon_sym_COLON_COLON, + ACTIONS(3616), 1, + anon_sym_default, + ACTIONS(3618), 1, + anon_sym_for, + ACTIONS(3624), 1, + sym_metavariable, + STATE(1098), 1, + sym_scoped_type_identifier, + STATE(1443), 1, + sym_generic_type, + STATE(1623), 1, + sym_for_lifetimes, + STATE(2284), 1, + aux_sym__item_modifiers, + STATE(3686), 1, + sym_scoped_identifier, + STATE(3721), 1, + sym_generic_type_with_turbofish, + STATE(3733), 1, + sym_bracketed_type, + STATE(3738), 1, + sym_extern_modifier, + STATE(3822), 1, + sym_function_modifiers, + ACTIONS(3620), 2, + anon_sym_gen, + anon_sym_union, + STATE(1322), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3622), 3, + sym_self, + sym_super, + sym_crate, + STATE(1547), 3, + sym_higher_ranked_trait_bound, + sym_function_type, + sym_tuple_type, + ACTIONS(1088), 4, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + anon_sym_safe, + ACTIONS(3612), 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, + [16124] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1342), 2, + STATE(1323), 2, sym_line_comment, sym_block_comment, - ACTIONS(2802), 7, + ACTIONS(2718), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132110,7 +132107,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2804), 39, + ACTIONS(2720), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132146,19 +132143,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, - [17872] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [16186] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1343), 2, + STATE(1324), 2, sym_line_comment, sym_block_comment, - ACTIONS(2806), 7, + ACTIONS(2726), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132166,7 +132164,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2808), 39, + ACTIONS(2728), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132202,19 +132200,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, - [17933] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [16248] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1344), 2, + STATE(1325), 2, sym_line_comment, sym_block_comment, - ACTIONS(2402), 7, + ACTIONS(2734), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132222,7 +132221,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2404), 39, + ACTIONS(2736), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132258,19 +132257,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, - [17994] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [16310] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1345), 2, + STATE(1326), 2, sym_line_comment, sym_block_comment, - ACTIONS(2810), 7, + ACTIONS(2742), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132278,7 +132278,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2812), 39, + ACTIONS(2744), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132314,19 +132314,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, - [18055] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [16372] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1346), 2, + STATE(1327), 2, sym_line_comment, sym_block_comment, - ACTIONS(2814), 7, + ACTIONS(2746), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132334,7 +132335,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2816), 39, + ACTIONS(2748), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132370,19 +132371,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, - [18116] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [16434] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1347), 2, + STATE(1328), 2, sym_line_comment, sym_block_comment, - ACTIONS(2818), 7, + ACTIONS(2782), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132390,7 +132392,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2820), 39, + ACTIONS(2784), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132426,19 +132428,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, - [18177] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [16496] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1348), 2, + STATE(1329), 2, sym_line_comment, sym_block_comment, - ACTIONS(2406), 7, + ACTIONS(2794), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132446,7 +132449,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2408), 39, + ACTIONS(2796), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132482,19 +132485,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, - [18238] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [16558] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1349), 2, + STATE(1330), 2, sym_line_comment, sym_block_comment, - ACTIONS(2822), 7, + ACTIONS(2882), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132502,7 +132506,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2824), 39, + ACTIONS(2884), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132538,19 +132542,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, - [18299] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [16620] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1350), 2, + STATE(1331), 2, sym_line_comment, sym_block_comment, - ACTIONS(2826), 7, + ACTIONS(3056), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132558,7 +132563,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2828), 39, + ACTIONS(3058), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132594,19 +132599,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, - [18360] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [16682] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1351), 2, + STATE(1332), 2, sym_line_comment, sym_block_comment, - ACTIONS(2830), 7, + ACTIONS(3060), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132614,7 +132620,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2832), 39, + ACTIONS(3062), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132650,195 +132656,72 @@ 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, - [18421] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [16744] = 26, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1352), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2414), 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(2416), 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, + ACTIONS(1104), 1, anon_sym_extern, + ACTIONS(3266), 1, + anon_sym_fn, + ACTIONS(3626), 1, sym_identifier, - sym_self, - sym_super, - sym_crate, - [18482] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1353), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2486), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_LT, + ACTIONS(3628), 1, + anon_sym_LPAREN, + ACTIONS(3632), 1, anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2488), 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, + ACTIONS(3634), 1, anon_sym_default, - anon_sym_enum, - anon_sym_fn, + ACTIONS(3636), 1, + anon_sym_for, + ACTIONS(3642), 1, + sym_metavariable, + STATE(1617), 1, + sym_scoped_type_identifier, + STATE(1632), 1, + sym_for_lifetimes, + STATE(1693), 1, + sym_generic_type, + STATE(2284), 1, + aux_sym__item_modifiers, + STATE(3676), 1, + sym_function_modifiers, + STATE(3713), 1, + sym_scoped_identifier, + STATE(3731), 1, + sym_generic_type_with_turbofish, + STATE(3737), 1, + sym_bracketed_type, + STATE(3738), 1, + sym_extern_modifier, + ACTIONS(3638), 2, 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, + STATE(1333), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3640), 3, sym_self, sym_super, sym_crate, - [18543] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1354), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2498), 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(2500), 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, + STATE(1932), 3, + sym_higher_ranked_trait_bound, + sym_function_type, + sym_tuple_type, + ACTIONS(1088), 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, - [18604] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1355), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2834), 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(2836), 39, + anon_sym_safe, + ACTIONS(3630), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132856,37 +132739,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [18665] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [16848] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1356), 2, + STATE(1334), 2, sym_line_comment, sym_block_comment, - ACTIONS(2838), 7, + ACTIONS(1979), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132894,7 +132755,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2840), 39, + ACTIONS(1981), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132930,19 +132791,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, - [18726] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [16910] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1357), 2, + STATE(1335), 2, sym_line_comment, sym_block_comment, - ACTIONS(2842), 7, + ACTIONS(1987), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132950,7 +132812,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2844), 39, + ACTIONS(1989), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132986,19 +132848,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, - [18787] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [16972] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1358), 2, + STATE(1336), 2, sym_line_comment, sym_block_comment, - ACTIONS(2846), 7, + ACTIONS(1991), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133006,7 +132869,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2848), 39, + ACTIONS(1993), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133042,19 +132905,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, - [18848] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [17034] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1359), 2, + STATE(1337), 2, sym_line_comment, sym_block_comment, - ACTIONS(2850), 7, + ACTIONS(1995), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133062,7 +132926,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2852), 39, + ACTIONS(1997), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133098,19 +132962,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, - [18909] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [17096] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1360), 2, + STATE(1338), 2, sym_line_comment, sym_block_comment, - ACTIONS(2854), 7, + ACTIONS(1999), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133118,7 +132983,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2856), 39, + ACTIONS(2001), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133154,75 +133019,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, - [18970] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [17158] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1361), 2, + STATE(1339), 2, sym_line_comment, sym_block_comment, - ACTIONS(2858), 7, + ACTIONS(3512), 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(3514), 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(2860), 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, - [19031] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [17220] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1362), 2, + STATE(1340), 2, sym_line_comment, sym_block_comment, - ACTIONS(2862), 7, + ACTIONS(2011), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133230,7 +133097,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2864), 39, + ACTIONS(2013), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133266,19 +133133,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, - [19092] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [17282] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1363), 2, + STATE(1341), 2, sym_line_comment, sym_block_comment, - ACTIONS(2866), 7, + ACTIONS(2015), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133286,7 +133154,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2868), 39, + ACTIONS(2017), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133322,19 +133190,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, - [19153] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [17344] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1364), 2, + STATE(1342), 2, sym_line_comment, sym_block_comment, - ACTIONS(2870), 7, + ACTIONS(2019), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133342,7 +133211,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2872), 39, + ACTIONS(2021), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133378,19 +133247,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, - [19214] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [17406] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1365), 2, + STATE(1343), 2, sym_line_comment, sym_block_comment, - ACTIONS(2874), 7, + ACTIONS(2023), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133398,7 +133268,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2876), 39, + ACTIONS(2025), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133434,19 +133304,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, - [19275] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [17468] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1366), 2, + STATE(1344), 2, sym_line_comment, sym_block_comment, - ACTIONS(2878), 7, + ACTIONS(2027), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133454,7 +133325,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2880), 39, + ACTIONS(2029), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133490,19 +133361,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, - [19336] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [17530] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1367), 2, + STATE(1345), 2, sym_line_comment, sym_block_comment, - ACTIONS(2882), 7, + ACTIONS(2043), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133510,7 +133382,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2884), 39, + ACTIONS(2045), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133546,19 +133418,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, - [19397] = 5, - ACTIONS(103), 1, + [17592] = 9, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(3486), 1, + anon_sym_BANG, + ACTIONS(3644), 1, + anon_sym_LBRACE, + ACTIONS(3646), 1, + anon_sym_COLON_COLON, + STATE(1490), 1, + sym_field_initializer_list, + STATE(1346), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1480), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1478), 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, + [17662] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1368), 2, + STATE(1347), 2, sym_line_comment, sym_block_comment, - ACTIONS(2886), 7, + ACTIONS(2051), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133566,7 +133500,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2888), 39, + ACTIONS(2053), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133602,19 +133536,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, - [19458] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [17724] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1369), 2, + STATE(1348), 2, sym_line_comment, sym_block_comment, - ACTIONS(2508), 7, + ACTIONS(2055), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133622,7 +133557,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2510), 39, + ACTIONS(2057), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133658,19 +133593,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, - [19519] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [17786] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1370), 2, + STATE(1349), 2, sym_line_comment, sym_block_comment, - ACTIONS(2586), 7, + ACTIONS(2059), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133678,7 +133614,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2588), 39, + ACTIONS(2061), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133714,27 +133650,38 @@ 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, - [19580] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [17848] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1371), 2, + ACTIONS(3652), 1, + anon_sym_RBRACE, + STATE(1350), 2, sym_line_comment, sym_block_comment, - ACTIONS(2890), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, + ACTIONS(3650), 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(2892), 39, + ACTIONS(3648), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133752,37 +133699,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, - [19641] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [17912] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1372), 2, + STATE(1351), 2, sym_line_comment, sym_block_comment, - ACTIONS(2894), 7, + ACTIONS(2063), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133790,7 +133729,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2896), 39, + ACTIONS(2065), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133826,19 +133765,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, - [19702] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [17974] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1373), 2, + STATE(1352), 2, sym_line_comment, sym_block_comment, - ACTIONS(2898), 7, + ACTIONS(2075), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133846,7 +133786,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2900), 39, + ACTIONS(2077), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133882,19 +133822,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, - [19763] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [18036] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1374), 2, + STATE(1353), 2, sym_line_comment, sym_block_comment, - ACTIONS(2902), 7, + ACTIONS(2079), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133902,7 +133843,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2904), 39, + ACTIONS(2081), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133938,19 +133879,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, - [19824] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [18098] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1375), 2, + STATE(1354), 2, sym_line_comment, sym_block_comment, - ACTIONS(2906), 7, + ACTIONS(2087), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133958,7 +133900,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2908), 39, + ACTIONS(2089), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133994,75 +133936,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, - [19885] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [18160] = 5, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1376), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3784), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3782), 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, - [19946] = 5, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1377), 2, + STATE(1355), 2, sym_line_comment, sym_block_comment, - ACTIONS(2634), 7, + ACTIONS(2091), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -134070,7 +133957,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2636), 39, + ACTIONS(2093), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134106,75 +133993,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, - [20007] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [18222] = 5, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1378), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3788), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3786), 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, - [20068] = 5, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1379), 2, + STATE(1356), 2, sym_line_comment, sym_block_comment, - ACTIONS(2926), 7, + ACTIONS(2095), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -134182,7 +134014,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2928), 39, + ACTIONS(2097), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134218,19 +134050,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, - [20129] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [18284] = 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(2930), 7, + ACTIONS(2099), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -134238,7 +134071,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2932), 39, + ACTIONS(2101), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134274,19 +134107,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, - [20190] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [18346] = 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(2638), 7, + ACTIONS(2103), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -134294,7 +134128,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2640), 39, + ACTIONS(2105), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134330,19 +134164,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, - [20251] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [18408] = 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(2934), 7, + ACTIONS(2107), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -134350,7 +134185,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2936), 39, + ACTIONS(2109), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134386,19 +134221,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, - [20312] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [18470] = 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(2938), 7, + ACTIONS(2111), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -134406,7 +134242,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2940), 39, + ACTIONS(2113), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134442,19 +134278,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, - [20373] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [18532] = 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(2642), 7, + ACTIONS(2115), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -134462,7 +134299,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2644), 39, + ACTIONS(2117), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134498,19 +134335,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, - [20434] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [18594] = 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(2942), 7, + ACTIONS(2119), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -134518,7 +134356,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2944), 39, + ACTIONS(2121), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134554,19 +134392,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, - [20495] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [18656] = 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(2946), 7, + ACTIONS(2131), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -134574,7 +134413,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2948), 39, + ACTIONS(2133), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134610,19 +134449,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, - [20556] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [18718] = 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(2950), 7, + ACTIONS(2234), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -134630,7 +134470,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2952), 39, + ACTIONS(2236), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134666,19 +134506,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, - [20617] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [18780] = 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(2954), 7, + ACTIONS(2238), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -134686,7 +134527,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2956), 39, + ACTIONS(2240), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134722,19 +134563,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, - [20678] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [18842] = 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(2958), 7, + ACTIONS(2242), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -134742,7 +134584,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2960), 39, + ACTIONS(2244), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134778,19 +134620,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, - [20739] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [18904] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1390), 2, + STATE(1367), 2, sym_line_comment, sym_block_comment, - ACTIONS(2962), 7, + ACTIONS(2246), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -134798,7 +134641,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2964), 39, + ACTIONS(2248), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134834,19 +134677,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, - [20800] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [18966] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1391), 2, + STATE(1368), 2, sym_line_comment, sym_block_comment, - ACTIONS(2970), 7, + ACTIONS(2250), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -134854,7 +134698,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2972), 39, + ACTIONS(2252), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134890,76 +134734,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, - [20861] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [19028] = 5, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3794), 1, - anon_sym_DASH_GT, - STATE(1392), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3792), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3790), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [20924] = 5, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1393), 2, + STATE(1369), 2, sym_line_comment, sym_block_comment, - ACTIONS(2978), 7, + ACTIONS(2254), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -134967,7 +134755,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2980), 39, + ACTIONS(2256), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -135003,19 +134791,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, - [20985] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [19090] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1394), 2, + STATE(1370), 2, sym_line_comment, sym_block_comment, - ACTIONS(2982), 7, + ACTIONS(2258), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -135023,7 +134812,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2984), 39, + ACTIONS(2260), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -135059,19 +134848,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, - [21046] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [19152] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1395), 2, + STATE(1371), 2, sym_line_comment, sym_block_comment, - ACTIONS(2986), 7, + ACTIONS(2262), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -135079,7 +134869,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2988), 39, + ACTIONS(2264), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -135115,19 +134905,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, - [21107] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [19214] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1396), 2, + STATE(1372), 2, sym_line_comment, sym_block_comment, - ACTIONS(2990), 7, + ACTIONS(2266), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -135135,7 +134926,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2992), 39, + ACTIONS(2268), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -135171,19 +134962,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, - [21168] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [19276] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1397), 2, + STATE(1373), 2, sym_line_comment, sym_block_comment, - ACTIONS(2994), 7, + ACTIONS(2298), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -135191,7 +134983,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2996), 39, + ACTIONS(2300), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -135227,19 +135019,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, - [21229] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [19338] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1398), 2, + STATE(1374), 2, sym_line_comment, sym_block_comment, - ACTIONS(2670), 7, + ACTIONS(2338), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -135247,7 +135040,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2672), 39, + ACTIONS(2340), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -135283,19 +135076,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, - [21290] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [19400] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1399), 2, + STATE(1375), 2, sym_line_comment, sym_block_comment, - ACTIONS(2998), 7, + ACTIONS(2372), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -135303,7 +135097,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(3000), 39, + ACTIONS(2374), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -135339,19 +135133,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, - [21351] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [19462] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1400), 2, + STATE(1376), 2, sym_line_comment, sym_block_comment, - ACTIONS(3002), 7, + ACTIONS(2376), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -135359,7 +135154,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(3004), 39, + ACTIONS(2378), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -135395,19 +135190,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, - [21412] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [19524] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1401), 2, + STATE(1377), 2, sym_line_comment, sym_block_comment, - ACTIONS(3006), 7, + ACTIONS(2446), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -135415,7 +135211,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(3008), 39, + ACTIONS(2448), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -135451,75 +135247,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, - [21473] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [19586] = 5, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1402), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2674), 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(2676), 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, - [21534] = 5, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1403), 2, + STATE(1378), 2, sym_line_comment, sym_block_comment, - ACTIONS(3010), 7, + ACTIONS(2454), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -135527,7 +135268,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(3012), 39, + ACTIONS(2456), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -135563,75 +135304,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, - [21595] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [19648] = 5, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1404), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2678), 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(2680), 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, - [21656] = 5, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1405), 2, + STATE(1379), 2, sym_line_comment, sym_block_comment, - ACTIONS(2682), 7, + ACTIONS(2458), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -135639,7 +135325,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2684), 39, + ACTIONS(2460), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -135675,75 +135361,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, - [21717] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [19710] = 5, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1406), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2694), 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(2696), 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, - [21778] = 5, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1407), 2, + STATE(1380), 2, sym_line_comment, sym_block_comment, - ACTIONS(2774), 7, + ACTIONS(2462), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -135751,7 +135382,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2776), 39, + ACTIONS(2464), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -135787,75 +135418,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, - [21839] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [19772] = 5, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1408), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2778), 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(2780), 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, - [21900] = 5, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1409), 2, + STATE(1381), 2, sym_line_comment, sym_block_comment, - ACTIONS(2786), 7, + ACTIONS(2470), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -135863,7 +135439,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2788), 39, + ACTIONS(2472), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -135899,19 +135475,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, - [21961] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [19834] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1410), 2, + STATE(1382), 2, sym_line_comment, sym_block_comment, - ACTIONS(2910), 7, + ACTIONS(2474), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -135919,7 +135496,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2912), 39, + ACTIONS(2476), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -135955,19 +135532,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, - [22022] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [19896] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1411), 2, + STATE(1383), 2, sym_line_comment, sym_block_comment, - ACTIONS(2914), 7, + ACTIONS(2490), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -135975,7 +135553,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2916), 39, + ACTIONS(2492), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -136011,19 +135589,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, - [22083] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [19958] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1412), 2, + STATE(1384), 2, sym_line_comment, sym_block_comment, - ACTIONS(2918), 7, + ACTIONS(2498), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -136031,7 +135610,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2920), 39, + ACTIONS(2500), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -136067,19 +135646,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, - [22144] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [20020] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1413), 2, + STATE(1385), 2, sym_line_comment, sym_block_comment, - ACTIONS(2922), 7, + ACTIONS(2506), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -136087,7 +135667,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2924), 39, + ACTIONS(2508), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -136123,19 +135703,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, - [22205] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [20082] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1414), 2, + STATE(1386), 2, sym_line_comment, sym_block_comment, - ACTIONS(2966), 7, + ACTIONS(2518), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -136143,7 +135724,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2968), 39, + ACTIONS(2520), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -136179,19 +135760,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, - [22266] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [20144] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1415), 2, + STATE(1387), 2, sym_line_comment, sym_block_comment, - ACTIONS(3050), 7, + ACTIONS(2522), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -136199,7 +135781,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(3052), 39, + ACTIONS(2524), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -136235,19 +135817,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, - [22327] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [20206] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1416), 2, + STATE(1388), 2, sym_line_comment, sym_block_comment, - ACTIONS(1866), 7, + ACTIONS(2526), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -136255,7 +135838,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1868), 39, + ACTIONS(2528), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -136291,75 +135874,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, - [22388] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [20268] = 5, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1417), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1870), 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(1872), 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, - [22449] = 5, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1418), 2, + STATE(1389), 2, sym_line_comment, sym_block_comment, - ACTIONS(1946), 7, + ACTIONS(2530), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -136367,7 +135895,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1948), 39, + ACTIONS(2532), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -136403,307 +135931,72 @@ 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, - [22510] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1419), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2036), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, + [20330] = 26, + ACTIONS(29), 1, anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2038), 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, - [22571] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1420), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2040), 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(2042), 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, - [22632] = 5, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1421), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2044), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_LT, + ACTIONS(1104), 1, + anon_sym_extern, + ACTIONS(1640), 1, + anon_sym_fn, + ACTIONS(3540), 1, + anon_sym_LPAREN, + ACTIONS(3548), 1, anon_sym_COLON_COLON, - anon_sym_POUND, + ACTIONS(3556), 1, sym_metavariable, - ACTIONS(2046), 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, + ACTIONS(3654), 1, + sym_identifier, + ACTIONS(3658), 1, anon_sym_default, - anon_sym_enum, - anon_sym_fn, + ACTIONS(3660), 1, + anon_sym_for, + STATE(1618), 1, + sym_for_lifetimes, + STATE(2047), 1, + sym_generic_type, + STATE(2251), 1, + sym_scoped_type_identifier, + STATE(2284), 1, + aux_sym__item_modifiers, + STATE(3576), 1, + sym_function_modifiers, + STATE(3668), 1, + sym_bracketed_type, + STATE(3738), 1, + sym_extern_modifier, + STATE(3766), 1, + sym_scoped_identifier, + STATE(3828), 1, + sym_generic_type_with_turbofish, + ACTIONS(3550), 2, 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, - [22693] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1422), 2, + STATE(1390), 2, sym_line_comment, sym_block_comment, - ACTIONS(2048), 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(2050), 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, + ACTIONS(3554), 3, sym_self, sym_super, sym_crate, - [22754] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1423), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2052), 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(2054), 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, + STATE(2099), 3, + sym_higher_ranked_trait_bound, + sym_function_type, + sym_tuple_type, + ACTIONS(1088), 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, - [22815] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1424), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2056), 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(2058), 39, + anon_sym_safe, + ACTIONS(3656), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -136721,37 +136014,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [22876] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [20434] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1425), 2, + STATE(1391), 2, sym_line_comment, sym_block_comment, - ACTIONS(3014), 7, + ACTIONS(2538), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -136759,7 +136030,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(3016), 39, + ACTIONS(2540), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -136795,19 +136066,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, - [22937] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [20496] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1426), 2, + STATE(1392), 2, sym_line_comment, sym_block_comment, - ACTIONS(3018), 7, + ACTIONS(2542), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -136815,7 +136087,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(3020), 39, + ACTIONS(2544), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -136851,19 +136123,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, - [22998] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [20558] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1427), 2, + STATE(1393), 2, sym_line_comment, sym_block_comment, - ACTIONS(3022), 7, + ACTIONS(2550), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -136871,7 +136144,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(3024), 39, + ACTIONS(2552), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -136907,70 +136180,72 @@ 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, - [23059] = 26, + [20620] = 26, 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(1147), 1, + ACTIONS(1094), 1, anon_sym_fn, - ACTIONS(1157), 1, + ACTIONS(1104), 1, anon_sym_extern, - ACTIONS(3272), 1, + ACTIONS(3282), 1, anon_sym_for, - ACTIONS(3483), 1, + ACTIONS(3540), 1, anon_sym_LPAREN, - ACTIONS(3491), 1, + ACTIONS(3548), 1, anon_sym_COLON_COLON, - ACTIONS(3499), 1, + ACTIONS(3556), 1, sym_metavariable, - ACTIONS(3636), 1, + ACTIONS(3658), 1, anon_sym_default, - ACTIONS(3796), 1, + ACTIONS(3662), 1, sym_identifier, - STATE(1652), 1, + STATE(1624), 1, sym_for_lifetimes, - STATE(2031), 1, + STATE(2037), 1, sym_scoped_type_identifier, STATE(2047), 1, sym_generic_type, - STATE(2317), 1, - aux_sym_function_modifiers_repeat1, - STATE(2461), 1, + STATE(2284), 1, + aux_sym__item_modifiers, + STATE(3668), 1, + sym_bracketed_type, + STATE(3738), 1, sym_extern_modifier, - STATE(3610), 1, + STATE(3766), 1, sym_scoped_identifier, - STATE(3633), 1, - sym_bracketed_type, - STATE(3780), 1, + STATE(3828), 1, sym_generic_type_with_turbofish, - STATE(3812), 1, + STATE(3849), 1, sym_function_modifiers, - ACTIONS(3493), 2, + ACTIONS(3550), 2, anon_sym_gen, anon_sym_union, - STATE(1428), 2, + STATE(1394), 2, sym_line_comment, sym_block_comment, - ACTIONS(1141), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(3497), 3, + ACTIONS(3554), 3, sym_self, sym_super, sym_crate, - STATE(2063), 3, + STATE(2099), 3, sym_higher_ranked_trait_bound, sym_function_type, sym_tuple_type, - ACTIONS(3634), 17, + ACTIONS(1088), 4, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + anon_sym_safe, + ACTIONS(3656), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -136988,15 +136263,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [23162] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [20724] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1429), 2, + STATE(1395), 2, sym_line_comment, sym_block_comment, - ACTIONS(2080), 7, + ACTIONS(2698), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -137004,7 +136279,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2082), 39, + ACTIONS(2700), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -137040,27 +136315,36 @@ 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, - [23223] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [20786] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1430), 2, + STATE(1396), 2, sym_line_comment, sym_block_comment, - ACTIONS(2140), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, + ACTIONS(3650), 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(2142), 39, + ACTIONS(3648), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -137078,37 +136362,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, - [23284] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [20847] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1431), 2, + STATE(1397), 2, sym_line_comment, sym_block_comment, - ACTIONS(3800), 15, + ACTIONS(3666), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137124,7 +136400,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3798), 31, + ACTIONS(3664), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137156,23 +136432,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [23345] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [20908] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1432), 2, + STATE(1398), 2, sym_line_comment, sym_block_comment, - ACTIONS(2582), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, + ACTIONS(1935), 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(2584), 39, + ACTIONS(1937), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -137190,110 +136474,87 @@ 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, - [23406] = 23, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [20969] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1615), 1, - anon_sym_LBRACK, - ACTIONS(3358), 1, - anon_sym_SQUOTE, - ACTIONS(3479), 1, - sym_identifier, - ACTIONS(3483), 1, - anon_sym_LPAREN, - ACTIONS(3485), 1, - anon_sym_STAR, - ACTIONS(3489), 1, - anon_sym_AMP, - ACTIONS(3491), 1, - anon_sym_COLON_COLON, - ACTIONS(3495), 1, - anon_sym_for, - ACTIONS(3499), 1, - sym_metavariable, - STATE(2559), 1, - sym_where_predicate, - STATE(2796), 1, - sym_scoped_type_identifier, - STATE(3036), 1, - sym_generic_type, - STATE(3610), 1, - sym_scoped_identifier, - STATE(3633), 1, - sym_bracketed_type, - STATE(3780), 1, - sym_generic_type_with_turbofish, - STATE(1433), 2, + ACTIONS(3668), 1, + anon_sym_else, + STATE(1480), 1, + sym_else_clause, + STATE(1399), 2, sym_line_comment, sym_block_comment, - ACTIONS(3493), 3, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - ACTIONS(3497), 3, - sym_self, - sym_super, - sym_crate, - STATE(3215), 6, - sym_higher_ranked_trait_bound, - sym_lifetime, - sym_array_type, - sym_tuple_type, - sym_reference_type, - sym_pointer_type, - ACTIONS(3487), 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, - [23502] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(1410), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1408), 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, + [21034] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1434), 2, + STATE(1400), 2, sym_line_comment, sym_block_comment, - ACTIONS(3804), 15, + ACTIONS(3672), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137309,7 +136570,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3802), 30, + ACTIONS(3670), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137337,18 +136598,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [23562] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [21095] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1435), 2, + ACTIONS(3474), 1, + anon_sym_SQUOTE, + STATE(1504), 1, + sym_label, + STATE(1401), 2, sym_line_comment, sym_block_comment, - ACTIONS(3808), 15, + ACTIONS(3676), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137364,7 +136630,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3806), 30, + ACTIONS(3674), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137392,18 +136658,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, - [23622] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [21160] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1436), 2, + STATE(1402), 2, sym_line_comment, sym_block_comment, - ACTIONS(3812), 15, + ACTIONS(3680), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137419,7 +136684,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3810), 30, + ACTIONS(3678), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137447,18 +136712,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, + anon_sym_COLON_COLON, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [23682] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [21221] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1437), 2, + STATE(1403), 2, sym_line_comment, sym_block_comment, - ACTIONS(3816), 15, + ACTIONS(3684), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137474,7 +136740,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3814), 30, + ACTIONS(3682), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137502,24 +136768,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [23742] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [21282] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1438), 2, + ACTIONS(3686), 1, + anon_sym_LBRACE, + STATE(1404), 2, sym_line_comment, sym_block_comment, - ACTIONS(3820), 15, + ACTIONS(3584), 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, @@ -137529,13 +136799,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3818), 30, + ACTIONS(3586), 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, @@ -137557,18 +136826,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_SQUOTE, + anon_sym_COLON_COLON, anon_sym_as, anon_sym_else, - [23802] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [21345] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1439), 2, + STATE(1405), 2, sym_line_comment, sym_block_comment, - ACTIONS(955), 15, + ACTIONS(3690), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137584,7 +136853,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(957), 30, + ACTIONS(3688), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137612,18 +136881,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, + anon_sym_COLON_COLON, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [23862] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [21406] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1440), 2, + STATE(1406), 2, sym_line_comment, sym_block_comment, - ACTIONS(1439), 15, + ACTIONS(3694), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137639,7 +136909,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1437), 30, + ACTIONS(3692), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137667,18 +136937,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [23922] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [21467] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1441), 2, + STATE(1407), 2, sym_line_comment, sym_block_comment, - ACTIONS(1477), 15, + ACTIONS(3518), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137689,12 +136960,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(1475), 30, + ACTIONS(3516), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137713,27 +136986,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [23982] = 5, - ACTIONS(103), 1, + anon_sym_LT2, + [21528] = 21, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(1688), 1, + anon_sym_DASH, + ACTIONS(1714), 1, + aux_sym_string_literal_token1, + ACTIONS(1722), 1, + sym__raw_string_literal_start, + ACTIONS(3434), 1, + anon_sym_if, + ACTIONS(3696), 1, + sym_identifier, + ACTIONS(3700), 1, + anon_sym_COLON_COLON, + ACTIONS(3704), 1, + sym_metavariable, + STATE(2655), 1, + sym_scoped_identifier, + STATE(3012), 1, + sym__literal_pattern, + STATE(3664), 1, + sym_bracketed_type, + STATE(3681), 1, + sym_generic_type_with_turbofish, + ACTIONS(1716), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3432), 2, + anon_sym_EQ_GT, + anon_sym_PIPE, + STATE(1408), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1712), 3, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(3702), 3, + sym_self, + sym_super, + sym_crate, + STATE(2421), 4, + sym_negative_literal, + sym_string_literal, + sym_raw_string_literal, + sym_boolean_literal, + ACTIONS(3698), 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, + [21621] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1442), 2, + STATE(1409), 2, sym_line_comment, sym_block_comment, - ACTIONS(3824), 15, + ACTIONS(3708), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137749,7 +137093,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3822), 30, + ACTIONS(3706), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137777,18 +137121,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [24042] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [21682] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1443), 2, + ACTIONS(3710), 1, + anon_sym_COLON_COLON, + STATE(1410), 2, sym_line_comment, sym_block_comment, - ACTIONS(3828), 15, + ACTIONS(3596), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137804,7 +137151,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3826), 30, + ACTIONS(3594), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137835,15 +137182,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [24102] = 5, - ACTIONS(103), 1, + [21745] = 12, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(1414), 1, + anon_sym_LBRACE, + ACTIONS(3470), 1, + anon_sym_BANG, + ACTIONS(3472), 1, + anon_sym_COLON_COLON, + ACTIONS(3474), 1, + anon_sym_SQUOTE, + ACTIONS(3712), 1, + anon_sym_move, + STATE(495), 1, + sym_block, + STATE(3811), 1, + sym_label, + STATE(1411), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3468), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3466), 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, + [21820] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1444), 2, + ACTIONS(3714), 1, + anon_sym_COLON_COLON, + STATE(1412), 2, sym_line_comment, sym_block_comment, - ACTIONS(3832), 15, + ACTIONS(3596), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137859,7 +137271,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3830), 30, + ACTIONS(3594), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137890,19 +137302,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [24162] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [21883] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3456), 1, - anon_sym_BANG, - ACTIONS(3834), 1, - anon_sym_COLON_COLON, - STATE(1445), 2, + ACTIONS(3720), 1, + anon_sym_DASH_GT, + STATE(1413), 2, sym_line_comment, sym_block_comment, - ACTIONS(1459), 15, + ACTIONS(3718), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137918,12 +137328,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1457), 28, + ACTIONS(3716), 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, @@ -137945,17 +137356,20 @@ 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, - [24226] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [21946] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1446), 2, + ACTIONS(3726), 1, + anon_sym_DASH_GT, + STATE(1414), 2, sym_line_comment, sym_block_comment, - ACTIONS(3838), 15, + ACTIONS(3724), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137971,7 +137385,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3836), 30, + ACTIONS(3722), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138002,15 +137416,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [24286] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [22009] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1447), 2, + ACTIONS(3732), 1, + anon_sym_DASH_GT, + STATE(1415), 2, sym_line_comment, sym_block_comment, - ACTIONS(3842), 15, + ACTIONS(3730), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138026,7 +137442,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3840), 30, + ACTIONS(3728), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138057,15 +137473,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [24346] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [22072] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1448), 2, + ACTIONS(3734), 1, + anon_sym_COLON_COLON, + STATE(1416), 2, sym_line_comment, sym_block_comment, - ACTIONS(3846), 15, + ACTIONS(3596), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138081,7 +137499,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3844), 30, + ACTIONS(3594), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138112,21 +137530,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [24406] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [22135] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, - anon_sym_LBRACK, - ACTIONS(3854), 1, - anon_sym_QMARK, - ACTIONS(3856), 1, - anon_sym_DOT, - STATE(1449), 2, + STATE(1417), 2, sym_line_comment, sym_block_comment, - ACTIONS(3852), 14, + ACTIONS(1604), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138140,14 +137552,18 @@ 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(3848), 28, + ACTIONS(1606), 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, @@ -138170,21 +137586,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [24472] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [22196] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1450), 2, + ACTIONS(3736), 1, + anon_sym_LBRACE, + STATE(1418), 2, sym_line_comment, sym_block_comment, - ACTIONS(3860), 15, + ACTIONS(3512), 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, @@ -138194,13 +137613,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3858), 30, + ACTIONS(3514), 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, @@ -138222,18 +137640,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_SQUOTE, + anon_sym_COLON_COLON, anon_sym_as, anon_sym_else, - [24532] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [22259] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1451), 2, + STATE(1419), 2, sym_line_comment, sym_block_comment, - ACTIONS(3864), 15, + ACTIONS(3740), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138249,7 +137667,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3862), 30, + ACTIONS(3738), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138277,18 +137695,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, + anon_sym_COLON_COLON, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [24592] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [22320] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1452), 2, + ACTIONS(3746), 1, + anon_sym_DASH_GT, + STATE(1420), 2, sym_line_comment, sym_block_comment, - ACTIONS(3868), 15, + ACTIONS(3744), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138304,7 +137725,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3866), 30, + ACTIONS(3742), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138335,15 +137756,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [24652] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [22383] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1453), 2, + STATE(1421), 2, sym_line_comment, sym_block_comment, - ACTIONS(1459), 15, + ACTIONS(938), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138359,7 +137780,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1457), 30, + ACTIONS(940), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138389,22 +137810,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_as, + anon_sym_fn, anon_sym_else, - [24712] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [22444] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1454), 2, + ACTIONS(3748), 1, + anon_sym_LBRACE, + STATE(1422), 2, sym_line_comment, sym_block_comment, - ACTIONS(3872), 15, + ACTIONS(3520), 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, @@ -138414,13 +137839,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3870), 30, + ACTIONS(3522), 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, @@ -138442,26 +137866,144 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_SQUOTE, + anon_sym_COLON_COLON, anon_sym_as, anon_sym_else, - [24772] = 9, - ACTIONS(103), 1, + [22507] = 5, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + STATE(1423), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3752), 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(3750), 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, + [22568] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + STATE(1424), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3756), 15, + sym__raw_string_literal_start, + sym_float_literal, + anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(3854), 1, - anon_sym_QMARK, - ACTIONS(3856), 1, - anon_sym_DOT, - ACTIONS(3878), 1, - anon_sym_as, - STATE(1455), 2, + 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(3754), 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, + [22629] = 12, + ACTIONS(19), 1, + anon_sym_LBRACE, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(3472), 1, + anon_sym_COLON_COLON, + ACTIONS(3474), 1, + anon_sym_SQUOTE, + ACTIONS(3572), 1, + anon_sym_BANG, + ACTIONS(3758), 1, + anon_sym_move, + STATE(404), 1, + sym_block, + STATE(3785), 1, + sym_label, + STATE(1425), 2, sym_line_comment, sym_block_comment, - ACTIONS(3876), 14, + ACTIONS(3468), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138475,14 +138017,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(3874), 27, + ACTIONS(3466), 24, anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_RBRACE, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -138501,18 +138043,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_COMMA, - anon_sym_SQUOTE, - anon_sym_else, - [24840] = 5, - ACTIONS(103), 1, + anon_sym_as, + [22704] = 21, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(1688), 1, + anon_sym_DASH, + ACTIONS(1714), 1, + aux_sym_string_literal_token1, + ACTIONS(1722), 1, + sym__raw_string_literal_start, + ACTIONS(3422), 1, + anon_sym_if, + ACTIONS(3700), 1, + anon_sym_COLON_COLON, + ACTIONS(3760), 1, + sym_identifier, + ACTIONS(3766), 1, + sym_metavariable, + STATE(2733), 1, + sym_scoped_identifier, + STATE(2989), 1, + sym__literal_pattern, + STATE(3664), 1, + sym_bracketed_type, + STATE(3681), 1, + sym_generic_type_with_turbofish, + ACTIONS(1716), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3420), 2, + anon_sym_EQ_GT, + anon_sym_PIPE, + STATE(1426), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1712), 3, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(3764), 3, + sym_self, + sym_super, + sym_crate, + STATE(2421), 4, + sym_negative_literal, + sym_string_literal, + sym_raw_string_literal, + sym_boolean_literal, + ACTIONS(3762), 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, + [22797] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1456), 2, + STATE(1427), 2, sym_line_comment, sym_block_comment, - ACTIONS(3477), 15, + ACTIONS(3770), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138528,7 +138140,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3475), 30, + ACTIONS(3768), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138556,24 +138168,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, + anon_sym_COLON_COLON, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [24900] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [22858] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1457), 2, + ACTIONS(3772), 1, + anon_sym_LBRACE, + STATE(1428), 2, sym_line_comment, sym_block_comment, - ACTIONS(3882), 15, + ACTIONS(3528), 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, @@ -138583,13 +138199,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3880), 30, + ACTIONS(3530), 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, @@ -138611,18 +138226,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_SQUOTE, + anon_sym_COLON_COLON, anon_sym_as, anon_sym_else, - [24960] = 5, - ACTIONS(103), 1, + [22921] = 21, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(1688), 1, + anon_sym_DASH, + ACTIONS(1714), 1, + aux_sym_string_literal_token1, + ACTIONS(1722), 1, + sym__raw_string_literal_start, + ACTIONS(3446), 1, + anon_sym_if, + ACTIONS(3700), 1, + anon_sym_COLON_COLON, + ACTIONS(3774), 1, + sym_identifier, + ACTIONS(3780), 1, + sym_metavariable, + STATE(2747), 1, + sym_scoped_identifier, + STATE(3018), 1, + sym__literal_pattern, + STATE(3664), 1, + sym_bracketed_type, + STATE(3681), 1, + sym_generic_type_with_turbofish, + ACTIONS(1716), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3444), 2, + anon_sym_EQ_GT, + anon_sym_PIPE, + STATE(1429), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1712), 3, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(3778), 3, + sym_self, + sym_super, + sym_crate, + STATE(2421), 4, + sym_negative_literal, + sym_string_literal, + sym_raw_string_literal, + sym_boolean_literal, + ACTIONS(3776), 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, + [23014] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1458), 2, + STATE(1430), 2, sym_line_comment, sym_block_comment, - ACTIONS(3886), 15, + ACTIONS(3784), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138638,7 +138325,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3884), 30, + ACTIONS(3782), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138666,18 +138353,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, + anon_sym_COLON_COLON, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25020] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [23075] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1459), 2, + STATE(1431), 2, sym_line_comment, sym_block_comment, - ACTIONS(1053), 15, + ACTIONS(3788), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138693,7 +138381,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1055), 30, + ACTIONS(3786), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138721,18 +138409,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, + anon_sym_COLON_COLON, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25080] = 5, - ACTIONS(103), 1, + [23136] = 5, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + STATE(1432), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3604), 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(3602), 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, + [23197] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1460), 2, + STATE(1433), 2, sym_line_comment, sym_block_comment, - ACTIONS(3890), 15, + ACTIONS(3414), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138748,7 +138493,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3888), 30, + ACTIONS(3416), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138756,6 +138501,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, @@ -138779,15 +138525,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25140] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [23258] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1461), 2, + ACTIONS(3794), 1, + anon_sym_DASH_GT, + STATE(1434), 2, sym_line_comment, sym_block_comment, - ACTIONS(3894), 15, + ACTIONS(3792), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138803,7 +138551,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3892), 30, + ACTIONS(3790), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138834,15 +138582,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25200] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [23321] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1462), 2, + STATE(1435), 2, sym_line_comment, sym_block_comment, - ACTIONS(3898), 15, + ACTIONS(3798), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138858,7 +138606,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3896), 30, + ACTIONS(3796), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138886,18 +138634,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, + anon_sym_COLON_COLON, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25260] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [23382] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1463), 2, + STATE(1436), 2, sym_line_comment, sym_block_comment, - ACTIONS(1495), 15, + ACTIONS(3802), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138913,7 +138662,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1493), 30, + ACTIONS(3800), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138941,18 +138690,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25320] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [23443] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1464), 2, + ACTIONS(3734), 1, + anon_sym_COLON_COLON, + STATE(1437), 2, sym_line_comment, sym_block_comment, - ACTIONS(3902), 15, + ACTIONS(3566), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138968,7 +138720,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3900), 30, + ACTIONS(3564), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138999,15 +138751,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25380] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [23506] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1465), 2, + ACTIONS(3804), 1, + anon_sym_COLON_COLON, + STATE(1438), 2, sym_line_comment, sym_block_comment, - ACTIONS(1503), 15, + ACTIONS(1480), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139023,7 +138777,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1501), 30, + ACTIONS(1478), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -139054,15 +138808,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25440] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [23569] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1466), 2, + ACTIONS(3810), 1, + anon_sym_DASH_GT, + STATE(1439), 2, sym_line_comment, sym_block_comment, - ACTIONS(1013), 15, + ACTIONS(3808), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139078,7 +138834,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1015), 30, + ACTIONS(3806), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -139109,21 +138865,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25500] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [23632] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, - anon_sym_LBRACK, - ACTIONS(3854), 1, - anon_sym_QMARK, - ACTIONS(3856), 1, - anon_sym_DOT, - STATE(1467), 2, + ACTIONS(3734), 1, + anon_sym_COLON_COLON, + STATE(1440), 2, sym_line_comment, sym_block_comment, - ACTIONS(3906), 14, + ACTIONS(3570), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139137,14 +138889,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(3904), 28, + ACTIONS(3568), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -139167,15 +138922,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25566] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [23695] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1468), 2, + ACTIONS(3814), 1, + anon_sym_LPAREN, + STATE(1562), 1, + sym_arguments, + STATE(1441), 2, sym_line_comment, sym_block_comment, - ACTIONS(1511), 15, + ACTIONS(3816), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139191,9 +138950,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1509), 30, + ACTIONS(3812), 29, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, @@ -139222,15 +138980,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25626] = 5, - ACTIONS(103), 1, + [23760] = 5, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + STATE(1442), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2372), 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(2374), 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, + [23821] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1469), 2, + ACTIONS(3734), 1, + anon_sym_COLON_COLON, + STATE(1443), 2, sym_line_comment, sym_block_comment, - ACTIONS(1515), 15, + ACTIONS(3506), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139246,7 +139062,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1513), 30, + ACTIONS(3504), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -139277,15 +139093,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25686] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [23884] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1470), 2, + ACTIONS(3822), 1, + anon_sym_DASH_GT, + STATE(1444), 2, sym_line_comment, sym_block_comment, - ACTIONS(1523), 15, + ACTIONS(3820), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139301,7 +139119,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1521), 30, + ACTIONS(3818), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -139332,70 +139150,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25746] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [23947] = 5, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1471), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1549), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1547), 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, - [25806] = 5, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1472), 2, + STATE(1445), 2, sym_line_comment, sym_block_comment, - ACTIONS(951), 15, + ACTIONS(3826), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139411,7 +139174,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(953), 30, + ACTIONS(3824), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -139439,73 +139202,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, + anon_sym_COLON_COLON, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25866] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [24008] = 5, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1473), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3910), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3908), 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, - [25926] = 5, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1474), 2, + STATE(1446), 2, sym_line_comment, sym_block_comment, - ACTIONS(3914), 15, + ACTIONS(958), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139521,7 +139230,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3912), 30, + ACTIONS(960), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -139551,71 +139260,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_as, + anon_sym_fn, anon_sym_else, - [25986] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [24069] = 5, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1475), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1487), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1485), 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, - [26046] = 5, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1476), 2, + STATE(1447), 2, sym_line_comment, sym_block_comment, - ACTIONS(3918), 15, + ACTIONS(1030), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139631,7 +139286,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3916), 30, + ACTIONS(1032), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -139662,73 +139317,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26106] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [24129] = 5, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3850), 1, - anon_sym_LBRACK, - ACTIONS(3854), 1, - anon_sym_QMARK, - ACTIONS(3856), 1, - anon_sym_DOT, - STATE(1477), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3922), 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(3920), 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, - [26172] = 5, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1478), 2, + STATE(1448), 2, sym_line_comment, sym_block_comment, - ACTIONS(3926), 15, + ACTIONS(3830), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139744,7 +139341,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3924), 30, + ACTIONS(3828), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -139775,15 +139372,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26232] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [24189] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1479), 2, + STATE(1449), 2, sym_line_comment, sym_block_comment, - ACTIONS(3930), 15, + ACTIONS(3834), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139799,7 +139396,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3928), 30, + ACTIONS(3832), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -139830,15 +139427,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26292] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [24249] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1480), 2, + STATE(1450), 2, sym_line_comment, sym_block_comment, - ACTIONS(1459), 15, + ACTIONS(3838), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139854,7 +139451,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1457), 30, + ACTIONS(3836), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -139885,15 +139482,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26352] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [24309] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1481), 2, + STATE(1451), 2, sym_line_comment, sym_block_comment, - ACTIONS(3934), 15, + ACTIONS(1480), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139909,7 +139506,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3932), 30, + ACTIONS(1478), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -139940,15 +139537,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26412] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [24369] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1482), 2, + STATE(1452), 2, sym_line_comment, sym_block_comment, - ACTIONS(1443), 15, + ACTIONS(3842), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139964,7 +139561,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1441), 30, + ACTIONS(3840), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -139995,15 +139592,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26472] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [24429] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1483), 2, + STATE(1453), 2, sym_line_comment, sym_block_comment, - ACTIONS(3938), 15, + ACTIONS(3846), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140019,7 +139616,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3936), 30, + ACTIONS(3844), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -140050,15 +139647,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26532] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [24489] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1484), 2, + ACTIONS(3470), 1, + anon_sym_BANG, + ACTIONS(3472), 1, + anon_sym_COLON_COLON, + STATE(1454), 2, sym_line_comment, sym_block_comment, - ACTIONS(3942), 15, + ACTIONS(3468), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140074,13 +139675,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3940), 30, + ACTIONS(3466), 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, @@ -140102,18 +139702,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, - [26592] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [24553] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1485), 2, + STATE(1455), 2, sym_line_comment, sym_block_comment, - ACTIONS(3682), 15, + ACTIONS(3850), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140129,7 +139728,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3678), 30, + ACTIONS(3848), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -140160,15 +139759,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26652] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [24613] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1486), 2, + STATE(1456), 2, sym_line_comment, sym_block_comment, - ACTIONS(3946), 15, + ACTIONS(3854), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140184,7 +139783,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3944), 30, + ACTIONS(3852), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -140215,77 +139814,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26712] = 12, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [24673] = 5, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(407), 1, - anon_sym_LBRACE, - ACTIONS(3448), 1, - anon_sym_SQUOTE, - ACTIONS(3948), 1, - anon_sym_BANG, - ACTIONS(3950), 1, - anon_sym_COLON_COLON, - ACTIONS(3952), 1, - anon_sym_move, - STATE(1812), 1, - sym_block, - STATE(3779), 1, - sym_label, - STATE(1487), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3442), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3440), 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, - [26786] = 5, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1488), 2, + STATE(1457), 2, sym_line_comment, sym_block_comment, - ACTIONS(1447), 15, + ACTIONS(3858), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140301,7 +139838,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1445), 30, + ACTIONS(3856), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -140332,15 +139869,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26846] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [24733] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1489), 2, + STATE(1458), 2, sym_line_comment, sym_block_comment, - ACTIONS(3956), 15, + ACTIONS(3596), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140356,7 +139893,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3954), 30, + ACTIONS(3594), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -140387,15 +139924,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26906] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [24793] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1490), 2, + STATE(1459), 2, sym_line_comment, sym_block_comment, - ACTIONS(3960), 15, + ACTIONS(1558), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140411,7 +139948,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3958), 30, + ACTIONS(1556), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -140442,15 +139979,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26966] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [24853] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1491), 2, + STATE(1460), 2, sym_line_comment, sym_block_comment, - ACTIONS(3964), 15, + ACTIONS(1480), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140466,7 +140003,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3962), 30, + ACTIONS(1478), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -140497,15 +140034,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27026] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [24913] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1492), 2, + STATE(1461), 2, sym_line_comment, sym_block_comment, - ACTIONS(3968), 15, + ACTIONS(3862), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140521,7 +140058,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3966), 30, + ACTIONS(3860), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -140552,15 +140089,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27086] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [24973] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1493), 2, + STATE(1462), 2, sym_line_comment, sym_block_comment, - ACTIONS(3972), 15, + ACTIONS(1046), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140576,7 +140113,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3970), 30, + ACTIONS(1048), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -140607,15 +140144,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27146] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [25033] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1494), 2, + STATE(1463), 2, sym_line_comment, sym_block_comment, - ACTIONS(1541), 15, + ACTIONS(3866), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140631,7 +140168,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1539), 30, + ACTIONS(3864), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -140662,15 +140199,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27206] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [25093] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1495), 2, + STATE(1464), 2, sym_line_comment, sym_block_comment, - ACTIONS(1451), 15, + ACTIONS(1480), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140686,7 +140223,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1449), 30, + ACTIONS(1478), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -140717,15 +140254,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27266] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [25153] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1496), 2, + STATE(1465), 2, sym_line_comment, sym_block_comment, - ACTIONS(3976), 15, + ACTIONS(3870), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140741,7 +140278,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3974), 30, + ACTIONS(3868), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -140772,15 +140309,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27326] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [25213] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1497), 2, + STATE(1466), 2, sym_line_comment, sym_block_comment, - ACTIONS(3980), 15, + ACTIONS(1480), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140796,7 +140333,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3978), 30, + ACTIONS(1478), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -140827,71 +140364,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27386] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [25273] = 5, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3984), 2, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - STATE(1498), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3986), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3982), 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, - [27448] = 5, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1499), 2, + STATE(1467), 2, sym_line_comment, sym_block_comment, - ACTIONS(3990), 15, + ACTIONS(954), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140907,7 +140388,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3988), 30, + ACTIONS(956), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -140938,15 +140419,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27508] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [25333] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1500), 2, + STATE(1468), 2, sym_line_comment, sym_block_comment, - ACTIONS(975), 15, + ACTIONS(3874), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140962,7 +140443,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(977), 30, + ACTIONS(3872), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -140993,19 +140474,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27568] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [25393] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3444), 1, - anon_sym_BANG, - ACTIONS(3446), 1, - anon_sym_COLON_COLON, - STATE(1501), 2, + STATE(1469), 2, sym_line_comment, sym_block_comment, - ACTIONS(3442), 15, + ACTIONS(3878), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141021,71 +140498,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3440), 28, + ACTIONS(3876), 30, 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, - [27632] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3850), 1, - anon_sym_LBRACK, - ACTIONS(3854), 1, - anon_sym_QMARK, - ACTIONS(3856), 1, - anon_sym_DOT, - STATE(1502), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3994), 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(3992), 28, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -141108,15 +140529,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27698] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [25453] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1503), 2, + STATE(1470), 2, sym_line_comment, sym_block_comment, - ACTIONS(3998), 15, + ACTIONS(3882), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141132,7 +140553,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3996), 30, + ACTIONS(3880), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -141163,15 +140584,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27758] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [25513] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1504), 2, + STATE(1471), 2, sym_line_comment, sym_block_comment, - ACTIONS(4002), 15, + ACTIONS(1480), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141187,7 +140608,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4000), 30, + ACTIONS(1478), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -141218,15 +140639,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27818] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [25573] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1505), 2, + STATE(1472), 2, sym_line_comment, sym_block_comment, - ACTIONS(4006), 15, + ACTIONS(3886), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141242,7 +140663,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4004), 30, + ACTIONS(3884), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -141273,15 +140694,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27878] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [25633] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1506), 2, + STATE(1473), 2, sym_line_comment, sym_block_comment, - ACTIONS(4010), 15, + ACTIONS(3890), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141297,7 +140718,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4008), 30, + ACTIONS(3888), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -141328,15 +140749,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27938] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [25693] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1507), 2, + STATE(1474), 2, sym_line_comment, sym_block_comment, - ACTIONS(4014), 15, + ACTIONS(3894), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141352,7 +140773,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4012), 30, + ACTIONS(3892), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -141383,15 +140804,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27998] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [25753] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1508), 2, + STATE(1475), 2, sym_line_comment, sym_block_comment, - ACTIONS(4018), 15, + ACTIONS(3898), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141407,7 +140828,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4016), 30, + ACTIONS(3896), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -141438,15 +140859,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28058] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [25813] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1509), 2, + STATE(1476), 2, sym_line_comment, sym_block_comment, - ACTIONS(1459), 15, + ACTIONS(1540), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141462,7 +140883,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1457), 30, + ACTIONS(1538), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -141493,15 +140914,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28118] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [25873] = 8, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1510), 2, + ACTIONS(3902), 1, + anon_sym_LBRACK, + ACTIONS(3906), 1, + anon_sym_QMARK, + ACTIONS(3908), 1, + anon_sym_DOT, + STATE(1477), 2, sym_line_comment, sym_block_comment, - ACTIONS(4022), 15, + ACTIONS(3904), 14, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141515,17 +140942,72 @@ 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(4020), 30, + ACTIONS(3900), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACK, 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, + [25939] = 8, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(3902), 1, + anon_sym_LBRACK, + ACTIONS(3906), 1, anon_sym_QMARK, + ACTIONS(3908), 1, + anon_sym_DOT, + STATE(1478), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3912), 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(3910), 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, @@ -141548,15 +141030,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28178] = 5, - ACTIONS(103), 1, + [26005] = 23, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(1620), 1, + anon_sym_LBRACK, + ACTIONS(3340), 1, + anon_sym_SQUOTE, + ACTIONS(3536), 1, + sym_identifier, + ACTIONS(3540), 1, + anon_sym_LPAREN, + ACTIONS(3542), 1, + anon_sym_STAR, + ACTIONS(3546), 1, + anon_sym_AMP, + ACTIONS(3548), 1, + anon_sym_COLON_COLON, + ACTIONS(3552), 1, + anon_sym_for, + ACTIONS(3556), 1, + sym_metavariable, + STATE(2591), 1, + sym_where_predicate, + STATE(2676), 1, + sym_scoped_type_identifier, + STATE(3070), 1, + sym_generic_type, + STATE(3668), 1, + sym_bracketed_type, + STATE(3766), 1, + sym_scoped_identifier, + STATE(3828), 1, + sym_generic_type_with_turbofish, + STATE(1479), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3550), 3, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + ACTIONS(3554), 3, + sym_self, + sym_super, + sym_crate, + STATE(3369), 6, + sym_higher_ranked_trait_bound, + sym_lifetime, + sym_array_type, + sym_tuple_type, + sym_reference_type, + sym_pointer_type, + ACTIONS(3544), 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, + [26101] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1511), 2, + STATE(1480), 2, sym_line_comment, sym_block_comment, - ACTIONS(3511), 15, + ACTIONS(1500), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141572,7 +141127,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3509), 30, + ACTIONS(1498), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -141603,15 +141158,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28238] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [26161] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1512), 2, + STATE(1481), 2, sym_line_comment, sym_block_comment, - ACTIONS(1491), 15, + ACTIONS(3916), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141627,7 +141182,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1489), 30, + ACTIONS(3914), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -141658,15 +141213,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28298] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [26221] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1513), 2, + STATE(1482), 2, sym_line_comment, sym_block_comment, - ACTIONS(4026), 15, + ACTIONS(3920), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141682,7 +141237,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4024), 30, + ACTIONS(3918), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -141713,15 +141268,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28358] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [26281] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1514), 2, + STATE(1483), 2, sym_line_comment, sym_block_comment, - ACTIONS(1459), 15, + ACTIONS(3924), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141737,7 +141292,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1457), 30, + ACTIONS(3922), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -141768,15 +141323,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28418] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [26341] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1515), 2, + STATE(1484), 2, sym_line_comment, sym_block_comment, - ACTIONS(3515), 15, + ACTIONS(3928), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141792,7 +141347,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3513), 30, + ACTIONS(3926), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -141823,18 +141378,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28478] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [26401] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4028), 2, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - STATE(1516), 2, + STATE(1485), 2, sym_line_comment, sym_block_comment, - ACTIONS(3986), 15, + ACTIONS(3932), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141850,12 +141402,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3982), 28, + ACTIONS(3930), 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, @@ -141877,17 +141430,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, - [28540] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [26461] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1517), 2, + STATE(1486), 2, sym_line_comment, sym_block_comment, - ACTIONS(4032), 15, + ACTIONS(1496), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141903,7 +141457,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4030), 30, + ACTIONS(1494), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -141934,15 +141488,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28600] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [26521] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1518), 2, + STATE(1487), 2, sym_line_comment, sym_block_comment, - ACTIONS(3986), 15, + ACTIONS(3936), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141958,7 +141512,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3982), 30, + ACTIONS(3934), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -141989,15 +141543,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28660] = 5, - ACTIONS(103), 1, + [26581] = 8, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(3902), 1, + anon_sym_LBRACK, + ACTIONS(3906), 1, + anon_sym_QMARK, + ACTIONS(3908), 1, + anon_sym_DOT, + STATE(1488), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3940), 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(3938), 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, + [26647] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1519), 2, + ACTIONS(3944), 2, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + STATE(1489), 2, sym_line_comment, sym_block_comment, - ACTIONS(3519), 15, + ACTIONS(3946), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142013,13 +141628,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3517), 30, + ACTIONS(3942), 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, @@ -142041,18 +141655,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, - [28720] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [26709] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1520), 2, + STATE(1490), 2, sym_line_comment, sym_block_comment, - ACTIONS(1483), 15, + ACTIONS(3950), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142068,7 +141681,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1481), 30, + ACTIONS(3948), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -142099,15 +141712,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28780] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [26769] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1521), 2, + ACTIONS(3486), 1, + anon_sym_BANG, + ACTIONS(3952), 1, + anon_sym_COLON_COLON, + STATE(1491), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 15, + ACTIONS(1480), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142123,13 +141740,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4034), 30, + ACTIONS(1478), 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, @@ -142151,18 +141767,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, - [28840] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [26833] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1522), 2, + STATE(1492), 2, sym_line_comment, sym_block_comment, - ACTIONS(1045), 15, + ACTIONS(3956), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142178,7 +141793,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1047), 30, + ACTIONS(3954), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -142209,15 +141824,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28900] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [26893] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1523), 2, + STATE(1493), 2, sym_line_comment, sym_block_comment, - ACTIONS(4040), 15, + ACTIONS(3816), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142233,7 +141848,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4038), 30, + ACTIONS(3812), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -142264,15 +141879,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28960] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [26953] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1524), 2, + STATE(1494), 2, sym_line_comment, sym_block_comment, - ACTIONS(4044), 15, + ACTIONS(1466), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142288,7 +141903,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4042), 30, + ACTIONS(1464), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -142319,15 +141934,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29020] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [27013] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1525), 2, + STATE(1495), 2, sym_line_comment, sym_block_comment, - ACTIONS(4048), 15, + ACTIONS(3960), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142343,7 +141958,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4046), 30, + ACTIONS(3958), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -142374,15 +141989,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29080] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [27073] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1526), 2, + STATE(1496), 2, sym_line_comment, sym_block_comment, - ACTIONS(1507), 15, + ACTIONS(1460), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142398,7 +142013,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1505), 30, + ACTIONS(1458), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -142429,15 +142044,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29140] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [27133] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1527), 2, + STATE(1497), 2, sym_line_comment, sym_block_comment, - ACTIONS(1533), 15, + ACTIONS(3964), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142453,7 +142068,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1531), 30, + ACTIONS(3962), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -142484,15 +142099,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29200] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [27193] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1528), 2, + STATE(1498), 2, sym_line_comment, sym_block_comment, - ACTIONS(1465), 15, + ACTIONS(1448), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142508,7 +142123,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1463), 30, + ACTIONS(1446), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -142539,15 +142154,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29260] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [27253] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1529), 2, + STATE(1499), 2, sym_line_comment, sym_block_comment, - ACTIONS(4052), 15, + ACTIONS(3968), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142563,7 +142178,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4050), 30, + ACTIONS(3966), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -142594,15 +142209,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29320] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [27313] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1530), 2, + STATE(1500), 2, sym_line_comment, sym_block_comment, - ACTIONS(1529), 15, + ACTIONS(1452), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142618,7 +142233,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1527), 30, + ACTIONS(1450), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -142649,15 +142264,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29380] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [27373] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1531), 2, + STATE(1501), 2, sym_line_comment, sym_block_comment, - ACTIONS(1459), 15, + ACTIONS(3972), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142673,7 +142288,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1457), 30, + ACTIONS(3970), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -142704,15 +142319,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29440] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [27433] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1532), 2, + STATE(1502), 2, sym_line_comment, sym_block_comment, - ACTIONS(4056), 15, + ACTIONS(3976), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142728,7 +142343,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4054), 30, + ACTIONS(3974), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -142759,15 +142374,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29500] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [27493] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1533), 2, + STATE(1503), 2, sym_line_comment, sym_block_comment, - ACTIONS(4060), 15, + ACTIONS(3980), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142783,7 +142398,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4058), 30, + ACTIONS(3978), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -142814,15 +142429,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29560] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [27553] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1534), 2, + STATE(1504), 2, sym_line_comment, sym_block_comment, - ACTIONS(4064), 15, + ACTIONS(3984), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142838,7 +142453,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4062), 30, + ACTIONS(3982), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -142869,15 +142484,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29620] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [27613] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1535), 2, + STATE(1505), 2, sym_line_comment, sym_block_comment, - ACTIONS(4068), 15, + ACTIONS(3988), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142893,7 +142508,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4066), 30, + ACTIONS(3986), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -142924,15 +142539,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29680] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [27673] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1536), 2, + STATE(1506), 2, sym_line_comment, sym_block_comment, - ACTIONS(4072), 15, + ACTIONS(3992), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142948,7 +142563,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4070), 30, + ACTIONS(3990), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -142979,15 +142594,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29740] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [27733] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1537), 2, + STATE(1507), 2, sym_line_comment, sym_block_comment, - ACTIONS(1473), 15, + ACTIONS(1548), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -143003,7 +142618,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1471), 30, + ACTIONS(1546), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -143034,15 +142649,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29800] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [27793] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1538), 2, + STATE(1508), 2, sym_line_comment, sym_block_comment, - ACTIONS(4076), 15, + ACTIONS(3996), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -143058,7 +142673,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4074), 30, + ACTIONS(3994), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -143089,15 +142704,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29860] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [27853] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1539), 2, + STATE(1509), 2, sym_line_comment, sym_block_comment, - ACTIONS(1459), 15, + ACTIONS(4000), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -143113,7 +142728,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1457), 30, + ACTIONS(3998), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -143144,15 +142759,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29920] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [27913] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1540), 2, + STATE(1510), 2, sym_line_comment, sym_block_comment, - ACTIONS(4080), 15, + ACTIONS(1554), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -143168,7 +142783,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4078), 30, + ACTIONS(1552), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -143199,15 +142814,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29980] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [27973] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1541), 2, + STATE(1511), 2, sym_line_comment, sym_block_comment, - ACTIONS(4084), 15, + ACTIONS(4004), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -143223,7 +142838,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4082), 30, + ACTIONS(4002), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -143254,15 +142869,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [30040] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [28033] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1542), 2, + STATE(1512), 2, sym_line_comment, sym_block_comment, - ACTIONS(4088), 15, + ACTIONS(1544), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -143278,7 +142893,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4086), 30, + ACTIONS(1542), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -143309,15 +142924,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [30100] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [28093] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1543), 2, + STATE(1513), 2, sym_line_comment, sym_block_comment, - ACTIONS(1435), 15, + ACTIONS(4008), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -143333,7 +142948,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1433), 30, + ACTIONS(4006), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -143364,15 +142979,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [30160] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [28153] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1544), 2, + STATE(1514), 2, sym_line_comment, sym_block_comment, - ACTIONS(1553), 15, + ACTIONS(4012), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -143388,7 +143003,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1551), 30, + ACTIONS(4010), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -143419,15 +143034,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [30220] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [28213] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1545), 2, + STATE(1515), 2, sym_line_comment, sym_block_comment, - ACTIONS(1021), 15, + ACTIONS(1520), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -143443,7 +143058,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1023), 30, + ACTIONS(1518), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -143474,15 +143089,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [30280] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [28273] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1546), 2, + STATE(1516), 2, sym_line_comment, sym_block_comment, - ACTIONS(1545), 15, + ACTIONS(1516), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -143498,7 +143113,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1543), 30, + ACTIONS(1514), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -143529,15 +143144,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [30340] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [28333] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1547), 2, + STATE(1517), 2, sym_line_comment, sym_block_comment, - ACTIONS(1499), 15, + ACTIONS(3570), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -143553,7 +143168,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1497), 30, + ACTIONS(3568), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -143584,15 +143199,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [30400] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [28393] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1548), 2, + STATE(1518), 2, sym_line_comment, sym_block_comment, - ACTIONS(1469), 15, + ACTIONS(1444), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -143608,7 +143223,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1467), 30, + ACTIONS(1442), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -143639,15 +143254,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [30460] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [28453] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1549), 2, + STATE(1519), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 15, + ACTIONS(4016), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -143663,7 +143278,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4090), 30, + ACTIONS(4014), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -143694,15 +143309,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [30520] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [28513] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1550), 2, + STATE(1520), 2, sym_line_comment, sym_block_comment, - ACTIONS(1519), 15, + ACTIONS(1504), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -143718,7 +143333,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1517), 30, + ACTIONS(1502), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -143749,15 +143364,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [30580] = 5, - ACTIONS(103), 1, + [28573] = 9, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(3902), 1, + anon_sym_LBRACK, + ACTIONS(3906), 1, + anon_sym_QMARK, + ACTIONS(3908), 1, + anon_sym_DOT, + ACTIONS(4022), 1, + anon_sym_as, + STATE(1521), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4020), 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(4018), 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, + [28641] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1551), 2, + STATE(1522), 2, sym_line_comment, sym_block_comment, - ACTIONS(4096), 15, + ACTIONS(4026), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -143773,7 +143447,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4094), 30, + ACTIONS(4024), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -143804,15 +143478,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [30640] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [28701] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1552), 2, + STATE(1523), 2, sym_line_comment, sym_block_comment, - ACTIONS(4100), 15, + ACTIONS(4030), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -143828,7 +143502,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4098), 30, + ACTIONS(4028), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -143859,15 +143533,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [30700] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [28761] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1553), 2, + STATE(1524), 2, sym_line_comment, sym_block_comment, - ACTIONS(4104), 15, + ACTIONS(4034), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -143883,7 +143557,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4102), 30, + ACTIONS(4032), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -143914,15 +143588,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [30760] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [28821] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1554), 2, + STATE(1525), 2, sym_line_comment, sym_block_comment, - ACTIONS(4108), 15, + ACTIONS(4038), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -143938,7 +143612,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4106), 30, + ACTIONS(4036), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -143969,15 +143643,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [30820] = 5, - ACTIONS(103), 1, + [28881] = 5, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + STATE(1526), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1480), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1478), 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, + [28941] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1555), 2, + STATE(1527), 2, sym_line_comment, sym_block_comment, - ACTIONS(4112), 15, + ACTIONS(4042), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -143993,7 +143722,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4110), 30, + ACTIONS(4040), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -144024,17 +143753,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [30880] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [29001] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4114), 1, - anon_sym_COLON_COLON, - STATE(1556), 2, + STATE(1528), 2, sym_line_comment, sym_block_comment, - ACTIONS(1459), 15, + ACTIONS(4046), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -144050,12 +143777,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1457), 28, + ACTIONS(4044), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -144077,19 +143805,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, - [30941] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [29061] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3446), 1, - anon_sym_COLON_COLON, - STATE(1557), 2, + STATE(1529), 2, sym_line_comment, sym_block_comment, - ACTIONS(3442), 15, + ACTIONS(4050), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -144105,12 +143832,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3440), 28, + 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, @@ -144132,29 +143860,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, - [31002] = 11, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [29121] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3444), 1, - anon_sym_BANG, - ACTIONS(3448), 1, - anon_sym_SQUOTE, - ACTIONS(3450), 1, - anon_sym_move, - ACTIONS(4116), 1, - anon_sym_COLON_COLON, - STATE(1468), 1, - sym_block, - STATE(3714), 1, - sym_label, - STATE(1558), 2, + STATE(1530), 2, sym_line_comment, sym_block_comment, - ACTIONS(3442), 15, + ACTIONS(3566), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -144170,10 +143887,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3440), 23, + ACTIONS(3564), 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, @@ -144193,26 +143914,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, - [31073] = 10, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_else, + [29181] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3444), 1, - anon_sym_BANG, - ACTIONS(3450), 1, - anon_sym_move, - ACTIONS(4116), 1, - anon_sym_COLON_COLON, - STATE(1468), 1, - sym_block, - STATE(3714), 1, - sym_label, - STATE(1559), 2, + STATE(1531), 2, sym_line_comment, sym_block_comment, - ACTIONS(3442), 15, + ACTIONS(4054), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -144228,10 +143942,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3440), 24, + ACTIONS(4052), 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, @@ -144251,65 +143969,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_COMMA, anon_sym_SQUOTE, anon_sym_as, - [31142] = 21, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_else, + [29241] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, - anon_sym_LBRACK, - ACTIONS(3854), 1, - anon_sym_QMARK, - ACTIONS(3856), 1, - anon_sym_DOT, - ACTIONS(3878), 1, - anon_sym_as, - ACTIONS(4124), 1, + STATE(1532), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1484), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(4130), 1, - anon_sym_AMP_AMP, - ACTIONS(4132), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4136), 1, - anon_sym_EQ, - ACTIONS(4142), 1, - anon_sym_DOT_DOT, - ACTIONS(4120), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4144), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1560), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4122), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4138), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4118), 17, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1482), 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, @@ -144320,65 +144018,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_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, - [31232] = 21, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [29301] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, - anon_sym_LBRACK, - ACTIONS(3854), 1, - anon_sym_QMARK, - ACTIONS(3856), 1, - anon_sym_DOT, - ACTIONS(3878), 1, - anon_sym_as, - ACTIONS(4124), 1, + STATE(1533), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4058), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(4130), 1, - anon_sym_AMP_AMP, - ACTIONS(4132), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4142), 1, - anon_sym_DOT_DOT, - ACTIONS(4148), 1, - anon_sym_EQ, - ACTIONS(4120), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4144), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1561), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4122), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4138), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4146), 17, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4056), 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, @@ -144389,135 +144073,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_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, - [31322] = 19, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [29361] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1681), 1, - anon_sym_DASH, - ACTIONS(1707), 1, - aux_sym_string_literal_token1, - ACTIONS(1715), 1, - sym__raw_string_literal_start, - ACTIONS(3664), 1, - sym_identifier, - ACTIONS(3668), 1, - anon_sym_COLON_COLON, - ACTIONS(3672), 1, - sym_metavariable, - STATE(2830), 1, - sym_scoped_identifier, - STATE(3090), 1, - sym__literal_pattern, - STATE(3629), 1, - sym_bracketed_type, - STATE(3646), 1, - sym_generic_type_with_turbofish, - ACTIONS(1709), 2, - anon_sym_true, - anon_sym_false, - STATE(1562), 2, + STATE(1534), 2, sym_line_comment, sym_block_comment, - ACTIONS(1705), 3, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(3670), 3, - sym_self, - sym_super, - sym_crate, - STATE(2408), 4, - sym_negative_literal, - sym_string_literal, - sym_raw_string_literal, - sym_boolean_literal, - ACTIONS(3666), 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, - [31408] = 22, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3850), 1, - anon_sym_LBRACK, - ACTIONS(3854), 1, - anon_sym_QMARK, - ACTIONS(3856), 1, - anon_sym_DOT, - ACTIONS(3878), 1, - anon_sym_as, - ACTIONS(4124), 1, + ACTIONS(4062), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(4130), 1, - anon_sym_AMP_AMP, - ACTIONS(4132), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4142), 1, - anon_sym_DOT_DOT, - ACTIONS(4152), 1, - anon_sym_EQ, - ACTIONS(4120), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4144), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1563), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4122), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4138), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4058), 7, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4060), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_else, - ACTIONS(4150), 10, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144528,254 +144128,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31500] = 19, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1681), 1, - anon_sym_DASH, - ACTIONS(1707), 1, - aux_sym_string_literal_token1, - ACTIONS(1715), 1, - sym__raw_string_literal_start, - ACTIONS(3668), 1, - anon_sym_COLON_COLON, - ACTIONS(3692), 1, - sym_identifier, - ACTIONS(3698), 1, - sym_metavariable, - STATE(2752), 1, - sym_scoped_identifier, - STATE(2987), 1, - sym__literal_pattern, - STATE(3629), 1, - sym_bracketed_type, - STATE(3646), 1, - sym_generic_type_with_turbofish, - ACTIONS(1709), 2, - anon_sym_true, - anon_sym_false, - STATE(1564), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1705), 3, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(3696), 3, - sym_self, - sym_super, - sym_crate, - STATE(2408), 4, - sym_negative_literal, - sym_string_literal, - sym_raw_string_literal, - sym_boolean_literal, - ACTIONS(3694), 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, - [31586] = 19, - 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_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [29421] = 5, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1681), 1, - anon_sym_DASH, - ACTIONS(1707), 1, - aux_sym_string_literal_token1, - ACTIONS(1715), 1, - sym__raw_string_literal_start, - ACTIONS(3668), 1, - anon_sym_COLON_COLON, - ACTIONS(3724), 1, - sym_identifier, - ACTIONS(3730), 1, - sym_metavariable, - STATE(2827), 1, - sym_scoped_identifier, - STATE(3007), 1, - sym__literal_pattern, - STATE(3629), 1, - sym_bracketed_type, - STATE(3646), 1, - sym_generic_type_with_turbofish, - ACTIONS(1709), 2, - anon_sym_true, - anon_sym_false, - STATE(1565), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1705), 3, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(3728), 3, - sym_self, - sym_super, - sym_crate, - STATE(2408), 4, - sym_negative_literal, - sym_string_literal, - sym_raw_string_literal, - sym_boolean_literal, - ACTIONS(3726), 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, - [31672] = 6, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4158), 1, - anon_sym_COLON_COLON, - STATE(1566), 2, + STATE(1535), 2, sym_line_comment, sym_block_comment, - ACTIONS(4156), 9, - anon_sym_LPAREN, - anon_sym_LBRACK, + ACTIONS(4066), 15, + anon_sym_PLUS, anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_LT, - anon_sym_SQUOTE, - sym_metavariable, - ACTIONS(4154), 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_use, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [31732] = 22, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3850), 1, - anon_sym_LBRACK, - ACTIONS(3854), 1, - anon_sym_QMARK, - ACTIONS(3856), 1, - anon_sym_DOT, - ACTIONS(3878), 1, - anon_sym_as, - ACTIONS(4124), 1, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(4130), 1, - anon_sym_AMP_AMP, - ACTIONS(4132), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4142), 1, - anon_sym_DOT_DOT, - ACTIONS(4152), 1, - anon_sym_EQ, - ACTIONS(4120), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4144), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1567), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4122), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4138), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3936), 7, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4064), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_else, - ACTIONS(4150), 10, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144786,76 +144183,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31824] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1568), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4163), 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_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, anon_sym_SQUOTE, - sym_metavariable, - ACTIONS(4161), 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_use, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [31882] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_as, + anon_sym_else, + [29481] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3576), 1, - anon_sym_LBRACE, - ACTIONS(3578), 1, - anon_sym_COLON_COLON, - ACTIONS(4165), 1, - anon_sym_BANG, - STATE(1481), 1, - sym_field_initializer_list, - STATE(1569), 2, + STATE(1536), 2, sym_line_comment, sym_block_comment, - ACTIONS(1459), 15, + ACTIONS(1492), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -144871,10 +144217,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1457), 24, + ACTIONS(1490), 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, @@ -144895,27 +144244,1747 @@ 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, - [31948] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_else, + [29541] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1570), 2, + STATE(1537), 2, sym_line_comment, sym_block_comment, - ACTIONS(4169), 10, - anon_sym_LPAREN, - anon_sym_LBRACK, + ACTIONS(1456), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1454), 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, + [29601] = 5, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + STATE(1538), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4070), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4068), 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, + [29661] = 5, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + STATE(1539), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1470), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1468), 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, + [29721] = 5, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + STATE(1540), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4074), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4072), 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, + [29781] = 5, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + STATE(1541), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4078), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4076), 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, + [29841] = 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(4082), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4080), 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, + [29901] = 5, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + STATE(1543), 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), 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, + [29961] = 5, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + STATE(1544), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4086), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4084), 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, + [30021] = 5, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + STATE(1545), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1176), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1178), 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, + [30081] = 5, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + STATE(1546), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4090), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4088), 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, + [30141] = 5, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + STATE(1547), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3506), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3504), 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, + [30201] = 5, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + STATE(1548), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4094), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4092), 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, + [30261] = 12, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(412), 1, + anon_sym_LBRACE, + ACTIONS(3474), 1, + anon_sym_SQUOTE, + ACTIONS(4096), 1, + anon_sym_BANG, + ACTIONS(4098), 1, + anon_sym_COLON_COLON, + ACTIONS(4100), 1, + anon_sym_move, + STATE(1763), 1, + sym_block, + STATE(3812), 1, + sym_label, + STATE(1549), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3468), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3466), 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, + [30335] = 5, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + STATE(1550), 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), 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, + [30395] = 5, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + STATE(1551), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1532), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1530), 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, + [30455] = 5, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + STATE(1552), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1440), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1438), 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, + [30515] = 5, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + STATE(1553), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4104), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4102), 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, + [30575] = 5, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + STATE(1554), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1524), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1522), 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, + [30635] = 5, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + STATE(1555), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4108), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4106), 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, + [30695] = 5, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + STATE(1556), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4112), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4110), 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, + [30755] = 5, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + STATE(1557), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4116), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4114), 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, + [30815] = 6, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(4118), 2, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + STATE(1558), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3946), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3942), 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, + [30877] = 5, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + STATE(1559), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4122), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4120), 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, + [30937] = 5, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + STATE(1560), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3946), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3942), 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, + [30997] = 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(4126), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4124), 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, + [31057] = 5, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + STATE(1562), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4130), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4128), 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, + [31117] = 5, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + STATE(1563), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1536), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1534), 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, + [31177] = 5, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + STATE(1564), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4134), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4132), 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_BANG, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_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, + [31237] = 5, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + STATE(1565), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(928), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(930), 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, + [31297] = 8, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(3902), 1, + anon_sym_LBRACK, + ACTIONS(3906), 1, + anon_sym_QMARK, + ACTIONS(3908), 1, + anon_sym_DOT, + STATE(1566), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4138), 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(4136), 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, + [31363] = 5, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + STATE(1567), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1508), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1506), 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, + [31423] = 6, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(4144), 1, anon_sym_COLON_COLON, + STATE(1568), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4142), 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(4167), 33, + ACTIONS(4140), 34, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -144944,21 +146013,138 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [32006] = 5, - ACTIONS(103), 1, + [31484] = 11, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(3470), 1, + anon_sym_BANG, + ACTIONS(3474), 1, + anon_sym_SQUOTE, + ACTIONS(3476), 1, + anon_sym_move, + ACTIONS(4147), 1, + anon_sym_COLON_COLON, + STATE(1539), 1, + sym_block, + STATE(3750), 1, + sym_label, + STATE(1569), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3468), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3466), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [31555] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1571), 2, + ACTIONS(3472), 1, + anon_sym_COLON_COLON, + STATE(1570), 2, sym_line_comment, sym_block_comment, - ACTIONS(4173), 10, + ACTIONS(3468), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3466), 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, + [31616] = 6, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(4149), 1, anon_sym_LPAREN, + STATE(1571), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4142), 9, anon_sym_LBRACK, anon_sym_STAR, anon_sym_QMARK, @@ -144968,7 +146154,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_SQUOTE, sym_metavariable, - ACTIONS(4171), 33, + ACTIONS(4140), 34, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -144997,58 +146183,140 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [32064] = 19, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [31677] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1117), 1, - anon_sym_DASH, - ACTIONS(1167), 1, - aux_sym_string_literal_token1, - ACTIONS(1177), 1, - sym__raw_string_literal_start, - ACTIONS(2098), 1, + STATE(1572), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4154), 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, - ACTIONS(3416), 1, - sym_identifier, - ACTIONS(3426), 1, + anon_sym_SQUOTE, sym_metavariable, - STATE(2166), 1, - sym_scoped_identifier, - STATE(2179), 1, - sym__literal_pattern, - STATE(3732), 1, - sym_bracketed_type, - STATE(3800), 1, - sym_generic_type_with_turbofish, - ACTIONS(1169), 2, - anon_sym_true, - anon_sym_false, - STATE(1572), 2, + ACTIONS(4152), 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_use, + anon_sym_extern, + anon_sym_safe, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [31736] = 5, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + STATE(1573), 2, sym_line_comment, sym_block_comment, - ACTIONS(1165), 3, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(3424), 3, + ACTIONS(4158), 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(4156), 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_use, + anon_sym_extern, + anon_sym_safe, + anon_sym_dyn, + sym_identifier, sym_self, sym_super, sym_crate, - STATE(2110), 4, - sym_negative_literal, - sym_string_literal, - sym_raw_string_literal, - sym_boolean_literal, - ACTIONS(3422), 20, + [31795] = 5, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + STATE(1574), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4162), 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(4160), 34, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -145066,56 +146334,184 @@ 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, - [32150] = 19, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + anon_sym_safe, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [31854] = 10, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(3470), 1, + anon_sym_BANG, + ACTIONS(3476), 1, + anon_sym_move, + ACTIONS(4147), 1, + anon_sym_COLON_COLON, + STATE(1539), 1, + sym_block, + STATE(3750), 1, + sym_label, + STATE(1575), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3468), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3466), 24, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, + anon_sym_as, + [31923] = 6, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(4164), 1, + anon_sym_COLON_COLON, + STATE(1576), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1480), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1478), 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, + [31984] = 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(1117), 1, + ACTIONS(1064), 1, anon_sym_DASH, - ACTIONS(1167), 1, + ACTIONS(1114), 1, aux_sym_string_literal_token1, - ACTIONS(1177), 1, + ACTIONS(1124), 1, sym__raw_string_literal_start, - ACTIONS(2098), 1, + ACTIONS(2390), 1, anon_sym_COLON_COLON, - ACTIONS(3404), 1, + ACTIONS(3418), 1, sym_identifier, - ACTIONS(3414), 1, + ACTIONS(3428), 1, sym_metavariable, - STATE(2154), 1, + STATE(2174), 1, sym_scoped_identifier, - STATE(2216), 1, + STATE(2210), 1, sym__literal_pattern, - STATE(3732), 1, + STATE(3790), 1, sym_bracketed_type, - STATE(3800), 1, + STATE(3839), 1, sym_generic_type_with_turbofish, - ACTIONS(1169), 2, + ACTIONS(1116), 2, anon_sym_true, anon_sym_false, - STATE(1573), 2, + STATE(1577), 2, sym_line_comment, sym_block_comment, - ACTIONS(1165), 3, + ACTIONS(1112), 3, sym_float_literal, sym_integer_literal, sym_char_literal, - ACTIONS(3412), 3, + ACTIONS(3426), 3, sym_self, sym_super, sym_crate, - STATE(2110), 4, + STATE(2129), 4, sym_negative_literal, sym_string_literal, sym_raw_string_literal, sym_boolean_literal, - ACTIONS(3410), 20, + ACTIONS(3424), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -145136,53 +146532,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_gen, anon_sym_union, - [32236] = 19, + [32070] = 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(1117), 1, + ACTIONS(1064), 1, anon_sym_DASH, - ACTIONS(1167), 1, + ACTIONS(1114), 1, aux_sym_string_literal_token1, - ACTIONS(1177), 1, + ACTIONS(1124), 1, sym__raw_string_literal_start, - ACTIONS(2098), 1, + ACTIONS(2390), 1, anon_sym_COLON_COLON, - ACTIONS(3392), 1, + ACTIONS(3442), 1, sym_identifier, - ACTIONS(3402), 1, + ACTIONS(3452), 1, sym_metavariable, - STATE(2129), 1, + STATE(2160), 1, sym_scoped_identifier, - STATE(2204), 1, + STATE(2225), 1, sym__literal_pattern, - STATE(3732), 1, + STATE(3790), 1, sym_bracketed_type, - STATE(3800), 1, + STATE(3839), 1, sym_generic_type_with_turbofish, - ACTIONS(1169), 2, + ACTIONS(1116), 2, anon_sym_true, anon_sym_false, - STATE(1574), 2, + STATE(1578), 2, sym_line_comment, sym_block_comment, - ACTIONS(1165), 3, + ACTIONS(1112), 3, sym_float_literal, sym_integer_literal, sym_char_literal, - ACTIONS(3400), 3, + ACTIONS(3450), 3, sym_self, sym_super, sym_crate, - STATE(2110), 4, + STATE(2129), 4, sym_negative_literal, sym_string_literal, sym_raw_string_literal, sym_boolean_literal, - ACTIONS(3398), 20, + ACTIONS(3448), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -145203,102 +146599,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_gen, anon_sym_union, - [32322] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [32156] = 10, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4175), 1, - anon_sym_LPAREN, - STATE(1575), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4156), 9, + ACTIONS(3902), 1, anon_sym_LBRACK, - anon_sym_STAR, + ACTIONS(3906), 1, anon_sym_QMARK, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_SQUOTE, - sym_metavariable, - ACTIONS(4154), 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_use, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [32382] = 11, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4178), 1, - anon_sym_LPAREN, - ACTIONS(4180), 1, - anon_sym_BANG, - ACTIONS(4182), 1, - anon_sym_COLON_COLON, - ACTIONS(4184), 1, - anon_sym_LT2, - STATE(1661), 1, - sym_type_arguments, - STATE(1688), 1, - sym_parameters, - STATE(1576), 2, + ACTIONS(3908), 1, + anon_sym_DOT, + ACTIONS(4022), 1, + anon_sym_as, + STATE(1579), 2, sym_line_comment, sym_block_comment, - ACTIONS(3454), 17, - anon_sym_PLUS, + ACTIONS(4166), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(4020), 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(3452), 20, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, + ACTIONS(4018), 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, @@ -145309,194 +146647,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_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [32452] = 22, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_COMMA, + anon_sym_else, + [32224] = 13, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(3902), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3906), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3908), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(4022), 1, anon_sym_as, - ACTIONS(4124), 1, - anon_sym_CARET, - ACTIONS(4126), 1, + ACTIONS(4170), 1, anon_sym_AMP, - ACTIONS(4128), 1, - anon_sym_PIPE, - ACTIONS(4130), 1, - anon_sym_AMP_AMP, - ACTIONS(4132), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4142), 1, - anon_sym_DOT_DOT, - ACTIONS(4152), 1, - anon_sym_EQ, - ACTIONS(4120), 2, + ACTIONS(4168), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4134), 2, + ACTIONS(4172), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4144), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1577), 2, + STATE(1580), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(4166), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4138), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3912), 7, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_else, - ACTIONS(4150), 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, - [32544] = 21, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3850), 1, - anon_sym_LBRACK, - ACTIONS(3854), 1, - anon_sym_QMARK, - ACTIONS(3856), 1, - anon_sym_DOT, - ACTIONS(3878), 1, - anon_sym_as, - ACTIONS(4124), 1, + ACTIONS(4020), 6, anon_sym_CARET, - ACTIONS(4126), 1, - anon_sym_AMP, - ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(4130), 1, - anon_sym_AMP_AMP, - ACTIONS(4132), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4142), 1, - anon_sym_DOT_DOT, - ACTIONS(4188), 1, anon_sym_EQ, - ACTIONS(4120), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4134), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4144), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1578), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4122), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4138), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4186), 17, + anon_sym_DOT_DOT, + ACTIONS(4018), 25, 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, - [32634] = 11, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3434), 1, - anon_sym_BANG, - ACTIONS(4178), 1, - anon_sym_LPAREN, - ACTIONS(4182), 1, - anon_sym_COLON_COLON, - ACTIONS(4184), 1, - anon_sym_LT2, - STATE(1661), 1, - sym_type_arguments, - STATE(1688), 1, - sym_parameters, - STATE(1579), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3432), 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(3428), 20, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -145507,34 +146708,37 @@ 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, - [32704] = 11, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_COMMA, + anon_sym_else, + [32298] = 11, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3434), 1, + ACTIONS(3460), 1, anon_sym_BANG, - ACTIONS(4178), 1, + ACTIONS(4174), 1, anon_sym_LPAREN, - ACTIONS(4182), 1, + ACTIONS(4176), 1, anon_sym_COLON_COLON, - ACTIONS(4184), 1, + ACTIONS(4178), 1, anon_sym_LT2, - STATE(1661), 1, - sym_type_arguments, - STATE(1688), 1, + STATE(1668), 1, sym_parameters, - STATE(1580), 2, + STATE(1724), 1, + sym_type_arguments, + STATE(1581), 2, sym_line_comment, sym_block_comment, - ACTIONS(3460), 17, + ACTIONS(3480), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -145552,7 +146756,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3458), 20, + ACTIONS(3478), 20, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, @@ -145573,59 +146777,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [32774] = 19, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [32368] = 12, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(3902), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3906), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3908), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(4022), 1, anon_sym_as, - ACTIONS(4124), 1, - anon_sym_CARET, - ACTIONS(4126), 1, - anon_sym_AMP, - ACTIONS(4128), 1, - anon_sym_PIPE, - ACTIONS(4130), 1, - anon_sym_AMP_AMP, - ACTIONS(4132), 1, - anon_sym_PIPE_PIPE, - ACTIONS(399), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(4120), 2, + ACTIONS(4168), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4134), 2, + ACTIONS(4172), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, - anon_sym_GT, - anon_sym_LT, - STATE(1581), 2, + STATE(1582), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(4166), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4138), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(397), 19, + ACTIONS(4020), 7, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT_DOT, + ACTIONS(4018), 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, @@ -145636,112 +146829,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_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, - [32860] = 21, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [32440] = 14, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(347), 1, - anon_sym_EQ, - ACTIONS(3850), 1, + ACTIONS(3902), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3906), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3908), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(4022), 1, anon_sym_as, - ACTIONS(4124), 1, - anon_sym_CARET, - ACTIONS(4126), 1, + ACTIONS(4170), 1, anon_sym_AMP, - ACTIONS(4128), 1, - anon_sym_PIPE, - ACTIONS(4130), 1, - anon_sym_AMP_AMP, - ACTIONS(4132), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4142), 1, - anon_sym_DOT_DOT, - ACTIONS(4120), 2, + ACTIONS(4180), 1, + anon_sym_CARET, + ACTIONS(4168), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4134), 2, + ACTIONS(4172), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4144), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1582), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4122), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4138), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(341), 17, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_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, - [32950] = 10, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3850), 1, - anon_sym_LBRACK, - ACTIONS(3854), 1, - anon_sym_QMARK, - ACTIONS(3856), 1, - anon_sym_DOT, - ACTIONS(3878), 1, - anon_sym_as, STATE(1583), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(4166), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3876), 11, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(4020), 5, 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(3874), 25, + ACTIONS(4018), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -145767,42 +146899,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_else, - [33018] = 13, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [32516] = 17, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(3902), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3906), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3908), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(4022), 1, anon_sym_as, - ACTIONS(4126), 1, + ACTIONS(4170), 1, anon_sym_AMP, - ACTIONS(4120), 2, + ACTIONS(4180), 1, + anon_sym_CARET, + ACTIONS(4182), 1, + anon_sym_PIPE, + ACTIONS(4020), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(4168), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4134), 2, + ACTIONS(4172), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(4186), 2, + anon_sym_GT, + anon_sym_LT, STATE(1584), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(4166), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3876), 6, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3874), 25, + ACTIONS(4184), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4018), 21, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -145820,55 +146960,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_else, - [33092] = 12, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [32598] = 18, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(3902), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3906), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3908), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(4022), 1, anon_sym_as, - ACTIONS(4120), 2, + ACTIONS(4170), 1, + anon_sym_AMP, + ACTIONS(4180), 1, + anon_sym_CARET, + ACTIONS(4182), 1, + anon_sym_PIPE, + ACTIONS(4188), 1, + anon_sym_AMP_AMP, + ACTIONS(4020), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(4168), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4134), 2, + ACTIONS(4172), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(4186), 2, + anon_sym_GT, + anon_sym_LT, STATE(1585), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(4166), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3876), 7, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3874), 25, + ACTIONS(4184), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4018), 20, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -145880,51 +147026,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_else, - [33164] = 14, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [32682] = 11, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(3902), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3906), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3908), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(4022), 1, anon_sym_as, - ACTIONS(4124), 1, - anon_sym_CARET, - ACTIONS(4126), 1, - anon_sym_AMP, - ACTIONS(4120), 2, + ACTIONS(4168), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4134), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, STATE(1586), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(4166), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3876), 5, + ACTIONS(4020), 9, + anon_sym_CARET, + anon_sym_AMP, anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT, anon_sym_LT, anon_sym_DOT_DOT, - ACTIONS(3874), 25, + ACTIONS(4018), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -145950,57 +147089,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_else, - [33240] = 17, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [32752] = 21, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(3902), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3906), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3908), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(4022), 1, anon_sym_as, - ACTIONS(4124), 1, - anon_sym_CARET, - ACTIONS(4126), 1, + ACTIONS(4170), 1, anon_sym_AMP, - ACTIONS(4128), 1, + ACTIONS(4180), 1, + anon_sym_CARET, + ACTIONS(4182), 1, anon_sym_PIPE, - ACTIONS(3876), 2, + ACTIONS(4188), 1, + anon_sym_AMP_AMP, + ACTIONS(4192), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4194), 1, anon_sym_EQ, + ACTIONS(4196), 1, anon_sym_DOT_DOT, - ACTIONS(4120), 2, + ACTIONS(4168), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4134), 2, + ACTIONS(4172), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + ACTIONS(4186), 2, anon_sym_GT, anon_sym_LT, + ACTIONS(4198), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, STATE(1587), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(4166), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4138), 4, + ACTIONS(4184), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3874), 21, + ACTIONS(4190), 17, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146011,62 +147156,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_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_else, - [33322] = 18, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [32842] = 21, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(3902), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3906), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3908), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(4022), 1, anon_sym_as, - ACTIONS(4124), 1, - anon_sym_CARET, - ACTIONS(4126), 1, + ACTIONS(4170), 1, anon_sym_AMP, - ACTIONS(4128), 1, + ACTIONS(4180), 1, + anon_sym_CARET, + ACTIONS(4182), 1, anon_sym_PIPE, - ACTIONS(4130), 1, + ACTIONS(4188), 1, anon_sym_AMP_AMP, - ACTIONS(3876), 2, - anon_sym_EQ, + ACTIONS(4192), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4196), 1, anon_sym_DOT_DOT, - ACTIONS(4120), 2, + ACTIONS(4202), 1, + anon_sym_EQ, + ACTIONS(4168), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4134), 2, + ACTIONS(4172), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + ACTIONS(4186), 2, anon_sym_GT, anon_sym_LT, + ACTIONS(4198), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, STATE(1588), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(4166), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4138), 4, + ACTIONS(4184), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3874), 20, + ACTIONS(4200), 17, 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, @@ -146077,44 +147225,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_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_else, - [33406] = 11, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [32932] = 15, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(3902), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3906), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3908), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(4022), 1, anon_sym_as, - ACTIONS(4120), 2, + ACTIONS(4170), 1, + anon_sym_AMP, + ACTIONS(4180), 1, + anon_sym_CARET, + ACTIONS(4182), 1, + anon_sym_PIPE, + ACTIONS(4168), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4172), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, STATE(1589), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(4166), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3876), 9, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(4020), 4, anon_sym_EQ, anon_sym_GT, anon_sym_LT, anon_sym_DOT_DOT, - ACTIONS(3874), 25, + ACTIONS(4018), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -146140,127 +147290,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_else, - [33476] = 21, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [33010] = 19, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3850), 1, - anon_sym_LBRACK, - ACTIONS(3854), 1, - anon_sym_QMARK, - ACTIONS(3856), 1, - anon_sym_DOT, - ACTIONS(3878), 1, - anon_sym_as, - ACTIONS(4124), 1, - anon_sym_CARET, - ACTIONS(4126), 1, - anon_sym_AMP, - ACTIONS(4128), 1, - anon_sym_PIPE, - ACTIONS(4130), 1, - anon_sym_AMP_AMP, - ACTIONS(4132), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4142), 1, - anon_sym_DOT_DOT, - ACTIONS(4192), 1, - anon_sym_EQ, - ACTIONS(4120), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4134), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4140), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4144), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1590), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4122), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4138), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4190), 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, - [33566] = 21, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(3902), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3906), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3908), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(4022), 1, anon_sym_as, - ACTIONS(4124), 1, - anon_sym_CARET, - ACTIONS(4126), 1, + ACTIONS(4170), 1, anon_sym_AMP, - ACTIONS(4128), 1, + ACTIONS(4180), 1, + anon_sym_CARET, + ACTIONS(4182), 1, anon_sym_PIPE, - ACTIONS(4130), 1, + ACTIONS(4188), 1, anon_sym_AMP_AMP, - ACTIONS(4132), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4142), 1, - anon_sym_DOT_DOT, - ACTIONS(4196), 1, - anon_sym_EQ, - ACTIONS(4120), 2, + ACTIONS(4192), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4168), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4134), 2, + ACTIONS(4172), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + ACTIONS(4186), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4144), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1591), 2, + ACTIONS(4206), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + STATE(1590), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(4166), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4138), 4, + ACTIONS(4184), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4194), 17, + ACTIONS(4204), 19, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -146276,51 +147353,48 @@ 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, - [33656] = 15, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [33096] = 9, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, - anon_sym_LBRACK, - ACTIONS(3854), 1, - anon_sym_QMARK, - ACTIONS(3856), 1, - anon_sym_DOT, - ACTIONS(3878), 1, - anon_sym_as, - ACTIONS(4124), 1, - anon_sym_CARET, - ACTIONS(4126), 1, - anon_sym_AMP, - ACTIONS(4128), 1, - anon_sym_PIPE, - ACTIONS(4120), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4134), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - STATE(1592), 2, + ACTIONS(3644), 1, + anon_sym_LBRACE, + ACTIONS(3646), 1, + anon_sym_COLON_COLON, + ACTIONS(4208), 1, + anon_sym_BANG, + STATE(1490), 1, + sym_field_initializer_list, + STATE(1591), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(1480), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3876), 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(3874), 25, + ACTIONS(1478), 24, anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, + anon_sym_LBRACK, anon_sym_RBRACE, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -146339,56 +147413,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_else, - [33734] = 19, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_as, + [33162] = 21, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(352), 1, + anon_sym_EQ, + ACTIONS(3902), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3906), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3908), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(4022), 1, anon_sym_as, - ACTIONS(4124), 1, - anon_sym_CARET, - ACTIONS(4126), 1, + ACTIONS(4170), 1, anon_sym_AMP, - ACTIONS(4128), 1, + ACTIONS(4180), 1, + anon_sym_CARET, + ACTIONS(4182), 1, anon_sym_PIPE, - ACTIONS(4130), 1, + ACTIONS(4188), 1, anon_sym_AMP_AMP, - ACTIONS(4132), 1, + ACTIONS(4192), 1, anon_sym_PIPE_PIPE, - ACTIONS(4120), 2, + ACTIONS(4196), 1, + anon_sym_DOT_DOT, + ACTIONS(4168), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4134), 2, + ACTIONS(4172), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + ACTIONS(4186), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4200), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - STATE(1593), 2, + ACTIONS(4198), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1592), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(4166), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4138), 4, + ACTIONS(4184), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4198), 19, + ACTIONS(346), 17, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -146404,70 +147481,132 @@ 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, - [33820] = 22, - ACTIONS(103), 1, + [33252] = 19, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(1688), 1, + anon_sym_DASH, + ACTIONS(1714), 1, + aux_sym_string_literal_token1, + ACTIONS(1722), 1, + sym__raw_string_literal_start, + ACTIONS(3700), 1, + anon_sym_COLON_COLON, + ACTIONS(3760), 1, + sym_identifier, + ACTIONS(3766), 1, + sym_metavariable, + STATE(2733), 1, + sym_scoped_identifier, + STATE(2989), 1, + sym__literal_pattern, + STATE(3664), 1, + sym_bracketed_type, + STATE(3681), 1, + sym_generic_type_with_turbofish, + ACTIONS(1716), 2, + anon_sym_true, + anon_sym_false, + STATE(1593), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1712), 3, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(3764), 3, + sym_self, + sym_super, + sym_crate, + STATE(2421), 4, + sym_negative_literal, + sym_string_literal, + sym_raw_string_literal, + sym_boolean_literal, + ACTIONS(3762), 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, + [33338] = 21, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(3902), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3906), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3908), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(4022), 1, anon_sym_as, - ACTIONS(4124), 1, - anon_sym_CARET, - ACTIONS(4126), 1, + ACTIONS(4170), 1, anon_sym_AMP, - ACTIONS(4128), 1, + ACTIONS(4180), 1, + anon_sym_CARET, + ACTIONS(4182), 1, anon_sym_PIPE, - ACTIONS(4130), 1, + ACTIONS(4188), 1, anon_sym_AMP_AMP, - ACTIONS(4132), 1, + ACTIONS(4192), 1, anon_sym_PIPE_PIPE, - ACTIONS(4142), 1, + ACTIONS(4196), 1, anon_sym_DOT_DOT, - ACTIONS(4152), 1, + ACTIONS(4212), 1, anon_sym_EQ, - ACTIONS(4120), 2, + ACTIONS(4168), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4134), 2, + ACTIONS(4172), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + ACTIONS(4186), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4144), 2, + ACTIONS(4198), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, STATE(1594), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(4166), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4138), 4, + ACTIONS(4184), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3966), 7, + ACTIONS(4210), 17, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_else, - ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146478,100 +147617,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33912] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_COMMA, + anon_sym_else, + [33428] = 19, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3456), 1, - anon_sym_BANG, - ACTIONS(4202), 1, - anon_sym_COLON_COLON, - STATE(1481), 1, - sym_field_initializer_list, - STATE(1595), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1459), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(3902), 1, + anon_sym_LBRACK, + ACTIONS(3906), 1, + anon_sym_QMARK, + ACTIONS(3908), 1, + anon_sym_DOT, + ACTIONS(4022), 1, + anon_sym_as, + ACTIONS(4170), 1, anon_sym_AMP, + ACTIONS(4180), 1, + anon_sym_CARET, + ACTIONS(4182), 1, anon_sym_PIPE, + ACTIONS(4188), 1, + anon_sym_AMP_AMP, + ACTIONS(4192), 1, + anon_sym_PIPE_PIPE, + ACTIONS(388), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(4168), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4172), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4186), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1457), 24, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, - anon_sym_as, - [33975] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3446), 1, - anon_sym_COLON_COLON, - ACTIONS(3564), 1, - anon_sym_BANG, - ACTIONS(4204), 1, - sym_identifier, - STATE(1596), 2, + STATE(1595), 2, sym_line_comment, sym_block_comment, - ACTIONS(3442), 16, - anon_sym_PLUS, + ACTIONS(4166), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - anon_sym_as, - ACTIONS(3440), 23, + ACTIONS(4184), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(386), 19, anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146582,159 +147682,137 @@ 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, - [34038] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_COMMA, + anon_sym_else, + [33514] = 19, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4180), 1, - anon_sym_BANG, - ACTIONS(4206), 1, - anon_sym_LBRACE, - ACTIONS(4208), 1, + ACTIONS(1688), 1, + anon_sym_DASH, + ACTIONS(1714), 1, + aux_sym_string_literal_token1, + ACTIONS(1722), 1, + sym__raw_string_literal_start, + ACTIONS(3700), 1, anon_sym_COLON_COLON, - STATE(1751), 1, - sym_field_initializer_list, - STATE(1597), 2, + ACTIONS(3774), 1, + sym_identifier, + ACTIONS(3780), 1, + sym_metavariable, + STATE(2747), 1, + sym_scoped_identifier, + STATE(3018), 1, + sym__literal_pattern, + STATE(3664), 1, + sym_bracketed_type, + STATE(3681), 1, + sym_generic_type_with_turbofish, + ACTIONS(1716), 2, + anon_sym_true, + anon_sym_false, + STATE(1596), 2, sym_line_comment, sym_block_comment, - ACTIONS(1459), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1457), 23, - anon_sym_LPAREN, + ACTIONS(1712), 3, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(3778), 3, + sym_self, + sym_super, + sym_crate, + STATE(2421), 4, + sym_negative_literal, + sym_string_literal, + sym_raw_string_literal, + sym_boolean_literal, + ACTIONS(3776), 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, + [33600] = 22, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(3902), 1, anon_sym_LBRACK, - anon_sym_EQ_GT, + ACTIONS(3906), 1, anon_sym_QMARK, + ACTIONS(3908), 1, + anon_sym_DOT, + ACTIONS(4022), 1, + anon_sym_as, + ACTIONS(4170), 1, + anon_sym_AMP, + ACTIONS(4180), 1, + anon_sym_CARET, + ACTIONS(4182), 1, + anon_sym_PIPE, + ACTIONS(4188), 1, anon_sym_AMP_AMP, + ACTIONS(4192), 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, - [34103] = 10, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4178), 1, - anon_sym_LPAREN, - ACTIONS(4184), 1, - anon_sym_LT2, - ACTIONS(4210), 1, - anon_sym_COLON_COLON, - STATE(1661), 1, - sym_type_arguments, - STATE(1688), 1, - sym_parameters, - STATE(1598), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3471), 17, + ACTIONS(4196), 1, + anon_sym_DOT_DOT, + ACTIONS(4216), 1, + anon_sym_EQ, + ACTIONS(4168), 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(4172), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT_LT_EQ, - anon_sym_EQ, + ACTIONS(4186), 2, anon_sym_GT, anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3469), 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(4198), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [34170] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3602), 1, - anon_sym_LBRACE, - STATE(1599), 2, + STATE(1597), 2, sym_line_comment, sym_block_comment, - ACTIONS(3530), 16, - anon_sym_PLUS, + ACTIONS(4166), 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(3532), 24, + ACTIONS(4184), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3914), 7, + 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_COMMA, + anon_sym_else, + ACTIONS(4214), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146745,104 +147823,130 @@ 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, - [34228] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [33692] = 19, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3530), 1, - anon_sym_BANG, - ACTIONS(3532), 1, + ACTIONS(1064), 1, + anon_sym_DASH, + ACTIONS(1114), 1, + aux_sym_string_literal_token1, + ACTIONS(1124), 1, + sym__raw_string_literal_start, + ACTIONS(2390), 1, anon_sym_COLON_COLON, - STATE(1600), 2, + ACTIONS(3430), 1, + sym_identifier, + ACTIONS(3440), 1, + sym_metavariable, + STATE(2168), 1, + sym_scoped_identifier, + STATE(2209), 1, + sym__literal_pattern, + STATE(3790), 1, + sym_bracketed_type, + STATE(3839), 1, + sym_generic_type_with_turbofish, + ACTIONS(1116), 2, + anon_sym_true, + anon_sym_false, + STATE(1598), 2, sym_line_comment, sym_block_comment, - ACTIONS(3528), 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(3526), 22, - anon_sym_LPAREN, + ACTIONS(1112), 3, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(3438), 3, + sym_self, + sym_super, + sym_crate, + STATE(2129), 4, + sym_negative_literal, + sym_string_literal, + sym_raw_string_literal, + sym_boolean_literal, + ACTIONS(3436), 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, + [33778] = 21, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(3902), 1, anon_sym_LBRACK, - anon_sym_EQ_GT, + ACTIONS(3906), 1, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, + ACTIONS(3908), 1, + anon_sym_DOT, + ACTIONS(4022), 1, + anon_sym_as, + ACTIONS(4170), 1, + anon_sym_AMP, + ACTIONS(4180), 1, + anon_sym_CARET, + ACTIONS(4182), 1, + anon_sym_PIPE, + ACTIONS(4188), 1, + anon_sym_AMP_AMP, + ACTIONS(4192), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4196), 1, + anon_sym_DOT_DOT, + ACTIONS(4220), 1, + anon_sym_EQ, + ACTIONS(4168), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4172), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4186), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4198), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - anon_sym_LT2, - [34288] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3505), 1, - anon_sym_BANG, - ACTIONS(3507), 1, - anon_sym_COLON_COLON, - STATE(1601), 2, + STATE(1599), 2, sym_line_comment, sym_block_comment, - ACTIONS(3503), 17, - anon_sym_PLUS, + ACTIONS(4166), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_EQ, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, + ACTIONS(4184), 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(3501), 22, + ACTIONS(4218), 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, @@ -146851,99 +147955,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - anon_sym_LT2, - [34348] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_COMMA, + anon_sym_else, + [33868] = 22, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3546), 1, - anon_sym_BANG, - ACTIONS(3548), 1, - anon_sym_COLON_COLON, - STATE(1602), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3544), 17, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(3902), 1, + anon_sym_LBRACK, + ACTIONS(3906), 1, + anon_sym_QMARK, + ACTIONS(3908), 1, + anon_sym_DOT, + ACTIONS(4022), 1, + anon_sym_as, + ACTIONS(4170), 1, anon_sym_AMP, + ACTIONS(4180), 1, + anon_sym_CARET, + ACTIONS(4182), 1, anon_sym_PIPE, + ACTIONS(4188), 1, + anon_sym_AMP_AMP, + ACTIONS(4192), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4196), 1, + anon_sym_DOT_DOT, + ACTIONS(4216), 1, + anon_sym_EQ, + ACTIONS(4168), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4172), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT_LT_EQ, - anon_sym_EQ, + ACTIONS(4186), 2, anon_sym_GT, anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3542), 22, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, + ACTIONS(4198), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - anon_sym_LT2, - [34408] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1603), 2, + STATE(1600), 2, sym_line_comment, sym_block_comment, - ACTIONS(3530), 16, - anon_sym_PLUS, + ACTIONS(4166), 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(3532), 25, + ACTIONS(4184), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3828), 7, + anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_else, + ACTIONS(4214), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146954,51 +148029,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - anon_sym_SQUOTE, - anon_sym_as, - [34464] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [33960] = 22, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3834), 1, - anon_sym_COLON_COLON, - ACTIONS(4165), 1, - anon_sym_BANG, - STATE(1604), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1459), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(3902), 1, + anon_sym_LBRACK, + ACTIONS(3906), 1, + anon_sym_QMARK, + ACTIONS(3908), 1, + anon_sym_DOT, + ACTIONS(4022), 1, + anon_sym_as, + ACTIONS(4170), 1, anon_sym_AMP, + ACTIONS(4180), 1, + anon_sym_CARET, + ACTIONS(4182), 1, anon_sym_PIPE, + ACTIONS(4188), 1, + anon_sym_AMP_AMP, + ACTIONS(4192), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4196), 1, + anon_sym_DOT_DOT, + ACTIONS(4216), 1, + anon_sym_EQ, + ACTIONS(4168), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4172), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4186), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1457), 24, + ACTIONS(4198), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1601), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4166), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4184), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3860), 7, 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_COMMA, + anon_sym_else, + ACTIONS(4214), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147009,48 +148099,133 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [34524] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [34052] = 19, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3444), 1, - anon_sym_BANG, - ACTIONS(4116), 1, + ACTIONS(1688), 1, + anon_sym_DASH, + ACTIONS(1714), 1, + aux_sym_string_literal_token1, + ACTIONS(1722), 1, + sym__raw_string_literal_start, + ACTIONS(3696), 1, + sym_identifier, + ACTIONS(3700), 1, anon_sym_COLON_COLON, - STATE(1605), 2, + ACTIONS(3704), 1, + sym_metavariable, + STATE(2655), 1, + sym_scoped_identifier, + STATE(3012), 1, + sym__literal_pattern, + STATE(3664), 1, + sym_bracketed_type, + STATE(3681), 1, + sym_generic_type_with_turbofish, + ACTIONS(1716), 2, + anon_sym_true, + anon_sym_false, + STATE(1602), 2, sym_line_comment, sym_block_comment, - ACTIONS(3442), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(1712), 3, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(3702), 3, + sym_self, + sym_super, + sym_crate, + STATE(2421), 4, + sym_negative_literal, + sym_string_literal, + sym_raw_string_literal, + sym_boolean_literal, + ACTIONS(3698), 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, + [34138] = 22, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(3902), 1, + anon_sym_LBRACK, + ACTIONS(3906), 1, + anon_sym_QMARK, + ACTIONS(3908), 1, + anon_sym_DOT, + ACTIONS(4022), 1, + anon_sym_as, + ACTIONS(4170), 1, anon_sym_AMP, + ACTIONS(4180), 1, + anon_sym_CARET, + ACTIONS(4182), 1, anon_sym_PIPE, + ACTIONS(4188), 1, + anon_sym_AMP_AMP, + ACTIONS(4192), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4196), 1, + anon_sym_DOT_DOT, + ACTIONS(4216), 1, + anon_sym_EQ, + ACTIONS(4168), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4172), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4186), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3440), 24, + ACTIONS(4198), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1603), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4166), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4184), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4052), 7, + anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_else, + ACTIONS(4214), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147061,46 +148236,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, - anon_sym_as, - [34584] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [34230] = 21, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1606), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3538), 16, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_BANG, + ACTIONS(3902), 1, + anon_sym_LBRACK, + ACTIONS(3906), 1, + anon_sym_QMARK, + ACTIONS(3908), 1, + anon_sym_DOT, + ACTIONS(4022), 1, + anon_sym_as, + ACTIONS(4170), 1, anon_sym_AMP, + ACTIONS(4180), 1, + anon_sym_CARET, + ACTIONS(4182), 1, anon_sym_PIPE, + ACTIONS(4188), 1, + anon_sym_AMP_AMP, + ACTIONS(4192), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4196), 1, + anon_sym_DOT_DOT, + ACTIONS(4224), 1, + anon_sym_EQ, + ACTIONS(4168), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4172), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4186), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3540), 25, + ACTIONS(4198), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1604), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4166), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4184), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4222), 17, + anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - 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, @@ -147111,28 +148303,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_COLON_COLON, - anon_sym_SQUOTE, - anon_sym_as, - [34640] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_COMMA, + anon_sym_else, + [34320] = 11, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3456), 1, - anon_sym_BANG, - ACTIONS(4212), 1, + ACTIONS(4174), 1, + anon_sym_LPAREN, + ACTIONS(4176), 1, anon_sym_COLON_COLON, - STATE(1607), 2, + ACTIONS(4178), 1, + anon_sym_LT2, + ACTIONS(4226), 1, + anon_sym_BANG, + STATE(1668), 1, + sym_parameters, + STATE(1724), 1, + sym_type_arguments, + STATE(1605), 2, sym_line_comment, sym_block_comment, - ACTIONS(1459), 15, + ACTIONS(3484), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -147143,15 +148336,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(1457), 24, - anon_sym_LPAREN, + ACTIONS(3482), 20, anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -147163,45 +148357,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, anon_sym_as, - [34700] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [34390] = 11, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1608), 2, + ACTIONS(3460), 1, + anon_sym_BANG, + ACTIONS(4174), 1, + anon_sym_LPAREN, + ACTIONS(4176), 1, + anon_sym_COLON_COLON, + ACTIONS(4178), 1, + anon_sym_LT2, + STATE(1668), 1, + sym_parameters, + STATE(1724), 1, + sym_type_arguments, + STATE(1606), 2, sym_line_comment, sym_block_comment, - ACTIONS(3505), 16, + ACTIONS(3458), 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(3507), 25, - anon_sym_LPAREN, + ACTIONS(3454), 20, anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -147213,34 +148416,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_SQUOTE, anon_sym_as, - [34756] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [34460] = 10, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4178), 1, + ACTIONS(4174), 1, anon_sym_LPAREN, - ACTIONS(4184), 1, + ACTIONS(4178), 1, anon_sym_LT2, - STATE(1663), 1, - sym_type_arguments, - STATE(1690), 1, + ACTIONS(4228), 1, + anon_sym_COLON_COLON, + STATE(1668), 1, sym_parameters, - STATE(1609), 2, + STATE(1724), 1, + sym_type_arguments, + STATE(1607), 2, sym_line_comment, sym_block_comment, - ACTIONS(3515), 17, + ACTIONS(3490), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -147258,7 +148459,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3513), 20, + ACTIONS(3488), 20, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, @@ -147279,22 +148480,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [34820] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [34527] = 9, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1610), 2, + ACTIONS(4226), 1, + anon_sym_BANG, + ACTIONS(4230), 1, + anon_sym_LBRACE, + ACTIONS(4232), 1, + anon_sym_COLON_COLON, + STATE(1790), 1, + sym_field_initializer_list, + STATE(1608), 2, sym_line_comment, sym_block_comment, - ACTIONS(3546), 16, + ACTIONS(1480), 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, @@ -147304,10 +148512,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3548), 25, + ACTIONS(1478), 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, @@ -147327,26 +148535,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - anon_sym_SQUOTE, anon_sym_as, - [34876] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [34592] = 8, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4178), 1, - anon_sym_LPAREN, - ACTIONS(4184), 1, - anon_sym_LT2, - STATE(1663), 1, - sym_type_arguments, - STATE(1690), 1, - sym_parameters, - STATE(1611), 2, + ACTIONS(3472), 1, + anon_sym_COLON_COLON, + ACTIONS(3572), 1, + anon_sym_BANG, + ACTIONS(4234), 1, + sym_identifier, + STATE(1609), 2, sym_line_comment, sym_block_comment, - ACTIONS(3519), 17, + ACTIONS(3468), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -147357,16 +148561,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(3517), 20, + anon_sym_as, + ACTIONS(3466), 23, + anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_EQ_GT, + anon_sym_RBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -147378,31 +148583,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [34940] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [34655] = 8, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3604), 1, - anon_sym_LBRACE, - STATE(1612), 2, + ACTIONS(3486), 1, + anon_sym_BANG, + ACTIONS(4236), 1, + anon_sym_COLON_COLON, + STATE(1490), 1, + sym_field_initializer_list, + STATE(1610), 2, sym_line_comment, sym_block_comment, - ACTIONS(3505), 16, + ACTIONS(1480), 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, @@ -147412,10 +148621,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3507), 24, + ACTIONS(1478), 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, @@ -147435,37 +148644,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, + anon_sym_SQUOTE, anon_sym_as, - [34998] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [34718] = 9, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3614), 1, - anon_sym_LBRACE, - STATE(1613), 2, + ACTIONS(4174), 1, + anon_sym_LPAREN, + ACTIONS(4178), 1, + anon_sym_LT2, + STATE(1696), 1, + sym_parameters, + STATE(1725), 1, + sym_type_arguments, + STATE(1611), 2, sym_line_comment, sym_block_comment, - ACTIONS(3546), 16, + ACTIONS(3596), 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(3548), 24, - anon_sym_LPAREN, + ACTIONS(3594), 20, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, @@ -147479,33 +148694,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, anon_sym_as, - [35056] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [34782] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4178), 1, - anon_sym_LPAREN, - ACTIONS(4184), 1, - anon_sym_LT2, - STATE(1663), 1, - sym_type_arguments, - STATE(1690), 1, - sym_parameters, - STATE(1614), 2, + ACTIONS(3584), 1, + anon_sym_BANG, + ACTIONS(3586), 1, + anon_sym_COLON_COLON, + STATE(1612), 2, sym_line_comment, sym_block_comment, - ACTIONS(3477), 17, + ACTIONS(3582), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -147523,7 +148731,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3475), 20, + ACTIONS(3580), 22, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, @@ -147544,23 +148753,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [35120] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_LT2, + [34842] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4178), 1, - anon_sym_LPAREN, - ACTIONS(4184), 1, - anon_sym_LT2, - STATE(1663), 1, - sym_type_arguments, - STATE(1690), 1, - sym_parameters, - STATE(1615), 2, + ACTIONS(3512), 1, + anon_sym_BANG, + ACTIONS(3514), 1, + anon_sym_COLON_COLON, + STATE(1613), 2, sym_line_comment, sym_block_comment, - ACTIONS(3511), 17, + ACTIONS(3510), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -147578,7 +148784,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3509), 20, + ACTIONS(3508), 22, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, @@ -147599,34 +148806,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [35184] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_LT2, + [34902] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3640), 1, - anon_sym_LBRACE, - STATE(1616), 2, + ACTIONS(3520), 1, + anon_sym_BANG, + ACTIONS(3522), 1, + anon_sym_COLON_COLON, + STATE(1614), 2, sym_line_comment, sym_block_comment, - ACTIONS(3538), 16, + ACTIONS(3518), 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(3540), 24, + ACTIONS(3516), 22, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -147641,29 +148852,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_COLON_COLON, anon_sym_as, - [35242] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_LT2, + [34962] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3538), 1, + ACTIONS(3528), 1, anon_sym_BANG, - ACTIONS(3540), 1, + ACTIONS(3530), 1, anon_sym_COLON_COLON, - STATE(1617), 2, + STATE(1615), 2, sym_line_comment, sym_block_comment, - ACTIONS(3536), 17, + ACTIONS(3526), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -147681,7 +148890,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3534), 22, + ACTIONS(3524), 22, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -147704,24 +148913,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_as, anon_sym_LT2, - [35302] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [35022] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4028), 2, + ACTIONS(3772), 1, anon_sym_LBRACE, - anon_sym_COLON_COLON, - STATE(1618), 2, + STATE(1616), 2, sym_line_comment, sym_block_comment, - ACTIONS(3986), 15, + ACTIONS(3528), 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, @@ -147731,7 +148940,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3982), 23, + ACTIONS(3530), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -147754,88 +148963,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_as, - [35359] = 25, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [35080] = 9, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(887), 1, - anon_sym_RBRACK, - ACTIONS(3850), 1, - anon_sym_LBRACK, - ACTIONS(3854), 1, - anon_sym_QMARK, - ACTIONS(3856), 1, - anon_sym_DOT, - ACTIONS(3878), 1, - anon_sym_as, - ACTIONS(4124), 1, - anon_sym_CARET, - ACTIONS(4126), 1, - anon_sym_AMP, - ACTIONS(4128), 1, - anon_sym_PIPE, - ACTIONS(4130), 1, - anon_sym_AMP_AMP, - ACTIONS(4132), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, - anon_sym_EQ, - ACTIONS(4214), 1, - anon_sym_SEMI, - ACTIONS(4216), 1, - anon_sym_DOT_DOT, - ACTIONS(4220), 1, - anon_sym_COMMA, - STATE(3163), 1, - aux_sym_arguments_repeat1, - ACTIONS(4120), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4134), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4140), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4218), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1619), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4122), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4138), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4150), 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, - [35454] = 6, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4028), 1, - anon_sym_COLON_COLON, - STATE(1620), 2, + ACTIONS(4174), 1, + anon_sym_LPAREN, + ACTIONS(4178), 1, + anon_sym_LT2, + STATE(1696), 1, + sym_parameters, + STATE(1725), 1, + sym_type_arguments, + STATE(1617), 2, sym_line_comment, sym_block_comment, - ACTIONS(3986), 15, + ACTIONS(3506), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -147846,15 +148992,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(3982), 24, - anon_sym_LPAREN, + ACTIONS(3504), 20, anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -147866,43 +149013,116 @@ 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, - [35511] = 5, - ACTIONS(103), 1, + [35144] = 22, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(1104), 1, + anon_sym_extern, + ACTIONS(3548), 1, + anon_sym_COLON_COLON, + ACTIONS(3556), 1, + sym_metavariable, + ACTIONS(3658), 1, + anon_sym_default, + ACTIONS(4238), 1, + sym_identifier, + ACTIONS(4240), 1, + anon_sym_fn, + STATE(2284), 1, + aux_sym__item_modifiers, + STATE(2749), 1, + sym_scoped_type_identifier, + STATE(3622), 1, + sym_generic_type, + STATE(3668), 1, + sym_bracketed_type, + STATE(3738), 1, + sym_extern_modifier, + STATE(3766), 1, + sym_scoped_identifier, + STATE(3791), 1, + sym_function_modifiers, + STATE(3828), 1, + sym_generic_type_with_turbofish, + ACTIONS(3550), 2, + anon_sym_gen, + anon_sym_union, + STATE(1618), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3554), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(1088), 4, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + anon_sym_safe, + ACTIONS(3656), 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, + [35234] = 9, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1621), 2, + ACTIONS(4174), 1, + anon_sym_LPAREN, + ACTIONS(4178), 1, + anon_sym_LT2, + STATE(1696), 1, + sym_parameters, + STATE(1725), 1, + sym_type_arguments, + STATE(1619), 2, sym_line_comment, sym_block_comment, - ACTIONS(3538), 16, + ACTIONS(3570), 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(3540), 24, - anon_sym_LPAREN, + ACTIONS(3568), 20, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, @@ -147916,35 +149136,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, anon_sym_as, - [35566] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [35298] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3948), 1, - anon_sym_BANG, - ACTIONS(3950), 1, - anon_sym_COLON_COLON, - STATE(1622), 2, + STATE(1620), 2, sym_line_comment, sym_block_comment, - ACTIONS(3442), 15, + ACTIONS(3520), 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, @@ -147954,10 +149168,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3440), 23, + ACTIONS(3522), 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, @@ -147977,16 +149191,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, + anon_sym_SQUOTE, anon_sym_as, - [35625] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [35354] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1623), 2, + STATE(1621), 2, sym_line_comment, sym_block_comment, - ACTIONS(3530), 16, + ACTIONS(3528), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -148003,10 +149219,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3532), 24, + ACTIONS(3530), 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, @@ -148027,23 +149243,27 @@ 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, - [35680] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [35410] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1624), 2, + ACTIONS(3470), 1, + anon_sym_BANG, + ACTIONS(4147), 1, + anon_sym_COLON_COLON, + STATE(1622), 2, sym_line_comment, sym_block_comment, - ACTIONS(3505), 16, + ACTIONS(3468), 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, @@ -148053,10 +149273,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3507), 24, + ACTIONS(3466), 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, @@ -148076,58 +149296,127 @@ 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, - [35735] = 22, + [35470] = 22, 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(1157), 1, + ACTIONS(1104), 1, anon_sym_extern, - ACTIONS(3491), 1, + ACTIONS(3548), 1, anon_sym_COLON_COLON, - ACTIONS(3499), 1, + ACTIONS(3556), 1, sym_metavariable, - ACTIONS(3636), 1, + ACTIONS(3658), 1, anon_sym_default, - ACTIONS(4222), 1, + ACTIONS(4242), 1, sym_identifier, - ACTIONS(4224), 1, + ACTIONS(4244), 1, anon_sym_fn, - STATE(2317), 1, - aux_sym_function_modifiers_repeat1, - STATE(2461), 1, - sym_extern_modifier, - STATE(2758), 1, + STATE(2284), 1, + aux_sym__item_modifiers, + STATE(2678), 1, sym_scoped_type_identifier, - STATE(3610), 1, - sym_scoped_identifier, - STATE(3633), 1, - sym_bracketed_type, - STATE(3652), 1, + STATE(3545), 1, sym_function_modifiers, - STATE(3711), 1, + STATE(3622), 1, sym_generic_type, - STATE(3780), 1, + STATE(3668), 1, + sym_bracketed_type, + STATE(3738), 1, + sym_extern_modifier, + STATE(3766), 1, + sym_scoped_identifier, + STATE(3828), 1, sym_generic_type_with_turbofish, - ACTIONS(3493), 2, + ACTIONS(3550), 2, anon_sym_gen, anon_sym_union, - STATE(1625), 2, + STATE(1623), 2, sym_line_comment, sym_block_comment, - ACTIONS(1141), 3, + ACTIONS(3554), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(1088), 4, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(3497), 3, + anon_sym_safe, + ACTIONS(3656), 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, + [35560] = 22, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(1104), 1, + anon_sym_extern, + ACTIONS(3548), 1, + anon_sym_COLON_COLON, + ACTIONS(3556), 1, + sym_metavariable, + ACTIONS(3658), 1, + anon_sym_default, + ACTIONS(4246), 1, + sym_identifier, + ACTIONS(4248), 1, + anon_sym_fn, + STATE(2284), 1, + aux_sym__item_modifiers, + STATE(2899), 1, + sym_scoped_type_identifier, + STATE(3622), 1, + sym_generic_type, + STATE(3668), 1, + sym_bracketed_type, + STATE(3738), 1, + sym_extern_modifier, + STATE(3766), 1, + sym_scoped_identifier, + STATE(3828), 1, + sym_generic_type_with_turbofish, + STATE(3852), 1, + sym_function_modifiers, + ACTIONS(3550), 2, + anon_sym_gen, + anon_sym_union, + STATE(1624), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3554), 3, sym_self, sym_super, sym_crate, - ACTIONS(3634), 17, + ACTIONS(1088), 4, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + anon_sym_safe, + ACTIONS(3656), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -148145,15 +149434,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [35824] = 5, - ACTIONS(103), 1, + [35650] = 9, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(4174), 1, + anon_sym_LPAREN, + ACTIONS(4178), 1, + anon_sym_LT2, + STATE(1696), 1, + sym_parameters, + STATE(1725), 1, + sym_type_arguments, + STATE(1625), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3566), 17, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_EQ, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3564), 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, + [35714] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(3748), 1, + anon_sym_LBRACE, STATE(1626), 2, sym_line_comment, sym_block_comment, - ACTIONS(3546), 16, + ACTIONS(3520), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -148170,7 +149516,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3548), 24, + ACTIONS(3522), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -148195,24 +149541,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, anon_sym_as, - [35879] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [35772] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3984), 2, - anon_sym_LBRACE, - anon_sym_COLON_COLON, STATE(1627), 2, sym_line_comment, sym_block_comment, - ACTIONS(3986), 15, + ACTIONS(3512), 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, @@ -148222,10 +149566,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3982), 23, + ACTIONS(3514), 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, @@ -148245,22 +149589,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, + anon_sym_SQUOTE, anon_sym_as, - [35936] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [35828] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(3686), 1, + anon_sym_LBRACE, STATE(1628), 2, sym_line_comment, sym_block_comment, - ACTIONS(3800), 15, + ACTIONS(3584), 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, @@ -148270,10 +149619,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3798), 25, + ACTIONS(3586), 24, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -148296,21 +149644,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, anon_sym_as, - [35991] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [35886] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, STATE(1629), 2, sym_line_comment, sym_block_comment, - ACTIONS(3626), 15, + ACTIONS(3584), 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, @@ -148320,11 +149669,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3624), 25, + ACTIONS(3586), 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, @@ -148345,16 +149693,21 @@ 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, - [36046] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [35942] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(3952), 1, + anon_sym_COLON_COLON, + ACTIONS(4208), 1, + anon_sym_BANG, STATE(1630), 2, sym_line_comment, sym_block_comment, - ACTIONS(3686), 15, + ACTIONS(1480), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -148370,11 +149723,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3684), 25, + ACTIONS(1478), 24, + anon_sym_SEMI, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ_GT, + anon_sym_RBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -148394,17 +149747,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_as, - [36101] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [36002] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(3486), 1, + anon_sym_BANG, + ACTIONS(4250), 1, + anon_sym_COLON_COLON, STATE(1631), 2, sym_line_comment, sym_block_comment, - ACTIONS(3784), 15, + ACTIONS(1480), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -148420,11 +149776,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3782), 25, + ACTIONS(1478), 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, @@ -148444,58 +149799,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, + anon_sym_SQUOTE, anon_sym_as, - [36156] = 22, + [36062] = 22, 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(1157), 1, + ACTIONS(1104), 1, anon_sym_extern, - ACTIONS(3491), 1, + ACTIONS(3548), 1, anon_sym_COLON_COLON, - ACTIONS(3499), 1, + ACTIONS(3556), 1, sym_metavariable, - ACTIONS(3636), 1, + ACTIONS(3658), 1, anon_sym_default, - ACTIONS(4226), 1, + ACTIONS(4252), 1, sym_identifier, - ACTIONS(4228), 1, + ACTIONS(4254), 1, anon_sym_fn, - STATE(2317), 1, - aux_sym_function_modifiers_repeat1, - STATE(2461), 1, - sym_extern_modifier, - STATE(2686), 1, + STATE(2284), 1, + aux_sym__item_modifiers, + STATE(2774), 1, sym_scoped_type_identifier, - STATE(3509), 1, + STATE(3622), 1, + sym_generic_type, + STATE(3668), 1, + sym_bracketed_type, + STATE(3687), 1, sym_function_modifiers, - STATE(3610), 1, + STATE(3738), 1, + sym_extern_modifier, + STATE(3766), 1, sym_scoped_identifier, - STATE(3633), 1, - sym_bracketed_type, - STATE(3711), 1, - sym_generic_type, - STATE(3780), 1, + STATE(3828), 1, sym_generic_type_with_turbofish, - ACTIONS(3493), 2, + ACTIONS(3550), 2, anon_sym_gen, anon_sym_union, STATE(1632), 2, sym_line_comment, sym_block_comment, - ACTIONS(1141), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(3497), 3, + ACTIONS(3554), 3, sym_self, sym_super, sym_crate, - ACTIONS(3634), 17, + ACTIONS(1088), 4, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + anon_sym_safe, + ACTIONS(3656), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -148513,127 +149869,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [36245] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [36152] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4230), 1, - anon_sym_else, - STATE(1840), 1, - sym_else_clause, + ACTIONS(3736), 1, + anon_sym_LBRACE, STATE(1633), 2, sym_line_comment, sym_block_comment, - ACTIONS(1407), 15, + ACTIONS(3512), 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, - ACTIONS(1405), 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, - [36304] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4180), 1, anon_sym_BANG, - ACTIONS(4232), 1, - anon_sym_COLON_COLON, - STATE(1634), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1459), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1457), 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, - [36363] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3984), 1, - anon_sym_COLON_COLON, - STATE(1635), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3986), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, @@ -148643,10 +149896,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3982), 24, + ACTIONS(3514), 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, @@ -148666,68 +149919,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, - [36420] = 25, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [36210] = 25, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(871), 1, + ACTIONS(962), 1, anon_sym_RBRACK, - ACTIONS(3850), 1, + ACTIONS(3902), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3906), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3908), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(4022), 1, anon_sym_as, - ACTIONS(4124), 1, - anon_sym_CARET, - ACTIONS(4126), 1, + ACTIONS(4170), 1, anon_sym_AMP, - ACTIONS(4128), 1, + ACTIONS(4180), 1, + anon_sym_CARET, + ACTIONS(4182), 1, anon_sym_PIPE, - ACTIONS(4130), 1, + ACTIONS(4188), 1, anon_sym_AMP_AMP, - ACTIONS(4132), 1, + ACTIONS(4192), 1, anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, - anon_sym_EQ, ACTIONS(4216), 1, - anon_sym_DOT_DOT, - ACTIONS(4234), 1, + anon_sym_EQ, + ACTIONS(4256), 1, anon_sym_SEMI, - ACTIONS(4236), 1, + ACTIONS(4258), 1, + anon_sym_DOT_DOT, + ACTIONS(4262), 1, anon_sym_COMMA, - STATE(3143), 1, + STATE(3076), 1, aux_sym_arguments_repeat1, - ACTIONS(4120), 2, + ACTIONS(4168), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4134), 2, + ACTIONS(4172), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + ACTIONS(4186), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, + ACTIONS(4260), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1636), 2, + STATE(1634), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(4166), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4138), 4, + ACTIONS(4184), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4150), 10, + ACTIONS(4214), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148738,66 +149991,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36515] = 25, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [36305] = 25, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(941), 1, - anon_sym_RBRACK, - ACTIONS(3850), 1, + ACTIONS(1414), 1, + anon_sym_LBRACE, + ACTIONS(3474), 1, + anon_sym_SQUOTE, + ACTIONS(3902), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3906), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3908), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(4022), 1, anon_sym_as, - ACTIONS(4124), 1, + ACTIONS(4268), 1, anon_sym_CARET, - ACTIONS(4126), 1, + ACTIONS(4270), 1, anon_sym_AMP, - ACTIONS(4128), 1, + ACTIONS(4272), 1, anon_sym_PIPE, - ACTIONS(4130), 1, + ACTIONS(4274), 1, anon_sym_AMP_AMP, - ACTIONS(4132), 1, + ACTIONS(4276), 1, anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, + ACTIONS(4282), 1, anon_sym_EQ, - ACTIONS(4216), 1, + ACTIONS(4288), 1, anon_sym_DOT_DOT, - ACTIONS(4238), 1, - anon_sym_SEMI, - ACTIONS(4240), 1, - anon_sym_COMMA, - STATE(3184), 1, - aux_sym_arguments_repeat1, - ACTIONS(4120), 2, + STATE(494), 1, + sym_block, + STATE(3811), 1, + sym_label, + ACTIONS(4264), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4134), 2, + ACTIONS(4278), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + ACTIONS(4286), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, + ACTIONS(4290), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1637), 2, + STATE(1635), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(4266), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4138), 4, + ACTIONS(4284), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4150), 10, + ACTIONS(4280), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148808,17 +150061,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36610] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [36400] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1496), 1, - sym_label, - STATE(1638), 2, + ACTIONS(3944), 2, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + STATE(1636), 2, sym_line_comment, sym_block_comment, - ACTIONS(3662), 15, + ACTIONS(3946), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -148834,10 +150088,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3660), 24, + ACTIONS(3942), 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, @@ -148857,68 +150111,67 @@ 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, - [36667] = 25, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [36457] = 25, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3448), 1, - anon_sym_SQUOTE, - ACTIONS(3850), 1, + ACTIONS(996), 1, + anon_sym_RBRACK, + ACTIONS(3902), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3906), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3908), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(4022), 1, anon_sym_as, - ACTIONS(4246), 1, - anon_sym_CARET, - ACTIONS(4248), 1, + ACTIONS(4170), 1, anon_sym_AMP, - ACTIONS(4250), 1, + ACTIONS(4180), 1, + anon_sym_CARET, + ACTIONS(4182), 1, anon_sym_PIPE, - ACTIONS(4252), 1, + ACTIONS(4188), 1, anon_sym_AMP_AMP, - ACTIONS(4254), 1, + ACTIONS(4192), 1, anon_sym_PIPE_PIPE, - ACTIONS(4260), 1, + ACTIONS(4216), 1, anon_sym_EQ, - ACTIONS(4266), 1, + ACTIONS(4258), 1, anon_sym_DOT_DOT, - STATE(1528), 1, - sym_block, - STATE(3714), 1, - sym_label, - ACTIONS(4242), 2, + ACTIONS(4292), 1, + anon_sym_SEMI, + ACTIONS(4294), 1, + anon_sym_COMMA, + STATE(3194), 1, + aux_sym_arguments_repeat1, + ACTIONS(4168), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4256), 2, + ACTIONS(4172), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4264), 2, + ACTIONS(4186), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4268), 2, + ACTIONS(4260), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1639), 2, + STATE(1637), 2, sym_line_comment, sym_block_comment, - ACTIONS(4244), 3, + ACTIONS(4166), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4262), 4, + ACTIONS(4184), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4258), 10, + ACTIONS(4214), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148929,66 +150182,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36762] = 25, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [36552] = 25, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, + ACTIONS(412), 1, anon_sym_LBRACE, - ACTIONS(3448), 1, + ACTIONS(3474), 1, anon_sym_SQUOTE, - ACTIONS(3850), 1, + ACTIONS(3902), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3906), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3908), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(4022), 1, anon_sym_as, - ACTIONS(4246), 1, + ACTIONS(4268), 1, anon_sym_CARET, - ACTIONS(4248), 1, + ACTIONS(4270), 1, anon_sym_AMP, - ACTIONS(4250), 1, + ACTIONS(4272), 1, anon_sym_PIPE, - ACTIONS(4252), 1, + ACTIONS(4274), 1, anon_sym_AMP_AMP, - ACTIONS(4254), 1, + ACTIONS(4276), 1, anon_sym_PIPE_PIPE, - ACTIONS(4260), 1, + ACTIONS(4282), 1, anon_sym_EQ, - ACTIONS(4266), 1, + ACTIONS(4288), 1, anon_sym_DOT_DOT, - STATE(1494), 1, + STATE(1944), 1, sym_block, - STATE(3714), 1, + STATE(3812), 1, sym_label, - ACTIONS(4242), 2, + ACTIONS(4264), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4256), 2, + ACTIONS(4278), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4264), 2, + ACTIONS(4286), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4268), 2, + ACTIONS(4290), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1640), 2, + STATE(1638), 2, sym_line_comment, sym_block_comment, - ACTIONS(4244), 3, + ACTIONS(4266), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4262), 4, + ACTIONS(4284), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4258), 10, + ACTIONS(4280), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148999,66 +150252,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36857] = 25, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [36647] = 25, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1383), 1, + ACTIONS(412), 1, anon_sym_LBRACE, - ACTIONS(3448), 1, + ACTIONS(3474), 1, anon_sym_SQUOTE, - ACTIONS(3850), 1, + ACTIONS(3902), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3906), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3908), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(4022), 1, anon_sym_as, - ACTIONS(4246), 1, + ACTIONS(4268), 1, anon_sym_CARET, - ACTIONS(4248), 1, + ACTIONS(4270), 1, anon_sym_AMP, - ACTIONS(4250), 1, + ACTIONS(4272), 1, anon_sym_PIPE, - ACTIONS(4252), 1, + ACTIONS(4274), 1, anon_sym_AMP_AMP, - ACTIONS(4254), 1, + ACTIONS(4276), 1, anon_sym_PIPE_PIPE, - ACTIONS(4260), 1, + ACTIONS(4282), 1, anon_sym_EQ, - ACTIONS(4266), 1, + ACTIONS(4288), 1, anon_sym_DOT_DOT, - STATE(480), 1, + STATE(1732), 1, sym_block, - STATE(3778), 1, + STATE(3812), 1, sym_label, - ACTIONS(4242), 2, + ACTIONS(4264), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4256), 2, + ACTIONS(4278), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4264), 2, + ACTIONS(4286), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4268), 2, + ACTIONS(4290), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1641), 2, + STATE(1639), 2, sym_line_comment, sym_block_comment, - ACTIONS(4244), 3, + ACTIONS(4266), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4262), 4, + ACTIONS(4284), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4258), 10, + ACTIONS(4280), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149069,66 +150322,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36952] = 25, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [36742] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1383), 1, - anon_sym_LBRACE, - ACTIONS(3448), 1, - anon_sym_SQUOTE, - ACTIONS(3850), 1, - anon_sym_LBRACK, - ACTIONS(3854), 1, - anon_sym_QMARK, - ACTIONS(3856), 1, - anon_sym_DOT, - ACTIONS(3878), 1, - anon_sym_as, - ACTIONS(4246), 1, + STATE(1640), 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, - ACTIONS(4248), 1, anon_sym_AMP, - ACTIONS(4250), 1, anon_sym_PIPE, - ACTIONS(4252), 1, - anon_sym_AMP_AMP, - ACTIONS(4254), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4260), 1, - anon_sym_EQ, - ACTIONS(4266), 1, - anon_sym_DOT_DOT, - STATE(498), 1, - sym_block, - STATE(3778), 1, - sym_label, - ACTIONS(4242), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4256), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4264), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4268), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1642), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4244), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4262), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4258), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3688), 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, @@ -149139,66 +150364,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37047] = 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, + [36797] = 25, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, - anon_sym_LBRACE, - ACTIONS(3448), 1, + ACTIONS(3474), 1, anon_sym_SQUOTE, - ACTIONS(3850), 1, + ACTIONS(3902), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3906), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3908), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(4022), 1, anon_sym_as, - ACTIONS(4246), 1, + ACTIONS(4268), 1, anon_sym_CARET, - ACTIONS(4248), 1, + ACTIONS(4270), 1, anon_sym_AMP, - ACTIONS(4250), 1, + ACTIONS(4272), 1, anon_sym_PIPE, - ACTIONS(4252), 1, + ACTIONS(4274), 1, anon_sym_AMP_AMP, - ACTIONS(4254), 1, + ACTIONS(4276), 1, anon_sym_PIPE_PIPE, - ACTIONS(4260), 1, + ACTIONS(4282), 1, anon_sym_EQ, - ACTIONS(4266), 1, + ACTIONS(4288), 1, anon_sym_DOT_DOT, - STATE(1845), 1, + STATE(420), 1, sym_block, - STATE(3779), 1, + STATE(3785), 1, sym_label, - ACTIONS(4242), 2, + ACTIONS(4264), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4256), 2, + ACTIONS(4278), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4264), 2, + ACTIONS(4286), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4268), 2, + ACTIONS(4290), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1643), 2, + STATE(1641), 2, sym_line_comment, sym_block_comment, - ACTIONS(4244), 3, + ACTIONS(4266), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4262), 4, + ACTIONS(4284), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4258), 10, + ACTIONS(4280), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149209,66 +150442,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37142] = 25, - ACTIONS(103), 1, + [36892] = 6, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(3944), 1, + anon_sym_COLON_COLON, + STATE(1642), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3946), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3942), 24, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, + anon_sym_as, + [36949] = 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(3448), 1, + ACTIONS(3474), 1, anon_sym_SQUOTE, - ACTIONS(3850), 1, + ACTIONS(3902), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3906), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3908), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(4022), 1, anon_sym_as, - ACTIONS(4246), 1, + ACTIONS(4268), 1, anon_sym_CARET, - ACTIONS(4248), 1, + ACTIONS(4270), 1, anon_sym_AMP, - ACTIONS(4250), 1, + ACTIONS(4272), 1, anon_sym_PIPE, - ACTIONS(4252), 1, + ACTIONS(4274), 1, anon_sym_AMP_AMP, - ACTIONS(4254), 1, + ACTIONS(4276), 1, anon_sym_PIPE_PIPE, - ACTIONS(4260), 1, + ACTIONS(4282), 1, anon_sym_EQ, - ACTIONS(4266), 1, + ACTIONS(4288), 1, anon_sym_DOT_DOT, - STATE(1851), 1, + STATE(1550), 1, sym_block, - STATE(3779), 1, + STATE(3750), 1, sym_label, - ACTIONS(4242), 2, + ACTIONS(4264), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4256), 2, + ACTIONS(4278), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4264), 2, + ACTIONS(4286), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4268), 2, + ACTIONS(4290), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1644), 2, + STATE(1643), 2, sym_line_comment, sym_block_comment, - ACTIONS(4244), 3, + ACTIONS(4266), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4262), 4, + ACTIONS(4284), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4258), 10, + ACTIONS(4280), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149279,17 +150563,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37237] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [37044] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4116), 1, + ACTIONS(4147), 1, anon_sym_COLON_COLON, - STATE(1645), 2, + STATE(1644), 2, sym_line_comment, sym_block_comment, - ACTIONS(3442), 15, + ACTIONS(3468), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -149305,7 +150589,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3440), 24, + ACTIONS(3466), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, @@ -149330,17 +150614,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_SQUOTE, anon_sym_as, - [37294] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [37101] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4270), 1, + ACTIONS(4296), 1, anon_sym_COLON_COLON, - STATE(1646), 2, + STATE(1645), 2, sym_line_comment, sym_block_comment, - ACTIONS(1459), 15, + ACTIONS(1480), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -149356,7 +150640,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1457), 24, + ACTIONS(1478), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, @@ -149381,133 +150665,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_SQUOTE, anon_sym_as, - [37351] = 22, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [37158] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1157), 1, - anon_sym_extern, - ACTIONS(3491), 1, - anon_sym_COLON_COLON, - ACTIONS(3499), 1, - sym_metavariable, - ACTIONS(3636), 1, - anon_sym_default, - ACTIONS(4272), 1, - sym_identifier, - ACTIONS(4274), 1, - anon_sym_fn, - STATE(2317), 1, - aux_sym_function_modifiers_repeat1, - STATE(2461), 1, - sym_extern_modifier, - STATE(2872), 1, - sym_scoped_type_identifier, - STATE(3514), 1, - sym_function_modifiers, - STATE(3610), 1, - sym_scoped_identifier, - STATE(3633), 1, - sym_bracketed_type, - STATE(3711), 1, - sym_generic_type, - STATE(3780), 1, - sym_generic_type_with_turbofish, - ACTIONS(3493), 2, - anon_sym_gen, - anon_sym_union, - STATE(1647), 2, + STATE(1504), 1, + sym_label, + STATE(1646), 2, sym_line_comment, sym_block_comment, - ACTIONS(1141), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(3497), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(3634), 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, - [37440] = 25, - ACTIONS(19), 1, - anon_sym_LBRACE, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3448), 1, - anon_sym_SQUOTE, - ACTIONS(3850), 1, - anon_sym_LBRACK, - ACTIONS(3854), 1, - anon_sym_QMARK, - ACTIONS(3856), 1, - anon_sym_DOT, - ACTIONS(3878), 1, - anon_sym_as, - ACTIONS(4246), 1, + ACTIONS(3676), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4248), 1, anon_sym_AMP, - ACTIONS(4250), 1, anon_sym_PIPE, - ACTIONS(4252), 1, - anon_sym_AMP_AMP, - ACTIONS(4254), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4260), 1, - anon_sym_EQ, - ACTIONS(4266), 1, - anon_sym_DOT_DOT, - STATE(422), 1, - sym_block, - STATE(3621), 1, - sym_label, - ACTIONS(4242), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4256), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4264), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4268), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1648), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4244), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4262), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4258), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3674), 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, @@ -149518,66 +150708,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37535] = 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, + [37215] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1011), 1, - anon_sym_RBRACK, - ACTIONS(3850), 1, - anon_sym_LBRACK, - ACTIONS(3854), 1, - anon_sym_QMARK, - ACTIONS(3856), 1, - anon_sym_DOT, - ACTIONS(3878), 1, - anon_sym_as, - ACTIONS(4124), 1, + STATE(1647), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3528), 16, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4126), 1, + anon_sym_BANG, anon_sym_AMP, - ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(4130), 1, - anon_sym_AMP_AMP, - ACTIONS(4132), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, - anon_sym_EQ, - ACTIONS(4216), 1, - anon_sym_DOT_DOT, - ACTIONS(4276), 1, - anon_sym_SEMI, - ACTIONS(4278), 1, - anon_sym_COMMA, - STATE(3147), 1, - aux_sym_arguments_repeat1, - ACTIONS(4120), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1649), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4122), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4138), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4150), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3530), 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, @@ -149588,66 +150758,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37630] = 25, - ACTIONS(19), 1, - anon_sym_LBRACE, - 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, + [37270] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3448), 1, - anon_sym_SQUOTE, - ACTIONS(3850), 1, - anon_sym_LBRACK, - ACTIONS(3854), 1, - anon_sym_QMARK, - ACTIONS(3856), 1, - anon_sym_DOT, - ACTIONS(3878), 1, - anon_sym_as, - ACTIONS(4246), 1, + STATE(1648), 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, - ACTIONS(4248), 1, anon_sym_AMP, - ACTIONS(4250), 1, anon_sym_PIPE, - ACTIONS(4252), 1, - anon_sym_AMP_AMP, - ACTIONS(4254), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4260), 1, - anon_sym_EQ, - ACTIONS(4266), 1, - anon_sym_DOT_DOT, - STATE(401), 1, - sym_block, - STATE(3621), 1, - sym_label, - ACTIONS(4242), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4256), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4264), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4268), 2, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3678), 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, - STATE(1650), 2, + anon_sym_COLON_COLON, + anon_sym_as, + [37325] = 6, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(4118), 1, + anon_sym_COLON_COLON, + STATE(1649), 2, sym_line_comment, sym_block_comment, - ACTIONS(4244), 3, + ACTIONS(3946), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4262), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4258), 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(3942), 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, @@ -149658,19 +150859,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37725] = 7, - 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, + [37382] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4280), 1, + ACTIONS(4298), 1, anon_sym_SQUOTE, - STATE(1747), 1, + STATE(1930), 1, sym_label, - STATE(1651), 2, + STATE(1650), 2, sym_line_comment, sym_block_comment, - ACTIONS(3662), 15, + ACTIONS(3676), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -149686,7 +150895,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3660), 23, + ACTIONS(3674), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -149710,82 +150919,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [37784] = 22, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [37441] = 6, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1157), 1, - anon_sym_extern, - ACTIONS(3491), 1, - anon_sym_COLON_COLON, - ACTIONS(3499), 1, - sym_metavariable, - ACTIONS(3636), 1, - anon_sym_default, - ACTIONS(4282), 1, - sym_identifier, - ACTIONS(4284), 1, - anon_sym_fn, - STATE(2317), 1, - aux_sym_function_modifiers_repeat1, - STATE(2461), 1, - sym_extern_modifier, - STATE(2868), 1, - sym_scoped_type_identifier, - STATE(3610), 1, - sym_scoped_identifier, - STATE(3633), 1, - sym_bracketed_type, - STATE(3711), 1, - sym_generic_type, - STATE(3780), 1, - sym_generic_type_with_turbofish, - STATE(3814), 1, - sym_function_modifiers, - ACTIONS(3493), 2, - anon_sym_gen, - anon_sym_union, - STATE(1652), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1141), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(3497), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(3634), 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, - [37873] = 5, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1653), 2, + ACTIONS(4118), 2, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + STATE(1651), 2, sym_line_comment, sym_block_comment, - ACTIONS(1443), 15, + ACTIONS(3946), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -149801,7 +150946,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1441), 24, + ACTIONS(3942), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -149825,16 +150970,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - anon_sym_else, - [37927] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [37498] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1654), 2, + ACTIONS(4300), 1, + anon_sym_else, + STATE(1920), 1, + sym_else_clause, + STATE(1652), 2, sym_line_comment, sym_block_comment, - ACTIONS(3612), 15, + ACTIONS(1410), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -149850,7 +150998,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3610), 24, + ACTIONS(1408), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -149873,62 +151021,67 @@ 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, - [37981] = 21, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [37557] = 25, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(348), 1, + anon_sym_LBRACE, + ACTIONS(3474), 1, + anon_sym_SQUOTE, + ACTIONS(3902), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3906), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3908), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(4022), 1, anon_sym_as, - ACTIONS(4196), 1, - anon_sym_EQ, - ACTIONS(4246), 1, + ACTIONS(4268), 1, anon_sym_CARET, - ACTIONS(4248), 1, + ACTIONS(4270), 1, anon_sym_AMP, - ACTIONS(4250), 1, + ACTIONS(4272), 1, anon_sym_PIPE, - ACTIONS(4252), 1, + ACTIONS(4274), 1, anon_sym_AMP_AMP, - ACTIONS(4254), 1, + ACTIONS(4276), 1, anon_sym_PIPE_PIPE, - ACTIONS(4286), 1, + ACTIONS(4282), 1, + anon_sym_EQ, + ACTIONS(4288), 1, anon_sym_DOT_DOT, - ACTIONS(4242), 2, + STATE(1494), 1, + sym_block, + STATE(3750), 1, + sym_label, + ACTIONS(4264), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4256), 2, + ACTIONS(4278), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4264), 2, + ACTIONS(4286), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4288), 2, + ACTIONS(4290), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1655), 2, + STATE(1653), 2, sym_line_comment, sym_block_comment, - ACTIONS(4244), 3, + ACTIONS(4266), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4262), 4, + ACTIONS(4284), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4194), 13, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(4280), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149939,18 +151092,19 @@ 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, - [38067] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [37652] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4290), 1, + ACTIONS(4226), 1, + anon_sym_BANG, + ACTIONS(4302), 1, anon_sym_COLON_COLON, - STATE(1656), 2, + STATE(1654), 2, sym_line_comment, sym_block_comment, - ACTIONS(3511), 15, + ACTIONS(1480), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -149966,7 +151120,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3509), 23, + ACTIONS(1478), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -149990,46 +151144,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [38123] = 15, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [37711] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, - anon_sym_LBRACK, - ACTIONS(3854), 1, - anon_sym_QMARK, - ACTIONS(3856), 1, - anon_sym_DOT, - ACTIONS(3878), 1, - anon_sym_as, - ACTIONS(4246), 1, - anon_sym_CARET, - ACTIONS(4248), 1, - anon_sym_AMP, - ACTIONS(4250), 1, - anon_sym_PIPE, - ACTIONS(4242), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4256), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - STATE(1657), 2, + STATE(1655), 2, sym_line_comment, sym_block_comment, - ACTIONS(4244), 3, + ACTIONS(3512), 16, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3876), 4, + 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(3874), 21, + ACTIONS(3514), 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, @@ -150048,18 +151192,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, - [38197] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_COLON_COLON, + anon_sym_as, + [37766] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4292), 1, - anon_sym_DASH_GT, - STATE(1658), 2, + STATE(1656), 2, sym_line_comment, sym_block_comment, - ACTIONS(3792), 15, + ACTIONS(3666), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -150075,9 +151218,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3790), 23, + ACTIONS(3664), 25, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -150098,22 +151242,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_COLON_COLON, anon_sym_as, - [38253] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [37821] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1659), 2, + STATE(1657), 2, sym_line_comment, sym_block_comment, - ACTIONS(3704), 15, + ACTIONS(3584), 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, @@ -150123,7 +151269,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3702), 24, + ACTIONS(3586), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -150148,15 +151294,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, anon_sym_as, - [38307] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [37876] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1660), 2, + ACTIONS(4096), 1, + anon_sym_BANG, + ACTIONS(4098), 1, + anon_sym_COLON_COLON, + STATE(1658), 2, sym_line_comment, sym_block_comment, - ACTIONS(3630), 15, + ACTIONS(3468), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -150172,7 +151322,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3628), 24, + ACTIONS(3466), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -150195,23 +151345,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_DASH_GT, anon_sym_as, - [38361] = 5, - ACTIONS(103), 1, + [37935] = 25, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(906), 1, + anon_sym_RBRACK, + ACTIONS(3902), 1, + anon_sym_LBRACK, + ACTIONS(3906), 1, + anon_sym_QMARK, + ACTIONS(3908), 1, + anon_sym_DOT, + ACTIONS(4022), 1, + anon_sym_as, + ACTIONS(4170), 1, + anon_sym_AMP, + ACTIONS(4180), 1, + anon_sym_CARET, + ACTIONS(4182), 1, + anon_sym_PIPE, + ACTIONS(4188), 1, + anon_sym_AMP_AMP, + ACTIONS(4192), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4216), 1, + anon_sym_EQ, + ACTIONS(4258), 1, + anon_sym_DOT_DOT, + ACTIONS(4304), 1, + anon_sym_SEMI, + ACTIONS(4306), 1, + anon_sym_COMMA, + STATE(3053), 1, + aux_sym_arguments_repeat1, + ACTIONS(4168), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4172), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4186), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4260), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1659), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4166), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4184), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4214), 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, + [38030] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1661), 2, + STATE(1660), 2, sym_line_comment, sym_block_comment, - ACTIONS(3734), 15, + ACTIONS(3520), 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, @@ -150221,7 +151441,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3732), 24, + ACTIONS(3522), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -150246,15 +151466,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, anon_sym_as, - [38415] = 5, - ACTIONS(103), 1, + [38085] = 25, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(767), 1, + anon_sym_RBRACK, + ACTIONS(3902), 1, + anon_sym_LBRACK, + ACTIONS(3906), 1, + anon_sym_QMARK, + ACTIONS(3908), 1, + anon_sym_DOT, + ACTIONS(4022), 1, + anon_sym_as, + ACTIONS(4170), 1, + anon_sym_AMP, + ACTIONS(4180), 1, + anon_sym_CARET, + ACTIONS(4182), 1, + anon_sym_PIPE, + ACTIONS(4188), 1, + anon_sym_AMP_AMP, + ACTIONS(4192), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4216), 1, + anon_sym_EQ, + ACTIONS(4258), 1, + anon_sym_DOT_DOT, + ACTIONS(4308), 1, + anon_sym_SEMI, + ACTIONS(4310), 1, + anon_sym_COMMA, + STATE(3072), 1, + aux_sym_arguments_repeat1, + ACTIONS(4168), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4172), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4186), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4260), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1661), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4166), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4184), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4214), 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, + [38180] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, STATE(1662), 2, sym_line_comment, sym_block_comment, - ACTIONS(3690), 15, + ACTIONS(3798), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -150270,9 +151560,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3688), 24, + ACTIONS(3796), 25, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -150293,39 +151584,138 @@ 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_COLON_COLON, anon_sym_as, - [38469] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [38235] = 25, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(1414), 1, + anon_sym_LBRACE, + ACTIONS(3474), 1, + anon_sym_SQUOTE, + ACTIONS(3902), 1, + anon_sym_LBRACK, + ACTIONS(3906), 1, + anon_sym_QMARK, + ACTIONS(3908), 1, + anon_sym_DOT, + ACTIONS(4022), 1, + anon_sym_as, + ACTIONS(4268), 1, + anon_sym_CARET, + ACTIONS(4270), 1, + anon_sym_AMP, + ACTIONS(4272), 1, + anon_sym_PIPE, + ACTIONS(4274), 1, + anon_sym_AMP_AMP, + ACTIONS(4276), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4282), 1, + anon_sym_EQ, + ACTIONS(4288), 1, + anon_sym_DOT_DOT, + STATE(491), 1, + sym_block, + STATE(3811), 1, + sym_label, + ACTIONS(4264), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4278), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4286), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4290), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, STATE(1663), 2, sym_line_comment, sym_block_comment, - ACTIONS(3738), 15, - anon_sym_PLUS, + ACTIONS(4266), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(4284), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4280), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [38330] = 25, + ACTIONS(19), 1, + anon_sym_LBRACE, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(3474), 1, + anon_sym_SQUOTE, + ACTIONS(3902), 1, + anon_sym_LBRACK, + ACTIONS(3906), 1, + anon_sym_QMARK, + ACTIONS(3908), 1, + anon_sym_DOT, + ACTIONS(4022), 1, + anon_sym_as, + ACTIONS(4268), 1, anon_sym_CARET, + ACTIONS(4270), 1, anon_sym_AMP, + ACTIONS(4272), 1, anon_sym_PIPE, + ACTIONS(4274), 1, + anon_sym_AMP_AMP, + ACTIONS(4276), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4282), 1, + anon_sym_EQ, + ACTIONS(4288), 1, + anon_sym_DOT_DOT, + STATE(403), 1, + sym_block, + STATE(3785), 1, + sym_label, + ACTIONS(4264), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4278), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4286), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3736), 24, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4290), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1664), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4266), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4284), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4280), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150336,23 +151726,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - anon_sym_as, - [38523] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [38425] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1664), 2, + STATE(1665), 2, sym_line_comment, sym_block_comment, - ACTIONS(3788), 15, + ACTIONS(3740), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -150368,7 +151750,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3786), 24, + ACTIONS(3738), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -150391,19 +151773,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_COLON_COLON, anon_sym_as, - [38577] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [38479] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4294), 1, - anon_sym_DASH_GT, - STATE(1665), 2, + ACTIONS(4312), 1, + anon_sym_COLON_COLON, + STATE(1666), 2, sym_line_comment, sym_block_comment, - ACTIONS(3742), 15, + ACTIONS(3570), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -150419,7 +151801,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3740), 23, + ACTIONS(3568), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -150443,43 +151825,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [38633] = 12, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [38535] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, - anon_sym_LBRACK, - ACTIONS(3854), 1, - anon_sym_QMARK, - ACTIONS(3856), 1, - anon_sym_DOT, - ACTIONS(3878), 1, - anon_sym_as, - ACTIONS(4242), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4256), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - STATE(1666), 2, + STATE(1667), 2, sym_line_comment, sym_block_comment, - ACTIONS(4244), 3, + ACTIONS(3684), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3876), 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(3874), 21, + ACTIONS(3682), 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, @@ -150498,16 +151872,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_SQUOTE, - [38701] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_DASH_GT, + anon_sym_as, + [38589] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1667), 2, + ACTIONS(4314), 1, + anon_sym_DASH_GT, + STATE(1668), 2, sym_line_comment, sym_block_comment, - ACTIONS(3618), 15, + ACTIONS(3820), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -150523,7 +151900,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3616), 24, + ACTIONS(3818), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -150546,41 +151923,129 @@ 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, - [38755] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [38645] = 22, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4290), 1, - anon_sym_COLON_COLON, - STATE(1668), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3515), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3902), 1, + anon_sym_LBRACK, + ACTIONS(3906), 1, + anon_sym_QMARK, + ACTIONS(3908), 1, + anon_sym_DOT, + ACTIONS(4022), 1, + anon_sym_as, + ACTIONS(4268), 1, anon_sym_CARET, + ACTIONS(4270), 1, anon_sym_AMP, + ACTIONS(4272), 1, anon_sym_PIPE, + ACTIONS(4274), 1, + anon_sym_AMP_AMP, + ACTIONS(4276), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4282), 1, + anon_sym_EQ, + ACTIONS(4316), 1, + anon_sym_DOT_DOT, + ACTIONS(4264), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4278), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4286), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3513), 23, + ACTIONS(4318), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1669), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3828), 3, anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_SQUOTE, + ACTIONS(4266), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4284), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4280), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [38733] = 22, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(3902), 1, anon_sym_LBRACK, - anon_sym_EQ_GT, + ACTIONS(3906), 1, anon_sym_QMARK, + ACTIONS(3908), 1, + anon_sym_DOT, + ACTIONS(4022), 1, + anon_sym_as, + ACTIONS(4170), 1, + anon_sym_AMP, + ACTIONS(4180), 1, + anon_sym_CARET, + ACTIONS(4182), 1, + anon_sym_PIPE, + ACTIONS(4188), 1, anon_sym_AMP_AMP, + ACTIONS(4192), 1, anon_sym_PIPE_PIPE, + ACTIONS(4216), 1, + anon_sym_EQ, + ACTIONS(4258), 1, + anon_sym_DOT_DOT, + ACTIONS(4168), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4172), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4186), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4260), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1670), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4166), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4320), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_COMMA, + ACTIONS(4184), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4214), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150591,22 +152056,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, - [38811] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [38821] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1669), 2, + STATE(1671), 2, sym_line_comment, sym_block_comment, - ACTIONS(1439), 15, + ACTIONS(1440), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -150622,7 +152080,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1437), 24, + ACTIONS(1438), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -150647,37 +152105,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_as, anon_sym_else, - [38865] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [38875] = 24, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1670), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1447), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(1044), 1, + anon_sym_RBRACK, + ACTIONS(3902), 1, + anon_sym_LBRACK, + ACTIONS(3906), 1, + anon_sym_QMARK, + ACTIONS(3908), 1, + anon_sym_DOT, + ACTIONS(4022), 1, + anon_sym_as, + ACTIONS(4170), 1, anon_sym_AMP, + ACTIONS(4180), 1, + anon_sym_CARET, + ACTIONS(4182), 1, anon_sym_PIPE, + ACTIONS(4188), 1, + anon_sym_AMP_AMP, + ACTIONS(4192), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4216), 1, + anon_sym_EQ, + ACTIONS(4258), 1, + anon_sym_DOT_DOT, + ACTIONS(4322), 1, + anon_sym_COMMA, + STATE(3186), 1, + aux_sym_arguments_repeat1, + ACTIONS(4168), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4172), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4186), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1445), 24, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4260), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1672), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4166), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4184), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4214), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150688,23 +152173,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, - anon_sym_else, - [38919] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [38967] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1671), 2, + STATE(1673), 2, sym_line_comment, sym_block_comment, - ACTIONS(1451), 15, + ACTIONS(1448), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -150720,7 +152197,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1449), 24, + ACTIONS(1446), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -150745,15 +152222,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_as, anon_sym_else, - [38973] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [39021] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1672), 2, + STATE(1674), 2, sym_line_comment, sym_block_comment, - ACTIONS(1435), 15, + ACTIONS(1456), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -150769,7 +152246,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1433), 24, + ACTIONS(1454), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -150794,81 +152271,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_as, anon_sym_else, - [39027] = 22, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [39075] = 5, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3850), 1, - anon_sym_LBRACK, - ACTIONS(3854), 1, - anon_sym_QMARK, - ACTIONS(3856), 1, - anon_sym_DOT, - ACTIONS(3878), 1, - anon_sym_as, - ACTIONS(4124), 1, - anon_sym_CARET, - ACTIONS(4126), 1, - anon_sym_AMP, - ACTIONS(4128), 1, - anon_sym_PIPE, - ACTIONS(4130), 1, - anon_sym_AMP_AMP, - ACTIONS(4132), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, - anon_sym_EQ, - ACTIONS(4216), 1, - anon_sym_DOT_DOT, - ACTIONS(4120), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4134), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4140), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4218), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1673), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4122), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4296), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COMMA, - ACTIONS(4138), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4150), 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, - [39115] = 5, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1674), 2, + STATE(1675), 2, sym_line_comment, sym_block_comment, - ACTIONS(3622), 15, + ACTIONS(1444), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -150884,7 +152295,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3620), 24, + ACTIONS(1442), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -150907,110 +152318,37 @@ 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, - [39169] = 19, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_else, + [39129] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, - anon_sym_LBRACK, - ACTIONS(3854), 1, - anon_sym_QMARK, - ACTIONS(3856), 1, - anon_sym_DOT, - ACTIONS(3878), 1, - anon_sym_as, - ACTIONS(4246), 1, - anon_sym_CARET, - ACTIONS(4248), 1, - anon_sym_AMP, - ACTIONS(4250), 1, - anon_sym_PIPE, - ACTIONS(4252), 1, - anon_sym_AMP_AMP, - ACTIONS(4254), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4200), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(4242), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4256), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4264), 2, - anon_sym_GT, - anon_sym_LT, - STATE(1675), 2, + STATE(1676), 2, sym_line_comment, sym_block_comment, - ACTIONS(4244), 3, + ACTIONS(1452), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4262), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4198), 15, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, - [39251] = 14, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3850), 1, - anon_sym_LBRACK, - ACTIONS(3854), 1, - anon_sym_QMARK, - ACTIONS(3856), 1, - anon_sym_DOT, - ACTIONS(3878), 1, - anon_sym_as, - ACTIONS(4246), 1, anon_sym_CARET, - ACTIONS(4248), 1, anon_sym_AMP, - ACTIONS(4242), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4256), 2, + anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1676), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4244), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3876), 5, - anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3874), 21, + ACTIONS(1450), 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, @@ -151029,18 +152367,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, - [39323] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_as, + anon_sym_else, + [39183] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3950), 1, - anon_sym_COLON_COLON, STATE(1677), 2, sym_line_comment, sym_block_comment, - ACTIONS(3442), 15, + ACTIONS(3518), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -151051,12 +152388,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(3440), 23, + ACTIONS(3516), 22, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -151071,63 +152410,72 @@ 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, - [39379] = 17, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_LT2, + [39237] = 24, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(918), 1, + anon_sym_RPAREN, + ACTIONS(3902), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3906), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3908), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(4022), 1, anon_sym_as, - ACTIONS(4246), 1, - anon_sym_CARET, - ACTIONS(4248), 1, + ACTIONS(4170), 1, anon_sym_AMP, - ACTIONS(4250), 1, + ACTIONS(4180), 1, + anon_sym_CARET, + ACTIONS(4182), 1, anon_sym_PIPE, - ACTIONS(3876), 2, + ACTIONS(4188), 1, + anon_sym_AMP_AMP, + ACTIONS(4192), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4216), 1, anon_sym_EQ, + ACTIONS(4258), 1, anon_sym_DOT_DOT, - ACTIONS(4242), 2, + ACTIONS(4324), 1, + anon_sym_COMMA, + STATE(3109), 1, + aux_sym_arguments_repeat1, + ACTIONS(4168), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4256), 2, + ACTIONS(4172), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4264), 2, + ACTIONS(4186), 2, anon_sym_GT, anon_sym_LT, + ACTIONS(4260), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, STATE(1678), 2, sym_line_comment, sym_block_comment, - ACTIONS(4244), 3, + ACTIONS(4166), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4262), 4, + ACTIONS(4184), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3874), 17, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4214), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151138,57 +152486,54 @@ 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, - [39457] = 19, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [39329] = 19, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(3902), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3906), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3908), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(4022), 1, anon_sym_as, - ACTIONS(4246), 1, + ACTIONS(4268), 1, anon_sym_CARET, - ACTIONS(4248), 1, + ACTIONS(4270), 1, anon_sym_AMP, - ACTIONS(4250), 1, + ACTIONS(4272), 1, anon_sym_PIPE, - ACTIONS(4252), 1, + ACTIONS(4274), 1, anon_sym_AMP_AMP, - ACTIONS(4254), 1, + ACTIONS(4276), 1, anon_sym_PIPE_PIPE, - ACTIONS(399), 2, + ACTIONS(388), 2, anon_sym_EQ, anon_sym_DOT_DOT, - ACTIONS(4242), 2, + ACTIONS(4264), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4256), 2, + ACTIONS(4278), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4264), 2, + ACTIONS(4286), 2, anon_sym_GT, anon_sym_LT, STATE(1679), 2, sym_line_comment, sym_block_comment, - ACTIONS(4244), 3, + ACTIONS(4266), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4262), 4, + ACTIONS(4284), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(397), 15, + ACTIONS(386), 15, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_PLUS_EQ, @@ -151204,58 +152549,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_SQUOTE, - [39539] = 21, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [39411] = 21, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(347), 1, + ACTIONS(352), 1, anon_sym_EQ, - ACTIONS(3850), 1, + ACTIONS(3902), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3906), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3908), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(4022), 1, anon_sym_as, - ACTIONS(4246), 1, + ACTIONS(4268), 1, anon_sym_CARET, - ACTIONS(4248), 1, + ACTIONS(4270), 1, anon_sym_AMP, - ACTIONS(4250), 1, + ACTIONS(4272), 1, anon_sym_PIPE, - ACTIONS(4252), 1, + ACTIONS(4274), 1, anon_sym_AMP_AMP, - ACTIONS(4254), 1, + ACTIONS(4276), 1, anon_sym_PIPE_PIPE, - ACTIONS(4286), 1, + ACTIONS(4316), 1, anon_sym_DOT_DOT, - ACTIONS(4242), 2, + ACTIONS(4264), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4256), 2, + ACTIONS(4278), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4264), 2, + ACTIONS(4286), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4288), 2, + ACTIONS(4318), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, STATE(1680), 2, sym_line_comment, sym_block_comment, - ACTIONS(4244), 3, + ACTIONS(4266), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4262), 4, + ACTIONS(4284), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(341), 13, + ACTIONS(346), 13, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_PLUS_EQ, @@ -151269,39 +152614,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_SQUOTE, - [39625] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [39497] = 21, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4298), 1, - anon_sym_COLON_COLON, - STATE(1681), 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, + ACTIONS(3902), 1, + anon_sym_LBRACK, + ACTIONS(3906), 1, + anon_sym_QMARK, + ACTIONS(3908), 1, + anon_sym_DOT, + ACTIONS(4022), 1, + anon_sym_as, + ACTIONS(4212), 1, + anon_sym_EQ, + ACTIONS(4268), 1, anon_sym_CARET, + ACTIONS(4270), 1, anon_sym_AMP, + ACTIONS(4272), 1, anon_sym_PIPE, + ACTIONS(4274), 1, + anon_sym_AMP_AMP, + ACTIONS(4276), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4316), 1, + anon_sym_DOT_DOT, + ACTIONS(4264), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4278), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4286), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3475), 23, + ACTIONS(4318), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1681), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4266), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4284), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4210), 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, @@ -151312,65 +152678,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [39681] = 21, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_SQUOTE, + [39583] = 21, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(3902), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3906), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3908), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(4022), 1, anon_sym_as, - ACTIONS(4136), 1, + ACTIONS(4224), 1, anon_sym_EQ, - ACTIONS(4246), 1, + ACTIONS(4268), 1, anon_sym_CARET, - ACTIONS(4248), 1, + ACTIONS(4270), 1, anon_sym_AMP, - ACTIONS(4250), 1, + ACTIONS(4272), 1, anon_sym_PIPE, - ACTIONS(4252), 1, + ACTIONS(4274), 1, anon_sym_AMP_AMP, - ACTIONS(4254), 1, + ACTIONS(4276), 1, anon_sym_PIPE_PIPE, - ACTIONS(4286), 1, + ACTIONS(4316), 1, anon_sym_DOT_DOT, - ACTIONS(4242), 2, + ACTIONS(4264), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4256), 2, + ACTIONS(4278), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4264), 2, + ACTIONS(4286), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4288), 2, + ACTIONS(4318), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, STATE(1682), 2, sym_line_comment, sym_block_comment, - ACTIONS(4244), 3, + ACTIONS(4266), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4262), 4, + ACTIONS(4284), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4118), 13, + ACTIONS(4222), 13, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_PLUS_EQ, @@ -151384,17 +152744,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_SQUOTE, - [39767] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [39669] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4290), 1, - anon_sym_COLON_COLON, STATE(1683), 2, sym_line_comment, sym_block_comment, - ACTIONS(3519), 15, + ACTIONS(3708), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -151410,7 +152768,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3517), 23, + ACTIONS(3706), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -151433,124 +152791,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_DASH_GT, anon_sym_as, - [39823] = 24, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [39723] = 24, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(3902), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3906), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3908), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(4022), 1, anon_sym_as, - ACTIONS(4124), 1, - anon_sym_CARET, - ACTIONS(4126), 1, + ACTIONS(4170), 1, anon_sym_AMP, - ACTIONS(4128), 1, + ACTIONS(4180), 1, + anon_sym_CARET, + ACTIONS(4182), 1, anon_sym_PIPE, - ACTIONS(4130), 1, + ACTIONS(4188), 1, anon_sym_AMP_AMP, - ACTIONS(4132), 1, + ACTIONS(4192), 1, anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, - anon_sym_EQ, ACTIONS(4216), 1, + anon_sym_EQ, + ACTIONS(4258), 1, anon_sym_DOT_DOT, - ACTIONS(4300), 1, + ACTIONS(4326), 1, anon_sym_RPAREN, - ACTIONS(4302), 1, + ACTIONS(4328), 1, anon_sym_COMMA, - STATE(2907), 1, + STATE(2934), 1, aux_sym_arguments_repeat1, - ACTIONS(4120), 2, + ACTIONS(4168), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4134), 2, + ACTIONS(4172), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + ACTIONS(4186), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, + ACTIONS(4260), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, STATE(1684), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4138), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4150), 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, - [39915] = 18, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3850), 1, - anon_sym_LBRACK, - ACTIONS(3854), 1, - anon_sym_QMARK, - ACTIONS(3856), 1, - anon_sym_DOT, - ACTIONS(3878), 1, - anon_sym_as, - ACTIONS(4246), 1, - anon_sym_CARET, - ACTIONS(4248), 1, - anon_sym_AMP, - ACTIONS(4250), 1, - anon_sym_PIPE, - ACTIONS(4252), 1, - anon_sym_AMP_AMP, - ACTIONS(3876), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(4242), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4256), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4264), 2, - anon_sym_GT, - anon_sym_LT, - STATE(1685), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4244), 3, + ACTIONS(4166), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4262), 4, + ACTIONS(4184), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3874), 16, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PIPE_PIPE, + ACTIONS(4214), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151561,133 +152861,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, - [39995] = 22, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [39815] = 24, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3850), 1, - anon_sym_LBRACK, - ACTIONS(3854), 1, - anon_sym_QMARK, - ACTIONS(3856), 1, - anon_sym_DOT, - ACTIONS(3878), 1, - anon_sym_as, - ACTIONS(4246), 1, - anon_sym_CARET, - ACTIONS(4248), 1, - anon_sym_AMP, - ACTIONS(4250), 1, - anon_sym_PIPE, - ACTIONS(4252), 1, - anon_sym_AMP_AMP, - ACTIONS(4254), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4260), 1, - anon_sym_EQ, - ACTIONS(4286), 1, - anon_sym_DOT_DOT, - ACTIONS(4242), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4256), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4264), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4288), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1686), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4058), 3, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_SQUOTE, - ACTIONS(4244), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4262), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4258), 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, - [40083] = 24, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(959), 1, + ACTIONS(1024), 1, anon_sym_RBRACK, - ACTIONS(3850), 1, + ACTIONS(3902), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3906), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3908), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(4022), 1, anon_sym_as, - ACTIONS(4124), 1, - anon_sym_CARET, - ACTIONS(4126), 1, + ACTIONS(4170), 1, anon_sym_AMP, - ACTIONS(4128), 1, + ACTIONS(4180), 1, + anon_sym_CARET, + ACTIONS(4182), 1, anon_sym_PIPE, - ACTIONS(4130), 1, + ACTIONS(4188), 1, anon_sym_AMP_AMP, - ACTIONS(4132), 1, + ACTIONS(4192), 1, anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, - anon_sym_EQ, ACTIONS(4216), 1, + anon_sym_EQ, + ACTIONS(4258), 1, anon_sym_DOT_DOT, - ACTIONS(4304), 1, + ACTIONS(4330), 1, anon_sym_COMMA, - STATE(2911), 1, + STATE(2935), 1, aux_sym_arguments_repeat1, - ACTIONS(4120), 2, + ACTIONS(4168), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4134), 2, + ACTIONS(4172), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + ACTIONS(4186), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, + ACTIONS(4260), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1687), 2, + STATE(1685), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(4166), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4138), 4, + ACTIONS(4184), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4150), 10, + ACTIONS(4214), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151698,17 +152929,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40175] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [39907] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4306), 1, - anon_sym_DASH_GT, - STATE(1688), 2, + ACTIONS(4098), 1, + anon_sym_COLON_COLON, + STATE(1686), 2, sym_line_comment, sym_block_comment, - ACTIONS(3748), 15, + ACTIONS(3468), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -151724,7 +152955,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3746), 23, + ACTIONS(3466), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -151748,64 +152979,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [40231] = 24, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [39963] = 24, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(965), 1, + ACTIONS(1042), 1, anon_sym_RPAREN, - ACTIONS(3850), 1, + ACTIONS(3902), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3906), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3908), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(4022), 1, anon_sym_as, - ACTIONS(4124), 1, - anon_sym_CARET, - ACTIONS(4126), 1, + ACTIONS(4170), 1, anon_sym_AMP, - ACTIONS(4128), 1, + ACTIONS(4180), 1, + anon_sym_CARET, + ACTIONS(4182), 1, anon_sym_PIPE, - ACTIONS(4130), 1, + ACTIONS(4188), 1, anon_sym_AMP_AMP, - ACTIONS(4132), 1, + ACTIONS(4192), 1, anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, - anon_sym_EQ, ACTIONS(4216), 1, + anon_sym_EQ, + ACTIONS(4258), 1, anon_sym_DOT_DOT, - ACTIONS(4308), 1, + ACTIONS(4332), 1, anon_sym_COMMA, - STATE(2946), 1, + STATE(2971), 1, aux_sym_arguments_repeat1, - ACTIONS(4120), 2, + ACTIONS(4168), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4134), 2, + ACTIONS(4172), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + ACTIONS(4186), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, + ACTIONS(4260), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1689), 2, + STATE(1687), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(4166), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4138), 4, + ACTIONS(4184), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4150), 10, + ACTIONS(4214), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151816,17 +153047,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40323] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [40055] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4310), 1, + ACTIONS(4334), 1, anon_sym_DASH_GT, - STATE(1690), 2, + STATE(1688), 2, sym_line_comment, sym_block_comment, - ACTIONS(3754), 15, + ACTIONS(3718), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -151842,7 +153073,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3752), 23, + ACTIONS(3716), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -151866,30 +153097,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [40379] = 11, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [40111] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, - anon_sym_LBRACK, - ACTIONS(3854), 1, - anon_sym_QMARK, - ACTIONS(3856), 1, - anon_sym_DOT, - ACTIONS(3878), 1, - anon_sym_as, - ACTIONS(4242), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1691), 2, + ACTIONS(4336), 1, + anon_sym_DASH_GT, + STATE(1689), 2, sym_line_comment, sym_block_comment, - ACTIONS(4244), 3, + ACTIONS(3724), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3876), 9, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, @@ -151898,10 +153121,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(3874), 21, + ACTIONS(3722), 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, @@ -151920,18 +153146,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_SQUOTE, - [40445] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_as, + [40167] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4290), 1, - anon_sym_COLON_COLON, - STATE(1692), 2, + ACTIONS(4338), 1, + anon_sym_DASH_GT, + STATE(1690), 2, sym_line_comment, sym_block_comment, - ACTIONS(3477), 15, + ACTIONS(3730), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -151947,7 +153173,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3475), 23, + ACTIONS(3728), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -151971,39 +153197,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [40501] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [40223] = 22, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4312), 1, - anon_sym_COLON_COLON, - STATE(1693), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1459), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3902), 1, + anon_sym_LBRACK, + ACTIONS(3906), 1, + anon_sym_QMARK, + ACTIONS(3908), 1, + anon_sym_DOT, + ACTIONS(4022), 1, + anon_sym_as, + ACTIONS(4268), 1, anon_sym_CARET, + ACTIONS(4270), 1, anon_sym_AMP, + ACTIONS(4272), 1, anon_sym_PIPE, + ACTIONS(4274), 1, + anon_sym_AMP_AMP, + ACTIONS(4276), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4282), 1, + anon_sym_EQ, + ACTIONS(4316), 1, + anon_sym_DOT_DOT, + ACTIONS(4264), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4278), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4286), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1457), 23, + ACTIONS(4318), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1691), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3914), 3, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_LBRACE, + anon_sym_SQUOTE, + ACTIONS(4266), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4284), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4280), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152014,65 +153263,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [40557] = 21, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [40311] = 21, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(3902), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3906), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3908), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(4022), 1, anon_sym_as, - ACTIONS(4192), 1, + ACTIONS(4220), 1, anon_sym_EQ, - ACTIONS(4246), 1, + ACTIONS(4268), 1, anon_sym_CARET, - ACTIONS(4248), 1, + ACTIONS(4270), 1, anon_sym_AMP, - ACTIONS(4250), 1, + ACTIONS(4272), 1, anon_sym_PIPE, - ACTIONS(4252), 1, + ACTIONS(4274), 1, anon_sym_AMP_AMP, - ACTIONS(4254), 1, + ACTIONS(4276), 1, anon_sym_PIPE_PIPE, - ACTIONS(4286), 1, + ACTIONS(4316), 1, anon_sym_DOT_DOT, - ACTIONS(4242), 2, + ACTIONS(4264), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4256), 2, + ACTIONS(4278), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4264), 2, + ACTIONS(4286), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4288), 2, + ACTIONS(4318), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1694), 2, + STATE(1692), 2, sym_line_comment, sym_block_comment, - ACTIONS(4244), 3, + ACTIONS(4266), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4262), 4, + ACTIONS(4284), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4190), 13, + ACTIONS(4218), 13, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_PLUS_EQ, @@ -152086,29 +153328,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_SQUOTE, - [40643] = 10, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [40397] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, - anon_sym_LBRACK, - ACTIONS(3854), 1, - anon_sym_QMARK, - ACTIONS(3856), 1, - anon_sym_DOT, - ACTIONS(3878), 1, - anon_sym_as, - STATE(1695), 2, + ACTIONS(4312), 1, + anon_sym_COLON_COLON, + STATE(1693), 2, sym_line_comment, sym_block_comment, - ACTIONS(4244), 3, + ACTIONS(3506), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3876), 11, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, @@ -152117,10 +153352,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(3874), 21, + ACTIONS(3504), 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, @@ -152139,45 +153377,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, - [40707] = 13, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_as, + [40453] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, - anon_sym_LBRACK, - ACTIONS(3854), 1, - anon_sym_QMARK, - ACTIONS(3856), 1, - anon_sym_DOT, - ACTIONS(3878), 1, - anon_sym_as, - ACTIONS(4248), 1, - anon_sym_AMP, - ACTIONS(4242), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4256), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - STATE(1696), 2, + ACTIONS(4340), 1, + anon_sym_LPAREN, + STATE(1829), 1, + sym_arguments, + STATE(1694), 2, sym_line_comment, sym_block_comment, - ACTIONS(4244), 3, + ACTIONS(3816), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3876), 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(3874), 21, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(3812), 22, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -152196,78 +153428,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_SQUOTE, - [40777] = 18, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_as, + [40511] = 6, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4314), 1, - sym_identifier, - ACTIONS(4316), 1, - anon_sym_LBRACE, - ACTIONS(4318), 1, - anon_sym_RBRACE, - ACTIONS(4320), 1, - anon_sym_STAR, - ACTIONS(4324), 1, - anon_sym_COMMA, - ACTIONS(4326), 1, - anon_sym_COLON_COLON, - ACTIONS(4330), 1, - sym_metavariable, - STATE(2562), 1, - sym_scoped_identifier, - STATE(2954), 1, - sym__use_clause, - STATE(3653), 1, - sym_generic_type_with_turbofish, - STATE(3666), 1, - sym_bracketed_type, - STATE(1697), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4328), 3, - sym_self, - sym_super, - sym_crate, - STATE(3067), 4, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(4322), 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, - [40857] = 5, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1698), 2, + ACTIONS(4342), 1, + anon_sym_COLON_COLON, + STATE(1695), 2, sym_line_comment, sym_block_comment, - ACTIONS(3503), 17, + ACTIONS(1480), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -152278,14 +153450,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(3501), 22, + ACTIONS(1478), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -152300,23 +153470,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - anon_sym_LT2, - [40911] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [40567] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1699), 2, + ACTIONS(4344), 1, + anon_sym_DASH_GT, + STATE(1696), 2, sym_line_comment, sym_block_comment, - ACTIONS(3762), 15, + ACTIONS(3744), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -152332,7 +153505,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3760), 24, + ACTIONS(3742), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -152355,66 +153528,131 @@ 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, - [40965] = 24, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [40623] = 22, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(3902), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3906), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3908), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(4022), 1, anon_sym_as, - ACTIONS(4124), 1, - anon_sym_CARET, - ACTIONS(4126), 1, + ACTIONS(4170), 1, anon_sym_AMP, - ACTIONS(4128), 1, + ACTIONS(4180), 1, + anon_sym_CARET, + ACTIONS(4182), 1, anon_sym_PIPE, - ACTIONS(4130), 1, + ACTIONS(4188), 1, anon_sym_AMP_AMP, - ACTIONS(4132), 1, + ACTIONS(4192), 1, anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, + ACTIONS(4216), 1, anon_sym_EQ, + ACTIONS(4258), 1, + anon_sym_DOT_DOT, + ACTIONS(4168), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4172), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4186), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4260), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1697), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4166), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4346), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_COMMA, + ACTIONS(4184), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4214), 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, + [40711] = 24, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(3902), 1, + anon_sym_LBRACK, + ACTIONS(3906), 1, + anon_sym_QMARK, + ACTIONS(3908), 1, + anon_sym_DOT, + ACTIONS(4022), 1, + anon_sym_as, + ACTIONS(4170), 1, + anon_sym_AMP, + ACTIONS(4180), 1, + anon_sym_CARET, + ACTIONS(4182), 1, + anon_sym_PIPE, + ACTIONS(4188), 1, + anon_sym_AMP_AMP, + ACTIONS(4192), 1, + anon_sym_PIPE_PIPE, ACTIONS(4216), 1, + anon_sym_EQ, + ACTIONS(4258), 1, anon_sym_DOT_DOT, - ACTIONS(4332), 1, + ACTIONS(4348), 1, anon_sym_RPAREN, - ACTIONS(4334), 1, + ACTIONS(4350), 1, anon_sym_COMMA, - STATE(2891), 1, + STATE(3111), 1, aux_sym_arguments_repeat1, - ACTIONS(4120), 2, + ACTIONS(4168), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4134), 2, + ACTIONS(4172), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + ACTIONS(4186), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, + ACTIONS(4260), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1700), 2, + STATE(1698), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(4166), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4138), 4, + ACTIONS(4184), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4150), 10, + ACTIONS(4214), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152425,62 +153663,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41057] = 22, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [40803] = 22, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(3902), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3906), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3908), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(4022), 1, anon_sym_as, - ACTIONS(4246), 1, + ACTIONS(4268), 1, anon_sym_CARET, - ACTIONS(4248), 1, + ACTIONS(4270), 1, anon_sym_AMP, - ACTIONS(4250), 1, + ACTIONS(4272), 1, anon_sym_PIPE, - ACTIONS(4252), 1, + ACTIONS(4274), 1, anon_sym_AMP_AMP, - ACTIONS(4254), 1, + ACTIONS(4276), 1, anon_sym_PIPE_PIPE, - ACTIONS(4260), 1, + ACTIONS(4282), 1, anon_sym_EQ, - ACTIONS(4286), 1, + ACTIONS(4316), 1, anon_sym_DOT_DOT, - ACTIONS(4242), 2, + ACTIONS(4264), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4256), 2, + ACTIONS(4278), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4264), 2, + ACTIONS(4286), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4288), 2, + ACTIONS(4318), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1701), 2, + STATE(1699), 2, sym_line_comment, sym_block_comment, - ACTIONS(3936), 3, + ACTIONS(4052), 3, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_SQUOTE, - ACTIONS(4244), 3, + ACTIONS(4266), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4262), 4, + ACTIONS(4284), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4258), 10, + ACTIONS(4280), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152491,17 +153729,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41145] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [40891] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4336), 1, - anon_sym_DASH_GT, - STATE(1702), 2, + STATE(1700), 2, sym_line_comment, sym_block_comment, - ACTIONS(3766), 15, + ACTIONS(3802), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -152517,7 +153753,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3764), 23, + ACTIONS(3800), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -152540,86 +153776,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, - [41201] = 24, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [40945] = 6, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1035), 1, - anon_sym_RBRACK, - ACTIONS(3850), 1, - anon_sym_LBRACK, - ACTIONS(3854), 1, - anon_sym_QMARK, - ACTIONS(3856), 1, - anon_sym_DOT, - ACTIONS(3878), 1, - anon_sym_as, - ACTIONS(4124), 1, - anon_sym_CARET, - ACTIONS(4126), 1, - anon_sym_AMP, - ACTIONS(4128), 1, - anon_sym_PIPE, - ACTIONS(4130), 1, - anon_sym_AMP_AMP, - ACTIONS(4132), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, - anon_sym_EQ, - ACTIONS(4216), 1, - anon_sym_DOT_DOT, - ACTIONS(4338), 1, - anon_sym_COMMA, - STATE(2948), 1, - aux_sym_arguments_repeat1, - ACTIONS(4120), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4134), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4140), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4218), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1703), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4122), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4138), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4150), 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, - [41293] = 6, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4340), 1, + ACTIONS(4312), 1, anon_sym_COLON_COLON, - STATE(1704), 2, + STATE(1701), 2, sym_line_comment, sym_block_comment, - ACTIONS(1459), 15, + ACTIONS(3566), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -152635,7 +153804,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1457), 23, + ACTIONS(3564), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -152659,62 +153828,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [41349] = 22, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [41001] = 10, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(3902), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3906), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3908), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(4022), 1, anon_sym_as, - ACTIONS(4246), 1, + STATE(1702), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4266), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4020), 11, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_CARET, - ACTIONS(4248), 1, anon_sym_AMP, - ACTIONS(4250), 1, anon_sym_PIPE, - ACTIONS(4252), 1, - anon_sym_AMP_AMP, - ACTIONS(4254), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4260), 1, - anon_sym_EQ, - ACTIONS(4286), 1, - anon_sym_DOT_DOT, - ACTIONS(4242), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4256), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4264), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4288), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1705), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3966), 3, + anon_sym_DOT_DOT, + ACTIONS(4018), 21, anon_sym_LPAREN, anon_sym_LBRACE, - anon_sym_SQUOTE, - ACTIONS(4244), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4262), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4258), 10, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152725,19 +153875,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41437] = 7, - 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, + [41065] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4342), 1, - anon_sym_LPAREN, - STATE(1753), 1, - sym_arguments, - STATE(1706), 2, + ACTIONS(4352), 1, + anon_sym_DASH_GT, + STATE(1703), 2, sym_line_comment, sym_block_comment, - ACTIONS(3682), 15, + ACTIONS(3808), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -152753,7 +153908,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3678), 22, + ACTIONS(3806), 23, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, @@ -152776,64 +153932,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [41495] = 24, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [41121] = 13, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(931), 1, - anon_sym_RPAREN, - ACTIONS(3850), 1, + ACTIONS(3902), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3906), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3908), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(4022), 1, anon_sym_as, - ACTIONS(4124), 1, - anon_sym_CARET, - ACTIONS(4126), 1, + ACTIONS(4270), 1, anon_sym_AMP, - ACTIONS(4128), 1, - anon_sym_PIPE, - ACTIONS(4130), 1, - anon_sym_AMP_AMP, - ACTIONS(4132), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, - anon_sym_EQ, - ACTIONS(4216), 1, - anon_sym_DOT_DOT, - ACTIONS(4344), 1, - anon_sym_COMMA, - STATE(2986), 1, - aux_sym_arguments_repeat1, - ACTIONS(4120), 2, + ACTIONS(4264), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4134), 2, + ACTIONS(4278), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4218), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1707), 2, + STATE(1704), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(4266), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4138), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4150), 10, + ACTIONS(4020), 6, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT_DOT, + ACTIONS(4018), 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, @@ -152844,37 +153982,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41587] = 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_SQUOTE, + [41191] = 12, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4346), 1, - anon_sym_DASH_GT, - STATE(1708), 2, + ACTIONS(3902), 1, + anon_sym_LBRACK, + ACTIONS(3906), 1, + anon_sym_QMARK, + ACTIONS(3908), 1, + anon_sym_DOT, + ACTIONS(4022), 1, + anon_sym_as, + ACTIONS(4264), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4278), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1705), 2, sym_line_comment, sym_block_comment, - ACTIONS(3772), 15, - anon_sym_PLUS, + ACTIONS(4266), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(4020), 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(3770), 23, + ACTIONS(4018), 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, @@ -152893,63 +154044,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_as, - [41643] = 22, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_SQUOTE, + [41259] = 14, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(3902), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3906), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3908), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(4022), 1, anon_sym_as, - ACTIONS(4124), 1, + ACTIONS(4268), 1, anon_sym_CARET, - ACTIONS(4126), 1, + ACTIONS(4270), 1, anon_sym_AMP, - ACTIONS(4128), 1, - anon_sym_PIPE, - ACTIONS(4130), 1, - anon_sym_AMP_AMP, - ACTIONS(4132), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, - anon_sym_EQ, - ACTIONS(4216), 1, - anon_sym_DOT_DOT, - ACTIONS(4120), 2, + ACTIONS(4264), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4134), 2, + ACTIONS(4278), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4218), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1709), 2, + STATE(1706), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(4266), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4348), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COMMA, - ACTIONS(4138), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4150), 10, + ACTIONS(4020), 5, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT_DOT, + ACTIONS(4018), 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, @@ -152960,62 +154096,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41731] = 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_SQUOTE, + [41331] = 17, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(3902), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3906), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3908), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(4022), 1, anon_sym_as, - ACTIONS(4246), 1, + ACTIONS(4268), 1, anon_sym_CARET, - ACTIONS(4248), 1, + ACTIONS(4270), 1, anon_sym_AMP, - ACTIONS(4250), 1, + ACTIONS(4272), 1, anon_sym_PIPE, - ACTIONS(4252), 1, - anon_sym_AMP_AMP, - ACTIONS(4254), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4260), 1, + ACTIONS(4020), 2, anon_sym_EQ, - ACTIONS(4286), 1, anon_sym_DOT_DOT, - ACTIONS(4242), 2, + ACTIONS(4264), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4256), 2, + ACTIONS(4278), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4264), 2, + ACTIONS(4286), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4288), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1710), 2, + STATE(1707), 2, sym_line_comment, sym_block_comment, - ACTIONS(3912), 3, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_SQUOTE, - ACTIONS(4244), 3, + ACTIONS(4266), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4262), 4, + ACTIONS(4284), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4258), 10, + ACTIONS(4018), 17, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153026,60 +154161,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41819] = 21, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, + [41409] = 18, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(3902), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3906), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3908), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(4022), 1, anon_sym_as, - ACTIONS(4188), 1, - anon_sym_EQ, - ACTIONS(4246), 1, + ACTIONS(4268), 1, anon_sym_CARET, - ACTIONS(4248), 1, + ACTIONS(4270), 1, anon_sym_AMP, - ACTIONS(4250), 1, + ACTIONS(4272), 1, anon_sym_PIPE, - ACTIONS(4252), 1, + ACTIONS(4274), 1, anon_sym_AMP_AMP, - ACTIONS(4254), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4286), 1, + ACTIONS(4020), 2, + anon_sym_EQ, anon_sym_DOT_DOT, - ACTIONS(4242), 2, + ACTIONS(4264), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4256), 2, + ACTIONS(4278), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4264), 2, + ACTIONS(4286), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4288), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1711), 2, + STATE(1708), 2, sym_line_comment, sym_block_comment, - ACTIONS(4244), 3, + ACTIONS(4266), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4262), 4, + ACTIONS(4284), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4186), 13, + ACTIONS(4018), 16, anon_sym_LPAREN, anon_sym_LBRACE, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153090,18 +154223,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_SQUOTE, - [41905] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [41489] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4350), 1, + ACTIONS(4354), 1, anon_sym_DASH_GT, - STATE(1712), 2, + STATE(1709), 2, sym_line_comment, sym_block_comment, - ACTIONS(3778), 15, + ACTIONS(3792), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -153117,7 +154252,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3776), 23, + ACTIONS(3790), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -153141,22 +154276,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [41961] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [41545] = 11, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4352), 1, - anon_sym_COLON_COLON, - STATE(1713), 2, + ACTIONS(3902), 1, + anon_sym_LBRACK, + ACTIONS(3906), 1, + anon_sym_QMARK, + ACTIONS(3908), 1, + anon_sym_DOT, + ACTIONS(4022), 1, + anon_sym_as, + ACTIONS(4264), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1710), 2, sym_line_comment, sym_block_comment, - ACTIONS(3477), 15, - anon_sym_PLUS, + ACTIONS(4266), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(4020), 9, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, @@ -153165,13 +154308,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(3475), 23, + ACTIONS(4018), 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, @@ -153190,59 +154330,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [42017] = 21, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_SQUOTE, + [41611] = 21, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(3902), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3906), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3908), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(4022), 1, anon_sym_as, - ACTIONS(4148), 1, + ACTIONS(4194), 1, anon_sym_EQ, - ACTIONS(4246), 1, + ACTIONS(4268), 1, anon_sym_CARET, - ACTIONS(4248), 1, + ACTIONS(4270), 1, anon_sym_AMP, - ACTIONS(4250), 1, + ACTIONS(4272), 1, anon_sym_PIPE, - ACTIONS(4252), 1, + ACTIONS(4274), 1, anon_sym_AMP_AMP, - ACTIONS(4254), 1, + ACTIONS(4276), 1, anon_sym_PIPE_PIPE, - ACTIONS(4286), 1, + ACTIONS(4316), 1, anon_sym_DOT_DOT, - ACTIONS(4242), 2, + ACTIONS(4264), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4256), 2, + ACTIONS(4278), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4264), 2, + ACTIONS(4286), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4288), 2, + ACTIONS(4318), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1714), 2, + STATE(1711), 2, sym_line_comment, sym_block_comment, - ACTIONS(4244), 3, + ACTIONS(4266), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4262), 4, + ACTIONS(4284), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4146), 13, + ACTIONS(4190), 13, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_PLUS_EQ, @@ -153256,43 +154396,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_SQUOTE, - [42103] = 12, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [41697] = 21, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4354), 1, + ACTIONS(3902), 1, anon_sym_LBRACK, - ACTIONS(4360), 1, + ACTIONS(3906), 1, anon_sym_QMARK, - ACTIONS(4364), 1, + ACTIONS(3908), 1, anon_sym_DOT, - ACTIONS(4366), 1, + ACTIONS(4022), 1, anon_sym_as, - ACTIONS(4356), 2, + ACTIONS(4202), 1, + anon_sym_EQ, + ACTIONS(4268), 1, + anon_sym_CARET, + ACTIONS(4270), 1, + anon_sym_AMP, + ACTIONS(4272), 1, + anon_sym_PIPE, + ACTIONS(4274), 1, + anon_sym_AMP_AMP, + ACTIONS(4276), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4316), 1, + anon_sym_DOT_DOT, + ACTIONS(4264), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4362), 2, + ACTIONS(4278), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1715), 2, + ACTIONS(4286), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4318), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1712), 2, sym_line_comment, sym_block_comment, - ACTIONS(4358), 3, + ACTIONS(4266), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3876), 7, + ACTIONS(4284), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4200), 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, + [41783] = 15, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(3902), 1, + anon_sym_LBRACK, + ACTIONS(3906), 1, + anon_sym_QMARK, + ACTIONS(3908), 1, + anon_sym_DOT, + ACTIONS(4022), 1, + anon_sym_as, + ACTIONS(4268), 1, anon_sym_CARET, + ACTIONS(4270), 1, anon_sym_AMP, + ACTIONS(4272), 1, anon_sym_PIPE, + ACTIONS(4264), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4278), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1713), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4266), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4020), 4, anon_sym_EQ, anon_sym_GT, anon_sym_LT, anon_sym_DOT_DOT, - ACTIONS(3874), 20, + ACTIONS(4018), 21, anon_sym_LPAREN, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -153311,62 +154519,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [42170] = 23, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_SQUOTE, + [41857] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, - anon_sym_LBRACK, - ACTIONS(3854), 1, - anon_sym_QMARK, - ACTIONS(3856), 1, - anon_sym_DOT, - ACTIONS(3878), 1, - anon_sym_as, - ACTIONS(4124), 1, + STATE(1714), 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, anon_sym_CARET, - ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(4130), 1, - anon_sym_AMP_AMP, - ACTIONS(4132), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, - anon_sym_EQ, - ACTIONS(4216), 1, - anon_sym_DOT_DOT, - ACTIONS(4368), 1, - anon_sym_RBRACE, - ACTIONS(4370), 1, - anon_sym_COMMA, - ACTIONS(4120), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1716), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4122), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4138), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4150), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3824), 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, @@ -153377,62 +154561,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42259] = 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_COLON_COLON, + anon_sym_as, + [41911] = 19, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(287), 1, - anon_sym_RBRACE, - ACTIONS(3850), 1, + ACTIONS(3902), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3906), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3908), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(4022), 1, anon_sym_as, - ACTIONS(4124), 1, + ACTIONS(4268), 1, anon_sym_CARET, - ACTIONS(4126), 1, + ACTIONS(4270), 1, anon_sym_AMP, - ACTIONS(4128), 1, + ACTIONS(4272), 1, anon_sym_PIPE, - ACTIONS(4130), 1, + ACTIONS(4274), 1, anon_sym_AMP_AMP, - ACTIONS(4132), 1, + ACTIONS(4276), 1, anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, + ACTIONS(4206), 2, anon_sym_EQ, - ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4372), 1, - anon_sym_SEMI, - ACTIONS(4120), 2, + ACTIONS(4264), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4134), 2, + ACTIONS(4278), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + ACTIONS(4286), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1717), 2, + STATE(1715), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(4266), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4138), 4, + ACTIONS(4284), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4150), 10, + ACTIONS(4204), 15, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153443,15 +154629,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42348] = 5, - ACTIONS(103), 1, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, + [41993] = 18, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(4356), 1, + sym_identifier, + ACTIONS(4358), 1, + anon_sym_LBRACE, + ACTIONS(4360), 1, + anon_sym_RBRACE, + ACTIONS(4362), 1, + anon_sym_STAR, + ACTIONS(4366), 1, + anon_sym_COMMA, + ACTIONS(4368), 1, + anon_sym_COLON_COLON, + ACTIONS(4372), 1, + sym_metavariable, + STATE(2585), 1, + sym_scoped_identifier, + STATE(2917), 1, + sym__use_clause, + STATE(3565), 1, + sym_generic_type_with_turbofish, + STATE(3607), 1, + sym_bracketed_type, + STATE(1716), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4370), 3, + sym_self, + sym_super, + sym_crate, + STATE(3032), 4, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(4364), 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, + [42073] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1718), 2, + ACTIONS(4374), 1, + anon_sym_COLON_COLON, + STATE(1717), 2, sym_line_comment, sym_block_comment, - ACTIONS(3682), 15, + ACTIONS(3596), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -153467,7 +154720,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3678), 23, + ACTIONS(3594), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -153491,15 +154744,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [42401] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [42129] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1719), 2, + STATE(1718), 2, sym_line_comment, sym_block_comment, - ACTIONS(3968), 15, + ACTIONS(3672), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -153515,7 +154768,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3966), 23, + ACTIONS(3670), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -153538,16 +154791,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, - [42454] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [42183] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1720), 2, + ACTIONS(4376), 1, + anon_sym_COLON_COLON, + STATE(1719), 2, sym_line_comment, sym_block_comment, - ACTIONS(3832), 15, + ACTIONS(3596), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -153563,7 +154819,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3830), 23, + ACTIONS(3594), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -153587,15 +154843,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [42507] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [42239] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1721), 2, + ACTIONS(4312), 1, + anon_sym_COLON_COLON, + STATE(1720), 2, sym_line_comment, sym_block_comment, - ACTIONS(1459), 15, + ACTIONS(3596), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -153611,7 +154869,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1457), 23, + ACTIONS(3594), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -153635,15 +154893,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [42560] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [42295] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1722), 2, + STATE(1721), 2, sym_line_comment, sym_block_comment, - ACTIONS(1459), 15, + ACTIONS(3694), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -153659,7 +154917,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1457), 23, + ACTIONS(3692), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -153682,63 +154940,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_DASH_GT, anon_sym_as, - [42613] = 23, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [42349] = 22, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(289), 1, - anon_sym_RBRACE, - ACTIONS(3850), 1, + ACTIONS(3902), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3906), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3908), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(4022), 1, anon_sym_as, - ACTIONS(4124), 1, + ACTIONS(4268), 1, anon_sym_CARET, - ACTIONS(4126), 1, + ACTIONS(4270), 1, anon_sym_AMP, - ACTIONS(4128), 1, + ACTIONS(4272), 1, anon_sym_PIPE, - ACTIONS(4130), 1, + ACTIONS(4274), 1, anon_sym_AMP_AMP, - ACTIONS(4132), 1, + ACTIONS(4276), 1, anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, + ACTIONS(4282), 1, anon_sym_EQ, - ACTIONS(4216), 1, + ACTIONS(4316), 1, anon_sym_DOT_DOT, - ACTIONS(4372), 1, - anon_sym_SEMI, - ACTIONS(4120), 2, + ACTIONS(4264), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4134), 2, + ACTIONS(4278), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + ACTIONS(4286), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, + ACTIONS(4318), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1723), 2, + STATE(1722), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(3860), 3, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_SQUOTE, + ACTIONS(4266), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4138), 4, + ACTIONS(4284), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4150), 10, + ACTIONS(4280), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153749,15 +155008,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42702] = 5, - ACTIONS(103), 1, + [42437] = 5, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + STATE(1723), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3770), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3768), 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, + [42491] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, STATE(1724), 2, sym_line_comment, sym_block_comment, - ACTIONS(4096), 15, + ACTIONS(3784), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -153773,7 +155081,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4094), 23, + ACTIONS(3782), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -153796,16 +155104,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, - [42755] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [42545] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, STATE(1725), 2, sym_line_comment, sym_block_comment, - ACTIONS(4088), 15, + ACTIONS(3788), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -153821,7 +155130,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4086), 23, + ACTIONS(3786), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -153844,16 +155153,129 @@ 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, - [42808] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [42599] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(4378), 1, + anon_sym_COLON_COLON, STATE(1726), 2, sym_line_comment, sym_block_comment, - ACTIONS(4044), 15, + ACTIONS(1480), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1478), 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, + [42655] = 19, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(3902), 1, + anon_sym_LBRACK, + ACTIONS(3906), 1, + anon_sym_QMARK, + ACTIONS(3908), 1, + anon_sym_DOT, + ACTIONS(4022), 1, + anon_sym_as, + ACTIONS(4384), 1, + anon_sym_CARET, + ACTIONS(4386), 1, + anon_sym_AMP, + ACTIONS(4388), 1, + anon_sym_PIPE, + ACTIONS(4390), 1, + anon_sym_AMP_AMP, + ACTIONS(4392), 1, + anon_sym_PIPE_PIPE, + ACTIONS(388), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(4380), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4394), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4398), 2, + anon_sym_GT, + anon_sym_LT, + STATE(1727), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4382), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4396), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(386), 14, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [42736] = 5, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + STATE(1728), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1536), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -153869,7 +155291,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4042), 23, + ACTIONS(1534), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -153893,62 +155315,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [42861] = 23, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [42789] = 22, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1331), 1, - anon_sym_RPAREN, - ACTIONS(3850), 1, + ACTIONS(3902), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3906), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3908), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(4022), 1, anon_sym_as, - ACTIONS(4124), 1, - anon_sym_CARET, - ACTIONS(4126), 1, + ACTIONS(4170), 1, anon_sym_AMP, - ACTIONS(4128), 1, + ACTIONS(4180), 1, + anon_sym_CARET, + ACTIONS(4182), 1, anon_sym_PIPE, - ACTIONS(4130), 1, + ACTIONS(4188), 1, anon_sym_AMP_AMP, - ACTIONS(4132), 1, + ACTIONS(4192), 1, anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, - anon_sym_EQ, ACTIONS(4216), 1, + anon_sym_EQ, + ACTIONS(4258), 1, anon_sym_DOT_DOT, - ACTIONS(4374), 1, + ACTIONS(4052), 2, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(4120), 2, + ACTIONS(4168), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4134), 2, + ACTIONS(4172), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + ACTIONS(4186), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, + ACTIONS(4260), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1727), 2, + STATE(1729), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(4166), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4138), 4, + ACTIONS(4184), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4150), 10, + ACTIONS(4214), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153959,15 +155380,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42950] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [42876] = 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(3956), 15, + ACTIONS(1544), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -153983,7 +155404,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3954), 23, + ACTIONS(1542), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -154007,15 +155428,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [43003] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [42929] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1729), 2, + STATE(1731), 2, sym_line_comment, sym_block_comment, - ACTIONS(3960), 15, + ACTIONS(1558), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -154031,7 +155452,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3958), 23, + ACTIONS(1556), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -154055,15 +155476,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [43056] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [42982] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1730), 2, + STATE(1732), 2, sym_line_comment, sym_block_comment, - ACTIONS(3972), 15, + ACTIONS(1466), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -154079,7 +155500,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3970), 23, + ACTIONS(1464), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -154103,21 +155524,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [43109] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [43035] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4354), 1, - anon_sym_LBRACK, - ACTIONS(4360), 1, - anon_sym_QMARK, - ACTIONS(4364), 1, - anon_sym_DOT, - STATE(1731), 2, + STATE(1733), 2, sym_line_comment, sym_block_comment, - ACTIONS(3906), 14, + ACTIONS(1030), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -154131,10 +155546,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(3904), 21, + ACTIONS(1032), 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, @@ -154154,15 +155572,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [43168] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [43088] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1732), 2, + STATE(1734), 2, sym_line_comment, sym_block_comment, - ACTIONS(4056), 15, + ACTIONS(928), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -154178,7 +155596,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4054), 23, + ACTIONS(930), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -154202,15 +155620,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [43221] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [43141] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1733), 2, + STATE(1735), 2, sym_line_comment, sym_block_comment, - ACTIONS(4080), 15, + ACTIONS(1492), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -154226,7 +155644,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4078), 23, + ACTIONS(1490), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -154250,21 +155668,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [43274] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [43194] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4354), 1, - anon_sym_LBRACK, - ACTIONS(4360), 1, - anon_sym_QMARK, - ACTIONS(4364), 1, - anon_sym_DOT, - STATE(1734), 2, + STATE(1736), 2, sym_line_comment, sym_block_comment, - ACTIONS(3922), 14, + ACTIONS(938), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -154278,10 +155690,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(3920), 21, + ACTIONS(940), 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, @@ -154301,35 +155716,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [43333] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [43247] = 13, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1735), 2, + ACTIONS(3902), 1, + anon_sym_LBRACK, + ACTIONS(3906), 1, + anon_sym_QMARK, + ACTIONS(3908), 1, + anon_sym_DOT, + ACTIONS(4022), 1, + anon_sym_as, + ACTIONS(4386), 1, + anon_sym_AMP, + ACTIONS(4380), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4394), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1737), 2, sym_line_comment, sym_block_comment, - ACTIONS(3926), 15, - anon_sym_PLUS, + ACTIONS(4382), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(4020), 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(3924), 23, + ACTIONS(4018), 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, @@ -154348,16 +155772,80 @@ 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, - [43386] = 5, - ACTIONS(103), 1, + [43316] = 22, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(4400), 1, + anon_sym_LBRACK, + ACTIONS(4406), 1, + anon_sym_QMARK, + ACTIONS(4408), 1, + anon_sym_CARET, + ACTIONS(4410), 1, + anon_sym_AMP, + ACTIONS(4412), 1, + anon_sym_PIPE, + ACTIONS(4414), 1, + anon_sym_AMP_AMP, + ACTIONS(4416), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4422), 1, + anon_sym_EQ, + ACTIONS(4428), 1, + anon_sym_DOT, + ACTIONS(4430), 1, + anon_sym_DOT_DOT, + ACTIONS(4434), 1, + anon_sym_as, + ACTIONS(3828), 2, + anon_sym_LPAREN, + anon_sym_EQ_GT, + ACTIONS(4402), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4418), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4426), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4432), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1738), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4404), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4424), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4420), 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, + [43403] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1736), 2, + STATE(1739), 2, sym_line_comment, sym_block_comment, - ACTIONS(4048), 15, + ACTIONS(954), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -154373,7 +155861,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4046), 23, + ACTIONS(956), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -154397,15 +155885,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [43439] = 5, - ACTIONS(103), 1, + [43456] = 22, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(4400), 1, + anon_sym_LBRACK, + ACTIONS(4406), 1, + anon_sym_QMARK, + ACTIONS(4408), 1, + anon_sym_CARET, + ACTIONS(4410), 1, + anon_sym_AMP, + ACTIONS(4412), 1, + anon_sym_PIPE, + ACTIONS(4414), 1, + anon_sym_AMP_AMP, + ACTIONS(4416), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4422), 1, + anon_sym_EQ, + ACTIONS(4428), 1, + anon_sym_DOT, + ACTIONS(4430), 1, + anon_sym_DOT_DOT, + ACTIONS(4434), 1, + anon_sym_as, + ACTIONS(3914), 2, + anon_sym_LPAREN, + anon_sym_EQ_GT, + ACTIONS(4402), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4418), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4426), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4432), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1740), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4404), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4424), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4420), 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, + [43543] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1737), 2, + STATE(1741), 2, sym_line_comment, sym_block_comment, - ACTIONS(4052), 15, + ACTIONS(1520), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -154421,7 +155974,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4050), 23, + ACTIONS(1518), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -154445,15 +155998,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [43492] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [43596] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1738), 2, + STATE(1742), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 15, + ACTIONS(958), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -154469,7 +156022,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4034), 23, + ACTIONS(960), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -154492,80 +156045,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [43545] = 21, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3850), 1, - anon_sym_LBRACK, - ACTIONS(3854), 1, - anon_sym_QMARK, - ACTIONS(3856), 1, - anon_sym_DOT, - ACTIONS(3878), 1, - anon_sym_as, - ACTIONS(4246), 1, - anon_sym_CARET, - ACTIONS(4248), 1, - anon_sym_AMP, - ACTIONS(4250), 1, - anon_sym_PIPE, - ACTIONS(4254), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4260), 1, - anon_sym_EQ, - ACTIONS(4266), 1, - anon_sym_DOT_DOT, - ACTIONS(4242), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4256), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4264), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4268), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1739), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4244), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4376), 3, - anon_sym_LBRACE, - anon_sym_AMP_AMP, - anon_sym_SQUOTE, - ACTIONS(4262), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4258), 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, - [43630] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_as, + [43649] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1740), 2, + STATE(1743), 2, sym_line_comment, sym_block_comment, - ACTIONS(3964), 15, + ACTIONS(1554), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -154581,7 +156070,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3962), 23, + ACTIONS(1552), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -154605,62 +156094,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [43683] = 23, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [43702] = 21, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(3902), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3906), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3908), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(4022), 1, anon_sym_as, - ACTIONS(4124), 1, + ACTIONS(4194), 1, + anon_sym_EQ, + ACTIONS(4384), 1, anon_sym_CARET, - ACTIONS(4126), 1, + ACTIONS(4386), 1, anon_sym_AMP, - ACTIONS(4128), 1, + ACTIONS(4388), 1, anon_sym_PIPE, - ACTIONS(4130), 1, + ACTIONS(4390), 1, anon_sym_AMP_AMP, - ACTIONS(4132), 1, + ACTIONS(4392), 1, anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, - anon_sym_EQ, - ACTIONS(4216), 1, + ACTIONS(4436), 1, anon_sym_DOT_DOT, - ACTIONS(4378), 1, - anon_sym_SEMI, - ACTIONS(4380), 1, - anon_sym_else, - ACTIONS(4120), 2, + ACTIONS(4380), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4134), 2, + ACTIONS(4394), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + ACTIONS(4398), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, + ACTIONS(4438), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1741), 2, + STATE(1744), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(4382), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4138), 4, + ACTIONS(4396), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4150), 10, + ACTIONS(4190), 12, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154671,61 +156158,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43772] = 22, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [43787] = 22, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(4400), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(4406), 1, anon_sym_QMARK, - ACTIONS(3856), 1, - anon_sym_DOT, - ACTIONS(3878), 1, - anon_sym_as, - ACTIONS(4124), 1, + ACTIONS(4408), 1, anon_sym_CARET, - ACTIONS(4126), 1, + ACTIONS(4410), 1, anon_sym_AMP, - ACTIONS(4128), 1, + ACTIONS(4412), 1, anon_sym_PIPE, - ACTIONS(4130), 1, + ACTIONS(4414), 1, anon_sym_AMP_AMP, - ACTIONS(4132), 1, + ACTIONS(4416), 1, anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, + ACTIONS(4422), 1, anon_sym_EQ, - ACTIONS(4216), 1, + ACTIONS(4428), 1, + anon_sym_DOT, + ACTIONS(4430), 1, anon_sym_DOT_DOT, - ACTIONS(4120), 2, + ACTIONS(4434), 1, + anon_sym_as, + ACTIONS(3860), 2, + anon_sym_LPAREN, + anon_sym_EQ_GT, + ACTIONS(4402), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4134), 2, + ACTIONS(4418), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + ACTIONS(4426), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, + ACTIONS(4432), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4382), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1742), 2, + STATE(1745), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(4404), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4138), 4, + ACTIONS(4424), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4150), 10, + ACTIONS(4420), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154736,56 +156223,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43859] = 19, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [43874] = 22, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4354), 1, + ACTIONS(4400), 1, anon_sym_LBRACK, - ACTIONS(4360), 1, + ACTIONS(4406), 1, anon_sym_QMARK, - ACTIONS(4364), 1, - anon_sym_DOT, - ACTIONS(4366), 1, - anon_sym_as, - ACTIONS(4384), 1, + ACTIONS(4408), 1, anon_sym_CARET, - ACTIONS(4386), 1, + ACTIONS(4410), 1, anon_sym_AMP, - ACTIONS(4388), 1, + ACTIONS(4412), 1, anon_sym_PIPE, - ACTIONS(4390), 1, + ACTIONS(4414), 1, anon_sym_AMP_AMP, - ACTIONS(4392), 1, + ACTIONS(4416), 1, anon_sym_PIPE_PIPE, - ACTIONS(399), 2, + ACTIONS(4422), 1, anon_sym_EQ, + ACTIONS(4428), 1, + anon_sym_DOT, + ACTIONS(4430), 1, anon_sym_DOT_DOT, - ACTIONS(4356), 2, + ACTIONS(4434), 1, + anon_sym_as, + ACTIONS(4052), 2, + anon_sym_LPAREN, + anon_sym_EQ_GT, + ACTIONS(4402), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4362), 2, + ACTIONS(4418), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4396), 2, + ACTIONS(4426), 2, anon_sym_GT, anon_sym_LT, - STATE(1743), 2, + ACTIONS(4432), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1746), 2, sym_line_comment, sym_block_comment, - ACTIONS(4358), 3, + ACTIONS(4404), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4394), 4, + ACTIONS(4424), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(397), 14, - anon_sym_LPAREN, - anon_sym_EQ_GT, + ACTIONS(4420), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154796,17 +156288,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [43940] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [43961] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1744), 2, + STATE(1747), 2, sym_line_comment, sym_block_comment, - ACTIONS(3868), 15, + ACTIONS(3960), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -154822,7 +156312,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3866), 23, + ACTIONS(3958), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -154846,15 +156336,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [43993] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [44014] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1745), 2, + STATE(1748), 2, sym_line_comment, sym_block_comment, - ACTIONS(3477), 15, + ACTIONS(3866), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -154870,7 +156360,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3475), 23, + ACTIONS(3864), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -154894,60 +156384,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [44046] = 21, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [44067] = 22, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(347), 1, - anon_sym_EQ, - ACTIONS(4354), 1, + ACTIONS(3902), 1, anon_sym_LBRACK, - ACTIONS(4360), 1, + ACTIONS(3906), 1, anon_sym_QMARK, - ACTIONS(4364), 1, + ACTIONS(3908), 1, anon_sym_DOT, - ACTIONS(4366), 1, + ACTIONS(4022), 1, anon_sym_as, - ACTIONS(4384), 1, + ACTIONS(4268), 1, anon_sym_CARET, - ACTIONS(4386), 1, + ACTIONS(4270), 1, anon_sym_AMP, - ACTIONS(4388), 1, + ACTIONS(4272), 1, anon_sym_PIPE, - ACTIONS(4390), 1, - anon_sym_AMP_AMP, - ACTIONS(4392), 1, + ACTIONS(4276), 1, anon_sym_PIPE_PIPE, - ACTIONS(4398), 1, + ACTIONS(4282), 1, + anon_sym_EQ, + ACTIONS(4288), 1, anon_sym_DOT_DOT, - ACTIONS(4356), 2, + ACTIONS(4442), 1, + anon_sym_AMP_AMP, + ACTIONS(4264), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4362), 2, + ACTIONS(4278), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4396), 2, + ACTIONS(4286), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4400), 2, + ACTIONS(4290), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1746), 2, + ACTIONS(4440), 2, + anon_sym_LBRACE, + anon_sym_SQUOTE, + STATE(1749), 2, sym_line_comment, sym_block_comment, - ACTIONS(4358), 3, + ACTIONS(4266), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4394), 4, + ACTIONS(4284), 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(4280), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154958,108 +156449,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44131] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [44154] = 21, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1747), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3976), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3974), 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, - [44184] = 21, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4148), 1, - anon_sym_EQ, - ACTIONS(4354), 1, + ACTIONS(3902), 1, anon_sym_LBRACK, - ACTIONS(4360), 1, + ACTIONS(3906), 1, anon_sym_QMARK, - ACTIONS(4364), 1, + ACTIONS(3908), 1, anon_sym_DOT, - ACTIONS(4366), 1, + ACTIONS(4022), 1, anon_sym_as, - ACTIONS(4384), 1, + ACTIONS(4268), 1, anon_sym_CARET, - ACTIONS(4386), 1, + ACTIONS(4270), 1, anon_sym_AMP, - ACTIONS(4388), 1, + ACTIONS(4272), 1, anon_sym_PIPE, - ACTIONS(4390), 1, - anon_sym_AMP_AMP, - ACTIONS(4392), 1, + ACTIONS(4276), 1, anon_sym_PIPE_PIPE, - ACTIONS(4398), 1, + ACTIONS(4282), 1, + anon_sym_EQ, + ACTIONS(4288), 1, anon_sym_DOT_DOT, - ACTIONS(4356), 2, + ACTIONS(4264), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4362), 2, + ACTIONS(4278), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4396), 2, + ACTIONS(4286), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4400), 2, + ACTIONS(4290), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1748), 2, + STATE(1750), 2, sym_line_comment, sym_block_comment, - ACTIONS(4358), 3, + ACTIONS(4266), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4394), 4, + ACTIONS(4444), 3, + anon_sym_LBRACE, + anon_sym_AMP_AMP, + anon_sym_SQUOTE, + ACTIONS(4284), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4146), 12, - anon_sym_LPAREN, - anon_sym_EQ_GT, + ACTIONS(4280), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155070,125 +156513,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44269] = 21, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [44239] = 12, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4136), 1, - anon_sym_EQ, - ACTIONS(4354), 1, + ACTIONS(3902), 1, anon_sym_LBRACK, - ACTIONS(4360), 1, + ACTIONS(3906), 1, anon_sym_QMARK, - ACTIONS(4364), 1, + ACTIONS(3908), 1, anon_sym_DOT, - ACTIONS(4366), 1, + ACTIONS(4022), 1, anon_sym_as, - ACTIONS(4384), 1, - anon_sym_CARET, - ACTIONS(4386), 1, - anon_sym_AMP, - ACTIONS(4388), 1, - anon_sym_PIPE, - ACTIONS(4390), 1, - anon_sym_AMP_AMP, - ACTIONS(4392), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4398), 1, - anon_sym_DOT_DOT, - ACTIONS(4356), 2, + ACTIONS(4380), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4362), 2, + ACTIONS(4394), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4396), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4400), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1749), 2, + STATE(1751), 2, sym_line_comment, sym_block_comment, - ACTIONS(4358), 3, + ACTIONS(4382), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4394), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4118), 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, - [44354] = 22, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3850), 1, - anon_sym_LBRACK, - ACTIONS(3854), 1, - anon_sym_QMARK, - ACTIONS(3856), 1, - anon_sym_DOT, - ACTIONS(3878), 1, - anon_sym_as, - ACTIONS(4406), 1, + ACTIONS(4020), 7, anon_sym_CARET, - ACTIONS(4408), 1, anon_sym_AMP, - ACTIONS(4410), 1, anon_sym_PIPE, - ACTIONS(4412), 1, - anon_sym_AMP_AMP, - ACTIONS(4414), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4420), 1, anon_sym_EQ, - ACTIONS(4426), 1, + anon_sym_GT, + anon_sym_LT, anon_sym_DOT_DOT, - ACTIONS(3936), 2, + ACTIONS(4018), 20, anon_sym_LPAREN, anon_sym_LBRACE, - ACTIONS(4402), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4416), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4424), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4428), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1750), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4404), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4422), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4418), 10, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155199,15 +156562,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44441] = 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, + [44306] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1751), 2, + STATE(1752), 2, sym_line_comment, sym_block_comment, - ACTIONS(3934), 15, + ACTIONS(1604), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -155223,7 +156592,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3932), 23, + ACTIONS(1606), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -155247,15 +156616,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [44494] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [44359] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1752), 2, + STATE(1753), 2, sym_line_comment, sym_block_comment, - ACTIONS(4068), 15, + ACTIONS(3854), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -155271,7 +156640,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4066), 23, + ACTIONS(3852), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -155295,15 +156664,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [44547] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [44412] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1753), 2, + STATE(1754), 2, sym_line_comment, sym_block_comment, - ACTIONS(4100), 15, + ACTIONS(1046), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -155319,7 +156688,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4098), 23, + ACTIONS(1048), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -155343,15 +156712,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [44600] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [44465] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1754), 2, + STATE(1755), 2, sym_line_comment, sym_block_comment, - ACTIONS(4032), 15, + ACTIONS(1176), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -155367,7 +156736,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4030), 23, + ACTIONS(1178), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -155391,15 +156760,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [44653] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [44518] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1755), 2, + STATE(1756), 2, sym_line_comment, sym_block_comment, - ACTIONS(3998), 15, + ACTIONS(1484), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -155415,7 +156784,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3996), 23, + ACTIONS(1482), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -155439,15 +156808,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [44706] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [44571] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1756), 2, + STATE(1757), 2, sym_line_comment, sym_block_comment, - ACTIONS(4006), 15, + ACTIONS(3830), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -155463,7 +156832,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4004), 23, + ACTIONS(3828), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -155487,35 +156856,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [44759] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [44624] = 21, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1757), 2, + ACTIONS(3902), 1, + anon_sym_LBRACK, + ACTIONS(3906), 1, + anon_sym_QMARK, + ACTIONS(3908), 1, + anon_sym_DOT, + ACTIONS(4022), 1, + anon_sym_as, + ACTIONS(4202), 1, + anon_sym_EQ, + ACTIONS(4384), 1, + anon_sym_CARET, + ACTIONS(4386), 1, + anon_sym_AMP, + ACTIONS(4388), 1, + anon_sym_PIPE, + ACTIONS(4390), 1, + anon_sym_AMP_AMP, + ACTIONS(4392), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4436), 1, + anon_sym_DOT_DOT, + ACTIONS(4380), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4394), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4398), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4438), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1758), 2, sym_line_comment, sym_block_comment, - ACTIONS(3388), 15, - anon_sym_PLUS, + ACTIONS(4382), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(4396), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4200), 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, + [44709] = 15, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(3902), 1, + anon_sym_LBRACK, + ACTIONS(3906), 1, + anon_sym_QMARK, + ACTIONS(3908), 1, + anon_sym_DOT, + ACTIONS(4022), 1, + anon_sym_as, + ACTIONS(4384), 1, anon_sym_CARET, + ACTIONS(4386), 1, anon_sym_AMP, + ACTIONS(4388), 1, anon_sym_PIPE, + ACTIONS(4380), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4394), 2, anon_sym_LT_LT, anon_sym_GT_GT, + STATE(1759), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4382), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4020), 4, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3390), 23, + ACTIONS(4018), 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, @@ -155534,38 +156978,122 @@ 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, - [44812] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [44782] = 19, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1758), 2, + ACTIONS(3902), 1, + anon_sym_LBRACK, + ACTIONS(3906), 1, + anon_sym_QMARK, + ACTIONS(3908), 1, + anon_sym_DOT, + ACTIONS(4022), 1, + anon_sym_as, + ACTIONS(4384), 1, + anon_sym_CARET, + ACTIONS(4386), 1, + anon_sym_AMP, + ACTIONS(4388), 1, + anon_sym_PIPE, + ACTIONS(4390), 1, + anon_sym_AMP_AMP, + ACTIONS(4392), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4206), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(4380), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4394), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4398), 2, + anon_sym_GT, + anon_sym_LT, + STATE(1760), 2, sym_line_comment, sym_block_comment, - ACTIONS(3938), 15, - anon_sym_PLUS, + ACTIONS(4382), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(4396), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4204), 14, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [44863] = 21, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(4212), 1, + anon_sym_EQ, + ACTIONS(4400), 1, + anon_sym_LBRACK, + ACTIONS(4406), 1, + anon_sym_QMARK, + ACTIONS(4408), 1, anon_sym_CARET, + ACTIONS(4410), 1, anon_sym_AMP, + ACTIONS(4412), 1, anon_sym_PIPE, + ACTIONS(4414), 1, + anon_sym_AMP_AMP, + ACTIONS(4416), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4428), 1, + anon_sym_DOT, + ACTIONS(4430), 1, + anon_sym_DOT_DOT, + ACTIONS(4434), 1, + anon_sym_as, + ACTIONS(4402), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4418), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4426), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3936), 23, + ACTIONS(4432), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1761), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4404), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4424), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4210), 12, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155576,22 +157104,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, + [44948] = 21, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(4224), 1, + anon_sym_EQ, + ACTIONS(4400), 1, + anon_sym_LBRACK, + ACTIONS(4406), 1, + anon_sym_QMARK, + ACTIONS(4408), 1, + anon_sym_CARET, + ACTIONS(4410), 1, + anon_sym_AMP, + ACTIONS(4412), 1, + anon_sym_PIPE, + ACTIONS(4414), 1, + anon_sym_AMP_AMP, + ACTIONS(4416), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4428), 1, + anon_sym_DOT, + ACTIONS(4430), 1, + anon_sym_DOT_DOT, + ACTIONS(4434), 1, + anon_sym_as, + ACTIONS(4402), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4418), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4426), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4432), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1762), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4404), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4424), 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, - [44865] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4222), 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, + [45033] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1759), 2, + STATE(1763), 2, sym_line_comment, sym_block_comment, - ACTIONS(3515), 15, + ACTIONS(1470), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -155607,7 +157192,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3513), 23, + ACTIONS(1468), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -155631,15 +157216,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [44918] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [45086] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1760), 2, + STATE(1764), 2, sym_line_comment, sym_block_comment, - ACTIONS(1459), 15, + ACTIONS(4078), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -155655,7 +157240,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1457), 23, + ACTIONS(4076), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -155679,15 +157264,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [44971] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [45139] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1761), 2, + STATE(1765), 2, sym_line_comment, sym_block_comment, - ACTIONS(3942), 15, + ACTIONS(1512), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -155703,7 +157288,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3940), 23, + ACTIONS(1510), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -155727,15 +157312,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [45024] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [45192] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1762), 2, + STATE(1766), 2, sym_line_comment, sym_block_comment, - ACTIONS(3519), 15, + ACTIONS(4082), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -155751,7 +157336,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3517), 23, + ACTIONS(4080), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -155775,15 +157360,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [45077] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [45245] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1763), 2, + STATE(1767), 2, sym_line_comment, sym_block_comment, - ACTIONS(4072), 15, + ACTIONS(3936), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -155799,7 +157384,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4070), 23, + ACTIONS(3934), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -155823,81 +157408,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [45130] = 17, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [45298] = 5, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4314), 1, - sym_identifier, - ACTIONS(4316), 1, - anon_sym_LBRACE, - ACTIONS(4320), 1, - anon_sym_STAR, - ACTIONS(4326), 1, - anon_sym_COLON_COLON, - ACTIONS(4330), 1, - sym_metavariable, - ACTIONS(4430), 1, - anon_sym_RBRACE, - STATE(2562), 1, - sym_scoped_identifier, - STATE(3468), 1, - sym__use_clause, - STATE(3653), 1, - sym_generic_type_with_turbofish, - STATE(3666), 1, - sym_bracketed_type, - STATE(1764), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4328), 3, - sym_self, - sym_super, - sym_crate, - STATE(3067), 4, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(4322), 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, - [45207] = 8, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4354), 1, - anon_sym_LBRACK, - ACTIONS(4360), 1, - anon_sym_QMARK, - ACTIONS(4364), 1, - anon_sym_DOT, - STATE(1765), 2, + STATE(1768), 2, sym_line_comment, sym_block_comment, - ACTIONS(3994), 14, + ACTIONS(4050), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -155911,10 +157430,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(3992), 21, + 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, @@ -155934,61 +157456,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [45266] = 22, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [45351] = 22, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(3902), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3906), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3908), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(4022), 1, anon_sym_as, - ACTIONS(4406), 1, - anon_sym_CARET, - ACTIONS(4408), 1, + ACTIONS(4170), 1, anon_sym_AMP, - ACTIONS(4410), 1, + ACTIONS(4180), 1, + anon_sym_CARET, + ACTIONS(4182), 1, anon_sym_PIPE, - ACTIONS(4412), 1, + ACTIONS(4188), 1, anon_sym_AMP_AMP, - ACTIONS(4414), 1, + ACTIONS(4192), 1, anon_sym_PIPE_PIPE, - ACTIONS(4420), 1, + ACTIONS(4216), 1, anon_sym_EQ, - ACTIONS(4426), 1, + ACTIONS(4258), 1, anon_sym_DOT_DOT, - ACTIONS(3912), 2, - anon_sym_LPAREN, - anon_sym_LBRACE, - ACTIONS(4402), 2, + ACTIONS(4168), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4416), 2, + ACTIONS(4172), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4424), 2, + ACTIONS(4186), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4428), 2, + ACTIONS(4260), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1766), 2, + ACTIONS(4446), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1769), 2, sym_line_comment, sym_block_comment, - ACTIONS(4404), 3, + ACTIONS(4166), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4422), 4, + ACTIONS(4184), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4418), 10, + ACTIONS(4214), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155999,60 +157521,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45353] = 21, - ACTIONS(103), 1, + [45438] = 5, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + STATE(1770), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4086), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4084), 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, + [45491] = 23, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(3902), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3906), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3908), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(4022), 1, anon_sym_as, - ACTIONS(4188), 1, - anon_sym_EQ, - ACTIONS(4406), 1, - anon_sym_CARET, - ACTIONS(4408), 1, + ACTIONS(4170), 1, anon_sym_AMP, - ACTIONS(4410), 1, + ACTIONS(4180), 1, + anon_sym_CARET, + ACTIONS(4182), 1, anon_sym_PIPE, - ACTIONS(4412), 1, + ACTIONS(4188), 1, anon_sym_AMP_AMP, - ACTIONS(4414), 1, + ACTIONS(4192), 1, anon_sym_PIPE_PIPE, - ACTIONS(4426), 1, + ACTIONS(4216), 1, + anon_sym_EQ, + ACTIONS(4258), 1, anon_sym_DOT_DOT, - ACTIONS(4402), 2, + ACTIONS(4448), 1, + anon_sym_RPAREN, + ACTIONS(4450), 1, + anon_sym_COMMA, + ACTIONS(4168), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4416), 2, + ACTIONS(4172), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4424), 2, + ACTIONS(4186), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4428), 2, + ACTIONS(4260), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1767), 2, + STATE(1771), 2, sym_line_comment, sym_block_comment, - ACTIONS(4404), 3, + ACTIONS(4166), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4422), 4, + ACTIONS(4184), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4186), 12, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(4214), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156063,61 +157635,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45438] = 22, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [45580] = 23, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(3902), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3906), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3908), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(4022), 1, anon_sym_as, - ACTIONS(4124), 1, - anon_sym_CARET, - ACTIONS(4126), 1, + ACTIONS(4170), 1, anon_sym_AMP, - ACTIONS(4128), 1, + ACTIONS(4180), 1, + anon_sym_CARET, + ACTIONS(4182), 1, anon_sym_PIPE, - ACTIONS(4130), 1, + ACTIONS(4188), 1, anon_sym_AMP_AMP, - ACTIONS(4132), 1, + ACTIONS(4192), 1, anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, - anon_sym_EQ, ACTIONS(4216), 1, + anon_sym_EQ, + ACTIONS(4258), 1, anon_sym_DOT_DOT, - ACTIONS(4120), 2, + ACTIONS(4452), 1, + anon_sym_SEMI, + ACTIONS(4454), 1, + anon_sym_else, + ACTIONS(4168), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4134), 2, + ACTIONS(4172), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + ACTIONS(4186), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, + ACTIONS(4260), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4432), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1768), 2, + STATE(1772), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(4166), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4138), 4, + ACTIONS(4184), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4150), 10, + ACTIONS(4214), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156128,61 +157701,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45525] = 22, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [45669] = 23, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(298), 1, + anon_sym_RBRACE, + ACTIONS(3902), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3906), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3908), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(4022), 1, anon_sym_as, - ACTIONS(4124), 1, - anon_sym_CARET, - ACTIONS(4126), 1, + ACTIONS(4170), 1, anon_sym_AMP, - ACTIONS(4128), 1, + ACTIONS(4180), 1, + anon_sym_CARET, + ACTIONS(4182), 1, anon_sym_PIPE, - ACTIONS(4130), 1, + ACTIONS(4188), 1, anon_sym_AMP_AMP, - ACTIONS(4132), 1, + ACTIONS(4192), 1, anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, - anon_sym_EQ, ACTIONS(4216), 1, + anon_sym_EQ, + ACTIONS(4258), 1, anon_sym_DOT_DOT, - ACTIONS(4120), 2, + ACTIONS(4456), 1, + anon_sym_SEMI, + ACTIONS(4168), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4134), 2, + ACTIONS(4172), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + ACTIONS(4186), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, + ACTIONS(4260), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4434), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1769), 2, + STATE(1773), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(4166), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4138), 4, + ACTIONS(4184), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4150), 10, + ACTIONS(4214), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156193,29 +157767,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45612] = 10, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [45758] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, - anon_sym_LBRACK, - ACTIONS(3854), 1, - anon_sym_QMARK, - ACTIONS(3856), 1, - anon_sym_DOT, - ACTIONS(3878), 1, - anon_sym_as, - STATE(1770), 2, + STATE(1774), 2, sym_line_comment, sym_block_comment, - ACTIONS(4404), 3, + ACTIONS(3976), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3876), 11, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, @@ -156224,10 +157789,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(3874), 20, + ACTIONS(3974), 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, @@ -156246,46 +157814,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [45675] = 13, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_as, + [45811] = 23, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(3902), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3906), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3908), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(4022), 1, anon_sym_as, - ACTIONS(4408), 1, + ACTIONS(4170), 1, anon_sym_AMP, - ACTIONS(4402), 2, + ACTIONS(4180), 1, + anon_sym_CARET, + ACTIONS(4182), 1, + anon_sym_PIPE, + ACTIONS(4188), 1, + anon_sym_AMP_AMP, + ACTIONS(4192), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4216), 1, + anon_sym_EQ, + ACTIONS(4258), 1, + anon_sym_DOT_DOT, + ACTIONS(4458), 1, + anon_sym_RPAREN, + ACTIONS(4460), 1, + anon_sym_COMMA, + ACTIONS(4168), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4416), 2, + ACTIONS(4172), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1771), 2, + ACTIONS(4186), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4260), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1775), 2, sym_line_comment, sym_block_comment, - ACTIONS(4404), 3, + ACTIONS(4166), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3876), 6, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3874), 20, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4184), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4214), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156296,49 +157881,35 @@ 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, - [45744] = 12, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [45900] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, - anon_sym_LBRACK, - ACTIONS(3854), 1, - anon_sym_QMARK, - ACTIONS(3856), 1, - anon_sym_DOT, - ACTIONS(3878), 1, - anon_sym_as, - ACTIONS(4402), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4416), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - STATE(1772), 2, + STATE(1776), 2, sym_line_comment, sym_block_comment, - ACTIONS(4404), 3, + ACTIONS(1516), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3876), 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(3874), 20, + ACTIONS(1514), 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, @@ -156357,45 +157928,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [45811] = 14, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_as, + [45953] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, - anon_sym_LBRACK, - ACTIONS(3854), 1, - anon_sym_QMARK, - ACTIONS(3856), 1, - anon_sym_DOT, - ACTIONS(3878), 1, - anon_sym_as, - ACTIONS(4406), 1, - anon_sym_CARET, - ACTIONS(4408), 1, - anon_sym_AMP, - ACTIONS(4402), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4416), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - STATE(1773), 2, + STATE(1777), 2, sym_line_comment, sym_block_comment, - ACTIONS(4404), 3, + ACTIONS(1460), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3876), 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(3874), 20, + ACTIONS(1458), 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, @@ -156414,54 +157976,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [45882] = 17, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_as, + [46006] = 23, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(3902), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3906), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3908), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(4022), 1, anon_sym_as, - ACTIONS(4406), 1, + ACTIONS(4384), 1, anon_sym_CARET, - ACTIONS(4408), 1, + ACTIONS(4386), 1, anon_sym_AMP, - ACTIONS(4410), 1, + ACTIONS(4388), 1, anon_sym_PIPE, - ACTIONS(3876), 2, + ACTIONS(4390), 1, + anon_sym_AMP_AMP, + ACTIONS(4392), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4462), 1, + anon_sym_LBRACE, + ACTIONS(4466), 1, anon_sym_EQ, + ACTIONS(4468), 1, anon_sym_DOT_DOT, - ACTIONS(4402), 2, + STATE(1476), 1, + sym_match_block, + ACTIONS(4380), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4416), 2, + ACTIONS(4394), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4424), 2, + ACTIONS(4398), 2, anon_sym_GT, anon_sym_LT, - STATE(1774), 2, + ACTIONS(4470), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1778), 2, sym_line_comment, sym_block_comment, - ACTIONS(4404), 3, + ACTIONS(4382), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4422), 4, + ACTIONS(4396), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3874), 16, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4464), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156472,57 +158043,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, - [45959] = 18, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [46095] = 23, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(3902), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3906), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3908), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(4022), 1, anon_sym_as, - ACTIONS(4406), 1, - anon_sym_CARET, - ACTIONS(4408), 1, + ACTIONS(4170), 1, anon_sym_AMP, - ACTIONS(4410), 1, + ACTIONS(4180), 1, + anon_sym_CARET, + ACTIONS(4182), 1, anon_sym_PIPE, - ACTIONS(4412), 1, + ACTIONS(4188), 1, anon_sym_AMP_AMP, - ACTIONS(3876), 2, + ACTIONS(4192), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4216), 1, anon_sym_EQ, + ACTIONS(4258), 1, anon_sym_DOT_DOT, - ACTIONS(4402), 2, + ACTIONS(4456), 1, + anon_sym_SEMI, + ACTIONS(4472), 1, + anon_sym_RBRACE, + ACTIONS(4168), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4416), 2, + ACTIONS(4172), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4424), 2, + ACTIONS(4186), 2, anon_sym_GT, anon_sym_LT, - STATE(1775), 2, + ACTIONS(4260), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1779), 2, sym_line_comment, sym_block_comment, - ACTIONS(4404), 3, + ACTIONS(4166), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4422), 4, + ACTIONS(4184), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3874), 15, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PIPE_PIPE, + ACTIONS(4214), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156533,32 +158109,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [46038] = 11, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [46184] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, - anon_sym_LBRACK, - ACTIONS(3854), 1, - anon_sym_QMARK, - ACTIONS(3856), 1, - anon_sym_DOT, - ACTIONS(3878), 1, - anon_sym_as, - ACTIONS(4402), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1776), 2, + STATE(1780), 2, sym_line_comment, sym_block_comment, - ACTIONS(4404), 3, + ACTIONS(3870), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3876), 9, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, @@ -156567,10 +158131,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(3874), 20, + ACTIONS(3868), 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, @@ -156589,60 +158156,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [46103] = 21, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_as, + [46237] = 23, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(127), 1, + anon_sym_RBRACE, + ACTIONS(3902), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3906), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3908), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(4022), 1, anon_sym_as, - ACTIONS(4192), 1, - anon_sym_EQ, - ACTIONS(4406), 1, - anon_sym_CARET, - ACTIONS(4408), 1, + ACTIONS(4170), 1, anon_sym_AMP, - ACTIONS(4410), 1, + ACTIONS(4180), 1, + anon_sym_CARET, + ACTIONS(4182), 1, anon_sym_PIPE, - ACTIONS(4412), 1, + ACTIONS(4188), 1, anon_sym_AMP_AMP, - ACTIONS(4414), 1, + ACTIONS(4192), 1, anon_sym_PIPE_PIPE, - ACTIONS(4426), 1, + ACTIONS(4216), 1, + anon_sym_EQ, + ACTIONS(4258), 1, anon_sym_DOT_DOT, - ACTIONS(4402), 2, + ACTIONS(4456), 1, + anon_sym_SEMI, + ACTIONS(4168), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4416), 2, + ACTIONS(4172), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4424), 2, + ACTIONS(4186), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4428), 2, + ACTIONS(4260), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1777), 2, + STATE(1781), 2, sym_line_comment, sym_block_comment, - ACTIONS(4404), 3, + ACTIONS(4166), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4422), 4, + ACTIONS(4184), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4190), 12, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(4214), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156653,60 +158223,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46188] = 21, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [46326] = 23, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(300), 1, + anon_sym_RBRACE, + ACTIONS(3902), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3906), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3908), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(4022), 1, anon_sym_as, - ACTIONS(4196), 1, - anon_sym_EQ, - ACTIONS(4406), 1, - anon_sym_CARET, - ACTIONS(4408), 1, + ACTIONS(4170), 1, anon_sym_AMP, - ACTIONS(4410), 1, + ACTIONS(4180), 1, + anon_sym_CARET, + ACTIONS(4182), 1, anon_sym_PIPE, - ACTIONS(4412), 1, + ACTIONS(4188), 1, anon_sym_AMP_AMP, - ACTIONS(4414), 1, + ACTIONS(4192), 1, anon_sym_PIPE_PIPE, - ACTIONS(4426), 1, + ACTIONS(4216), 1, + anon_sym_EQ, + ACTIONS(4258), 1, anon_sym_DOT_DOT, - ACTIONS(4402), 2, + ACTIONS(4456), 1, + anon_sym_SEMI, + ACTIONS(4168), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4416), 2, + ACTIONS(4172), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4424), 2, + ACTIONS(4186), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4428), 2, + ACTIONS(4260), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1778), 2, + STATE(1782), 2, sym_line_comment, sym_block_comment, - ACTIONS(4404), 3, + ACTIONS(4166), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4422), 4, + ACTIONS(4184), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4194), 12, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(4214), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156717,44 +158289,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46273] = 15, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [46415] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, - anon_sym_LBRACK, - ACTIONS(3854), 1, - anon_sym_QMARK, - ACTIONS(3856), 1, - anon_sym_DOT, - ACTIONS(3878), 1, - anon_sym_as, - ACTIONS(4406), 1, + STATE(1783), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3838), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4408), 1, anon_sym_AMP, - ACTIONS(4410), 1, anon_sym_PIPE, - ACTIONS(4402), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4416), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1779), 2, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3836), 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, + [46468] = 10, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(3902), 1, + anon_sym_LBRACK, + ACTIONS(3906), 1, + anon_sym_QMARK, + ACTIONS(3908), 1, + anon_sym_DOT, + ACTIONS(4022), 1, + anon_sym_as, + STATE(1784), 2, sym_line_comment, sym_block_comment, - ACTIONS(4404), 3, + ACTIONS(4382), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3876), 4, + ACTIONS(4020), 11, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT, anon_sym_LT, anon_sym_DOT_DOT, - ACTIONS(3874), 20, + ACTIONS(4018), 20, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_AMP_AMP, @@ -156775,56 +158390,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [46346] = 19, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [46531] = 23, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(1234), 1, + anon_sym_RPAREN, + ACTIONS(3902), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3906), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3908), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(4022), 1, anon_sym_as, - ACTIONS(4406), 1, - anon_sym_CARET, - ACTIONS(4408), 1, + ACTIONS(4170), 1, anon_sym_AMP, - ACTIONS(4410), 1, + ACTIONS(4180), 1, + anon_sym_CARET, + ACTIONS(4182), 1, anon_sym_PIPE, - ACTIONS(4412), 1, + ACTIONS(4188), 1, anon_sym_AMP_AMP, - ACTIONS(4414), 1, + ACTIONS(4192), 1, anon_sym_PIPE_PIPE, - ACTIONS(4200), 2, + ACTIONS(4216), 1, anon_sym_EQ, + ACTIONS(4258), 1, anon_sym_DOT_DOT, - ACTIONS(4402), 2, + ACTIONS(4474), 1, + anon_sym_COMMA, + ACTIONS(4168), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4416), 2, + ACTIONS(4172), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4424), 2, + ACTIONS(4186), 2, anon_sym_GT, anon_sym_LT, - STATE(1780), 2, + ACTIONS(4260), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1785), 2, sym_line_comment, sym_block_comment, - ACTIONS(4404), 3, + ACTIONS(4166), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4422), 4, + ACTIONS(4184), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4198), 14, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(4214), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156835,62 +158456,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, - [46427] = 21, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [46620] = 23, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(3902), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3906), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3908), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(4022), 1, anon_sym_as, - ACTIONS(4246), 1, - anon_sym_CARET, - ACTIONS(4248), 1, + ACTIONS(4170), 1, anon_sym_AMP, - ACTIONS(4250), 1, + ACTIONS(4180), 1, + anon_sym_CARET, + ACTIONS(4182), 1, anon_sym_PIPE, - ACTIONS(4254), 1, + ACTIONS(4188), 1, + anon_sym_AMP_AMP, + ACTIONS(4192), 1, anon_sym_PIPE_PIPE, - ACTIONS(4260), 1, + ACTIONS(4216), 1, anon_sym_EQ, - ACTIONS(4266), 1, + ACTIONS(4258), 1, anon_sym_DOT_DOT, - ACTIONS(4242), 2, + ACTIONS(4476), 1, + anon_sym_SEMI, + ACTIONS(4478), 1, + anon_sym_else, + ACTIONS(4168), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4256), 2, + ACTIONS(4172), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4264), 2, + ACTIONS(4186), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4268), 2, + ACTIONS(4260), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1781), 2, + STATE(1786), 2, sym_line_comment, sym_block_comment, - ACTIONS(4244), 3, + ACTIONS(4166), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4436), 3, - anon_sym_LBRACE, - anon_sym_AMP_AMP, - anon_sym_SQUOTE, - ACTIONS(4262), 4, + ACTIONS(4184), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4258), 10, + ACTIONS(4214), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156901,15 +158522,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46512] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [46709] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1782), 2, + STATE(1787), 2, sym_line_comment, sym_block_comment, - ACTIONS(3804), 15, + ACTIONS(1480), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -156925,7 +158546,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3802), 23, + ACTIONS(1478), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -156949,35 +158570,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [46565] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [46762] = 23, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1783), 2, + ACTIONS(3902), 1, + anon_sym_LBRACK, + ACTIONS(3906), 1, + anon_sym_QMARK, + ACTIONS(3908), 1, + anon_sym_DOT, + ACTIONS(4022), 1, + anon_sym_as, + ACTIONS(4170), 1, + anon_sym_AMP, + ACTIONS(4180), 1, + anon_sym_CARET, + ACTIONS(4182), 1, + anon_sym_PIPE, + ACTIONS(4188), 1, + anon_sym_AMP_AMP, + ACTIONS(4192), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4216), 1, + anon_sym_EQ, + ACTIONS(4258), 1, + anon_sym_DOT_DOT, + ACTIONS(4480), 1, + anon_sym_RBRACE, + ACTIONS(4482), 1, + anon_sym_COMMA, + ACTIONS(4168), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4172), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4186), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4260), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1788), 2, sym_line_comment, sym_block_comment, - ACTIONS(3808), 15, - anon_sym_PLUS, + ACTIONS(4166), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(4184), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4214), 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, + [46851] = 14, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(3902), 1, + anon_sym_LBRACK, + ACTIONS(3906), 1, + anon_sym_QMARK, + ACTIONS(3908), 1, + anon_sym_DOT, + ACTIONS(4022), 1, + anon_sym_as, + ACTIONS(4384), 1, anon_sym_CARET, + ACTIONS(4386), 1, anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4380), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4394), 2, anon_sym_LT_LT, anon_sym_GT_GT, + STATE(1789), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4382), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4020), 5, + anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3806), 23, + ACTIONS(4018), 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, @@ -156996,16 +158693,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, - [46618] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [46922] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1784), 2, + STATE(1790), 2, sym_line_comment, sym_block_comment, - ACTIONS(3914), 15, + ACTIONS(3950), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -157021,7 +158717,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3912), 23, + ACTIONS(3948), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -157045,37 +158741,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [46671] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [46975] = 23, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1785), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3824), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(3902), 1, + anon_sym_LBRACK, + ACTIONS(3906), 1, + anon_sym_QMARK, + ACTIONS(3908), 1, + anon_sym_DOT, + ACTIONS(4022), 1, + anon_sym_as, + ACTIONS(4170), 1, anon_sym_AMP, + ACTIONS(4180), 1, + anon_sym_CARET, + ACTIONS(4182), 1, anon_sym_PIPE, + ACTIONS(4188), 1, + anon_sym_AMP_AMP, + ACTIONS(4192), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4216), 1, + anon_sym_EQ, + ACTIONS(4258), 1, + anon_sym_DOT_DOT, + ACTIONS(4484), 1, + anon_sym_SEMI, + ACTIONS(4486), 1, + anon_sym_else, + ACTIONS(4168), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4172), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4186), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3822), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4260), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1791), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4166), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4184), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4214), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157086,22 +158807,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, - [46724] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [47064] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1786), 2, + STATE(1792), 2, sym_line_comment, sym_block_comment, - ACTIONS(3860), 15, + ACTIONS(3886), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -157117,7 +158831,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3858), 23, + ACTIONS(3884), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -157141,37 +158855,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [46777] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [47117] = 23, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1787), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1459), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(302), 1, + anon_sym_RBRACE, + ACTIONS(3902), 1, + anon_sym_LBRACK, + ACTIONS(3906), 1, + anon_sym_QMARK, + ACTIONS(3908), 1, + anon_sym_DOT, + ACTIONS(4022), 1, + anon_sym_as, + ACTIONS(4170), 1, anon_sym_AMP, + ACTIONS(4180), 1, + anon_sym_CARET, + ACTIONS(4182), 1, anon_sym_PIPE, + ACTIONS(4188), 1, + anon_sym_AMP_AMP, + ACTIONS(4192), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4216), 1, + anon_sym_EQ, + ACTIONS(4258), 1, + anon_sym_DOT_DOT, + ACTIONS(4456), 1, + anon_sym_SEMI, + ACTIONS(4168), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4172), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4186), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1457), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4260), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1793), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4166), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4184), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4214), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157182,68 +158921,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, - [46830] = 22, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [47206] = 23, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(1240), 1, + anon_sym_RPAREN, + ACTIONS(3902), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3906), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3908), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(4022), 1, anon_sym_as, - ACTIONS(4406), 1, - anon_sym_CARET, - ACTIONS(4408), 1, + ACTIONS(4170), 1, anon_sym_AMP, - ACTIONS(4410), 1, + ACTIONS(4180), 1, + anon_sym_CARET, + ACTIONS(4182), 1, anon_sym_PIPE, - ACTIONS(4412), 1, + ACTIONS(4188), 1, anon_sym_AMP_AMP, - ACTIONS(4414), 1, + ACTIONS(4192), 1, anon_sym_PIPE_PIPE, - ACTIONS(4420), 1, + ACTIONS(4216), 1, anon_sym_EQ, - ACTIONS(4426), 1, + ACTIONS(4258), 1, anon_sym_DOT_DOT, - ACTIONS(4058), 2, - anon_sym_LPAREN, - anon_sym_LBRACE, - ACTIONS(4402), 2, + ACTIONS(4474), 1, + anon_sym_COMMA, + ACTIONS(4168), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4416), 2, + ACTIONS(4172), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4424), 2, + ACTIONS(4186), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4428), 2, + ACTIONS(4260), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1788), 2, + STATE(1794), 2, sym_line_comment, sym_block_comment, - ACTIONS(4404), 3, + ACTIONS(4166), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4422), 4, + ACTIONS(4184), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4418), 10, + ACTIONS(4214), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157254,62 +158987,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46917] = 23, - ACTIONS(103), 1, + [47295] = 5, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + STATE(1795), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3890), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3888), 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, + [47348] = 23, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(1382), 1, + anon_sym_RPAREN, + ACTIONS(3902), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3906), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3908), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(4022), 1, anon_sym_as, - ACTIONS(4124), 1, - anon_sym_CARET, - ACTIONS(4126), 1, + ACTIONS(4170), 1, anon_sym_AMP, - ACTIONS(4128), 1, + ACTIONS(4180), 1, + anon_sym_CARET, + ACTIONS(4182), 1, anon_sym_PIPE, - ACTIONS(4130), 1, + ACTIONS(4188), 1, anon_sym_AMP_AMP, - ACTIONS(4132), 1, + ACTIONS(4192), 1, anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, - anon_sym_EQ, ACTIONS(4216), 1, + anon_sym_EQ, + ACTIONS(4258), 1, anon_sym_DOT_DOT, - ACTIONS(4438), 1, - anon_sym_RPAREN, - ACTIONS(4440), 1, + ACTIONS(4474), 1, anon_sym_COMMA, - ACTIONS(4120), 2, + ACTIONS(4168), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4134), 2, + ACTIONS(4172), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + ACTIONS(4186), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, + ACTIONS(4260), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1789), 2, + STATE(1796), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(4166), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4138), 4, + ACTIONS(4184), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4150), 10, + ACTIONS(4214), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157320,15 +159101,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47006] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [47437] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1790), 2, + STATE(1797), 2, sym_line_comment, sym_block_comment, - ACTIONS(4104), 15, + ACTIONS(3850), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -157344,7 +159125,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4102), 23, + ACTIONS(3848), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -157368,15 +159149,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [47059] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [47490] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1791), 2, + STATE(1798), 2, sym_line_comment, sym_block_comment, - ACTIONS(3882), 15, + ACTIONS(3846), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -157392,7 +159173,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3880), 23, + ACTIONS(3844), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -157416,37 +159197,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [47112] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [47543] = 23, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1792), 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(3902), 1, + anon_sym_LBRACK, + ACTIONS(3906), 1, + anon_sym_QMARK, + ACTIONS(3908), 1, + anon_sym_DOT, + ACTIONS(4022), 1, + anon_sym_as, + ACTIONS(4170), 1, anon_sym_AMP, + ACTIONS(4180), 1, + anon_sym_CARET, + ACTIONS(4182), 1, anon_sym_PIPE, + ACTIONS(4188), 1, + anon_sym_AMP_AMP, + ACTIONS(4192), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4216), 1, + anon_sym_EQ, + ACTIONS(4258), 1, + anon_sym_DOT_DOT, + ACTIONS(4474), 1, + anon_sym_COMMA, + ACTIONS(4488), 1, + anon_sym_RPAREN, + ACTIONS(4168), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4172), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4186), 2, anon_sym_GT, anon_sym_LT, - 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, + ACTIONS(4260), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1799), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4166), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4184), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4214), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157457,69 +159263,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, - [47165] = 23, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [47632] = 23, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(3902), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3906), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3908), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(4022), 1, anon_sym_as, - ACTIONS(4124), 1, - anon_sym_CARET, - ACTIONS(4126), 1, + ACTIONS(4170), 1, anon_sym_AMP, - ACTIONS(4128), 1, + ACTIONS(4180), 1, + anon_sym_CARET, + ACTIONS(4182), 1, anon_sym_PIPE, - ACTIONS(4130), 1, + ACTIONS(4188), 1, anon_sym_AMP_AMP, - ACTIONS(4132), 1, + ACTIONS(4192), 1, anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, - anon_sym_EQ, ACTIONS(4216), 1, + anon_sym_EQ, + ACTIONS(4258), 1, anon_sym_DOT_DOT, - ACTIONS(4442), 1, + ACTIONS(4490), 1, anon_sym_SEMI, - ACTIONS(4444), 1, + ACTIONS(4492), 1, anon_sym_else, - ACTIONS(4120), 2, + ACTIONS(4168), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4134), 2, + ACTIONS(4172), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + ACTIONS(4186), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, + ACTIONS(4260), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1793), 2, + STATE(1800), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(4166), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4138), 4, + ACTIONS(4184), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4150), 10, + ACTIONS(4214), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157530,37 +159329,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47254] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [47721] = 23, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1794), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3872), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(3902), 1, + anon_sym_LBRACK, + ACTIONS(3906), 1, + anon_sym_QMARK, + ACTIONS(3908), 1, + anon_sym_DOT, + ACTIONS(4022), 1, + anon_sym_as, + ACTIONS(4170), 1, anon_sym_AMP, + ACTIONS(4180), 1, + anon_sym_CARET, + ACTIONS(4182), 1, anon_sym_PIPE, + ACTIONS(4188), 1, + anon_sym_AMP_AMP, + ACTIONS(4192), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4216), 1, + anon_sym_EQ, + ACTIONS(4258), 1, + anon_sym_DOT_DOT, + ACTIONS(4456), 1, + anon_sym_SEMI, + ACTIONS(4494), 1, + anon_sym_RBRACE, + ACTIONS(4168), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4172), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4186), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3870), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4260), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1801), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4166), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4184), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4214), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157571,44 +159395,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [47307] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [47810] = 22, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1795), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3902), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(3902), 1, + anon_sym_LBRACK, + ACTIONS(3906), 1, + anon_sym_QMARK, + ACTIONS(3908), 1, + anon_sym_DOT, + ACTIONS(4022), 1, + anon_sym_as, + ACTIONS(4170), 1, anon_sym_AMP, + ACTIONS(4180), 1, + anon_sym_CARET, + ACTIONS(4182), 1, anon_sym_PIPE, + ACTIONS(4188), 1, + anon_sym_AMP_AMP, + ACTIONS(4192), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4216), 1, + anon_sym_EQ, + ACTIONS(4258), 1, + anon_sym_DOT_DOT, + ACTIONS(3828), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(4168), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4172), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4186), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3900), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4260), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1802), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4166), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4184), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4214), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157619,44 +159460,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, - [47360] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [47897] = 23, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1796), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4040), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(3902), 1, + anon_sym_LBRACK, + ACTIONS(3906), 1, + anon_sym_QMARK, + ACTIONS(3908), 1, + anon_sym_DOT, + ACTIONS(4022), 1, + anon_sym_as, + ACTIONS(4170), 1, anon_sym_AMP, + ACTIONS(4180), 1, + anon_sym_CARET, + ACTIONS(4182), 1, anon_sym_PIPE, + ACTIONS(4188), 1, + anon_sym_AMP_AMP, + ACTIONS(4192), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4216), 1, + anon_sym_EQ, + ACTIONS(4258), 1, + anon_sym_DOT_DOT, + ACTIONS(4474), 1, + anon_sym_COMMA, + ACTIONS(4496), 1, + anon_sym_RPAREN, + ACTIONS(4168), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4172), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4186), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(4038), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4260), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1803), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4166), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4184), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4214), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157667,22 +159526,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, - [47413] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [47986] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1797), 2, + STATE(1804), 2, sym_line_comment, sym_block_comment, - ACTIONS(4010), 15, + ACTIONS(3916), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -157698,7 +159550,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4008), 23, + ACTIONS(3914), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -157722,61 +159574,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [47466] = 22, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [48039] = 22, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(3902), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3906), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3908), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(4022), 1, anon_sym_as, - ACTIONS(4406), 1, - anon_sym_CARET, - ACTIONS(4408), 1, + ACTIONS(4170), 1, anon_sym_AMP, - ACTIONS(4410), 1, + ACTIONS(4180), 1, + anon_sym_CARET, + ACTIONS(4182), 1, anon_sym_PIPE, - ACTIONS(4412), 1, + ACTIONS(4188), 1, anon_sym_AMP_AMP, - ACTIONS(4414), 1, + ACTIONS(4192), 1, anon_sym_PIPE_PIPE, - ACTIONS(4420), 1, + ACTIONS(4216), 1, anon_sym_EQ, - ACTIONS(4426), 1, + ACTIONS(4258), 1, anon_sym_DOT_DOT, - ACTIONS(3966), 2, - anon_sym_LPAREN, - anon_sym_LBRACE, - ACTIONS(4402), 2, + ACTIONS(4168), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4416), 2, + ACTIONS(4172), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4424), 2, + ACTIONS(4186), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4428), 2, + ACTIONS(4260), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1798), 2, + ACTIONS(4498), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1805), 2, sym_line_comment, sym_block_comment, - ACTIONS(4404), 3, + ACTIONS(4166), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4422), 4, + ACTIONS(4184), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4418), 10, + ACTIONS(4214), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157787,85 +159639,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47553] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [48126] = 22, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1799), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3846), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(3902), 1, + anon_sym_LBRACK, + ACTIONS(3906), 1, + anon_sym_QMARK, + ACTIONS(3908), 1, + anon_sym_DOT, + ACTIONS(4022), 1, + anon_sym_as, + ACTIONS(4170), 1, anon_sym_AMP, + ACTIONS(4180), 1, + anon_sym_CARET, + ACTIONS(4182), 1, anon_sym_PIPE, + ACTIONS(4188), 1, + anon_sym_AMP_AMP, + ACTIONS(4192), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4216), 1, + anon_sym_EQ, + ACTIONS(4258), 1, + anon_sym_DOT_DOT, + ACTIONS(4168), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4172), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4186), 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, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_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(4260), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [47606] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1800), 2, + ACTIONS(4500), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1806), 2, sym_line_comment, sym_block_comment, - ACTIONS(3864), 15, - anon_sym_PLUS, + ACTIONS(4166), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3862), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4184), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4214), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157876,44 +159704,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [47659] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [48213] = 22, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1801), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3930), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(3902), 1, + anon_sym_LBRACK, + ACTIONS(3906), 1, + anon_sym_QMARK, + ACTIONS(3908), 1, + anon_sym_DOT, + ACTIONS(4022), 1, + anon_sym_as, + ACTIONS(4170), 1, anon_sym_AMP, + ACTIONS(4180), 1, + anon_sym_CARET, + ACTIONS(4182), 1, anon_sym_PIPE, + ACTIONS(4188), 1, + anon_sym_AMP_AMP, + ACTIONS(4192), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4216), 1, + anon_sym_EQ, + ACTIONS(4258), 1, + anon_sym_DOT_DOT, + ACTIONS(4168), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4172), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4186), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3928), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4260), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4502), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1807), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4166), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4184), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4214), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157924,44 +159769,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, - [47712] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [48300] = 23, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1802), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3886), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(3902), 1, + anon_sym_LBRACK, + ACTIONS(3906), 1, + anon_sym_QMARK, + ACTIONS(3908), 1, + anon_sym_DOT, + ACTIONS(4022), 1, + anon_sym_as, + ACTIONS(4170), 1, anon_sym_AMP, + ACTIONS(4180), 1, + anon_sym_CARET, + ACTIONS(4182), 1, anon_sym_PIPE, + ACTIONS(4188), 1, + anon_sym_AMP_AMP, + ACTIONS(4192), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4216), 1, + anon_sym_EQ, + ACTIONS(4258), 1, + anon_sym_DOT_DOT, + ACTIONS(4504), 1, + anon_sym_SEMI, + ACTIONS(4506), 1, + anon_sym_else, + ACTIONS(4168), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4172), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4186), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3884), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4260), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1808), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4166), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4184), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4214), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157972,22 +159835,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, - [47765] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [48389] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1803), 2, + STATE(1809), 2, sym_line_comment, sym_block_comment, - ACTIONS(3890), 15, + ACTIONS(3874), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -158003,7 +159859,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3888), 23, + ACTIONS(3872), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -158027,15 +159883,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [47818] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [48442] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1804), 2, + STATE(1810), 2, sym_line_comment, sym_block_comment, - ACTIONS(3894), 15, + ACTIONS(4122), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -158051,7 +159907,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3892), 23, + ACTIONS(4120), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -158075,15 +159931,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [47871] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [48495] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1805), 2, + STATE(1811), 2, sym_line_comment, sym_block_comment, - ACTIONS(3898), 15, + ACTIONS(1480), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -158099,7 +159955,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3896), 23, + ACTIONS(1478), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -158123,15 +159979,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [47924] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [48548] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1806), 2, + STATE(1812), 2, sym_line_comment, sym_block_comment, - ACTIONS(3910), 15, + ACTIONS(4126), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -158147,7 +160003,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3908), 23, + ACTIONS(4124), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -158171,15 +160027,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [47977] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [48601] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1807), 2, + STATE(1813), 2, sym_line_comment, sym_block_comment, - ACTIONS(4112), 15, + ACTIONS(4008), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -158195,7 +160051,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4110), 23, + ACTIONS(4006), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -158219,37 +160075,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [48030] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [48654] = 23, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1808), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3980), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(3902), 1, + anon_sym_LBRACK, + ACTIONS(3906), 1, + anon_sym_QMARK, + ACTIONS(3908), 1, + anon_sym_DOT, + ACTIONS(4022), 1, + anon_sym_as, + ACTIONS(4170), 1, anon_sym_AMP, + ACTIONS(4180), 1, + anon_sym_CARET, + ACTIONS(4182), 1, anon_sym_PIPE, + ACTIONS(4188), 1, + anon_sym_AMP_AMP, + ACTIONS(4192), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4216), 1, + anon_sym_EQ, + ACTIONS(4258), 1, + anon_sym_DOT_DOT, + ACTIONS(4508), 1, + anon_sym_SEMI, + ACTIONS(4510), 1, + anon_sym_else, + ACTIONS(4168), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4172), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4186), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3978), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4260), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1814), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4166), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4184), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4214), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -158260,22 +160141,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, - [48083] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [48743] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1809), 2, + STATE(1815), 2, sym_line_comment, sym_block_comment, - ACTIONS(3990), 15, + ACTIONS(1480), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -158291,7 +160165,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3988), 23, + ACTIONS(1478), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -158315,37 +160189,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [48136] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [48796] = 23, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1810), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1599), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(306), 1, + anon_sym_RBRACE, + ACTIONS(3902), 1, + anon_sym_LBRACK, + ACTIONS(3906), 1, + anon_sym_QMARK, + ACTIONS(3908), 1, + anon_sym_DOT, + ACTIONS(4022), 1, + anon_sym_as, + ACTIONS(4170), 1, anon_sym_AMP, + ACTIONS(4180), 1, + anon_sym_CARET, + ACTIONS(4182), 1, anon_sym_PIPE, + ACTIONS(4188), 1, + anon_sym_AMP_AMP, + ACTIONS(4192), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4216), 1, + anon_sym_EQ, + ACTIONS(4258), 1, + anon_sym_DOT_DOT, + ACTIONS(4456), 1, + anon_sym_SEMI, + ACTIONS(4168), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4172), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4186), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1601), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4260), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1816), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4166), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4184), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4214), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -158356,22 +160255,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, - [48189] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [48885] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1811), 2, + STATE(1817), 2, sym_line_comment, sym_block_comment, - ACTIONS(1495), 15, + ACTIONS(1508), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -158387,7 +160279,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1493), 23, + ACTIONS(1506), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -158411,15 +160303,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [48242] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [48938] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1812), 2, + STATE(1818), 2, sym_line_comment, sym_block_comment, - ACTIONS(1511), 15, + ACTIONS(4134), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -158435,7 +160327,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1509), 23, + ACTIONS(4132), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -158459,37 +160351,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [48295] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [48991] = 22, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1813), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1515), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3902), 1, + anon_sym_LBRACK, + ACTIONS(3906), 1, + anon_sym_QMARK, + ACTIONS(3908), 1, + anon_sym_DOT, + ACTIONS(4022), 1, + anon_sym_as, + ACTIONS(4384), 1, anon_sym_CARET, + ACTIONS(4386), 1, anon_sym_AMP, + ACTIONS(4388), 1, anon_sym_PIPE, + ACTIONS(4390), 1, + anon_sym_AMP_AMP, + ACTIONS(4392), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4436), 1, + anon_sym_DOT_DOT, + ACTIONS(4466), 1, + anon_sym_EQ, + ACTIONS(3860), 2, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(4380), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4394), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4398), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1513), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4438), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1819), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4382), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4396), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4464), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -158500,22 +160416,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, - [48348] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [49078] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1814), 2, + STATE(1820), 2, sym_line_comment, sym_block_comment, - ACTIONS(1523), 15, + ACTIONS(3816), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -158531,7 +160440,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1521), 23, + ACTIONS(3812), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -158555,15 +160464,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [48401] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [49131] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1815), 2, + STATE(1821), 2, sym_line_comment, sym_block_comment, - ACTIONS(1549), 15, + ACTIONS(3414), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -158579,7 +160488,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1547), 23, + ACTIONS(3416), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -158603,62 +160512,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [48454] = 23, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [49184] = 21, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(352), 1, + anon_sym_EQ, + ACTIONS(3902), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3906), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3908), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(4022), 1, anon_sym_as, - ACTIONS(4124), 1, + ACTIONS(4384), 1, anon_sym_CARET, - ACTIONS(4126), 1, + ACTIONS(4386), 1, anon_sym_AMP, - ACTIONS(4128), 1, + ACTIONS(4388), 1, anon_sym_PIPE, - ACTIONS(4130), 1, + ACTIONS(4390), 1, anon_sym_AMP_AMP, - ACTIONS(4132), 1, + ACTIONS(4392), 1, anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, - anon_sym_EQ, - ACTIONS(4216), 1, + ACTIONS(4436), 1, anon_sym_DOT_DOT, - ACTIONS(4372), 1, - anon_sym_SEMI, - ACTIONS(4446), 1, - anon_sym_RBRACE, - ACTIONS(4120), 2, + ACTIONS(4380), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4134), 2, + ACTIONS(4394), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + ACTIONS(4398), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, + ACTIONS(4438), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1816), 2, + STATE(1822), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(4382), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4138), 4, + ACTIONS(4396), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4150), 10, + ACTIONS(346), 12, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -158669,61 +160576,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [48543] = 22, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [49269] = 23, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(3902), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3906), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3908), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(4022), 1, anon_sym_as, - ACTIONS(4124), 1, + ACTIONS(4384), 1, anon_sym_CARET, - ACTIONS(4126), 1, + ACTIONS(4386), 1, anon_sym_AMP, - ACTIONS(4128), 1, + ACTIONS(4388), 1, anon_sym_PIPE, - ACTIONS(4130), 1, + ACTIONS(4390), 1, anon_sym_AMP_AMP, - ACTIONS(4132), 1, + ACTIONS(4392), 1, anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, + ACTIONS(4466), 1, anon_sym_EQ, - ACTIONS(4216), 1, + ACTIONS(4468), 1, anon_sym_DOT_DOT, - ACTIONS(3936), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(4120), 2, + ACTIONS(4512), 1, + anon_sym_LBRACE, + STATE(481), 1, + sym_match_block, + ACTIONS(4380), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4134), 2, + ACTIONS(4394), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + ACTIONS(4398), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, + ACTIONS(4470), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1817), 2, + STATE(1823), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(4382), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4138), 4, + ACTIONS(4396), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4150), 10, + ACTIONS(4464), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -158734,37 +160642,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [48630] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [49358] = 21, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1818), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4018), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3902), 1, + anon_sym_LBRACK, + ACTIONS(3906), 1, + anon_sym_QMARK, + ACTIONS(3908), 1, + anon_sym_DOT, + ACTIONS(4022), 1, + anon_sym_as, + ACTIONS(4212), 1, + anon_sym_EQ, + ACTIONS(4384), 1, anon_sym_CARET, + ACTIONS(4386), 1, anon_sym_AMP, + ACTIONS(4388), 1, anon_sym_PIPE, + ACTIONS(4390), 1, + anon_sym_AMP_AMP, + ACTIONS(4392), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4436), 1, + anon_sym_DOT_DOT, + ACTIONS(4380), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4394), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4398), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(4016), 23, + ACTIONS(4438), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1824), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4382), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4396), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4210), 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, @@ -158775,44 +160706,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, - [48683] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [49443] = 21, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1819), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1507), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3902), 1, + anon_sym_LBRACK, + ACTIONS(3906), 1, + anon_sym_QMARK, + ACTIONS(3908), 1, + anon_sym_DOT, + ACTIONS(4022), 1, + anon_sym_as, + ACTIONS(4224), 1, + anon_sym_EQ, + ACTIONS(4384), 1, anon_sym_CARET, + ACTIONS(4386), 1, anon_sym_AMP, + ACTIONS(4388), 1, anon_sym_PIPE, + ACTIONS(4390), 1, + anon_sym_AMP_AMP, + ACTIONS(4392), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4436), 1, + anon_sym_DOT_DOT, + ACTIONS(4380), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4394), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4398), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1505), 23, + ACTIONS(4438), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1825), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4382), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4396), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4222), 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, @@ -158823,68 +160770,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, - [48736] = 22, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [49528] = 23, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(308), 1, + anon_sym_RBRACE, + ACTIONS(3902), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3906), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3908), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(4022), 1, anon_sym_as, - ACTIONS(4124), 1, - anon_sym_CARET, - ACTIONS(4126), 1, + ACTIONS(4170), 1, anon_sym_AMP, - ACTIONS(4128), 1, + ACTIONS(4180), 1, + anon_sym_CARET, + ACTIONS(4182), 1, anon_sym_PIPE, - ACTIONS(4130), 1, + ACTIONS(4188), 1, anon_sym_AMP_AMP, - ACTIONS(4132), 1, + ACTIONS(4192), 1, anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, - anon_sym_EQ, ACTIONS(4216), 1, + anon_sym_EQ, + ACTIONS(4258), 1, anon_sym_DOT_DOT, - ACTIONS(3912), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(4120), 2, + ACTIONS(4456), 1, + anon_sym_SEMI, + ACTIONS(4168), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4134), 2, + ACTIONS(4172), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + ACTIONS(4186), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, + ACTIONS(4260), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1820), 2, + STATE(1826), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(4166), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4138), 4, + ACTIONS(4184), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4150), 10, + ACTIONS(4214), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -158895,60 +160836,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [48823] = 21, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [49617] = 22, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4188), 1, - anon_sym_EQ, - ACTIONS(4354), 1, + ACTIONS(3902), 1, anon_sym_LBRACK, - ACTIONS(4360), 1, + ACTIONS(3906), 1, anon_sym_QMARK, - ACTIONS(4364), 1, + ACTIONS(3908), 1, anon_sym_DOT, - ACTIONS(4366), 1, + ACTIONS(4022), 1, anon_sym_as, - ACTIONS(4384), 1, - anon_sym_CARET, - ACTIONS(4386), 1, + ACTIONS(4170), 1, anon_sym_AMP, - ACTIONS(4388), 1, + ACTIONS(4180), 1, + anon_sym_CARET, + ACTIONS(4182), 1, anon_sym_PIPE, - ACTIONS(4390), 1, + ACTIONS(4188), 1, anon_sym_AMP_AMP, - ACTIONS(4392), 1, + ACTIONS(4192), 1, anon_sym_PIPE_PIPE, - ACTIONS(4398), 1, + ACTIONS(4216), 1, + anon_sym_EQ, + ACTIONS(4258), 1, anon_sym_DOT_DOT, - ACTIONS(4356), 2, + ACTIONS(3914), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(4168), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4362), 2, + ACTIONS(4172), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4396), 2, + ACTIONS(4186), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4400), 2, + ACTIONS(4260), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1821), 2, + STATE(1827), 2, sym_line_comment, sym_block_comment, - ACTIONS(4358), 3, + ACTIONS(4166), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4394), 4, + ACTIONS(4184), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4186), 12, - anon_sym_LPAREN, - anon_sym_EQ_GT, + ACTIONS(4214), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -158959,15 +160901,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [48908] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [49704] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1822), 2, + STATE(1828), 2, sym_line_comment, sym_block_comment, - ACTIONS(1529), 15, + ACTIONS(3878), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -158983,7 +160925,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1527), 23, + ACTIONS(3876), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -159007,15 +160949,15 @@ 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, + [49757] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1823), 2, + STATE(1829), 2, sym_line_comment, sym_block_comment, - ACTIONS(1473), 15, + ACTIONS(4130), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -159031,7 +160973,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1471), 23, + ACTIONS(4128), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -159055,15 +160997,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [49014] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [49810] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1824), 2, + STATE(1830), 2, sym_line_comment, sym_block_comment, - ACTIONS(1545), 15, + ACTIONS(4108), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -159079,7 +161021,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1543), 23, + ACTIONS(4106), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -159103,62 +161045,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [49067] = 23, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [49863] = 21, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(4220), 1, + anon_sym_EQ, + ACTIONS(4400), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(4406), 1, anon_sym_QMARK, - ACTIONS(3856), 1, - anon_sym_DOT, - ACTIONS(3878), 1, - anon_sym_as, - ACTIONS(4124), 1, + ACTIONS(4408), 1, anon_sym_CARET, - ACTIONS(4126), 1, + ACTIONS(4410), 1, anon_sym_AMP, - ACTIONS(4128), 1, + ACTIONS(4412), 1, anon_sym_PIPE, - ACTIONS(4130), 1, + ACTIONS(4414), 1, anon_sym_AMP_AMP, - ACTIONS(4132), 1, + ACTIONS(4416), 1, anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, - anon_sym_EQ, - ACTIONS(4216), 1, + ACTIONS(4428), 1, + anon_sym_DOT, + ACTIONS(4430), 1, anon_sym_DOT_DOT, - ACTIONS(4374), 1, - anon_sym_COMMA, - ACTIONS(4448), 1, - anon_sym_RPAREN, - ACTIONS(4120), 2, + ACTIONS(4434), 1, + anon_sym_as, + ACTIONS(4402), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4134), 2, + ACTIONS(4418), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + ACTIONS(4426), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, + ACTIONS(4432), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1825), 2, + STATE(1831), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(4404), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4138), 4, + ACTIONS(4424), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4150), 10, + ACTIONS(4218), 12, + anon_sym_LPAREN, + anon_sym_EQ_GT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -159169,15 +161109,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [49156] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [49948] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1826), 2, + STATE(1832), 2, sym_line_comment, sym_block_comment, - ACTIONS(3828), 15, + ACTIONS(1480), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -159193,7 +161133,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3826), 23, + ACTIONS(1478), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -159217,29 +161157,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [49209] = 10, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [50001] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4354), 1, - anon_sym_LBRACK, - ACTIONS(4360), 1, - anon_sym_QMARK, - ACTIONS(4364), 1, - anon_sym_DOT, - ACTIONS(4366), 1, - anon_sym_as, - STATE(1827), 2, + STATE(1833), 2, sym_line_comment, sym_block_comment, - ACTIONS(4358), 3, + ACTIONS(3956), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3876), 11, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, @@ -159248,10 +161179,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(3874), 20, + ACTIONS(3954), 23, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_EQ_GT, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -159270,44 +161204,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [49272] = 13, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_as, + [50054] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4354), 1, - anon_sym_LBRACK, - ACTIONS(4360), 1, - anon_sym_QMARK, - ACTIONS(4364), 1, - anon_sym_DOT, - ACTIONS(4366), 1, - anon_sym_as, - ACTIONS(4386), 1, - anon_sym_AMP, - ACTIONS(4356), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4362), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - STATE(1828), 2, + STATE(1834), 2, sym_line_comment, sym_block_comment, - ACTIONS(4358), 3, + ACTIONS(3882), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3876), 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(3874), 20, + ACTIONS(3880), 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, @@ -159326,109 +161252,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [49341] = 14, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_as, + [50107] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4354), 1, - anon_sym_LBRACK, - ACTIONS(4360), 1, - anon_sym_QMARK, - ACTIONS(4364), 1, - anon_sym_DOT, - ACTIONS(4366), 1, - anon_sym_as, - ACTIONS(4384), 1, - anon_sym_CARET, - ACTIONS(4386), 1, - anon_sym_AMP, - ACTIONS(4356), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4362), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - STATE(1829), 2, + STATE(1835), 2, sym_line_comment, sym_block_comment, - ACTIONS(4358), 3, + ACTIONS(4054), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3876), 5, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3874), 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, - [49412] = 17, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4354), 1, - anon_sym_LBRACK, - ACTIONS(4360), 1, - anon_sym_QMARK, - ACTIONS(4364), 1, - anon_sym_DOT, - ACTIONS(4366), 1, - anon_sym_as, - ACTIONS(4384), 1, anon_sym_CARET, - ACTIONS(4386), 1, anon_sym_AMP, - ACTIONS(4388), 1, anon_sym_PIPE, - ACTIONS(3876), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(4356), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4362), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4396), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - STATE(1830), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4358), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4394), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3874), 16, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4052), 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, @@ -159441,93 +161294,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [49489] = 18, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4354), 1, - anon_sym_LBRACK, - ACTIONS(4360), 1, - anon_sym_QMARK, - ACTIONS(4364), 1, - anon_sym_DOT, - ACTIONS(4366), 1, - anon_sym_as, - ACTIONS(4384), 1, - anon_sym_CARET, - ACTIONS(4386), 1, - anon_sym_AMP, - ACTIONS(4388), 1, - anon_sym_PIPE, - ACTIONS(4390), 1, - anon_sym_AMP_AMP, - ACTIONS(3876), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(4356), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4362), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4396), 2, - anon_sym_GT, - anon_sym_LT, - STATE(1831), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4358), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4394), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3874), 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, - [49568] = 11, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_as, + [50160] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4354), 1, - anon_sym_LBRACK, - ACTIONS(4360), 1, - anon_sym_QMARK, - ACTIONS(4364), 1, - anon_sym_DOT, - ACTIONS(4366), 1, - anon_sym_as, - ACTIONS(4356), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1832), 2, + STATE(1836), 2, sym_line_comment, sym_block_comment, - ACTIONS(4358), 3, + ACTIONS(1524), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3876), 9, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, @@ -159536,10 +161323,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(3874), 20, + ACTIONS(1522), 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, @@ -159558,174 +161348,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [49633] = 21, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4192), 1, - anon_sym_EQ, - ACTIONS(4354), 1, - anon_sym_LBRACK, - ACTIONS(4360), 1, - anon_sym_QMARK, - ACTIONS(4364), 1, - anon_sym_DOT, - ACTIONS(4366), 1, anon_sym_as, - ACTIONS(4384), 1, - anon_sym_CARET, - ACTIONS(4386), 1, - anon_sym_AMP, - ACTIONS(4388), 1, - anon_sym_PIPE, - ACTIONS(4390), 1, - anon_sym_AMP_AMP, - ACTIONS(4392), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4398), 1, - anon_sym_DOT_DOT, - ACTIONS(4356), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4362), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4396), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4400), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1833), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4358), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4394), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4190), 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, - [49718] = 21, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [50213] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4196), 1, - anon_sym_EQ, - ACTIONS(4354), 1, - anon_sym_LBRACK, - ACTIONS(4360), 1, - anon_sym_QMARK, - ACTIONS(4364), 1, - anon_sym_DOT, - ACTIONS(4366), 1, - anon_sym_as, - ACTIONS(4384), 1, - anon_sym_CARET, - ACTIONS(4386), 1, - anon_sym_AMP, - ACTIONS(4388), 1, - anon_sym_PIPE, - ACTIONS(4390), 1, - anon_sym_AMP_AMP, - ACTIONS(4392), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4398), 1, - anon_sym_DOT_DOT, - ACTIONS(4356), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4362), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4396), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4400), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1834), 2, + STATE(1837), 2, sym_line_comment, sym_block_comment, - ACTIONS(4358), 3, + ACTIONS(4034), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4394), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4194), 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, - [49803] = 15, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4354), 1, - anon_sym_LBRACK, - ACTIONS(4360), 1, - anon_sym_QMARK, - ACTIONS(4364), 1, - anon_sym_DOT, - ACTIONS(4366), 1, - anon_sym_as, - ACTIONS(4384), 1, anon_sym_CARET, - ACTIONS(4386), 1, anon_sym_AMP, - ACTIONS(4388), 1, anon_sym_PIPE, - ACTIONS(4356), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4362), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1835), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4358), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3876), 4, anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3874), 20, + ACTIONS(4032), 23, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_EQ_GT, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -159744,219 +161396,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [49876] = 19, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_as, + [50266] = 23, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4354), 1, + ACTIONS(310), 1, + anon_sym_RBRACE, + ACTIONS(3902), 1, anon_sym_LBRACK, - ACTIONS(4360), 1, + ACTIONS(3906), 1, anon_sym_QMARK, - ACTIONS(4364), 1, + ACTIONS(3908), 1, anon_sym_DOT, - ACTIONS(4366), 1, + ACTIONS(4022), 1, anon_sym_as, - ACTIONS(4384), 1, - anon_sym_CARET, - ACTIONS(4386), 1, + ACTIONS(4170), 1, anon_sym_AMP, - ACTIONS(4388), 1, + ACTIONS(4180), 1, + anon_sym_CARET, + ACTIONS(4182), 1, anon_sym_PIPE, - ACTIONS(4390), 1, + ACTIONS(4188), 1, anon_sym_AMP_AMP, - ACTIONS(4392), 1, + ACTIONS(4192), 1, anon_sym_PIPE_PIPE, - ACTIONS(4200), 2, + ACTIONS(4216), 1, anon_sym_EQ, + ACTIONS(4258), 1, anon_sym_DOT_DOT, - ACTIONS(4356), 2, + ACTIONS(4456), 1, + anon_sym_SEMI, + ACTIONS(4168), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4362), 2, + ACTIONS(4172), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4396), 2, + ACTIONS(4186), 2, anon_sym_GT, anon_sym_LT, - STATE(1836), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4358), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4394), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4198), 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, + ACTIONS(4260), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [49957] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1837), 2, + STATE(1838), 2, sym_line_comment, sym_block_comment, - ACTIONS(3812), 15, - anon_sym_PLUS, + ACTIONS(4166), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3810), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, + ACTIONS(4184), 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, - [50010] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1838), 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, + ACTIONS(4214), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [50063] = 22, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [50355] = 17, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(3902), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3906), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3908), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(4022), 1, anon_sym_as, - ACTIONS(4124), 1, + ACTIONS(4384), 1, anon_sym_CARET, - ACTIONS(4126), 1, + ACTIONS(4386), 1, anon_sym_AMP, - ACTIONS(4128), 1, + ACTIONS(4388), 1, anon_sym_PIPE, - ACTIONS(4130), 1, - anon_sym_AMP_AMP, - ACTIONS(4132), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, + ACTIONS(4020), 2, anon_sym_EQ, - ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4058), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(4120), 2, + ACTIONS(4380), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4134), 2, + ACTIONS(4394), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + ACTIONS(4398), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, STATE(1839), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(4382), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4138), 4, + ACTIONS(4396), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4150), 10, + ACTIONS(4018), 16, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -159967,15 +161521,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [50150] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [50432] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, STATE(1840), 2, sym_line_comment, sym_block_comment, - ACTIONS(1487), 15, + ACTIONS(1540), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -159991,7 +161547,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1485), 23, + ACTIONS(1538), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -160015,15 +161571,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [50203] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [50485] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, STATE(1841), 2, sym_line_comment, sym_block_comment, - ACTIONS(1491), 15, + ACTIONS(1480), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -160039,7 +161595,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1489), 23, + ACTIONS(1478), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -160063,15 +161619,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [50256] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [50538] = 8, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(4400), 1, + anon_sym_LBRACK, + ACTIONS(4406), 1, + anon_sym_QMARK, + ACTIONS(4428), 1, + anon_sym_DOT, STATE(1842), 2, sym_line_comment, sym_block_comment, - ACTIONS(1499), 15, + ACTIONS(4138), 14, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -160085,13 +161647,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(1497), 23, + ACTIONS(4136), 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, @@ -160111,37 +161670,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [50309] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [50597] = 23, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1843), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4108), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(3902), 1, + anon_sym_LBRACK, + ACTIONS(3906), 1, + anon_sym_QMARK, + ACTIONS(3908), 1, + anon_sym_DOT, + ACTIONS(4022), 1, + anon_sym_as, + ACTIONS(4170), 1, anon_sym_AMP, + ACTIONS(4180), 1, + anon_sym_CARET, + ACTIONS(4182), 1, anon_sym_PIPE, + ACTIONS(4188), 1, + anon_sym_AMP_AMP, + ACTIONS(4192), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4216), 1, + anon_sym_EQ, + ACTIONS(4258), 1, + anon_sym_DOT_DOT, + ACTIONS(4456), 1, + anon_sym_SEMI, + ACTIONS(4514), 1, + anon_sym_RBRACE, + ACTIONS(4168), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4172), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4186), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(4106), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4260), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1843), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4166), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4184), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4214), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -160152,22 +161736,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, - [50362] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [50686] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, STATE(1844), 2, sym_line_comment, sym_block_comment, - ACTIONS(4076), 15, + ACTIONS(4046), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -160183,7 +161760,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4074), 23, + ACTIONS(4044), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -160207,15 +161784,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [50415] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [50739] = 8, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(4400), 1, + anon_sym_LBRACK, + ACTIONS(4406), 1, + anon_sym_QMARK, + ACTIONS(4428), 1, + anon_sym_DOT, STATE(1845), 2, sym_line_comment, sym_block_comment, - ACTIONS(1465), 15, + ACTIONS(3940), 14, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -160229,13 +161812,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(1463), 23, + ACTIONS(3938), 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, @@ -160255,37 +161835,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [50468] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [50798] = 23, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1846), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1477), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(314), 1, + anon_sym_RBRACE, + ACTIONS(3902), 1, + anon_sym_LBRACK, + ACTIONS(3906), 1, + anon_sym_QMARK, + ACTIONS(3908), 1, + anon_sym_DOT, + ACTIONS(4022), 1, + anon_sym_as, + ACTIONS(4170), 1, anon_sym_AMP, + ACTIONS(4180), 1, + anon_sym_CARET, + ACTIONS(4182), 1, anon_sym_PIPE, + ACTIONS(4188), 1, + anon_sym_AMP_AMP, + ACTIONS(4192), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4216), 1, + anon_sym_EQ, + ACTIONS(4258), 1, + anon_sym_DOT_DOT, + ACTIONS(4456), 1, + anon_sym_SEMI, + ACTIONS(4168), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4172), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4186), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1475), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4260), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1846), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4166), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4184), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4214), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -160296,22 +161901,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, - [50521] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [50887] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, STATE(1847), 2, sym_line_comment, sym_block_comment, - ACTIONS(1519), 15, + ACTIONS(1532), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -160327,7 +161925,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1517), 23, + ACTIONS(1530), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -160351,61 +161949,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [50574] = 22, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [50940] = 23, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(3902), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3906), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3908), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(4022), 1, anon_sym_as, - ACTIONS(4124), 1, + ACTIONS(4384), 1, anon_sym_CARET, - ACTIONS(4126), 1, + ACTIONS(4386), 1, anon_sym_AMP, - ACTIONS(4128), 1, + ACTIONS(4388), 1, anon_sym_PIPE, - ACTIONS(4130), 1, + ACTIONS(4390), 1, anon_sym_AMP_AMP, - ACTIONS(4132), 1, + ACTIONS(4392), 1, anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, + ACTIONS(4466), 1, anon_sym_EQ, - ACTIONS(4216), 1, + ACTIONS(4468), 1, anon_sym_DOT_DOT, - ACTIONS(3966), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(4120), 2, + ACTIONS(4516), 1, + anon_sym_LBRACE, + STATE(1840), 1, + sym_match_block, + ACTIONS(4380), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4134), 2, + ACTIONS(4394), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + ACTIONS(4398), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, + ACTIONS(4470), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, STATE(1848), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(4382), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4138), 4, + ACTIONS(4396), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4150), 10, + ACTIONS(4464), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -160416,37 +162015,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [50661] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [51029] = 23, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(316), 1, + anon_sym_RBRACE, + ACTIONS(3902), 1, + anon_sym_LBRACK, + ACTIONS(3906), 1, + anon_sym_QMARK, + ACTIONS(3908), 1, + anon_sym_DOT, + ACTIONS(4022), 1, + anon_sym_as, + ACTIONS(4170), 1, + anon_sym_AMP, + ACTIONS(4180), 1, + anon_sym_CARET, + ACTIONS(4182), 1, + anon_sym_PIPE, + ACTIONS(4188), 1, + anon_sym_AMP_AMP, + ACTIONS(4192), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4216), 1, + anon_sym_EQ, + ACTIONS(4258), 1, + anon_sym_DOT_DOT, + ACTIONS(4456), 1, + anon_sym_SEMI, + ACTIONS(4168), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4172), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4186), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4260), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, STATE(1849), 2, sym_line_comment, sym_block_comment, - ACTIONS(4022), 15, - anon_sym_PLUS, + ACTIONS(4166), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(4184), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4214), 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, + [51118] = 23, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(294), 1, + anon_sym_RBRACE, + ACTIONS(3902), 1, + anon_sym_LBRACK, + ACTIONS(3906), 1, + anon_sym_QMARK, + ACTIONS(3908), 1, + anon_sym_DOT, + ACTIONS(4022), 1, + anon_sym_as, + ACTIONS(4170), 1, anon_sym_AMP, + ACTIONS(4180), 1, + anon_sym_CARET, + ACTIONS(4182), 1, anon_sym_PIPE, + ACTIONS(4188), 1, + anon_sym_AMP_AMP, + ACTIONS(4192), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4216), 1, + anon_sym_EQ, + ACTIONS(4258), 1, + anon_sym_DOT_DOT, + ACTIONS(4456), 1, + anon_sym_SEMI, + ACTIONS(4168), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4172), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4186), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(4020), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4260), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1850), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4166), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4184), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4214), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -160457,22 +162147,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, - [50714] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [51207] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1850), 2, + STATE(1851), 2, sym_line_comment, sym_block_comment, - ACTIONS(1483), 15, + ACTIONS(3566), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -160488,7 +162171,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1481), 23, + ACTIONS(3564), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -160512,37 +162195,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [50767] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [51260] = 23, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1851), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1541), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(292), 1, + anon_sym_RBRACE, + ACTIONS(3902), 1, + anon_sym_LBRACK, + ACTIONS(3906), 1, + anon_sym_QMARK, + ACTIONS(3908), 1, + anon_sym_DOT, + ACTIONS(4022), 1, + anon_sym_as, + ACTIONS(4170), 1, anon_sym_AMP, + ACTIONS(4180), 1, + anon_sym_CARET, + ACTIONS(4182), 1, anon_sym_PIPE, + ACTIONS(4188), 1, + anon_sym_AMP_AMP, + ACTIONS(4192), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4216), 1, + anon_sym_EQ, + ACTIONS(4258), 1, + anon_sym_DOT_DOT, + ACTIONS(4456), 1, + anon_sym_SEMI, + ACTIONS(4168), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4172), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4186), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1539), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4260), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1852), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4166), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4184), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4214), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -160553,22 +162261,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, - [50820] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [51349] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1852), 2, + STATE(1853), 2, sym_line_comment, sym_block_comment, - ACTIONS(1021), 15, + ACTIONS(3920), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -160584,7 +162285,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1023), 23, + ACTIONS(3918), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -160608,15 +162309,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [50873] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [51402] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1853), 2, + STATE(1854), 2, sym_line_comment, sym_block_comment, - ACTIONS(975), 15, + ACTIONS(1548), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -160632,7 +162333,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(977), 23, + ACTIONS(1546), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -160656,37 +162357,258 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [50926] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [51455] = 23, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1854), 2, + ACTIONS(318), 1, + anon_sym_RBRACE, + ACTIONS(3902), 1, + anon_sym_LBRACK, + ACTIONS(3906), 1, + anon_sym_QMARK, + ACTIONS(3908), 1, + anon_sym_DOT, + ACTIONS(4022), 1, + anon_sym_as, + ACTIONS(4170), 1, + anon_sym_AMP, + ACTIONS(4180), 1, + anon_sym_CARET, + ACTIONS(4182), 1, + anon_sym_PIPE, + ACTIONS(4188), 1, + anon_sym_AMP_AMP, + ACTIONS(4192), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4216), 1, + anon_sym_EQ, + ACTIONS(4258), 1, + anon_sym_DOT_DOT, + ACTIONS(4456), 1, + anon_sym_SEMI, + ACTIONS(4168), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4172), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4186), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4260), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1855), 2, sym_line_comment, sym_block_comment, - ACTIONS(1503), 15, - anon_sym_PLUS, + ACTIONS(4166), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(4184), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4214), 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, + [51544] = 23, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(3902), 1, + anon_sym_LBRACK, + ACTIONS(3906), 1, + anon_sym_QMARK, + ACTIONS(3908), 1, + anon_sym_DOT, + ACTIONS(4022), 1, + anon_sym_as, + ACTIONS(4170), 1, anon_sym_AMP, + ACTIONS(4180), 1, + anon_sym_CARET, + ACTIONS(4182), 1, anon_sym_PIPE, + ACTIONS(4188), 1, + anon_sym_AMP_AMP, + ACTIONS(4192), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4216), 1, + anon_sym_EQ, + ACTIONS(4258), 1, + anon_sym_DOT_DOT, + ACTIONS(4456), 1, + anon_sym_SEMI, + ACTIONS(4518), 1, + anon_sym_RBRACE, + ACTIONS(4168), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4172), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4186), 2, anon_sym_GT, anon_sym_LT, + ACTIONS(4260), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1856), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4166), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4184), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4214), 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, + [51633] = 21, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(3902), 1, + anon_sym_LBRACK, + ACTIONS(3906), 1, + anon_sym_QMARK, + ACTIONS(3908), 1, anon_sym_DOT, + ACTIONS(4022), 1, + anon_sym_as, + ACTIONS(4220), 1, + anon_sym_EQ, + ACTIONS(4384), 1, + anon_sym_CARET, + ACTIONS(4386), 1, + anon_sym_AMP, + ACTIONS(4388), 1, + anon_sym_PIPE, + ACTIONS(4390), 1, + anon_sym_AMP_AMP, + ACTIONS(4392), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4436), 1, anon_sym_DOT_DOT, - ACTIONS(1501), 23, + ACTIONS(4380), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4394), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4398), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4438), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1857), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4382), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4396), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4218), 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, + [51718] = 23, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(322), 1, + anon_sym_RBRACE, + ACTIONS(3902), 1, anon_sym_LBRACK, - anon_sym_EQ_GT, + ACTIONS(3906), 1, anon_sym_QMARK, + ACTIONS(3908), 1, + anon_sym_DOT, + ACTIONS(4022), 1, + anon_sym_as, + ACTIONS(4170), 1, + anon_sym_AMP, + ACTIONS(4180), 1, + anon_sym_CARET, + ACTIONS(4182), 1, + anon_sym_PIPE, + ACTIONS(4188), 1, anon_sym_AMP_AMP, + ACTIONS(4192), 1, anon_sym_PIPE_PIPE, + ACTIONS(4216), 1, + anon_sym_EQ, + ACTIONS(4258), 1, + anon_sym_DOT_DOT, + ACTIONS(4456), 1, + anon_sym_SEMI, + ACTIONS(4168), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4172), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4186), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4260), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1858), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4166), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4184), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4214), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -160697,22 +162619,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, - [50979] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [51807] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1855), 2, + STATE(1859), 2, sym_line_comment, sym_block_comment, - ACTIONS(951), 15, + ACTIONS(4058), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -160728,7 +162643,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(953), 23, + ACTIONS(4056), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -160752,61 +162667,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [51032] = 22, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [51860] = 23, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4354), 1, + ACTIONS(324), 1, + anon_sym_RBRACE, + ACTIONS(3902), 1, anon_sym_LBRACK, - ACTIONS(4360), 1, + ACTIONS(3906), 1, anon_sym_QMARK, - ACTIONS(4364), 1, + ACTIONS(3908), 1, anon_sym_DOT, - ACTIONS(4366), 1, + ACTIONS(4022), 1, anon_sym_as, - ACTIONS(4384), 1, - anon_sym_CARET, - ACTIONS(4386), 1, + ACTIONS(4170), 1, anon_sym_AMP, - ACTIONS(4388), 1, + ACTIONS(4180), 1, + anon_sym_CARET, + ACTIONS(4182), 1, anon_sym_PIPE, - ACTIONS(4390), 1, + ACTIONS(4188), 1, anon_sym_AMP_AMP, - ACTIONS(4392), 1, + ACTIONS(4192), 1, anon_sym_PIPE_PIPE, - ACTIONS(4398), 1, - anon_sym_DOT_DOT, - ACTIONS(4452), 1, + ACTIONS(4216), 1, anon_sym_EQ, - ACTIONS(3936), 2, - anon_sym_LPAREN, - anon_sym_EQ_GT, - ACTIONS(4356), 2, + ACTIONS(4258), 1, + anon_sym_DOT_DOT, + ACTIONS(4456), 1, + anon_sym_SEMI, + ACTIONS(4168), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4362), 2, + ACTIONS(4172), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4396), 2, + ACTIONS(4186), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4400), 2, + ACTIONS(4260), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1856), 2, + STATE(1860), 2, sym_line_comment, sym_block_comment, - ACTIONS(4358), 3, + ACTIONS(4166), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4394), 4, + ACTIONS(4184), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4450), 10, + ACTIONS(4214), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -160817,15 +162733,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51119] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [51949] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1857), 2, + STATE(1861), 2, sym_line_comment, sym_block_comment, - ACTIONS(955), 15, + ACTIONS(4062), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -160841,7 +162757,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(957), 23, + ACTIONS(4060), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -160865,61 +162781,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [51172] = 22, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [52002] = 22, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4354), 1, + ACTIONS(3902), 1, anon_sym_LBRACK, - ACTIONS(4360), 1, + ACTIONS(3906), 1, anon_sym_QMARK, - ACTIONS(4364), 1, + ACTIONS(3908), 1, anon_sym_DOT, - ACTIONS(4366), 1, + ACTIONS(4022), 1, anon_sym_as, - ACTIONS(4384), 1, - anon_sym_CARET, - ACTIONS(4386), 1, + ACTIONS(4170), 1, anon_sym_AMP, - ACTIONS(4388), 1, + ACTIONS(4180), 1, + anon_sym_CARET, + ACTIONS(4182), 1, anon_sym_PIPE, - ACTIONS(4390), 1, + ACTIONS(4188), 1, anon_sym_AMP_AMP, - ACTIONS(4392), 1, + ACTIONS(4192), 1, anon_sym_PIPE_PIPE, - ACTIONS(4398), 1, - anon_sym_DOT_DOT, - ACTIONS(4452), 1, + ACTIONS(4216), 1, anon_sym_EQ, - ACTIONS(3912), 2, - anon_sym_LPAREN, - anon_sym_EQ_GT, - ACTIONS(4356), 2, + ACTIONS(4258), 1, + anon_sym_DOT_DOT, + ACTIONS(4168), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4362), 2, + ACTIONS(4172), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4396), 2, + ACTIONS(4186), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4400), 2, + ACTIONS(4260), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1858), 2, + ACTIONS(4520), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1862), 2, sym_line_comment, sym_block_comment, - ACTIONS(4358), 3, + ACTIONS(4166), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4394), 4, + ACTIONS(4184), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4450), 10, + ACTIONS(4214), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -160930,37 +162846,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51259] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [52089] = 23, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1859), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1533), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(326), 1, + anon_sym_RBRACE, + ACTIONS(3902), 1, + anon_sym_LBRACK, + ACTIONS(3906), 1, + anon_sym_QMARK, + ACTIONS(3908), 1, + anon_sym_DOT, + ACTIONS(4022), 1, + anon_sym_as, + ACTIONS(4170), 1, anon_sym_AMP, + ACTIONS(4180), 1, + anon_sym_CARET, + ACTIONS(4182), 1, anon_sym_PIPE, + ACTIONS(4188), 1, + anon_sym_AMP_AMP, + ACTIONS(4192), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4216), 1, + anon_sym_EQ, + ACTIONS(4258), 1, + anon_sym_DOT_DOT, + ACTIONS(4456), 1, + anon_sym_SEMI, + ACTIONS(4168), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4172), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4186), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1531), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4260), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1863), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4166), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4184), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4214), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -160971,44 +162912,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [51312] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [52178] = 22, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1860), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1013), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(3902), 1, + anon_sym_LBRACK, + ACTIONS(3906), 1, + anon_sym_QMARK, + ACTIONS(3908), 1, + anon_sym_DOT, + ACTIONS(4022), 1, + anon_sym_as, + ACTIONS(4170), 1, anon_sym_AMP, + ACTIONS(4180), 1, + anon_sym_CARET, + ACTIONS(4182), 1, anon_sym_PIPE, + ACTIONS(4188), 1, + anon_sym_AMP_AMP, + ACTIONS(4192), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4216), 1, + anon_sym_EQ, + ACTIONS(4258), 1, + anon_sym_DOT_DOT, + ACTIONS(4168), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4172), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4186), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1015), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4260), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4522), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1864), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4166), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4184), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4214), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -161019,44 +162977,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, - [51365] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [52265] = 23, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1861), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1469), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(3902), 1, + anon_sym_LBRACK, + ACTIONS(3906), 1, + anon_sym_QMARK, + ACTIONS(3908), 1, + anon_sym_DOT, + ACTIONS(4022), 1, + anon_sym_as, + ACTIONS(4170), 1, anon_sym_AMP, + ACTIONS(4180), 1, + anon_sym_CARET, + ACTIONS(4182), 1, anon_sym_PIPE, + ACTIONS(4188), 1, + anon_sym_AMP_AMP, + ACTIONS(4192), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4216), 1, + anon_sym_EQ, + ACTIONS(4258), 1, + anon_sym_DOT_DOT, + ACTIONS(4456), 1, + anon_sym_SEMI, + ACTIONS(4524), 1, + anon_sym_RBRACE, + ACTIONS(4168), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4172), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4186), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1467), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4260), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1865), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4166), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4184), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4214), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -161067,68 +163043,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, - [51418] = 22, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [52354] = 21, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4354), 1, + ACTIONS(3902), 1, anon_sym_LBRACK, - ACTIONS(4360), 1, + ACTIONS(3906), 1, anon_sym_QMARK, - ACTIONS(4364), 1, + ACTIONS(3908), 1, anon_sym_DOT, - ACTIONS(4366), 1, + ACTIONS(4022), 1, anon_sym_as, - ACTIONS(4384), 1, + ACTIONS(4268), 1, anon_sym_CARET, - ACTIONS(4386), 1, + ACTIONS(4270), 1, anon_sym_AMP, - ACTIONS(4388), 1, + ACTIONS(4272), 1, anon_sym_PIPE, - ACTIONS(4390), 1, - anon_sym_AMP_AMP, - ACTIONS(4392), 1, + ACTIONS(4276), 1, anon_sym_PIPE_PIPE, - ACTIONS(4398), 1, - anon_sym_DOT_DOT, - ACTIONS(4452), 1, + ACTIONS(4282), 1, anon_sym_EQ, - ACTIONS(4058), 2, - anon_sym_LPAREN, - anon_sym_EQ_GT, - ACTIONS(4356), 2, + ACTIONS(4288), 1, + anon_sym_DOT_DOT, + ACTIONS(4264), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4362), 2, + ACTIONS(4278), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4396), 2, + ACTIONS(4286), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4400), 2, + ACTIONS(4290), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1862), 2, + STATE(1866), 2, sym_line_comment, sym_block_comment, - ACTIONS(4358), 3, + ACTIONS(4266), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4394), 4, + ACTIONS(4526), 3, + anon_sym_LBRACE, + anon_sym_AMP_AMP, + anon_sym_SQUOTE, + ACTIONS(4284), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4450), 10, + ACTIONS(4280), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -161139,61 +163107,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51505] = 22, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [52439] = 23, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4354), 1, + ACTIONS(330), 1, + anon_sym_RBRACE, + ACTIONS(3902), 1, anon_sym_LBRACK, - ACTIONS(4360), 1, + ACTIONS(3906), 1, anon_sym_QMARK, - ACTIONS(4364), 1, + ACTIONS(3908), 1, anon_sym_DOT, - ACTIONS(4366), 1, + ACTIONS(4022), 1, anon_sym_as, - ACTIONS(4384), 1, - anon_sym_CARET, - ACTIONS(4386), 1, + ACTIONS(4170), 1, anon_sym_AMP, - ACTIONS(4388), 1, + ACTIONS(4180), 1, + anon_sym_CARET, + ACTIONS(4182), 1, anon_sym_PIPE, - ACTIONS(4390), 1, + ACTIONS(4188), 1, anon_sym_AMP_AMP, - ACTIONS(4392), 1, + ACTIONS(4192), 1, anon_sym_PIPE_PIPE, - ACTIONS(4398), 1, - anon_sym_DOT_DOT, - ACTIONS(4452), 1, + ACTIONS(4216), 1, anon_sym_EQ, - ACTIONS(3966), 2, - anon_sym_LPAREN, - anon_sym_EQ_GT, - ACTIONS(4356), 2, + ACTIONS(4258), 1, + anon_sym_DOT_DOT, + ACTIONS(4456), 1, + anon_sym_SEMI, + ACTIONS(4168), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4362), 2, + ACTIONS(4172), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4396), 2, + ACTIONS(4186), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4400), 2, + ACTIONS(4260), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1863), 2, + STATE(1867), 2, sym_line_comment, sym_block_comment, - ACTIONS(4358), 3, + ACTIONS(4166), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4394), 4, + ACTIONS(4184), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4450), 10, + ACTIONS(4214), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -161204,23 +163173,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51592] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [52528] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4354), 1, - anon_sym_LBRACK, - ACTIONS(4360), 1, - anon_sym_QMARK, - ACTIONS(4364), 1, - anon_sym_DOT, - ACTIONS(4366), 1, - anon_sym_as, - STATE(1864), 2, + STATE(1868), 2, sym_line_comment, sym_block_comment, - ACTIONS(3876), 14, + ACTIONS(4066), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -161234,10 +163195,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(3874), 20, + ACTIONS(4064), 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, @@ -161256,15 +163220,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [51653] = 5, - ACTIONS(103), 1, + anon_sym_as, + [52581] = 23, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(332), 1, + anon_sym_RBRACE, + ACTIONS(3902), 1, + anon_sym_LBRACK, + ACTIONS(3906), 1, + anon_sym_QMARK, + ACTIONS(3908), 1, + anon_sym_DOT, + ACTIONS(4022), 1, + anon_sym_as, + ACTIONS(4170), 1, + anon_sym_AMP, + ACTIONS(4180), 1, + anon_sym_CARET, + ACTIONS(4182), 1, + anon_sym_PIPE, + ACTIONS(4188), 1, + anon_sym_AMP_AMP, + ACTIONS(4192), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4216), 1, + anon_sym_EQ, + ACTIONS(4258), 1, + anon_sym_DOT_DOT, + ACTIONS(4456), 1, + anon_sym_SEMI, + ACTIONS(4168), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4172), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4186), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4260), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1869), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4166), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4184), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4214), 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, + [52670] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1865), 2, + STATE(1870), 2, sym_line_comment, sym_block_comment, - ACTIONS(1053), 15, + ACTIONS(3964), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -161280,7 +163311,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1055), 23, + ACTIONS(3962), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -161304,15 +163335,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [51706] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [52723] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1866), 2, + STATE(1871), 2, sym_line_comment, sym_block_comment, - ACTIONS(1045), 15, + ACTIONS(3996), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -161328,7 +163359,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1047), 23, + ACTIONS(3994), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -161352,62 +163383,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [51759] = 23, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [52776] = 23, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1179), 1, - anon_sym_RPAREN, - ACTIONS(3850), 1, + ACTIONS(334), 1, + anon_sym_RBRACE, + ACTIONS(3902), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3906), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3908), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(4022), 1, anon_sym_as, - ACTIONS(4124), 1, - anon_sym_CARET, - ACTIONS(4126), 1, + ACTIONS(4170), 1, anon_sym_AMP, - ACTIONS(4128), 1, + ACTIONS(4180), 1, + anon_sym_CARET, + ACTIONS(4182), 1, anon_sym_PIPE, - ACTIONS(4130), 1, + ACTIONS(4188), 1, anon_sym_AMP_AMP, - ACTIONS(4132), 1, + ACTIONS(4192), 1, anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, - anon_sym_EQ, ACTIONS(4216), 1, + anon_sym_EQ, + ACTIONS(4258), 1, anon_sym_DOT_DOT, - ACTIONS(4374), 1, - anon_sym_COMMA, - ACTIONS(4120), 2, + ACTIONS(4456), 1, + anon_sym_SEMI, + ACTIONS(4168), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4134), 2, + ACTIONS(4172), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + ACTIONS(4186), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, + ACTIONS(4260), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1867), 2, + STATE(1872), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(4166), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4138), 4, + ACTIONS(4184), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4150), 10, + ACTIONS(4214), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -161418,62 +163449,194 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51848] = 23, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [52865] = 23, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(3902), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3906), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3908), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(4022), 1, anon_sym_as, - ACTIONS(4124), 1, - anon_sym_CARET, - ACTIONS(4126), 1, + ACTIONS(4170), 1, anon_sym_AMP, - ACTIONS(4128), 1, + ACTIONS(4180), 1, + anon_sym_CARET, + ACTIONS(4182), 1, anon_sym_PIPE, - ACTIONS(4130), 1, + ACTIONS(4188), 1, anon_sym_AMP_AMP, - ACTIONS(4132), 1, + ACTIONS(4192), 1, anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, + ACTIONS(4216), 1, anon_sym_EQ, + ACTIONS(4258), 1, + anon_sym_DOT_DOT, + ACTIONS(4456), 1, + anon_sym_SEMI, + ACTIONS(4528), 1, + anon_sym_RBRACE, + ACTIONS(4168), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4172), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4186), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4260), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1873), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4166), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4184), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4214), 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, + [52954] = 23, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(338), 1, + anon_sym_RBRACE, + ACTIONS(3902), 1, + anon_sym_LBRACK, + ACTIONS(3906), 1, + anon_sym_QMARK, + ACTIONS(3908), 1, + anon_sym_DOT, + ACTIONS(4022), 1, + anon_sym_as, + ACTIONS(4170), 1, + anon_sym_AMP, + ACTIONS(4180), 1, + anon_sym_CARET, + ACTIONS(4182), 1, + anon_sym_PIPE, + ACTIONS(4188), 1, + anon_sym_AMP_AMP, + ACTIONS(4192), 1, + anon_sym_PIPE_PIPE, ACTIONS(4216), 1, + anon_sym_EQ, + ACTIONS(4258), 1, anon_sym_DOT_DOT, - ACTIONS(4454), 1, - anon_sym_RPAREN, ACTIONS(4456), 1, + anon_sym_SEMI, + ACTIONS(4168), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4172), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4186), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4260), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1874), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4166), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4184), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4214), 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, + [53043] = 23, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(1200), 1, + anon_sym_RPAREN, + ACTIONS(3902), 1, + anon_sym_LBRACK, + ACTIONS(3906), 1, + anon_sym_QMARK, + ACTIONS(3908), 1, + anon_sym_DOT, + ACTIONS(4022), 1, + anon_sym_as, + ACTIONS(4170), 1, + anon_sym_AMP, + ACTIONS(4180), 1, + anon_sym_CARET, + ACTIONS(4182), 1, + anon_sym_PIPE, + ACTIONS(4188), 1, + anon_sym_AMP_AMP, + ACTIONS(4192), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4216), 1, + anon_sym_EQ, + ACTIONS(4258), 1, + anon_sym_DOT_DOT, + ACTIONS(4474), 1, anon_sym_COMMA, - ACTIONS(4120), 2, + ACTIONS(4168), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4134), 2, + ACTIONS(4172), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + ACTIONS(4186), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, + ACTIONS(4260), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1868), 2, + STATE(1875), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(4166), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4138), 4, + ACTIONS(4184), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4150), 10, + ACTIONS(4214), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -161484,62 +163647,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51937] = 23, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [53132] = 23, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(293), 1, + ACTIONS(340), 1, anon_sym_RBRACE, - ACTIONS(3850), 1, + ACTIONS(3902), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3906), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3908), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(4022), 1, anon_sym_as, - ACTIONS(4124), 1, - anon_sym_CARET, - ACTIONS(4126), 1, + ACTIONS(4170), 1, anon_sym_AMP, - ACTIONS(4128), 1, + ACTIONS(4180), 1, + anon_sym_CARET, + ACTIONS(4182), 1, anon_sym_PIPE, - ACTIONS(4130), 1, + ACTIONS(4188), 1, anon_sym_AMP_AMP, - ACTIONS(4132), 1, + ACTIONS(4192), 1, anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, - anon_sym_EQ, ACTIONS(4216), 1, + anon_sym_EQ, + ACTIONS(4258), 1, anon_sym_DOT_DOT, - ACTIONS(4372), 1, + ACTIONS(4456), 1, anon_sym_SEMI, - ACTIONS(4120), 2, + ACTIONS(4168), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4134), 2, + ACTIONS(4172), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + ACTIONS(4186), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, + ACTIONS(4260), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1869), 2, + STATE(1876), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(4166), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4138), 4, + ACTIONS(4184), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4150), 10, + ACTIONS(4214), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -161550,110 +163713,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52026] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [53221] = 23, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1870), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3918), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - 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, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - 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, - [52079] = 23, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(125), 1, + anon_sym_RBRACE, + ACTIONS(3902), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3906), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3908), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(4022), 1, anon_sym_as, - ACTIONS(4406), 1, - anon_sym_CARET, - ACTIONS(4408), 1, + ACTIONS(4170), 1, anon_sym_AMP, - ACTIONS(4410), 1, + ACTIONS(4180), 1, + anon_sym_CARET, + ACTIONS(4182), 1, anon_sym_PIPE, - ACTIONS(4412), 1, + ACTIONS(4188), 1, anon_sym_AMP_AMP, - ACTIONS(4414), 1, + ACTIONS(4192), 1, anon_sym_PIPE_PIPE, - ACTIONS(4420), 1, + ACTIONS(4216), 1, anon_sym_EQ, - ACTIONS(4458), 1, - anon_sym_LBRACE, - ACTIONS(4460), 1, + ACTIONS(4258), 1, anon_sym_DOT_DOT, - STATE(1537), 1, - sym_match_block, - ACTIONS(4402), 2, + ACTIONS(4456), 1, + anon_sym_SEMI, + ACTIONS(4168), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4416), 2, + ACTIONS(4172), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4424), 2, + ACTIONS(4186), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4462), 2, + ACTIONS(4260), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1871), 2, + STATE(1877), 2, sym_line_comment, sym_block_comment, - ACTIONS(4404), 3, + ACTIONS(4166), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4422), 4, + ACTIONS(4184), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4418), 10, + ACTIONS(4214), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -161664,15 +163779,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52168] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [53310] = 9, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1872), 2, + ACTIONS(4400), 1, + anon_sym_LBRACK, + ACTIONS(4406), 1, + anon_sym_QMARK, + ACTIONS(4428), 1, + anon_sym_DOT, + ACTIONS(4434), 1, + anon_sym_as, + STATE(1878), 2, sym_line_comment, sym_block_comment, - ACTIONS(3946), 15, + ACTIONS(4020), 14, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -161686,13 +163809,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(3944), 23, + ACTIONS(4018), 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, @@ -161711,63 +163831,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [52221] = 23, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [53371] = 23, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(295), 1, - anon_sym_RBRACE, - ACTIONS(3850), 1, + ACTIONS(3902), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3906), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3908), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(4022), 1, anon_sym_as, - ACTIONS(4124), 1, - anon_sym_CARET, - ACTIONS(4126), 1, + ACTIONS(4170), 1, anon_sym_AMP, - ACTIONS(4128), 1, + ACTIONS(4180), 1, + anon_sym_CARET, + ACTIONS(4182), 1, anon_sym_PIPE, - ACTIONS(4130), 1, + ACTIONS(4188), 1, anon_sym_AMP_AMP, - ACTIONS(4132), 1, + ACTIONS(4192), 1, anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, - anon_sym_EQ, ACTIONS(4216), 1, + anon_sym_EQ, + ACTIONS(4258), 1, anon_sym_DOT_DOT, - ACTIONS(4372), 1, + ACTIONS(4456), 1, anon_sym_SEMI, - ACTIONS(4120), 2, + ACTIONS(4530), 1, + anon_sym_RBRACE, + ACTIONS(4168), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4134), 2, + ACTIONS(4172), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + ACTIONS(4186), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, + ACTIONS(4260), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1873), 2, + STATE(1879), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(4166), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4138), 4, + ACTIONS(4184), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4150), 10, + ACTIONS(4214), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -161778,61 +163897,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52310] = 22, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [53460] = 18, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(3902), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3906), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3908), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(4022), 1, anon_sym_as, - ACTIONS(4124), 1, + ACTIONS(4384), 1, anon_sym_CARET, - ACTIONS(4126), 1, + ACTIONS(4386), 1, anon_sym_AMP, - ACTIONS(4128), 1, + ACTIONS(4388), 1, anon_sym_PIPE, - ACTIONS(4130), 1, + ACTIONS(4390), 1, anon_sym_AMP_AMP, - ACTIONS(4132), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, + ACTIONS(4020), 2, anon_sym_EQ, - ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4120), 2, + ACTIONS(4380), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4134), 2, + ACTIONS(4394), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + ACTIONS(4398), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4464), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1874), 2, + STATE(1880), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(4382), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4138), 4, + ACTIONS(4396), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4150), 10, + ACTIONS(4018), 15, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -161843,15 +163956,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52397] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [53539] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1875), 2, + STATE(1881), 2, sym_line_comment, sym_block_comment, - ACTIONS(3986), 15, + ACTIONS(4016), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -161867,7 +163982,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3982), 23, + ACTIONS(4014), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -161891,86 +164006,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [52450] = 23, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [53592] = 10, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1087), 1, - anon_sym_RPAREN, - ACTIONS(3850), 1, + ACTIONS(4400), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(4406), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(4428), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(4434), 1, anon_sym_as, - ACTIONS(4124), 1, - anon_sym_CARET, - ACTIONS(4126), 1, - anon_sym_AMP, - ACTIONS(4128), 1, - anon_sym_PIPE, - ACTIONS(4130), 1, - anon_sym_AMP_AMP, - ACTIONS(4132), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, - anon_sym_EQ, - ACTIONS(4216), 1, - anon_sym_DOT_DOT, - ACTIONS(4374), 1, - anon_sym_COMMA, - ACTIONS(4120), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4134), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4140), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4218), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1876), 2, + STATE(1882), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(4404), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4138), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4150), 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, - [52539] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1877), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4084), 15, + ACTIONS(4020), 11, anon_sym_PLUS, - anon_sym_STAR, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, @@ -161979,13 +164037,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(4082), 23, + ACTIONS(4018), 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, @@ -162004,36 +164059,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, - [52592] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [53655] = 13, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1878), 2, + ACTIONS(4400), 1, + anon_sym_LBRACK, + ACTIONS(4406), 1, + anon_sym_QMARK, + ACTIONS(4410), 1, + anon_sym_AMP, + ACTIONS(4428), 1, + anon_sym_DOT, + ACTIONS(4434), 1, + anon_sym_as, + ACTIONS(4402), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4418), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1883), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 15, - anon_sym_PLUS, + ACTIONS(4404), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(4020), 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(4090), 23, + ACTIONS(4018), 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, @@ -162052,37 +164115,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [52645] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [53724] = 12, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4354), 1, + ACTIONS(4400), 1, anon_sym_LBRACK, - ACTIONS(4360), 1, + ACTIONS(4406), 1, anon_sym_QMARK, - ACTIONS(4364), 1, + ACTIONS(4428), 1, anon_sym_DOT, - STATE(1879), 2, + ACTIONS(4434), 1, + anon_sym_as, + ACTIONS(4402), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4418), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1884), 2, sym_line_comment, sym_block_comment, - ACTIONS(3852), 14, - anon_sym_PLUS, + ACTIONS(4404), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(4020), 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_DOT, - ACTIONS(3848), 21, + ACTIONS(4018), 20, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_AMP_AMP, @@ -162103,63 +164170,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [52704] = 23, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [53791] = 23, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(3902), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3906), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3908), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(4022), 1, anon_sym_as, - ACTIONS(4124), 1, + ACTIONS(4384), 1, anon_sym_CARET, - ACTIONS(4126), 1, + ACTIONS(4386), 1, anon_sym_AMP, - ACTIONS(4128), 1, + ACTIONS(4388), 1, anon_sym_PIPE, - ACTIONS(4130), 1, + ACTIONS(4390), 1, anon_sym_AMP_AMP, - ACTIONS(4132), 1, + ACTIONS(4392), 1, anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, - anon_sym_EQ, - ACTIONS(4216), 1, - anon_sym_DOT_DOT, ACTIONS(4466), 1, - anon_sym_SEMI, + anon_sym_EQ, ACTIONS(4468), 1, - anon_sym_else, - ACTIONS(4120), 2, + anon_sym_DOT_DOT, + ACTIONS(4532), 1, + anon_sym_LBRACE, + STATE(423), 1, + sym_match_block, + ACTIONS(4380), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4134), 2, + ACTIONS(4394), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + ACTIONS(4398), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, + ACTIONS(4470), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1880), 2, + STATE(1885), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(4382), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4138), 4, + ACTIONS(4396), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4150), 10, + ACTIONS(4464), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -162170,128 +164236,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52793] = 23, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [53880] = 14, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(297), 1, - anon_sym_RBRACE, - ACTIONS(3850), 1, + ACTIONS(4400), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(4406), 1, anon_sym_QMARK, - ACTIONS(3856), 1, - anon_sym_DOT, - ACTIONS(3878), 1, - anon_sym_as, - ACTIONS(4124), 1, + ACTIONS(4408), 1, anon_sym_CARET, - ACTIONS(4126), 1, + ACTIONS(4410), 1, anon_sym_AMP, - ACTIONS(4128), 1, - anon_sym_PIPE, - ACTIONS(4130), 1, - anon_sym_AMP_AMP, - ACTIONS(4132), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, - anon_sym_EQ, - ACTIONS(4216), 1, - anon_sym_DOT_DOT, - ACTIONS(4372), 1, - anon_sym_SEMI, - ACTIONS(4120), 2, + ACTIONS(4428), 1, + anon_sym_DOT, + ACTIONS(4434), 1, + anon_sym_as, + ACTIONS(4402), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4134), 2, + ACTIONS(4418), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4218), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1881), 2, + STATE(1886), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(4404), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4138), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4150), 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, - [52882] = 23, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1347), 1, - anon_sym_RPAREN, - ACTIONS(3850), 1, - anon_sym_LBRACK, - ACTIONS(3854), 1, - anon_sym_QMARK, - ACTIONS(3856), 1, - anon_sym_DOT, - ACTIONS(3878), 1, - anon_sym_as, - ACTIONS(4124), 1, - anon_sym_CARET, - ACTIONS(4126), 1, - anon_sym_AMP, - ACTIONS(4128), 1, + ACTIONS(4020), 5, anon_sym_PIPE, - ACTIONS(4130), 1, - anon_sym_AMP_AMP, - ACTIONS(4132), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, anon_sym_EQ, - ACTIONS(4216), 1, - anon_sym_DOT_DOT, - ACTIONS(4374), 1, - anon_sym_COMMA, - ACTIONS(4120), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4134), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4140), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1882), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4122), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4138), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4150), 10, + anon_sym_DOT_DOT, + ACTIONS(4018), 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, @@ -162302,260 +164287,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52971] = 23, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3850), 1, - anon_sym_LBRACK, - ACTIONS(3854), 1, - anon_sym_QMARK, - ACTIONS(3856), 1, - anon_sym_DOT, - ACTIONS(3878), 1, - anon_sym_as, - ACTIONS(4124), 1, - anon_sym_CARET, - ACTIONS(4126), 1, - anon_sym_AMP, - ACTIONS(4128), 1, - anon_sym_PIPE, - ACTIONS(4130), 1, - anon_sym_AMP_AMP, - ACTIONS(4132), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, - anon_sym_EQ, - ACTIONS(4216), 1, - anon_sym_DOT_DOT, - ACTIONS(4470), 1, - anon_sym_SEMI, - ACTIONS(4472), 1, - anon_sym_else, - ACTIONS(4120), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4134), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4140), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4218), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1883), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4122), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4150), 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, - [53060] = 23, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3850), 1, - anon_sym_LBRACK, - ACTIONS(3854), 1, - anon_sym_QMARK, - ACTIONS(3856), 1, - anon_sym_DOT, - ACTIONS(3878), 1, - anon_sym_as, - ACTIONS(4124), 1, - anon_sym_CARET, - ACTIONS(4126), 1, - anon_sym_AMP, - ACTIONS(4128), 1, - anon_sym_PIPE, - ACTIONS(4130), 1, - anon_sym_AMP_AMP, - ACTIONS(4132), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, - anon_sym_EQ, - ACTIONS(4216), 1, - anon_sym_DOT_DOT, - ACTIONS(4372), 1, - anon_sym_SEMI, - ACTIONS(4474), 1, - anon_sym_RBRACE, - ACTIONS(4120), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4134), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4140), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1884), 2, + [53951] = 5, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + STATE(1887), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(4074), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4138), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4150), 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, - [53149] = 23, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3850), 1, - anon_sym_LBRACK, - ACTIONS(3854), 1, - anon_sym_QMARK, - ACTIONS(3856), 1, - anon_sym_DOT, - ACTIONS(3878), 1, - anon_sym_as, - ACTIONS(4124), 1, anon_sym_CARET, - ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(4130), 1, - anon_sym_AMP_AMP, - ACTIONS(4132), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, - anon_sym_EQ, - ACTIONS(4216), 1, - anon_sym_DOT_DOT, - ACTIONS(4374), 1, - anon_sym_COMMA, - ACTIONS(4476), 1, - anon_sym_RPAREN, - ACTIONS(4120), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1885), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4122), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4138), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4150), 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, - [53238] = 23, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4072), 23, + anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(3854), 1, + anon_sym_EQ_GT, anon_sym_QMARK, - ACTIONS(3856), 1, - anon_sym_DOT, - ACTIONS(3878), 1, - anon_sym_as, - ACTIONS(4124), 1, - anon_sym_CARET, - ACTIONS(4126), 1, - anon_sym_AMP, - ACTIONS(4128), 1, - anon_sym_PIPE, - ACTIONS(4130), 1, anon_sym_AMP_AMP, - ACTIONS(4132), 1, anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, - anon_sym_EQ, - ACTIONS(4216), 1, - anon_sym_DOT_DOT, - ACTIONS(4478), 1, - anon_sym_SEMI, - ACTIONS(4480), 1, - anon_sym_else, - ACTIONS(4120), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4134), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4140), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4218), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1886), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4122), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4138), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4150), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -162566,62 +164334,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53327] = 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, + [54004] = 23, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(3902), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3906), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3908), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(4022), 1, anon_sym_as, - ACTIONS(4124), 1, - anon_sym_CARET, - ACTIONS(4126), 1, + ACTIONS(4170), 1, anon_sym_AMP, - ACTIONS(4128), 1, + ACTIONS(4180), 1, + anon_sym_CARET, + ACTIONS(4182), 1, anon_sym_PIPE, - ACTIONS(4130), 1, + ACTIONS(4188), 1, anon_sym_AMP_AMP, - ACTIONS(4132), 1, + ACTIONS(4192), 1, anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, - anon_sym_EQ, ACTIONS(4216), 1, + anon_sym_EQ, + ACTIONS(4258), 1, anon_sym_DOT_DOT, - ACTIONS(4482), 1, + ACTIONS(4534), 1, anon_sym_SEMI, - ACTIONS(4484), 1, + ACTIONS(4536), 1, anon_sym_else, - ACTIONS(4120), 2, + ACTIONS(4168), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4134), 2, + ACTIONS(4172), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + ACTIONS(4186), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, + ACTIONS(4260), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1887), 2, + STATE(1888), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(4166), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4138), 4, + ACTIONS(4184), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4150), 10, + ACTIONS(4214), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -162632,62 +164407,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53416] = 23, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [54093] = 17, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(4400), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(4406), 1, anon_sym_QMARK, - ACTIONS(3856), 1, - anon_sym_DOT, - ACTIONS(3878), 1, - anon_sym_as, - ACTIONS(4124), 1, + ACTIONS(4408), 1, anon_sym_CARET, - ACTIONS(4126), 1, + ACTIONS(4410), 1, anon_sym_AMP, - ACTIONS(4128), 1, + ACTIONS(4412), 1, anon_sym_PIPE, - ACTIONS(4130), 1, - anon_sym_AMP_AMP, - ACTIONS(4132), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, + ACTIONS(4428), 1, + anon_sym_DOT, + ACTIONS(4434), 1, + anon_sym_as, + ACTIONS(4020), 2, anon_sym_EQ, - ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4486), 1, - anon_sym_RBRACE, - ACTIONS(4488), 1, - anon_sym_COMMA, - ACTIONS(4120), 2, + ACTIONS(4402), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4134), 2, + ACTIONS(4418), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + ACTIONS(4426), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1888), 2, + STATE(1889), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(4404), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4138), 4, + ACTIONS(4424), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4150), 10, + ACTIONS(4018), 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, @@ -162698,62 +164465,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53505] = 23, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [54170] = 18, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(4400), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(4406), 1, anon_sym_QMARK, - ACTIONS(3856), 1, - anon_sym_DOT, - ACTIONS(3878), 1, - anon_sym_as, - ACTIONS(4124), 1, + ACTIONS(4408), 1, anon_sym_CARET, - ACTIONS(4126), 1, + ACTIONS(4410), 1, anon_sym_AMP, - ACTIONS(4128), 1, + ACTIONS(4412), 1, anon_sym_PIPE, - ACTIONS(4130), 1, + ACTIONS(4414), 1, anon_sym_AMP_AMP, - ACTIONS(4132), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, + ACTIONS(4428), 1, + anon_sym_DOT, + ACTIONS(4434), 1, + anon_sym_as, + ACTIONS(4020), 2, anon_sym_EQ, - ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4490), 1, - anon_sym_SEMI, - ACTIONS(4492), 1, - anon_sym_else, - ACTIONS(4120), 2, + ACTIONS(4402), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4134), 2, + ACTIONS(4418), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + ACTIONS(4426), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1889), 2, + STATE(1890), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(4404), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4138), 4, + ACTIONS(4424), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4150), 10, + ACTIONS(4018), 15, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -162764,62 +164526,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53594] = 23, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [54249] = 23, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(301), 1, - anon_sym_RBRACE, - ACTIONS(3850), 1, + ACTIONS(3902), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3906), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3908), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(4022), 1, anon_sym_as, - ACTIONS(4124), 1, - anon_sym_CARET, - ACTIONS(4126), 1, + ACTIONS(4170), 1, anon_sym_AMP, - ACTIONS(4128), 1, + ACTIONS(4180), 1, + anon_sym_CARET, + ACTIONS(4182), 1, anon_sym_PIPE, - ACTIONS(4130), 1, + ACTIONS(4188), 1, anon_sym_AMP_AMP, - ACTIONS(4132), 1, + ACTIONS(4192), 1, anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, - anon_sym_EQ, ACTIONS(4216), 1, + anon_sym_EQ, + ACTIONS(4258), 1, anon_sym_DOT_DOT, - ACTIONS(4372), 1, + ACTIONS(4538), 1, anon_sym_SEMI, - ACTIONS(4120), 2, + ACTIONS(4540), 1, + anon_sym_else, + ACTIONS(4168), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4134), 2, + ACTIONS(4172), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + ACTIONS(4186), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, + ACTIONS(4260), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1890), 2, + STATE(1891), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(4166), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4138), 4, + ACTIONS(4184), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4150), 10, + ACTIONS(4214), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -162830,56 +164594,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53683] = 19, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [54338] = 11, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(4400), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(4406), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(4428), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(4434), 1, anon_sym_as, - ACTIONS(4406), 1, - anon_sym_CARET, - ACTIONS(4408), 1, - anon_sym_AMP, - ACTIONS(4410), 1, - anon_sym_PIPE, - ACTIONS(4412), 1, - anon_sym_AMP_AMP, - ACTIONS(4414), 1, - anon_sym_PIPE_PIPE, - ACTIONS(399), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, ACTIONS(4402), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4416), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4424), 2, - anon_sym_GT, - anon_sym_LT, - STATE(1891), 2, + STATE(1892), 2, sym_line_comment, sym_block_comment, ACTIONS(4404), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4422), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(397), 14, + ACTIONS(4020), 9, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT_DOT, + ACTIONS(4018), 20, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -162890,62 +164642,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [53764] = 21, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [54403] = 21, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(347), 1, + ACTIONS(4194), 1, anon_sym_EQ, - ACTIONS(3850), 1, + ACTIONS(4400), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, - anon_sym_QMARK, - ACTIONS(3856), 1, - anon_sym_DOT, - ACTIONS(3878), 1, - anon_sym_as, ACTIONS(4406), 1, - anon_sym_CARET, + anon_sym_QMARK, ACTIONS(4408), 1, - anon_sym_AMP, + anon_sym_CARET, ACTIONS(4410), 1, - anon_sym_PIPE, + anon_sym_AMP, ACTIONS(4412), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE, ACTIONS(4414), 1, + anon_sym_AMP_AMP, + ACTIONS(4416), 1, anon_sym_PIPE_PIPE, - ACTIONS(4426), 1, + ACTIONS(4428), 1, + anon_sym_DOT, + ACTIONS(4430), 1, anon_sym_DOT_DOT, + ACTIONS(4434), 1, + anon_sym_as, ACTIONS(4402), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4416), 2, + ACTIONS(4418), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4424), 2, + ACTIONS(4426), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4428), 2, + ACTIONS(4432), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1892), 2, + STATE(1893), 2, sym_line_comment, sym_block_comment, ACTIONS(4404), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4422), 4, + ACTIONS(4424), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(341), 12, + ACTIONS(4190), 12, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -162956,62 +164712,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53849] = 23, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [54488] = 21, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(4202), 1, + anon_sym_EQ, + ACTIONS(4400), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, - anon_sym_QMARK, - ACTIONS(3856), 1, - anon_sym_DOT, - ACTIONS(3878), 1, - anon_sym_as, ACTIONS(4406), 1, - anon_sym_CARET, + anon_sym_QMARK, ACTIONS(4408), 1, - anon_sym_AMP, + anon_sym_CARET, ACTIONS(4410), 1, - anon_sym_PIPE, + anon_sym_AMP, ACTIONS(4412), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE, ACTIONS(4414), 1, + anon_sym_AMP_AMP, + ACTIONS(4416), 1, anon_sym_PIPE_PIPE, - ACTIONS(4420), 1, - anon_sym_EQ, - ACTIONS(4460), 1, + ACTIONS(4428), 1, + anon_sym_DOT, + ACTIONS(4430), 1, anon_sym_DOT_DOT, - ACTIONS(4494), 1, - anon_sym_LBRACE, - STATE(477), 1, - sym_match_block, + ACTIONS(4434), 1, + anon_sym_as, ACTIONS(4402), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4416), 2, + ACTIONS(4418), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4424), 2, + ACTIONS(4426), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4462), 2, + ACTIONS(4432), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1893), 2, + STATE(1894), 2, sym_line_comment, sym_block_comment, ACTIONS(4404), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4422), 4, + ACTIONS(4424), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4418), 10, + ACTIONS(4200), 12, + anon_sym_LPAREN, + anon_sym_EQ_GT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -163022,60 +164776,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53938] = 21, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [54573] = 15, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(4400), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, - anon_sym_QMARK, - ACTIONS(3856), 1, - anon_sym_DOT, - ACTIONS(3878), 1, - anon_sym_as, - ACTIONS(4148), 1, - anon_sym_EQ, ACTIONS(4406), 1, - anon_sym_CARET, + anon_sym_QMARK, ACTIONS(4408), 1, - anon_sym_AMP, + anon_sym_CARET, ACTIONS(4410), 1, - anon_sym_PIPE, + anon_sym_AMP, ACTIONS(4412), 1, - anon_sym_AMP_AMP, - ACTIONS(4414), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4426), 1, - anon_sym_DOT_DOT, + anon_sym_PIPE, + ACTIONS(4428), 1, + anon_sym_DOT, + ACTIONS(4434), 1, + anon_sym_as, ACTIONS(4402), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4416), 2, + ACTIONS(4418), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4424), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4428), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1894), 2, + STATE(1895), 2, sym_line_comment, sym_block_comment, ACTIONS(4404), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4422), 4, + ACTIONS(4020), 4, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT_DOT, + ACTIONS(4018), 20, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4146), 12, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [54646] = 5, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + STATE(1896), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4104), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4102), 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, @@ -163086,60 +164875,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54023] = 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, + [54699] = 23, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(3902), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3906), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3908), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(4022), 1, anon_sym_as, - ACTIONS(4136), 1, - anon_sym_EQ, - ACTIONS(4406), 1, - anon_sym_CARET, - ACTIONS(4408), 1, + ACTIONS(4170), 1, anon_sym_AMP, - ACTIONS(4410), 1, + ACTIONS(4180), 1, + anon_sym_CARET, + ACTIONS(4182), 1, anon_sym_PIPE, - ACTIONS(4412), 1, + ACTIONS(4188), 1, anon_sym_AMP_AMP, - ACTIONS(4414), 1, + ACTIONS(4192), 1, anon_sym_PIPE_PIPE, - ACTIONS(4426), 1, + ACTIONS(4216), 1, + anon_sym_EQ, + ACTIONS(4258), 1, anon_sym_DOT_DOT, - ACTIONS(4402), 2, + ACTIONS(4542), 1, + anon_sym_RBRACE, + ACTIONS(4544), 1, + anon_sym_COMMA, + ACTIONS(4168), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4416), 2, + ACTIONS(4172), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4424), 2, + ACTIONS(4186), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4428), 2, + ACTIONS(4260), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1895), 2, + STATE(1897), 2, sym_line_comment, sym_block_comment, - ACTIONS(4404), 3, + ACTIONS(4166), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4422), 4, + ACTIONS(4184), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4118), 12, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(4214), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -163150,62 +164948,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54108] = 23, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [54788] = 19, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(337), 1, - anon_sym_RBRACE, - ACTIONS(3850), 1, + ACTIONS(4400), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(4406), 1, anon_sym_QMARK, - ACTIONS(3856), 1, - anon_sym_DOT, - ACTIONS(3878), 1, - anon_sym_as, - ACTIONS(4124), 1, + ACTIONS(4408), 1, anon_sym_CARET, - ACTIONS(4126), 1, + ACTIONS(4410), 1, anon_sym_AMP, - ACTIONS(4128), 1, + ACTIONS(4412), 1, anon_sym_PIPE, - ACTIONS(4130), 1, + ACTIONS(4414), 1, anon_sym_AMP_AMP, - ACTIONS(4132), 1, + ACTIONS(4416), 1, anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, + ACTIONS(4428), 1, + anon_sym_DOT, + ACTIONS(4434), 1, + anon_sym_as, + ACTIONS(4206), 2, anon_sym_EQ, - ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4372), 1, - anon_sym_SEMI, - ACTIONS(4120), 2, + ACTIONS(4402), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4134), 2, + ACTIONS(4418), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + ACTIONS(4426), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1896), 2, + STATE(1898), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(4404), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4138), 4, + ACTIONS(4424), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4150), 10, + ACTIONS(4204), 14, + anon_sym_LPAREN, + anon_sym_EQ_GT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -163216,62 +165008,243 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54197] = 23, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [54869] = 17, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(305), 1, + ACTIONS(4356), 1, + sym_identifier, + ACTIONS(4358), 1, + anon_sym_LBRACE, + ACTIONS(4362), 1, + anon_sym_STAR, + ACTIONS(4368), 1, + anon_sym_COLON_COLON, + ACTIONS(4372), 1, + sym_metavariable, + ACTIONS(4546), 1, anon_sym_RBRACE, - ACTIONS(3850), 1, - anon_sym_LBRACK, - ACTIONS(3854), 1, - anon_sym_QMARK, - ACTIONS(3856), 1, - anon_sym_DOT, - ACTIONS(3878), 1, - anon_sym_as, - ACTIONS(4124), 1, + STATE(2585), 1, + sym_scoped_identifier, + STATE(3472), 1, + sym__use_clause, + STATE(3565), 1, + sym_generic_type_with_turbofish, + STATE(3607), 1, + sym_bracketed_type, + STATE(1899), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4370), 3, + sym_self, + sym_super, + sym_crate, + STATE(3032), 4, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(4364), 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, + [54946] = 5, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + STATE(1900), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4112), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(4130), 1, - anon_sym_AMP_AMP, - ACTIONS(4132), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(4216), 1, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4372), 1, - anon_sym_SEMI, - ACTIONS(4120), 2, + ACTIONS(4110), 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, + [54999] = 5, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + STATE(1901), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4090), 15, anon_sym_PLUS, + anon_sym_STAR, anon_sym_DASH, - ACTIONS(4134), 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(4140), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4088), 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(1897), 2, + anon_sym_as, + [55052] = 5, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + STATE(1902), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(4116), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4138), 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(4114), 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(4150), 10, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [55105] = 5, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + STATE(1903), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4094), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4092), 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, @@ -163282,62 +165255,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54286] = 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, + [55158] = 22, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(3902), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3906), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3908), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(4022), 1, anon_sym_as, - ACTIONS(4124), 1, + ACTIONS(4384), 1, anon_sym_CARET, - ACTIONS(4126), 1, + ACTIONS(4386), 1, anon_sym_AMP, - ACTIONS(4128), 1, + ACTIONS(4388), 1, anon_sym_PIPE, - ACTIONS(4130), 1, + ACTIONS(4390), 1, anon_sym_AMP_AMP, - ACTIONS(4132), 1, + ACTIONS(4392), 1, anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, - anon_sym_EQ, - ACTIONS(4216), 1, + ACTIONS(4436), 1, anon_sym_DOT_DOT, - ACTIONS(4372), 1, - anon_sym_SEMI, - ACTIONS(4496), 1, - anon_sym_RBRACE, - ACTIONS(4120), 2, + ACTIONS(4466), 1, + anon_sym_EQ, + ACTIONS(4052), 2, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(4380), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4134), 2, + ACTIONS(4394), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + ACTIONS(4398), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, + ACTIONS(4438), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1898), 2, + STATE(1904), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(4382), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4138), 4, + ACTIONS(4396), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4150), 10, + ACTIONS(4464), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -163348,62 +165327,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54375] = 23, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [55245] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(309), 1, - anon_sym_RBRACE, - ACTIONS(3850), 1, - anon_sym_LBRACK, - ACTIONS(3854), 1, - anon_sym_QMARK, - ACTIONS(3856), 1, - anon_sym_DOT, - ACTIONS(3878), 1, - anon_sym_as, - ACTIONS(4124), 1, + STATE(1905), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3946), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(4130), 1, - anon_sym_AMP_AMP, - ACTIONS(4132), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, - anon_sym_EQ, - ACTIONS(4216), 1, - anon_sym_DOT_DOT, - ACTIONS(4372), 1, - anon_sym_SEMI, - ACTIONS(4120), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1899), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4122), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4138), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4150), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3942), 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, @@ -163414,62 +165368,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54464] = 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, + [55298] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, - anon_sym_LBRACK, - ACTIONS(3854), 1, - anon_sym_QMARK, - ACTIONS(3856), 1, - anon_sym_DOT, - ACTIONS(3878), 1, - anon_sym_as, - ACTIONS(4406), 1, + STATE(1906), 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, - ACTIONS(4408), 1, anon_sym_AMP, - ACTIONS(4410), 1, anon_sym_PIPE, - ACTIONS(4412), 1, - anon_sym_AMP_AMP, - ACTIONS(4414), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4420), 1, - anon_sym_EQ, - ACTIONS(4460), 1, - anon_sym_DOT_DOT, - ACTIONS(4498), 1, - anon_sym_LBRACE, - STATE(1823), 1, - sym_match_block, - ACTIONS(4402), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4416), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4424), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4462), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1900), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4404), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4422), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4418), 10, + 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, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -163480,62 +165416,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54553] = 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, + [55351] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(311), 1, - anon_sym_RBRACE, - ACTIONS(3850), 1, - anon_sym_LBRACK, - ACTIONS(3854), 1, - anon_sym_QMARK, - ACTIONS(3856), 1, - anon_sym_DOT, - ACTIONS(3878), 1, - anon_sym_as, - ACTIONS(4124), 1, + STATE(1907), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3858), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(4130), 1, - anon_sym_AMP_AMP, - ACTIONS(4132), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, - anon_sym_EQ, - ACTIONS(4216), 1, - anon_sym_DOT_DOT, - ACTIONS(4372), 1, - anon_sym_SEMI, - ACTIONS(4120), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, + 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, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_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(1901), 2, + anon_sym_as, + [55404] = 5, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + STATE(1908), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(3928), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4138), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4150), 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(3926), 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, @@ -163546,62 +165512,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54642] = 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, + [55457] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(123), 1, - anon_sym_RBRACE, - ACTIONS(3850), 1, - anon_sym_LBRACK, - ACTIONS(3854), 1, - anon_sym_QMARK, - ACTIONS(3856), 1, - anon_sym_DOT, - ACTIONS(3878), 1, - anon_sym_as, - ACTIONS(4124), 1, + STATE(1909), 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, anon_sym_CARET, - ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(4130), 1, - anon_sym_AMP_AMP, - ACTIONS(4132), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, - anon_sym_EQ, - ACTIONS(4216), 1, - anon_sym_DOT_DOT, - ACTIONS(4372), 1, - anon_sym_SEMI, - ACTIONS(4120), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, + 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, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_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(1902), 2, + anon_sym_as, + [55510] = 5, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + STATE(1910), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(3988), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4138), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4150), 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(3986), 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, @@ -163612,62 +165608,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54731] = 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, + [55563] = 8, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(313), 1, - anon_sym_RBRACE, - ACTIONS(3850), 1, + ACTIONS(4400), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(4406), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(4428), 1, anon_sym_DOT, - ACTIONS(3878), 1, - anon_sym_as, - ACTIONS(4124), 1, + STATE(1911), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3904), 14, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(4130), 1, - anon_sym_AMP_AMP, - ACTIONS(4132), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, - anon_sym_EQ, - ACTIONS(4216), 1, - anon_sym_DOT_DOT, - ACTIONS(4372), 1, - anon_sym_SEMI, - ACTIONS(4120), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1903), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4122), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4138), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4150), 10, + anon_sym_DOT_DOT, + ACTIONS(3900), 21, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -163678,62 +165659,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54820] = 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, + [55622] = 22, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(3902), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3906), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3908), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(4022), 1, anon_sym_as, - ACTIONS(4124), 1, - anon_sym_CARET, - ACTIONS(4126), 1, + ACTIONS(4170), 1, anon_sym_AMP, - ACTIONS(4128), 1, + ACTIONS(4180), 1, + anon_sym_CARET, + ACTIONS(4182), 1, anon_sym_PIPE, - ACTIONS(4130), 1, + ACTIONS(4188), 1, anon_sym_AMP_AMP, - ACTIONS(4132), 1, + ACTIONS(4192), 1, anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, - anon_sym_EQ, ACTIONS(4216), 1, + anon_sym_EQ, + ACTIONS(4258), 1, anon_sym_DOT_DOT, - ACTIONS(4372), 1, - anon_sym_SEMI, - ACTIONS(4500), 1, - anon_sym_RBRACE, - ACTIONS(4120), 2, + ACTIONS(4168), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4134), 2, + ACTIONS(4172), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + ACTIONS(4186), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, + ACTIONS(4260), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1904), 2, + ACTIONS(4548), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1912), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(4166), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4138), 4, + ACTIONS(4184), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4150), 10, + ACTIONS(4214), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -163744,62 +165731,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54909] = 23, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [55709] = 22, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(317), 1, - anon_sym_RBRACE, - ACTIONS(3850), 1, + ACTIONS(3902), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3906), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3908), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(4022), 1, anon_sym_as, - ACTIONS(4124), 1, - anon_sym_CARET, - ACTIONS(4126), 1, + ACTIONS(4170), 1, anon_sym_AMP, - ACTIONS(4128), 1, + ACTIONS(4180), 1, + anon_sym_CARET, + ACTIONS(4182), 1, anon_sym_PIPE, - ACTIONS(4130), 1, + ACTIONS(4188), 1, anon_sym_AMP_AMP, - ACTIONS(4132), 1, + ACTIONS(4192), 1, anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, - anon_sym_EQ, ACTIONS(4216), 1, + anon_sym_EQ, + ACTIONS(4258), 1, anon_sym_DOT_DOT, - ACTIONS(4372), 1, - anon_sym_SEMI, - ACTIONS(4120), 2, + ACTIONS(4168), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4134), 2, + ACTIONS(4172), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + ACTIONS(4186), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, + ACTIONS(4260), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1905), 2, + ACTIONS(4550), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1913), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(4166), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4138), 4, + ACTIONS(4184), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4150), 10, + ACTIONS(4214), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -163810,62 +165796,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54998] = 23, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [55796] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(319), 1, - anon_sym_RBRACE, - ACTIONS(3850), 1, - anon_sym_LBRACK, - ACTIONS(3854), 1, - anon_sym_QMARK, - ACTIONS(3856), 1, - anon_sym_DOT, - ACTIONS(3878), 1, - anon_sym_as, - ACTIONS(4124), 1, + STATE(1914), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3968), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(4130), 1, - anon_sym_AMP_AMP, - ACTIONS(4132), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, - anon_sym_EQ, - ACTIONS(4216), 1, - anon_sym_DOT_DOT, - ACTIONS(4372), 1, - anon_sym_SEMI, - ACTIONS(4120), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3966), 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(1906), 2, + anon_sym_as, + [55849] = 5, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + STATE(1915), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(3898), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4138), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4150), 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(3896), 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, @@ -163876,61 +165885,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55087] = 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, + [55902] = 11, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(3902), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3906), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3908), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(4022), 1, anon_sym_as, - ACTIONS(4246), 1, - anon_sym_CARET, - ACTIONS(4248), 1, - anon_sym_AMP, - ACTIONS(4250), 1, - anon_sym_PIPE, - ACTIONS(4254), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4260), 1, - anon_sym_EQ, - ACTIONS(4266), 1, - anon_sym_DOT_DOT, - ACTIONS(4504), 1, - anon_sym_AMP_AMP, - ACTIONS(4242), 2, + ACTIONS(4380), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4256), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4264), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4268), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4502), 2, - anon_sym_LBRACE, - anon_sym_SQUOTE, - STATE(1907), 2, + STATE(1916), 2, sym_line_comment, sym_block_comment, - ACTIONS(4244), 3, + ACTIONS(4382), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4262), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4258), 10, + ACTIONS(4020), 9, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT_DOT, + ACTIONS(4018), 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, @@ -163941,62 +165940,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55174] = 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, + [55967] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(321), 1, - anon_sym_RBRACE, - ACTIONS(3850), 1, - anon_sym_LBRACK, - ACTIONS(3854), 1, - anon_sym_QMARK, - ACTIONS(3856), 1, - anon_sym_DOT, - ACTIONS(3878), 1, - anon_sym_as, - ACTIONS(4124), 1, + STATE(1917), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3834), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(4130), 1, - anon_sym_AMP_AMP, - ACTIONS(4132), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, - anon_sym_EQ, - ACTIONS(4216), 1, - anon_sym_DOT_DOT, - ACTIONS(4372), 1, - anon_sym_SEMI, - ACTIONS(4120), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1908), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4122), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4138), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4150), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3832), 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, @@ -164007,62 +165987,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55263] = 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, + [56020] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, - anon_sym_LBRACK, - ACTIONS(3854), 1, - anon_sym_QMARK, - ACTIONS(3856), 1, - anon_sym_DOT, - ACTIONS(3878), 1, - anon_sym_as, - ACTIONS(4124), 1, + STATE(1918), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4070), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(4130), 1, - anon_sym_AMP_AMP, - ACTIONS(4132), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, - anon_sym_EQ, - ACTIONS(4216), 1, - anon_sym_DOT_DOT, - ACTIONS(4372), 1, - anon_sym_SEMI, - ACTIONS(4506), 1, - anon_sym_RBRACE, - ACTIONS(4120), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1909), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4122), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4138), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4150), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4068), 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, @@ -164073,62 +166035,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55352] = 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, + [56073] = 22, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(325), 1, - anon_sym_RBRACE, - ACTIONS(3850), 1, + ACTIONS(3902), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3906), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3908), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(4022), 1, anon_sym_as, - ACTIONS(4124), 1, - anon_sym_CARET, - ACTIONS(4126), 1, + ACTIONS(4170), 1, anon_sym_AMP, - ACTIONS(4128), 1, + ACTIONS(4180), 1, + anon_sym_CARET, + ACTIONS(4182), 1, anon_sym_PIPE, - ACTIONS(4130), 1, + ACTIONS(4188), 1, anon_sym_AMP_AMP, - ACTIONS(4132), 1, + ACTIONS(4192), 1, anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, - anon_sym_EQ, ACTIONS(4216), 1, + anon_sym_EQ, + ACTIONS(4258), 1, anon_sym_DOT_DOT, - ACTIONS(4372), 1, - anon_sym_SEMI, - ACTIONS(4120), 2, + ACTIONS(3860), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(4168), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4134), 2, + ACTIONS(4172), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + ACTIONS(4186), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, + ACTIONS(4260), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1910), 2, + STATE(1919), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(4166), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4138), 4, + ACTIONS(4184), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4150), 10, + ACTIONS(4214), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -164139,62 +166107,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55441] = 23, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [56160] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(327), 1, - anon_sym_RBRACE, - ACTIONS(3850), 1, - anon_sym_LBRACK, - ACTIONS(3854), 1, - anon_sym_QMARK, - ACTIONS(3856), 1, - anon_sym_DOT, - ACTIONS(3878), 1, - anon_sym_as, - ACTIONS(4124), 1, + STATE(1920), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1500), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(4130), 1, - anon_sym_AMP_AMP, - ACTIONS(4132), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, - anon_sym_EQ, - ACTIONS(4216), 1, - anon_sym_DOT_DOT, - ACTIONS(4372), 1, - anon_sym_SEMI, - ACTIONS(4120), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1911), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4122), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4138), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4150), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1498), 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, @@ -164205,61 +166148,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55530] = 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, + [56213] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, - anon_sym_LBRACK, - ACTIONS(3854), 1, - anon_sym_QMARK, - ACTIONS(3856), 1, - anon_sym_DOT, - ACTIONS(3878), 1, - anon_sym_as, - ACTIONS(4124), 1, + STATE(1921), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3596), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(4130), 1, - anon_sym_AMP_AMP, - ACTIONS(4132), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, - anon_sym_EQ, - ACTIONS(4216), 1, - anon_sym_DOT_DOT, - ACTIONS(4120), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4508), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1912), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4122), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4138), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4150), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3594), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -164270,61 +166196,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55617] = 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, + [56266] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, - anon_sym_LBRACK, - ACTIONS(3854), 1, - anon_sym_QMARK, - ACTIONS(3856), 1, - anon_sym_DOT, - ACTIONS(3878), 1, - anon_sym_as, - ACTIONS(4124), 1, + STATE(1922), 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, - ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(4130), 1, - anon_sym_AMP_AMP, - ACTIONS(4132), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, - anon_sym_EQ, - ACTIONS(4216), 1, - anon_sym_DOT_DOT, - ACTIONS(4120), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4510), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1913), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4122), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4138), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4150), 10, + 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, @@ -164335,62 +166244,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55704] = 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, + [56319] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(329), 1, - anon_sym_RBRACE, - ACTIONS(3850), 1, - anon_sym_LBRACK, - ACTIONS(3854), 1, - anon_sym_QMARK, - ACTIONS(3856), 1, - anon_sym_DOT, - ACTIONS(3878), 1, - anon_sym_as, - ACTIONS(4124), 1, + STATE(1923), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3894), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(4130), 1, - anon_sym_AMP_AMP, - ACTIONS(4132), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, - anon_sym_EQ, - ACTIONS(4216), 1, - anon_sym_DOT_DOT, - ACTIONS(4372), 1, - anon_sym_SEMI, - ACTIONS(4120), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1914), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4122), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4138), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4150), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3892), 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, @@ -164401,62 +166292,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55793] = 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, + [56372] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, - anon_sym_LBRACK, - ACTIONS(3854), 1, - anon_sym_QMARK, - ACTIONS(3856), 1, - anon_sym_DOT, - ACTIONS(3878), 1, - anon_sym_as, - ACTIONS(4124), 1, + STATE(1924), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3924), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(4130), 1, - anon_sym_AMP_AMP, - ACTIONS(4132), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, - anon_sym_EQ, - ACTIONS(4216), 1, - anon_sym_DOT_DOT, - ACTIONS(4372), 1, - anon_sym_SEMI, - ACTIONS(4512), 1, - anon_sym_RBRACE, - ACTIONS(4120), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1915), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4122), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4138), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4150), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3922), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -164467,62 +166340,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55882] = 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, + [56425] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(333), 1, - anon_sym_RBRACE, - ACTIONS(3850), 1, - anon_sym_LBRACK, - ACTIONS(3854), 1, - anon_sym_QMARK, - ACTIONS(3856), 1, - anon_sym_DOT, - ACTIONS(3878), 1, - anon_sym_as, - ACTIONS(4124), 1, + STATE(1925), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3972), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(4130), 1, - anon_sym_AMP_AMP, - ACTIONS(4132), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, - anon_sym_EQ, - ACTIONS(4216), 1, - anon_sym_DOT_DOT, - ACTIONS(4372), 1, - anon_sym_SEMI, - ACTIONS(4120), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1916), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4122), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4138), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4150), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3970), 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, @@ -164533,62 +166388,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55971] = 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, + [56478] = 19, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(335), 1, - anon_sym_RBRACE, - ACTIONS(3850), 1, + ACTIONS(4400), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(4406), 1, anon_sym_QMARK, - ACTIONS(3856), 1, - anon_sym_DOT, - ACTIONS(3878), 1, - anon_sym_as, - ACTIONS(4124), 1, + ACTIONS(4408), 1, anon_sym_CARET, - ACTIONS(4126), 1, + ACTIONS(4410), 1, anon_sym_AMP, - ACTIONS(4128), 1, + ACTIONS(4412), 1, anon_sym_PIPE, - ACTIONS(4130), 1, + ACTIONS(4414), 1, anon_sym_AMP_AMP, - ACTIONS(4132), 1, + ACTIONS(4416), 1, anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, + ACTIONS(4428), 1, + anon_sym_DOT, + ACTIONS(4434), 1, + anon_sym_as, + ACTIONS(388), 2, anon_sym_EQ, - ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4372), 1, - anon_sym_SEMI, - ACTIONS(4120), 2, + ACTIONS(4402), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4134), 2, + ACTIONS(4418), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + ACTIONS(4426), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1917), 2, + STATE(1926), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(4404), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4138), 4, + ACTIONS(4424), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4150), 10, + ACTIONS(386), 14, + anon_sym_LPAREN, + anon_sym_EQ_GT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -164599,62 +166455,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [56060] = 23, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [56559] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(303), 1, - anon_sym_RBRACE, - ACTIONS(3850), 1, - anon_sym_LBRACK, - ACTIONS(3854), 1, - anon_sym_QMARK, - ACTIONS(3856), 1, - anon_sym_DOT, - ACTIONS(3878), 1, - anon_sym_as, - ACTIONS(4124), 1, + STATE(1927), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3992), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(4130), 1, - anon_sym_AMP_AMP, - ACTIONS(4132), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, - anon_sym_EQ, - ACTIONS(4216), 1, - anon_sym_DOT_DOT, - ACTIONS(4372), 1, - anon_sym_SEMI, - ACTIONS(4120), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3990), 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(1918), 2, + anon_sym_as, + [56612] = 5, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + STATE(1928), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(3980), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4138), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4150), 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(3978), 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, @@ -164665,62 +166546,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [56149] = 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, + [56665] = 21, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(352), 1, + anon_sym_EQ, + ACTIONS(4400), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(4406), 1, anon_sym_QMARK, - ACTIONS(3856), 1, - anon_sym_DOT, - ACTIONS(3878), 1, - anon_sym_as, - ACTIONS(4124), 1, + ACTIONS(4408), 1, anon_sym_CARET, - ACTIONS(4126), 1, + ACTIONS(4410), 1, anon_sym_AMP, - ACTIONS(4128), 1, + ACTIONS(4412), 1, anon_sym_PIPE, - ACTIONS(4130), 1, + ACTIONS(4414), 1, anon_sym_AMP_AMP, - ACTIONS(4132), 1, + ACTIONS(4416), 1, anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, - anon_sym_EQ, - ACTIONS(4216), 1, + ACTIONS(4428), 1, + anon_sym_DOT, + ACTIONS(4430), 1, anon_sym_DOT_DOT, - ACTIONS(4372), 1, - anon_sym_SEMI, - ACTIONS(4514), 1, - anon_sym_RBRACE, - ACTIONS(4120), 2, + ACTIONS(4434), 1, + anon_sym_as, + ACTIONS(4402), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4134), 2, + ACTIONS(4418), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + ACTIONS(4426), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, + ACTIONS(4432), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1919), 2, + STATE(1929), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(4404), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4138), 4, + ACTIONS(4424), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4150), 10, + ACTIONS(346), 12, + anon_sym_LPAREN, + anon_sym_EQ_GT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -164731,15 +166617,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [56238] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [56750] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1920), 2, + STATE(1930), 2, sym_line_comment, sym_block_comment, - ACTIONS(4060), 15, + ACTIONS(3984), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -164755,7 +166641,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4058), 23, + ACTIONS(3982), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -164779,15 +166665,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [56291] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [56803] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1921), 2, + STATE(1931), 2, sym_line_comment, sym_block_comment, - ACTIONS(1459), 15, + ACTIONS(3570), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -164803,7 +166689,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1457), 23, + ACTIONS(3568), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -164827,15 +166713,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [56344] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [56856] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1922), 2, + STATE(1932), 2, sym_line_comment, sym_block_comment, - ACTIONS(1459), 15, + ACTIONS(3506), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -164851,7 +166737,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1457), 23, + ACTIONS(3504), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -164875,15 +166761,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [56397] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [56909] = 8, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1923), 2, + ACTIONS(4400), 1, + anon_sym_LBRACK, + ACTIONS(4406), 1, + anon_sym_QMARK, + ACTIONS(4428), 1, + anon_sym_DOT, + STATE(1933), 2, sym_line_comment, sym_block_comment, - ACTIONS(4064), 15, + ACTIONS(3912), 14, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -164897,13 +166789,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(4062), 23, + ACTIONS(3910), 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, @@ -164923,37 +166812,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [56450] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [56968] = 22, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1924), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4002), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3902), 1, + anon_sym_LBRACK, + ACTIONS(3906), 1, + anon_sym_QMARK, + ACTIONS(3908), 1, + anon_sym_DOT, + ACTIONS(4022), 1, + anon_sym_as, + ACTIONS(4384), 1, anon_sym_CARET, + ACTIONS(4386), 1, anon_sym_AMP, + ACTIONS(4388), 1, anon_sym_PIPE, + ACTIONS(4390), 1, + anon_sym_AMP_AMP, + ACTIONS(4392), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4436), 1, + anon_sym_DOT_DOT, + ACTIONS(4466), 1, + anon_sym_EQ, + ACTIONS(3828), 2, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(4380), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4394), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4398), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(4000), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4438), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1934), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4382), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4396), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4464), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -164964,22 +166877,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, - [56503] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [57055] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1925), 2, + STATE(1935), 2, sym_line_comment, sym_block_comment, - ACTIONS(4014), 15, + ACTIONS(4030), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -164995,7 +166901,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4012), 23, + ACTIONS(4028), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -165019,15 +166925,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [56556] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [57108] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1926), 2, + STATE(1936), 2, sym_line_comment, sym_block_comment, - ACTIONS(4026), 15, + ACTIONS(4042), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -165043,7 +166949,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4024), 23, + ACTIONS(4040), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -165067,46 +166973,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [56609] = 17, + [57161] = 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(4314), 1, + ACTIONS(4356), 1, sym_identifier, - ACTIONS(4316), 1, + ACTIONS(4358), 1, anon_sym_LBRACE, - ACTIONS(4320), 1, + ACTIONS(4362), 1, anon_sym_STAR, - ACTIONS(4326), 1, + ACTIONS(4368), 1, anon_sym_COLON_COLON, - ACTIONS(4330), 1, + ACTIONS(4372), 1, sym_metavariable, - ACTIONS(4516), 1, + ACTIONS(4552), 1, anon_sym_RBRACE, - STATE(2562), 1, + STATE(2585), 1, sym_scoped_identifier, - STATE(3468), 1, + STATE(3472), 1, sym__use_clause, - STATE(3653), 1, + STATE(3565), 1, sym_generic_type_with_turbofish, - STATE(3666), 1, + STATE(3607), 1, sym_bracketed_type, - STATE(1927), 2, + STATE(1937), 2, sym_line_comment, sym_block_comment, - ACTIONS(4328), 3, + ACTIONS(4370), 3, sym_self, sym_super, sym_crate, - STATE(3067), 4, + STATE(3032), 4, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(4322), 20, + ACTIONS(4364), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -165127,15 +167033,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_gen, anon_sym_union, - [56686] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [57238] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1928), 2, + STATE(1938), 2, sym_line_comment, sym_block_comment, - ACTIONS(3820), 15, + ACTIONS(3932), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -165151,7 +167057,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3818), 23, + ACTIONS(3930), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -165175,61 +167081,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [56739] = 22, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [57291] = 22, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(3902), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3906), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3908), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(4022), 1, anon_sym_as, - ACTIONS(4124), 1, - anon_sym_CARET, - ACTIONS(4126), 1, + ACTIONS(4170), 1, anon_sym_AMP, - ACTIONS(4128), 1, + ACTIONS(4180), 1, + anon_sym_CARET, + ACTIONS(4182), 1, anon_sym_PIPE, - ACTIONS(4130), 1, + ACTIONS(4188), 1, anon_sym_AMP_AMP, - ACTIONS(4132), 1, + ACTIONS(4192), 1, anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, - anon_sym_EQ, ACTIONS(4216), 1, + anon_sym_EQ, + ACTIONS(4258), 1, anon_sym_DOT_DOT, - ACTIONS(4120), 2, + ACTIONS(4168), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4134), 2, + ACTIONS(4172), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + ACTIONS(4186), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, + ACTIONS(4260), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4518), 2, + ACTIONS(4554), 2, anon_sym_RBRACE, anon_sym_COMMA, - STATE(1929), 2, + STATE(1939), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(4166), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4138), 4, + ACTIONS(4184), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4150), 10, + ACTIONS(4214), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -165240,15 +167146,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [56826] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [57378] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1930), 2, + STATE(1940), 2, sym_line_comment, sym_block_comment, - ACTIONS(3838), 15, + ACTIONS(3862), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -165264,7 +167170,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3836), 23, + ACTIONS(3860), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -165288,61 +167194,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [56879] = 22, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [57431] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, - anon_sym_LBRACK, - ACTIONS(3854), 1, - anon_sym_QMARK, - ACTIONS(3856), 1, - anon_sym_DOT, - ACTIONS(3878), 1, - anon_sym_as, - ACTIONS(4124), 1, + STATE(1941), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1504), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4126), 1, anon_sym_AMP, - ACTIONS(4128), 1, anon_sym_PIPE, - ACTIONS(4130), 1, - anon_sym_AMP_AMP, - ACTIONS(4132), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, - anon_sym_EQ, - ACTIONS(4216), 1, - anon_sym_DOT_DOT, - ACTIONS(4120), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1502), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4520), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1931), 2, + anon_sym_as, + [57484] = 5, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + STATE(1942), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(4038), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4138), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4150), 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(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, @@ -165353,15 +167283,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [56966] = 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, + [57537] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1932), 2, + STATE(1943), 2, sym_line_comment, sym_block_comment, - ACTIONS(3842), 15, + ACTIONS(4026), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -165377,7 +167314,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3840), 23, + ACTIONS(4024), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -165401,62 +167338,181 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [57019] = 23, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [57590] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, - anon_sym_LBRACK, - ACTIONS(3854), 1, - anon_sym_QMARK, - ACTIONS(3856), 1, - anon_sym_DOT, - ACTIONS(3878), 1, - anon_sym_as, - ACTIONS(4406), 1, + STATE(1944), 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, - ACTIONS(4408), 1, anon_sym_AMP, - ACTIONS(4410), 1, anon_sym_PIPE, - ACTIONS(4412), 1, - anon_sym_AMP_AMP, - ACTIONS(4414), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4420), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(4460), 1, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4522), 1, - anon_sym_LBRACE, - STATE(403), 1, - sym_match_block, - ACTIONS(4402), 2, + 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, + [57643] = 5, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + STATE(1945), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4000), 15, anon_sym_PLUS, + anon_sym_STAR, anon_sym_DASH, - ACTIONS(4416), 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(4424), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4462), 2, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3998), 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(1933), 2, + anon_sym_as, + [57696] = 5, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + STATE(1946), 2, sym_line_comment, sym_block_comment, - ACTIONS(4404), 3, + ACTIONS(1480), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4422), 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(1478), 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(4418), 10, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [57749] = 5, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + STATE(1947), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4004), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4002), 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, @@ -165467,61 +167523,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [57108] = 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, + [57802] = 22, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(3902), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3906), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3908), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(4022), 1, anon_sym_as, - ACTIONS(4124), 1, + ACTIONS(4384), 1, anon_sym_CARET, - ACTIONS(4126), 1, + ACTIONS(4386), 1, anon_sym_AMP, - ACTIONS(4128), 1, + ACTIONS(4388), 1, anon_sym_PIPE, - ACTIONS(4130), 1, + ACTIONS(4390), 1, anon_sym_AMP_AMP, - ACTIONS(4132), 1, + ACTIONS(4392), 1, anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, - anon_sym_EQ, - ACTIONS(4216), 1, + ACTIONS(4436), 1, anon_sym_DOT_DOT, - ACTIONS(4120), 2, + ACTIONS(4466), 1, + anon_sym_EQ, + ACTIONS(3914), 2, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(4380), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4134), 2, + ACTIONS(4394), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + ACTIONS(4398), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, + ACTIONS(4438), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4524), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1934), 2, + STATE(1948), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(4382), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4138), 4, + ACTIONS(4396), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4150), 10, + ACTIONS(4464), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -165532,62 +167595,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [57195] = 23, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [57889] = 22, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(3902), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3906), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3908), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(4022), 1, anon_sym_as, - ACTIONS(4124), 1, - anon_sym_CARET, - ACTIONS(4126), 1, + ACTIONS(4170), 1, anon_sym_AMP, - ACTIONS(4128), 1, + ACTIONS(4180), 1, + anon_sym_CARET, + ACTIONS(4182), 1, anon_sym_PIPE, - ACTIONS(4130), 1, + ACTIONS(4188), 1, anon_sym_AMP_AMP, - ACTIONS(4132), 1, + ACTIONS(4192), 1, anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, - anon_sym_EQ, ACTIONS(4216), 1, + anon_sym_EQ, + ACTIONS(4258), 1, anon_sym_DOT_DOT, - ACTIONS(4526), 1, + ACTIONS(4556), 1, anon_sym_SEMI, - ACTIONS(4528), 1, - anon_sym_else, - ACTIONS(4120), 2, + ACTIONS(4168), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4134), 2, + ACTIONS(4172), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + ACTIONS(4186), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, + ACTIONS(4260), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1935), 2, + STATE(1949), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(4166), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4138), 4, + ACTIONS(4184), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4150), 10, + ACTIONS(4214), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -165598,37 +167659,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [57284] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [57975] = 22, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1936), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1553), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(3902), 1, + anon_sym_LBRACK, + ACTIONS(3906), 1, + anon_sym_QMARK, + ACTIONS(3908), 1, + anon_sym_DOT, + ACTIONS(4022), 1, + anon_sym_as, + ACTIONS(4170), 1, anon_sym_AMP, + ACTIONS(4180), 1, + anon_sym_CARET, + ACTIONS(4182), 1, anon_sym_PIPE, + ACTIONS(4188), 1, + anon_sym_AMP_AMP, + ACTIONS(4192), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4216), 1, + anon_sym_EQ, + ACTIONS(4258), 1, + anon_sym_DOT_DOT, + ACTIONS(4558), 1, + anon_sym_SEMI, + ACTIONS(4168), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4172), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4186), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1551), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4260), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1950), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4166), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4184), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4214), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -165639,125 +167723,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, - [57337] = 16, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [58061] = 22, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4314), 1, - sym_identifier, - ACTIONS(4316), 1, - anon_sym_LBRACE, - ACTIONS(4320), 1, - anon_sym_STAR, - ACTIONS(4326), 1, - anon_sym_COLON_COLON, - ACTIONS(4330), 1, - sym_metavariable, - STATE(2562), 1, - sym_scoped_identifier, - STATE(3653), 1, - sym_generic_type_with_turbofish, - STATE(3666), 1, - sym_bracketed_type, - STATE(3744), 1, - sym__use_clause, - STATE(1937), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4328), 3, - sym_self, - sym_super, - sym_crate, - STATE(3067), 4, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(4322), 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, - [57411] = 22, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(3902), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3906), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3908), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(4022), 1, anon_sym_as, - ACTIONS(4124), 1, - anon_sym_CARET, - ACTIONS(4126), 1, + ACTIONS(4170), 1, anon_sym_AMP, - ACTIONS(4128), 1, + ACTIONS(4180), 1, + anon_sym_CARET, + ACTIONS(4182), 1, anon_sym_PIPE, - ACTIONS(4130), 1, + ACTIONS(4188), 1, anon_sym_AMP_AMP, - ACTIONS(4132), 1, + ACTIONS(4192), 1, anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, - anon_sym_EQ, ACTIONS(4216), 1, + anon_sym_EQ, + ACTIONS(4258), 1, anon_sym_DOT_DOT, - ACTIONS(4530), 1, - anon_sym_RBRACK, - ACTIONS(4120), 2, + ACTIONS(4560), 1, + anon_sym_SEMI, + ACTIONS(4168), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4134), 2, + ACTIONS(4172), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + ACTIONS(4186), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, + ACTIONS(4260), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1938), 2, + STATE(1951), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(4166), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4138), 4, + ACTIONS(4184), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4150), 10, + ACTIONS(4214), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -165768,60 +167787,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [57497] = 22, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [58147] = 22, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(3902), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3906), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3908), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(4022), 1, anon_sym_as, - ACTIONS(4124), 1, - anon_sym_CARET, - ACTIONS(4126), 1, + ACTIONS(4170), 1, anon_sym_AMP, - ACTIONS(4128), 1, + ACTIONS(4180), 1, + anon_sym_CARET, + ACTIONS(4182), 1, anon_sym_PIPE, - ACTIONS(4130), 1, + ACTIONS(4188), 1, anon_sym_AMP_AMP, - ACTIONS(4132), 1, + ACTIONS(4192), 1, anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, - anon_sym_EQ, ACTIONS(4216), 1, + anon_sym_EQ, + ACTIONS(4258), 1, anon_sym_DOT_DOT, - ACTIONS(4532), 1, - anon_sym_RBRACK, - ACTIONS(4120), 2, + ACTIONS(4562), 1, + anon_sym_SEMI, + ACTIONS(4168), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4134), 2, + ACTIONS(4172), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + ACTIONS(4186), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, + ACTIONS(4260), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1939), 2, + STATE(1952), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(4166), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4138), 4, + ACTIONS(4184), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4150), 10, + ACTIONS(4214), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -165832,60 +167851,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [57583] = 22, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [58233] = 22, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(3902), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3906), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3908), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(4022), 1, anon_sym_as, - ACTIONS(4124), 1, - anon_sym_CARET, - ACTIONS(4126), 1, + ACTIONS(4170), 1, anon_sym_AMP, - ACTIONS(4128), 1, + ACTIONS(4180), 1, + anon_sym_CARET, + ACTIONS(4182), 1, anon_sym_PIPE, - ACTIONS(4130), 1, + ACTIONS(4188), 1, anon_sym_AMP_AMP, - ACTIONS(4132), 1, + ACTIONS(4192), 1, anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, - anon_sym_EQ, ACTIONS(4216), 1, + anon_sym_EQ, + ACTIONS(4258), 1, anon_sym_DOT_DOT, - ACTIONS(4534), 1, + ACTIONS(4564), 1, anon_sym_SEMI, - ACTIONS(4120), 2, + ACTIONS(4168), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4134), 2, + ACTIONS(4172), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + ACTIONS(4186), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, + ACTIONS(4260), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1940), 2, + STATE(1953), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(4166), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4138), 4, + ACTIONS(4184), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4150), 10, + ACTIONS(4214), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -165896,60 +167915,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [57669] = 22, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [58319] = 22, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(3902), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3906), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3908), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(4022), 1, anon_sym_as, - ACTIONS(4124), 1, - anon_sym_CARET, - ACTIONS(4126), 1, + ACTIONS(4170), 1, anon_sym_AMP, - ACTIONS(4128), 1, + ACTIONS(4180), 1, + anon_sym_CARET, + ACTIONS(4182), 1, anon_sym_PIPE, - ACTIONS(4130), 1, + ACTIONS(4188), 1, anon_sym_AMP_AMP, - ACTIONS(4132), 1, + ACTIONS(4192), 1, anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, - anon_sym_EQ, ACTIONS(4216), 1, + anon_sym_EQ, + ACTIONS(4258), 1, anon_sym_DOT_DOT, - ACTIONS(4536), 1, + ACTIONS(4566), 1, anon_sym_SEMI, - ACTIONS(4120), 2, + ACTIONS(4168), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4134), 2, + ACTIONS(4172), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + ACTIONS(4186), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, + ACTIONS(4260), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1941), 2, + STATE(1954), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(4166), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4138), 4, + ACTIONS(4184), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4150), 10, + ACTIONS(4214), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -165960,60 +167979,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [57755] = 22, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [58405] = 21, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(4400), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(4406), 1, anon_sym_QMARK, - ACTIONS(3856), 1, - anon_sym_DOT, - ACTIONS(3878), 1, - anon_sym_as, - ACTIONS(4124), 1, + ACTIONS(4408), 1, anon_sym_CARET, - ACTIONS(4126), 1, + ACTIONS(4410), 1, anon_sym_AMP, - ACTIONS(4128), 1, + ACTIONS(4412), 1, anon_sym_PIPE, - ACTIONS(4130), 1, - anon_sym_AMP_AMP, - ACTIONS(4132), 1, + ACTIONS(4416), 1, anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, + ACTIONS(4422), 1, anon_sym_EQ, - ACTIONS(4216), 1, + ACTIONS(4428), 1, + anon_sym_DOT, + ACTIONS(4434), 1, + anon_sym_as, + ACTIONS(4568), 1, anon_sym_DOT_DOT, - ACTIONS(4538), 1, - anon_sym_SEMI, - ACTIONS(4120), 2, + ACTIONS(4402), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4134), 2, + ACTIONS(4418), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + ACTIONS(4426), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, + ACTIONS(4444), 2, + anon_sym_EQ_GT, + anon_sym_AMP_AMP, + ACTIONS(4570), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1942), 2, + STATE(1955), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(4404), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4138), 4, + ACTIONS(4424), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4150), 10, + ACTIONS(4420), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -166024,60 +168042,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [57841] = 22, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [58489] = 22, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(3902), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3906), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3908), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(4022), 1, anon_sym_as, - ACTIONS(4124), 1, - anon_sym_CARET, - ACTIONS(4126), 1, + ACTIONS(4170), 1, anon_sym_AMP, - ACTIONS(4128), 1, + ACTIONS(4180), 1, + anon_sym_CARET, + ACTIONS(4182), 1, anon_sym_PIPE, - ACTIONS(4130), 1, + ACTIONS(4188), 1, anon_sym_AMP_AMP, - ACTIONS(4132), 1, + ACTIONS(4192), 1, anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, - anon_sym_EQ, ACTIONS(4216), 1, + anon_sym_EQ, + ACTIONS(4258), 1, anon_sym_DOT_DOT, - ACTIONS(4540), 1, - anon_sym_SEMI, - ACTIONS(4120), 2, + ACTIONS(4572), 1, + anon_sym_RBRACK, + ACTIONS(4168), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4134), 2, + ACTIONS(4172), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + ACTIONS(4186), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, + ACTIONS(4260), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1943), 2, + STATE(1956), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(4166), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4138), 4, + ACTIONS(4184), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4150), 10, + ACTIONS(4214), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -166088,60 +168106,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [57927] = 22, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [58575] = 22, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(3902), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3906), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3908), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(4022), 1, anon_sym_as, - ACTIONS(4124), 1, - anon_sym_CARET, - ACTIONS(4126), 1, + ACTIONS(4170), 1, anon_sym_AMP, - ACTIONS(4128), 1, + ACTIONS(4180), 1, + anon_sym_CARET, + ACTIONS(4182), 1, anon_sym_PIPE, - ACTIONS(4130), 1, + ACTIONS(4188), 1, anon_sym_AMP_AMP, - ACTIONS(4132), 1, + ACTIONS(4192), 1, anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, - anon_sym_EQ, ACTIONS(4216), 1, + anon_sym_EQ, + ACTIONS(4258), 1, anon_sym_DOT_DOT, - ACTIONS(4542), 1, + ACTIONS(4574), 1, anon_sym_SEMI, - ACTIONS(4120), 2, + ACTIONS(4168), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4134), 2, + ACTIONS(4172), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + ACTIONS(4186), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, + ACTIONS(4260), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1944), 2, + STATE(1957), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(4166), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4138), 4, + ACTIONS(4184), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4150), 10, + ACTIONS(4214), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -166152,118 +168170,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [58013] = 16, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [58661] = 22, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4314), 1, - sym_identifier, - ACTIONS(4316), 1, - anon_sym_LBRACE, - ACTIONS(4320), 1, - anon_sym_STAR, - ACTIONS(4326), 1, - anon_sym_COLON_COLON, - ACTIONS(4330), 1, - sym_metavariable, - STATE(2562), 1, - sym_scoped_identifier, - STATE(3521), 1, - sym__use_clause, - STATE(3653), 1, - sym_generic_type_with_turbofish, - STATE(3666), 1, - sym_bracketed_type, - STATE(1945), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4328), 3, - sym_self, - sym_super, - sym_crate, - STATE(3067), 4, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(4322), 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, - [58087] = 22, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(3902), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3906), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3908), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(4022), 1, anon_sym_as, - ACTIONS(4124), 1, - anon_sym_CARET, - ACTIONS(4126), 1, + ACTIONS(4170), 1, anon_sym_AMP, - ACTIONS(4128), 1, + ACTIONS(4180), 1, + anon_sym_CARET, + ACTIONS(4182), 1, anon_sym_PIPE, - ACTIONS(4130), 1, + ACTIONS(4188), 1, anon_sym_AMP_AMP, - ACTIONS(4132), 1, + ACTIONS(4192), 1, anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, - anon_sym_EQ, ACTIONS(4216), 1, + anon_sym_EQ, + ACTIONS(4258), 1, anon_sym_DOT_DOT, - ACTIONS(4544), 1, - anon_sym_SEMI, - ACTIONS(4120), 2, + ACTIONS(4576), 1, + anon_sym_RBRACK, + ACTIONS(4168), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4134), 2, + ACTIONS(4172), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + ACTIONS(4186), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, + ACTIONS(4260), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1946), 2, + STATE(1958), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(4166), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4138), 4, + ACTIONS(4184), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4150), 10, + ACTIONS(4214), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -166274,60 +168234,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [58173] = 22, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [58747] = 22, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(3902), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3906), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3908), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(4022), 1, anon_sym_as, - ACTIONS(4124), 1, - anon_sym_CARET, - ACTIONS(4126), 1, + ACTIONS(4170), 1, anon_sym_AMP, - ACTIONS(4128), 1, + ACTIONS(4180), 1, + anon_sym_CARET, + ACTIONS(4182), 1, anon_sym_PIPE, - ACTIONS(4130), 1, + ACTIONS(4188), 1, anon_sym_AMP_AMP, - ACTIONS(4132), 1, + ACTIONS(4192), 1, anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, - anon_sym_EQ, ACTIONS(4216), 1, + anon_sym_EQ, + ACTIONS(4258), 1, anon_sym_DOT_DOT, - ACTIONS(4546), 1, - anon_sym_RBRACK, - ACTIONS(4120), 2, + ACTIONS(4474), 1, + anon_sym_COMMA, + ACTIONS(4168), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4134), 2, + ACTIONS(4172), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + ACTIONS(4186), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, + ACTIONS(4260), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1947), 2, + STATE(1959), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(4166), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4138), 4, + ACTIONS(4184), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4150), 10, + ACTIONS(4214), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -166338,60 +168298,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [58259] = 22, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [58833] = 22, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(3902), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3906), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3908), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(4022), 1, anon_sym_as, - ACTIONS(4124), 1, - anon_sym_CARET, - ACTIONS(4126), 1, + ACTIONS(4170), 1, anon_sym_AMP, - ACTIONS(4128), 1, + ACTIONS(4180), 1, + anon_sym_CARET, + ACTIONS(4182), 1, anon_sym_PIPE, - ACTIONS(4130), 1, + ACTIONS(4188), 1, anon_sym_AMP_AMP, - ACTIONS(4132), 1, + ACTIONS(4192), 1, anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, - anon_sym_EQ, ACTIONS(4216), 1, + anon_sym_EQ, + ACTIONS(4258), 1, anon_sym_DOT_DOT, - ACTIONS(4548), 1, - anon_sym_SEMI, - ACTIONS(4120), 2, + ACTIONS(4578), 1, + anon_sym_RBRACK, + ACTIONS(4168), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4134), 2, + ACTIONS(4172), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + ACTIONS(4186), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, + ACTIONS(4260), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1948), 2, + STATE(1960), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(4166), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4138), 4, + ACTIONS(4184), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4150), 10, + ACTIONS(4214), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -166402,118 +168362,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [58345] = 16, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [58919] = 22, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4314), 1, - sym_identifier, - ACTIONS(4316), 1, - anon_sym_LBRACE, - ACTIONS(4320), 1, - anon_sym_STAR, - ACTIONS(4326), 1, - anon_sym_COLON_COLON, - ACTIONS(4330), 1, - sym_metavariable, - STATE(2562), 1, - sym_scoped_identifier, - STATE(3551), 1, - sym__use_clause, - STATE(3653), 1, - sym_generic_type_with_turbofish, - STATE(3666), 1, - sym_bracketed_type, - STATE(1949), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4328), 3, - sym_self, - sym_super, - sym_crate, - STATE(3067), 4, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(4322), 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, - [58419] = 22, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(3902), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3906), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3908), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(4022), 1, anon_sym_as, - ACTIONS(4124), 1, - anon_sym_CARET, - ACTIONS(4126), 1, + ACTIONS(4170), 1, anon_sym_AMP, - ACTIONS(4128), 1, + ACTIONS(4180), 1, + anon_sym_CARET, + ACTIONS(4182), 1, anon_sym_PIPE, - ACTIONS(4130), 1, + ACTIONS(4188), 1, anon_sym_AMP_AMP, - ACTIONS(4132), 1, + ACTIONS(4192), 1, anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, - anon_sym_EQ, ACTIONS(4216), 1, + anon_sym_EQ, + ACTIONS(4258), 1, anon_sym_DOT_DOT, - ACTIONS(4550), 1, + ACTIONS(4580), 1, anon_sym_RBRACK, - ACTIONS(4120), 2, + ACTIONS(4168), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4134), 2, + ACTIONS(4172), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + ACTIONS(4186), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, + ACTIONS(4260), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1950), 2, + STATE(1961), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(4166), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4138), 4, + ACTIONS(4184), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4150), 10, + ACTIONS(4214), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -166524,60 +168426,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [58505] = 22, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [59005] = 22, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(3902), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3906), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3908), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(4022), 1, anon_sym_as, - ACTIONS(4124), 1, - anon_sym_CARET, - ACTIONS(4126), 1, + ACTIONS(4170), 1, anon_sym_AMP, - ACTIONS(4128), 1, + ACTIONS(4180), 1, + anon_sym_CARET, + ACTIONS(4182), 1, anon_sym_PIPE, - ACTIONS(4130), 1, + ACTIONS(4188), 1, anon_sym_AMP_AMP, - ACTIONS(4132), 1, + ACTIONS(4192), 1, anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, - anon_sym_EQ, ACTIONS(4216), 1, + anon_sym_EQ, + ACTIONS(4258), 1, anon_sym_DOT_DOT, - ACTIONS(4552), 1, - anon_sym_COMMA, - ACTIONS(4120), 2, + ACTIONS(4582), 1, + anon_sym_SEMI, + ACTIONS(4168), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4134), 2, + ACTIONS(4172), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + ACTIONS(4186), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, + ACTIONS(4260), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1951), 2, + STATE(1962), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(4166), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4138), 4, + ACTIONS(4184), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4150), 10, + ACTIONS(4214), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -166588,59 +168490,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [58591] = 21, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [59091] = 22, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4354), 1, + ACTIONS(3902), 1, anon_sym_LBRACK, - ACTIONS(4360), 1, + ACTIONS(3906), 1, anon_sym_QMARK, - ACTIONS(4364), 1, + ACTIONS(3908), 1, anon_sym_DOT, - ACTIONS(4366), 1, + ACTIONS(4022), 1, anon_sym_as, - ACTIONS(4384), 1, - anon_sym_CARET, - ACTIONS(4386), 1, + ACTIONS(4170), 1, anon_sym_AMP, - ACTIONS(4388), 1, + ACTIONS(4180), 1, + anon_sym_CARET, + ACTIONS(4182), 1, anon_sym_PIPE, - ACTIONS(4392), 1, + ACTIONS(4188), 1, + anon_sym_AMP_AMP, + ACTIONS(4192), 1, anon_sym_PIPE_PIPE, - ACTIONS(4452), 1, + ACTIONS(4216), 1, anon_sym_EQ, - ACTIONS(4554), 1, + ACTIONS(4258), 1, anon_sym_DOT_DOT, - ACTIONS(4356), 2, + ACTIONS(4584), 1, + anon_sym_COMMA, + ACTIONS(4168), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4362), 2, + ACTIONS(4172), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4376), 2, - anon_sym_EQ_GT, - anon_sym_AMP_AMP, - ACTIONS(4396), 2, + ACTIONS(4186), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4556), 2, + ACTIONS(4260), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1952), 2, + STATE(1963), 2, sym_line_comment, sym_block_comment, - ACTIONS(4358), 3, + ACTIONS(4166), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4394), 4, + ACTIONS(4184), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4450), 10, + ACTIONS(4214), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -166651,118 +168554,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [58675] = 16, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [59177] = 22, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4314), 1, - sym_identifier, - ACTIONS(4316), 1, - anon_sym_LBRACE, - ACTIONS(4320), 1, - anon_sym_STAR, - ACTIONS(4326), 1, - anon_sym_COLON_COLON, - ACTIONS(4330), 1, - sym_metavariable, - STATE(2562), 1, - sym_scoped_identifier, - STATE(3468), 1, - sym__use_clause, - STATE(3653), 1, - sym_generic_type_with_turbofish, - STATE(3666), 1, - sym_bracketed_type, - STATE(1953), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4328), 3, - sym_self, - sym_super, - sym_crate, - STATE(3067), 4, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(4322), 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, - [58749] = 22, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(3902), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3906), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3908), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(4022), 1, anon_sym_as, - ACTIONS(4124), 1, - anon_sym_CARET, - ACTIONS(4126), 1, + ACTIONS(4170), 1, anon_sym_AMP, - ACTIONS(4128), 1, + ACTIONS(4180), 1, + anon_sym_CARET, + ACTIONS(4182), 1, anon_sym_PIPE, - ACTIONS(4130), 1, + ACTIONS(4188), 1, anon_sym_AMP_AMP, - ACTIONS(4132), 1, + ACTIONS(4192), 1, anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, - anon_sym_EQ, ACTIONS(4216), 1, + anon_sym_EQ, + ACTIONS(4258), 1, anon_sym_DOT_DOT, - ACTIONS(4558), 1, + ACTIONS(4586), 1, anon_sym_RBRACK, - ACTIONS(4120), 2, + ACTIONS(4168), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4134), 2, + ACTIONS(4172), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + ACTIONS(4186), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, + ACTIONS(4260), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1954), 2, + STATE(1964), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(4166), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4138), 4, + ACTIONS(4184), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4150), 10, + ACTIONS(4214), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -166773,59 +168618,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [58835] = 21, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [59263] = 21, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4354), 1, + ACTIONS(4400), 1, anon_sym_LBRACK, - ACTIONS(4360), 1, + ACTIONS(4406), 1, anon_sym_QMARK, - ACTIONS(4364), 1, - anon_sym_DOT, - ACTIONS(4366), 1, - anon_sym_as, - ACTIONS(4384), 1, + ACTIONS(4408), 1, anon_sym_CARET, - ACTIONS(4386), 1, + ACTIONS(4410), 1, anon_sym_AMP, - ACTIONS(4388), 1, + ACTIONS(4412), 1, anon_sym_PIPE, - ACTIONS(4392), 1, + ACTIONS(4416), 1, anon_sym_PIPE_PIPE, - ACTIONS(4452), 1, + ACTIONS(4422), 1, anon_sym_EQ, - ACTIONS(4554), 1, + ACTIONS(4428), 1, + anon_sym_DOT, + ACTIONS(4434), 1, + anon_sym_as, + ACTIONS(4568), 1, anon_sym_DOT_DOT, - ACTIONS(4356), 2, + ACTIONS(4402), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4362), 2, + ACTIONS(4418), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4396), 2, + ACTIONS(4426), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4436), 2, + ACTIONS(4526), 2, anon_sym_EQ_GT, anon_sym_AMP_AMP, - ACTIONS(4556), 2, + ACTIONS(4570), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1955), 2, + STATE(1965), 2, sym_line_comment, sym_block_comment, - ACTIONS(4358), 3, + ACTIONS(4404), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4394), 4, + ACTIONS(4424), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4450), 10, + ACTIONS(4420), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -166836,60 +168681,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [58919] = 22, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [59347] = 22, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(3902), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3906), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3908), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(4022), 1, anon_sym_as, - ACTIONS(4124), 1, - anon_sym_CARET, - ACTIONS(4126), 1, + ACTIONS(4170), 1, anon_sym_AMP, - ACTIONS(4128), 1, + ACTIONS(4180), 1, + anon_sym_CARET, + ACTIONS(4182), 1, anon_sym_PIPE, - ACTIONS(4130), 1, + ACTIONS(4188), 1, anon_sym_AMP_AMP, - ACTIONS(4132), 1, + ACTIONS(4192), 1, anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, - anon_sym_EQ, ACTIONS(4216), 1, + anon_sym_EQ, + ACTIONS(4258), 1, anon_sym_DOT_DOT, - ACTIONS(4560), 1, - anon_sym_RBRACK, - ACTIONS(4120), 2, + ACTIONS(4588), 1, + anon_sym_COMMA, + ACTIONS(4168), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4134), 2, + ACTIONS(4172), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + ACTIONS(4186), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, + ACTIONS(4260), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1956), 2, + STATE(1966), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(4166), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4138), 4, + ACTIONS(4184), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4150), 10, + ACTIONS(4214), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -166900,60 +168745,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [59005] = 22, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [59433] = 22, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4354), 1, + ACTIONS(3902), 1, anon_sym_LBRACK, - ACTIONS(4360), 1, + ACTIONS(3906), 1, anon_sym_QMARK, - ACTIONS(4364), 1, + ACTIONS(3908), 1, anon_sym_DOT, - ACTIONS(4366), 1, + ACTIONS(4022), 1, anon_sym_as, - ACTIONS(4384), 1, - anon_sym_CARET, - ACTIONS(4386), 1, + ACTIONS(4170), 1, anon_sym_AMP, - ACTIONS(4388), 1, + ACTIONS(4180), 1, + anon_sym_CARET, + ACTIONS(4182), 1, anon_sym_PIPE, - ACTIONS(4392), 1, + ACTIONS(4188), 1, + anon_sym_AMP_AMP, + ACTIONS(4192), 1, anon_sym_PIPE_PIPE, - ACTIONS(4452), 1, + ACTIONS(4216), 1, anon_sym_EQ, - ACTIONS(4502), 1, - anon_sym_EQ_GT, - ACTIONS(4554), 1, + ACTIONS(4258), 1, anon_sym_DOT_DOT, - ACTIONS(4562), 1, - anon_sym_AMP_AMP, - ACTIONS(4356), 2, + ACTIONS(4590), 1, + anon_sym_SEMI, + ACTIONS(4168), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4362), 2, + ACTIONS(4172), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4396), 2, + ACTIONS(4186), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4556), 2, + ACTIONS(4260), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1957), 2, + STATE(1967), 2, sym_line_comment, sym_block_comment, - ACTIONS(4358), 3, + ACTIONS(4166), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4394), 4, + ACTIONS(4184), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4450), 10, + ACTIONS(4214), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -166964,60 +168809,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [59091] = 22, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [59519] = 22, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(3902), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3906), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3908), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(4022), 1, anon_sym_as, - ACTIONS(4124), 1, + ACTIONS(4170), 1, + anon_sym_AMP, + ACTIONS(4180), 1, anon_sym_CARET, - ACTIONS(4126), 1, - anon_sym_AMP, - ACTIONS(4128), 1, + ACTIONS(4182), 1, anon_sym_PIPE, - ACTIONS(4130), 1, + ACTIONS(4188), 1, anon_sym_AMP_AMP, - ACTIONS(4132), 1, + ACTIONS(4192), 1, anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, - anon_sym_EQ, ACTIONS(4216), 1, + anon_sym_EQ, + ACTIONS(4258), 1, anon_sym_DOT_DOT, - ACTIONS(4564), 1, - anon_sym_SEMI, - ACTIONS(4120), 2, + ACTIONS(4592), 1, + anon_sym_RBRACK, + ACTIONS(4168), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4134), 2, + ACTIONS(4172), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + ACTIONS(4186), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, + ACTIONS(4260), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1958), 2, + STATE(1968), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(4166), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4138), 4, + ACTIONS(4184), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4150), 10, + ACTIONS(4214), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -167028,60 +168873,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [59177] = 22, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [59605] = 22, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(3902), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3906), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3908), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(4022), 1, anon_sym_as, - ACTIONS(4124), 1, - anon_sym_CARET, - ACTIONS(4126), 1, + ACTIONS(4170), 1, anon_sym_AMP, - ACTIONS(4128), 1, + ACTIONS(4180), 1, + anon_sym_CARET, + ACTIONS(4182), 1, anon_sym_PIPE, - ACTIONS(4130), 1, + ACTIONS(4188), 1, anon_sym_AMP_AMP, - ACTIONS(4132), 1, + ACTIONS(4192), 1, anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, - anon_sym_EQ, ACTIONS(4216), 1, + anon_sym_EQ, + ACTIONS(4258), 1, anon_sym_DOT_DOT, - ACTIONS(4566), 1, + ACTIONS(4594), 1, anon_sym_RBRACK, - ACTIONS(4120), 2, + ACTIONS(4168), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4134), 2, + ACTIONS(4172), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + ACTIONS(4186), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, + ACTIONS(4260), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1959), 2, + STATE(1969), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(4166), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4138), 4, + ACTIONS(4184), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4150), 10, + ACTIONS(4214), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -167092,60 +168937,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [59263] = 22, - ACTIONS(103), 1, + [59691] = 16, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(4356), 1, + sym_identifier, + ACTIONS(4358), 1, + anon_sym_LBRACE, + ACTIONS(4362), 1, + anon_sym_STAR, + ACTIONS(4368), 1, + anon_sym_COLON_COLON, + ACTIONS(4372), 1, + sym_metavariable, + STATE(2585), 1, + sym_scoped_identifier, + STATE(3565), 1, + sym_generic_type_with_turbofish, + STATE(3607), 1, + sym_bracketed_type, + STATE(3636), 1, + sym__use_clause, + STATE(1970), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4370), 3, + sym_self, + sym_super, + sym_crate, + STATE(3032), 4, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(4364), 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, + [59765] = 22, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(3902), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3906), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3908), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(4022), 1, anon_sym_as, - ACTIONS(4124), 1, - anon_sym_CARET, - ACTIONS(4126), 1, + ACTIONS(4170), 1, anon_sym_AMP, - ACTIONS(4128), 1, + ACTIONS(4180), 1, + anon_sym_CARET, + ACTIONS(4182), 1, anon_sym_PIPE, - ACTIONS(4130), 1, + ACTIONS(4188), 1, anon_sym_AMP_AMP, - ACTIONS(4132), 1, + ACTIONS(4192), 1, anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, - anon_sym_EQ, ACTIONS(4216), 1, + anon_sym_EQ, + ACTIONS(4258), 1, anon_sym_DOT_DOT, - ACTIONS(4372), 1, - anon_sym_SEMI, - ACTIONS(4120), 2, + ACTIONS(4596), 1, + anon_sym_RBRACK, + ACTIONS(4168), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4134), 2, + ACTIONS(4172), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + ACTIONS(4186), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, + ACTIONS(4260), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1960), 2, + STATE(1971), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(4166), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4138), 4, + ACTIONS(4184), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4150), 10, + ACTIONS(4214), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -167156,44 +169059,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [59349] = 16, + [59851] = 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(4314), 1, + ACTIONS(4356), 1, sym_identifier, - ACTIONS(4316), 1, + ACTIONS(4358), 1, anon_sym_LBRACE, - ACTIONS(4320), 1, + ACTIONS(4362), 1, anon_sym_STAR, - ACTIONS(4326), 1, + ACTIONS(4368), 1, anon_sym_COLON_COLON, - ACTIONS(4330), 1, + ACTIONS(4372), 1, sym_metavariable, - STATE(2562), 1, + STATE(2585), 1, sym_scoped_identifier, - STATE(3501), 1, - sym__use_clause, - STATE(3653), 1, + STATE(3565), 1, sym_generic_type_with_turbofish, - STATE(3666), 1, + STATE(3607), 1, sym_bracketed_type, - STATE(1961), 2, + STATE(3657), 1, + sym__use_clause, + STATE(1972), 2, sym_line_comment, sym_block_comment, - ACTIONS(4328), 3, + ACTIONS(4370), 3, sym_self, sym_super, sym_crate, - STATE(3067), 4, + STATE(3032), 4, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(4322), 20, + ACTIONS(4364), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -167214,60 +169117,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_gen, anon_sym_union, - [59423] = 22, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [59925] = 22, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(3902), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3906), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3908), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(4022), 1, anon_sym_as, - ACTIONS(4124), 1, - anon_sym_CARET, - ACTIONS(4126), 1, + ACTIONS(4170), 1, anon_sym_AMP, - ACTIONS(4128), 1, + ACTIONS(4180), 1, + anon_sym_CARET, + ACTIONS(4182), 1, anon_sym_PIPE, - ACTIONS(4130), 1, + ACTIONS(4188), 1, anon_sym_AMP_AMP, - ACTIONS(4132), 1, + ACTIONS(4192), 1, anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, - anon_sym_EQ, ACTIONS(4216), 1, + anon_sym_EQ, + ACTIONS(4258), 1, anon_sym_DOT_DOT, - ACTIONS(4568), 1, - anon_sym_RBRACK, - ACTIONS(4120), 2, + ACTIONS(4598), 1, + anon_sym_COMMA, + ACTIONS(4168), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4134), 2, + ACTIONS(4172), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + ACTIONS(4186), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, + ACTIONS(4260), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1962), 2, + STATE(1973), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(4166), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4138), 4, + ACTIONS(4184), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4150), 10, + ACTIONS(4214), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -167278,60 +169181,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [59509] = 22, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [60011] = 22, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(3902), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3906), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3908), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(4022), 1, anon_sym_as, - ACTIONS(4124), 1, - anon_sym_CARET, - ACTIONS(4126), 1, + ACTIONS(4170), 1, anon_sym_AMP, - ACTIONS(4128), 1, + ACTIONS(4180), 1, + anon_sym_CARET, + ACTIONS(4182), 1, anon_sym_PIPE, - ACTIONS(4130), 1, + ACTIONS(4188), 1, anon_sym_AMP_AMP, - ACTIONS(4132), 1, + ACTIONS(4192), 1, anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, - anon_sym_EQ, ACTIONS(4216), 1, + anon_sym_EQ, + ACTIONS(4258), 1, anon_sym_DOT_DOT, - ACTIONS(4570), 1, + ACTIONS(4600), 1, anon_sym_RBRACK, - ACTIONS(4120), 2, + ACTIONS(4168), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4134), 2, + ACTIONS(4172), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + ACTIONS(4186), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, + ACTIONS(4260), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1963), 2, + STATE(1974), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(4166), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4138), 4, + ACTIONS(4184), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4150), 10, + ACTIONS(4214), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -167342,60 +169245,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [59595] = 22, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [60097] = 22, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(3902), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3906), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3908), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(4022), 1, anon_sym_as, - ACTIONS(4124), 1, - anon_sym_CARET, - ACTIONS(4126), 1, + ACTIONS(4170), 1, anon_sym_AMP, - ACTIONS(4128), 1, + ACTIONS(4180), 1, + anon_sym_CARET, + ACTIONS(4182), 1, anon_sym_PIPE, - ACTIONS(4130), 1, + ACTIONS(4188), 1, anon_sym_AMP_AMP, - ACTIONS(4132), 1, + ACTIONS(4192), 1, anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, - anon_sym_EQ, ACTIONS(4216), 1, + anon_sym_EQ, + ACTIONS(4258), 1, anon_sym_DOT_DOT, - ACTIONS(4572), 1, - anon_sym_RBRACK, - ACTIONS(4120), 2, + ACTIONS(4602), 1, + anon_sym_SEMI, + ACTIONS(4168), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4134), 2, + ACTIONS(4172), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + ACTIONS(4186), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, + ACTIONS(4260), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1964), 2, + STATE(1975), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(4166), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4138), 4, + ACTIONS(4184), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4150), 10, + ACTIONS(4214), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -167406,60 +169309,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [59681] = 22, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [60183] = 22, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(3902), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3906), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3908), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(4022), 1, anon_sym_as, - ACTIONS(4124), 1, - anon_sym_CARET, - ACTIONS(4126), 1, + ACTIONS(4170), 1, anon_sym_AMP, - ACTIONS(4128), 1, + ACTIONS(4180), 1, + anon_sym_CARET, + ACTIONS(4182), 1, anon_sym_PIPE, - ACTIONS(4130), 1, + ACTIONS(4188), 1, anon_sym_AMP_AMP, - ACTIONS(4132), 1, + ACTIONS(4192), 1, anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, - anon_sym_EQ, ACTIONS(4216), 1, + anon_sym_EQ, + ACTIONS(4258), 1, anon_sym_DOT_DOT, - ACTIONS(4574), 1, - anon_sym_RBRACK, - ACTIONS(4120), 2, + ACTIONS(4456), 1, + anon_sym_SEMI, + ACTIONS(4168), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4134), 2, + ACTIONS(4172), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + ACTIONS(4186), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, + ACTIONS(4260), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1965), 2, + STATE(1976), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(4166), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4138), 4, + ACTIONS(4184), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4150), 10, + ACTIONS(4214), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -167470,60 +169373,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [59767] = 22, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [60269] = 22, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(3902), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3906), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3908), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(4022), 1, anon_sym_as, - ACTIONS(4124), 1, - anon_sym_CARET, - ACTIONS(4126), 1, + ACTIONS(4170), 1, anon_sym_AMP, - ACTIONS(4128), 1, + ACTIONS(4180), 1, + anon_sym_CARET, + ACTIONS(4182), 1, anon_sym_PIPE, - ACTIONS(4130), 1, + ACTIONS(4188), 1, anon_sym_AMP_AMP, - ACTIONS(4132), 1, + ACTIONS(4192), 1, anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, - anon_sym_EQ, ACTIONS(4216), 1, + anon_sym_EQ, + ACTIONS(4258), 1, anon_sym_DOT_DOT, - ACTIONS(4576), 1, - anon_sym_COMMA, - ACTIONS(4120), 2, + ACTIONS(4604), 1, + anon_sym_SEMI, + ACTIONS(4168), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4134), 2, + ACTIONS(4172), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + ACTIONS(4186), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, + ACTIONS(4260), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1966), 2, + STATE(1977), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(4166), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4138), 4, + ACTIONS(4184), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4150), 10, + ACTIONS(4214), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -167534,60 +169437,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [59853] = 22, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [60355] = 22, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(3902), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3906), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3908), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(4022), 1, anon_sym_as, - ACTIONS(4124), 1, - anon_sym_CARET, - ACTIONS(4126), 1, + ACTIONS(4170), 1, anon_sym_AMP, - ACTIONS(4128), 1, + ACTIONS(4180), 1, + anon_sym_CARET, + ACTIONS(4182), 1, anon_sym_PIPE, - ACTIONS(4130), 1, + ACTIONS(4188), 1, anon_sym_AMP_AMP, - ACTIONS(4132), 1, + ACTIONS(4192), 1, anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, - anon_sym_EQ, ACTIONS(4216), 1, + anon_sym_EQ, + ACTIONS(4258), 1, anon_sym_DOT_DOT, - ACTIONS(4374), 1, + ACTIONS(4606), 1, anon_sym_COMMA, - ACTIONS(4120), 2, + ACTIONS(4168), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4134), 2, + ACTIONS(4172), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + ACTIONS(4186), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, + ACTIONS(4260), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1967), 2, + STATE(1978), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(4166), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4138), 4, + ACTIONS(4184), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4150), 10, + ACTIONS(4214), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -167598,60 +169501,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [59939] = 22, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [60441] = 22, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(3902), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3906), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3908), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(4022), 1, anon_sym_as, - ACTIONS(4124), 1, - anon_sym_CARET, - ACTIONS(4126), 1, + ACTIONS(4170), 1, anon_sym_AMP, - ACTIONS(4128), 1, + ACTIONS(4180), 1, + anon_sym_CARET, + ACTIONS(4182), 1, anon_sym_PIPE, - ACTIONS(4130), 1, + ACTIONS(4188), 1, anon_sym_AMP_AMP, - ACTIONS(4132), 1, + ACTIONS(4192), 1, anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, - anon_sym_EQ, ACTIONS(4216), 1, + anon_sym_EQ, + ACTIONS(4258), 1, anon_sym_DOT_DOT, - ACTIONS(4578), 1, - anon_sym_SEMI, - ACTIONS(4120), 2, + ACTIONS(4608), 1, + anon_sym_RBRACK, + ACTIONS(4168), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4134), 2, + ACTIONS(4172), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + ACTIONS(4186), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, + ACTIONS(4260), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1968), 2, + STATE(1979), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(4166), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4138), 4, + ACTIONS(4184), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4150), 10, + ACTIONS(4214), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -167662,60 +169565,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [60025] = 22, - ACTIONS(103), 1, + [60527] = 16, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(4356), 1, + sym_identifier, + ACTIONS(4358), 1, + anon_sym_LBRACE, + ACTIONS(4362), 1, + anon_sym_STAR, + ACTIONS(4368), 1, + anon_sym_COLON_COLON, + ACTIONS(4372), 1, + sym_metavariable, + STATE(2585), 1, + sym_scoped_identifier, + STATE(3556), 1, + sym__use_clause, + STATE(3565), 1, + sym_generic_type_with_turbofish, + STATE(3607), 1, + sym_bracketed_type, + STATE(1980), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4370), 3, + sym_self, + sym_super, + sym_crate, + STATE(3032), 4, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(4364), 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, + [60601] = 22, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(3902), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3906), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3908), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(4022), 1, anon_sym_as, - ACTIONS(4124), 1, - anon_sym_CARET, - ACTIONS(4126), 1, + ACTIONS(4170), 1, anon_sym_AMP, - ACTIONS(4128), 1, + ACTIONS(4180), 1, + anon_sym_CARET, + ACTIONS(4182), 1, anon_sym_PIPE, - ACTIONS(4130), 1, + ACTIONS(4188), 1, anon_sym_AMP_AMP, - ACTIONS(4132), 1, + ACTIONS(4192), 1, anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, - anon_sym_EQ, ACTIONS(4216), 1, + anon_sym_EQ, + ACTIONS(4258), 1, anon_sym_DOT_DOT, - ACTIONS(4580), 1, - anon_sym_COMMA, - ACTIONS(4120), 2, + ACTIONS(4610), 1, + anon_sym_RBRACK, + ACTIONS(4168), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4134), 2, + ACTIONS(4172), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + ACTIONS(4186), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, + ACTIONS(4260), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1969), 2, + STATE(1981), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(4166), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4138), 4, + ACTIONS(4184), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4150), 10, + ACTIONS(4214), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -167726,60 +169687,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [60111] = 22, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [60687] = 22, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(3902), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3906), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3908), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(4022), 1, anon_sym_as, - ACTIONS(4124), 1, - anon_sym_CARET, - ACTIONS(4126), 1, + ACTIONS(4170), 1, anon_sym_AMP, - ACTIONS(4128), 1, + ACTIONS(4180), 1, + anon_sym_CARET, + ACTIONS(4182), 1, anon_sym_PIPE, - ACTIONS(4130), 1, + ACTIONS(4188), 1, anon_sym_AMP_AMP, - ACTIONS(4132), 1, + ACTIONS(4192), 1, anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, - anon_sym_EQ, ACTIONS(4216), 1, + anon_sym_EQ, + ACTIONS(4258), 1, anon_sym_DOT_DOT, - ACTIONS(4582), 1, + ACTIONS(4612), 1, anon_sym_SEMI, - ACTIONS(4120), 2, + ACTIONS(4168), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4134), 2, + ACTIONS(4172), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + ACTIONS(4186), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, + ACTIONS(4260), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1970), 2, + STATE(1982), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(4166), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4138), 4, + ACTIONS(4184), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4150), 10, + ACTIONS(4214), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -167790,60 +169751,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [60197] = 22, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [60773] = 22, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(4400), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(4406), 1, anon_sym_QMARK, - ACTIONS(3856), 1, - anon_sym_DOT, - ACTIONS(3878), 1, - anon_sym_as, - ACTIONS(4124), 1, + ACTIONS(4408), 1, anon_sym_CARET, - ACTIONS(4126), 1, + ACTIONS(4410), 1, anon_sym_AMP, - ACTIONS(4128), 1, + ACTIONS(4412), 1, anon_sym_PIPE, - ACTIONS(4130), 1, - anon_sym_AMP_AMP, - ACTIONS(4132), 1, + ACTIONS(4416), 1, anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, + ACTIONS(4422), 1, anon_sym_EQ, - ACTIONS(4216), 1, + ACTIONS(4428), 1, + anon_sym_DOT, + ACTIONS(4434), 1, + anon_sym_as, + ACTIONS(4440), 1, + anon_sym_EQ_GT, + ACTIONS(4568), 1, anon_sym_DOT_DOT, - ACTIONS(4584), 1, - anon_sym_SEMI, - ACTIONS(4120), 2, + ACTIONS(4614), 1, + anon_sym_AMP_AMP, + ACTIONS(4402), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4134), 2, + ACTIONS(4418), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + ACTIONS(4426), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, + ACTIONS(4570), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1971), 2, + STATE(1983), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(4404), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4138), 4, + ACTIONS(4424), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4150), 10, + ACTIONS(4420), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -167854,60 +169815,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [60283] = 22, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [60859] = 22, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(3902), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3906), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3908), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(4022), 1, anon_sym_as, - ACTIONS(4124), 1, - anon_sym_CARET, - ACTIONS(4126), 1, + ACTIONS(4170), 1, anon_sym_AMP, - ACTIONS(4128), 1, + ACTIONS(4180), 1, + anon_sym_CARET, + ACTIONS(4182), 1, anon_sym_PIPE, - ACTIONS(4130), 1, + ACTIONS(4188), 1, anon_sym_AMP_AMP, - ACTIONS(4132), 1, + ACTIONS(4192), 1, anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, - anon_sym_EQ, ACTIONS(4216), 1, + anon_sym_EQ, + ACTIONS(4258), 1, anon_sym_DOT_DOT, - ACTIONS(4586), 1, + ACTIONS(4616), 1, anon_sym_SEMI, - ACTIONS(4120), 2, + ACTIONS(4168), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4134), 2, + ACTIONS(4172), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + ACTIONS(4186), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, + ACTIONS(4260), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1972), 2, + STATE(1984), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(4166), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4138), 4, + ACTIONS(4184), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4150), 10, + ACTIONS(4214), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -167918,60 +169879,176 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [60369] = 22, - ACTIONS(103), 1, + [60945] = 16, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(4356), 1, + sym_identifier, + ACTIONS(4358), 1, + anon_sym_LBRACE, + ACTIONS(4362), 1, + anon_sym_STAR, + ACTIONS(4368), 1, + anon_sym_COLON_COLON, + ACTIONS(4372), 1, + sym_metavariable, + STATE(2585), 1, + sym_scoped_identifier, + STATE(3565), 1, + sym_generic_type_with_turbofish, + STATE(3607), 1, + sym_bracketed_type, + STATE(3706), 1, + sym__use_clause, + STATE(1985), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4370), 3, + sym_self, + sym_super, + sym_crate, + STATE(3032), 4, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(4364), 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, + [61019] = 16, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(4356), 1, + sym_identifier, + ACTIONS(4358), 1, + anon_sym_LBRACE, + ACTIONS(4362), 1, + anon_sym_STAR, + ACTIONS(4368), 1, + anon_sym_COLON_COLON, + ACTIONS(4372), 1, + sym_metavariable, + STATE(2585), 1, + sym_scoped_identifier, + STATE(3472), 1, + sym__use_clause, + STATE(3565), 1, + sym_generic_type_with_turbofish, + STATE(3607), 1, + sym_bracketed_type, + STATE(1986), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4370), 3, + sym_self, + sym_super, + sym_crate, + STATE(3032), 4, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(4364), 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, + [61093] = 22, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 1, + ACTIONS(3902), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3906), 1, anon_sym_QMARK, - ACTIONS(3856), 1, + ACTIONS(3908), 1, anon_sym_DOT, - ACTIONS(3878), 1, + ACTIONS(4022), 1, anon_sym_as, - ACTIONS(4124), 1, - anon_sym_CARET, - ACTIONS(4126), 1, + ACTIONS(4170), 1, anon_sym_AMP, - ACTIONS(4128), 1, + ACTIONS(4180), 1, + anon_sym_CARET, + ACTIONS(4182), 1, anon_sym_PIPE, - ACTIONS(4130), 1, + ACTIONS(4188), 1, anon_sym_AMP_AMP, - ACTIONS(4132), 1, + ACTIONS(4192), 1, anon_sym_PIPE_PIPE, - ACTIONS(4152), 1, - anon_sym_EQ, ACTIONS(4216), 1, + anon_sym_EQ, + ACTIONS(4258), 1, anon_sym_DOT_DOT, - ACTIONS(4588), 1, - anon_sym_COMMA, - ACTIONS(4120), 2, + ACTIONS(4618), 1, + anon_sym_SEMI, + ACTIONS(4168), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4134), 2, + ACTIONS(4172), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4140), 2, + ACTIONS(4186), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4218), 2, + ACTIONS(4260), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1973), 2, + STATE(1987), 2, sym_line_comment, sym_block_comment, - ACTIONS(4122), 3, + ACTIONS(4166), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4138), 4, + ACTIONS(4184), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4150), 10, + ACTIONS(4214), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -167982,47 +170059,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [60455] = 17, + [61179] = 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(3868), 1, + ACTIONS(3834), 1, anon_sym_where, - ACTIONS(4590), 1, + ACTIONS(4620), 1, sym_identifier, - ACTIONS(4594), 1, + ACTIONS(4624), 1, anon_sym_COLON_COLON, - ACTIONS(4600), 1, + ACTIONS(4630), 1, sym_metavariable, - STATE(2953), 1, + STATE(3051), 1, sym_scoped_type_identifier, - STATE(3239), 1, + STATE(3401), 1, sym_generic_type, - STATE(3513), 1, + STATE(3544), 1, sym_scoped_identifier, - STATE(3643), 1, + STATE(3678), 1, sym_generic_type_with_turbofish, - STATE(3670), 1, + STATE(3705), 1, sym_bracketed_type, - STATE(1974), 2, + STATE(1988), 2, sym_line_comment, sym_block_comment, - ACTIONS(3866), 3, + ACTIONS(3832), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - ACTIONS(4596), 3, + ACTIONS(4626), 3, anon_sym_default, anon_sym_gen, anon_sym_union, - ACTIONS(4598), 3, + ACTIONS(4628), 3, sym_self, sym_super, sym_crate, - ACTIONS(4592), 17, + ACTIONS(4622), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -168040,47 +170117,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [60530] = 17, + [61254] = 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(3868), 1, + ACTIONS(3834), 1, anon_sym_where, - ACTIONS(4594), 1, + ACTIONS(4624), 1, anon_sym_COLON_COLON, - ACTIONS(4600), 1, + ACTIONS(4630), 1, sym_metavariable, - ACTIONS(4602), 1, + ACTIONS(4632), 1, sym_identifier, - STATE(3178), 1, + STATE(3107), 1, sym_scoped_type_identifier, - STATE(3474), 1, + STATE(3278), 1, sym_generic_type, - STATE(3513), 1, + STATE(3544), 1, sym_scoped_identifier, - STATE(3643), 1, + STATE(3678), 1, sym_generic_type_with_turbofish, - STATE(3670), 1, + STATE(3705), 1, sym_bracketed_type, - STATE(1975), 2, + STATE(1989), 2, sym_line_comment, sym_block_comment, - ACTIONS(3866), 3, + ACTIONS(3832), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - ACTIONS(4596), 3, + ACTIONS(4626), 3, anon_sym_default, anon_sym_gen, anon_sym_union, - ACTIONS(4598), 3, + ACTIONS(4628), 3, sym_self, sym_super, sym_crate, - ACTIONS(4592), 17, + ACTIONS(4622), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -168098,47 +170175,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [60605] = 17, + [61329] = 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(3834), 1, + anon_sym_where, + ACTIONS(4624), 1, + anon_sym_COLON_COLON, + ACTIONS(4630), 1, + sym_metavariable, + ACTIONS(4634), 1, + sym_identifier, + STATE(2942), 1, + sym_scoped_type_identifier, + STATE(3393), 1, + sym_generic_type, + STATE(3544), 1, + sym_scoped_identifier, + STATE(3678), 1, + sym_generic_type_with_turbofish, + STATE(3705), 1, + sym_bracketed_type, + STATE(1990), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3832), 3, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + ACTIONS(4626), 3, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + ACTIONS(4628), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(4622), 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, + [61404] = 17, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3868), 1, + ACTIONS(3834), 1, anon_sym_where, - ACTIONS(4594), 1, + ACTIONS(4624), 1, anon_sym_COLON_COLON, - ACTIONS(4600), 1, + ACTIONS(4630), 1, sym_metavariable, - ACTIONS(4604), 1, + ACTIONS(4636), 1, sym_identifier, - STATE(3094), 1, + STATE(3187), 1, sym_scoped_type_identifier, - STATE(3289), 1, + STATE(3471), 1, sym_generic_type, - STATE(3513), 1, + STATE(3544), 1, sym_scoped_identifier, - STATE(3643), 1, + STATE(3678), 1, sym_generic_type_with_turbofish, - STATE(3670), 1, + STATE(3705), 1, sym_bracketed_type, - STATE(1976), 2, + STATE(1991), 2, sym_line_comment, sym_block_comment, - ACTIONS(3866), 3, + ACTIONS(3832), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - ACTIONS(4596), 3, + ACTIONS(4626), 3, anon_sym_default, anon_sym_gen, anon_sym_union, - ACTIONS(4598), 3, + ACTIONS(4628), 3, sym_self, sym_super, sym_crate, - ACTIONS(4592), 17, + ACTIONS(4622), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -168156,105 +170291,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [60680] = 17, + [61479] = 17, ACTIONS(29), 1, anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3868), 1, - anon_sym_where, - ACTIONS(4594), 1, - anon_sym_COLON_COLON, - ACTIONS(4600), 1, - sym_metavariable, - ACTIONS(4606), 1, - sym_identifier, - STATE(3165), 1, - sym_scoped_type_identifier, - STATE(3429), 1, - sym_generic_type, - STATE(3513), 1, - sym_scoped_identifier, - STATE(3643), 1, - sym_generic_type_with_turbofish, - STATE(3670), 1, - sym_bracketed_type, - STATE(1977), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3866), 3, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - ACTIONS(4596), 3, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - ACTIONS(4598), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(4592), 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, - [60755] = 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(3868), 1, + ACTIONS(3834), 1, anon_sym_where, - ACTIONS(4594), 1, + ACTIONS(4624), 1, anon_sym_COLON_COLON, - ACTIONS(4600), 1, + ACTIONS(4630), 1, sym_metavariable, - ACTIONS(4608), 1, + ACTIONS(4638), 1, sym_identifier, - STATE(3155), 1, + STATE(3199), 1, sym_scoped_type_identifier, - STATE(3410), 1, + STATE(3492), 1, sym_generic_type, - STATE(3513), 1, + STATE(3544), 1, sym_scoped_identifier, - STATE(3643), 1, + STATE(3678), 1, sym_generic_type_with_turbofish, - STATE(3670), 1, + STATE(3705), 1, sym_bracketed_type, - STATE(1978), 2, + STATE(1992), 2, sym_line_comment, sym_block_comment, - ACTIONS(3866), 3, + ACTIONS(3832), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - ACTIONS(4596), 3, + ACTIONS(4626), 3, anon_sym_default, anon_sym_gen, anon_sym_union, - ACTIONS(4598), 3, + ACTIONS(4628), 3, sym_self, sym_super, sym_crate, - ACTIONS(4592), 17, + ACTIONS(4622), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -168272,47 +170349,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [60830] = 17, + [61554] = 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(3868), 1, + ACTIONS(3834), 1, anon_sym_where, - ACTIONS(4594), 1, + ACTIONS(4624), 1, anon_sym_COLON_COLON, - ACTIONS(4600), 1, + ACTIONS(4630), 1, sym_metavariable, - ACTIONS(4610), 1, + ACTIONS(4640), 1, sym_identifier, - STATE(3168), 1, + STATE(2937), 1, sym_scoped_type_identifier, - STATE(3458), 1, + STATE(3456), 1, sym_generic_type, - STATE(3513), 1, + STATE(3544), 1, sym_scoped_identifier, - STATE(3643), 1, + STATE(3678), 1, sym_generic_type_with_turbofish, - STATE(3670), 1, + STATE(3705), 1, sym_bracketed_type, - STATE(1979), 2, + STATE(1993), 2, sym_line_comment, sym_block_comment, - ACTIONS(3866), 3, + ACTIONS(3832), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - ACTIONS(4596), 3, + ACTIONS(4626), 3, anon_sym_default, anon_sym_gen, anon_sym_union, - ACTIONS(4598), 3, + ACTIONS(4628), 3, sym_self, sym_super, sym_crate, - ACTIONS(4592), 17, + ACTIONS(4622), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -168330,47 +170407,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [60905] = 17, + [61629] = 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(3868), 1, + ACTIONS(3834), 1, anon_sym_where, - ACTIONS(4594), 1, + ACTIONS(4624), 1, anon_sym_COLON_COLON, - ACTIONS(4600), 1, + ACTIONS(4630), 1, sym_metavariable, - ACTIONS(4612), 1, + ACTIONS(4642), 1, sym_identifier, - STATE(3172), 1, + STATE(3192), 1, sym_scoped_type_identifier, - STATE(3464), 1, + STATE(3481), 1, sym_generic_type, - STATE(3513), 1, + STATE(3544), 1, sym_scoped_identifier, - STATE(3643), 1, + STATE(3678), 1, sym_generic_type_with_turbofish, - STATE(3670), 1, + STATE(3705), 1, sym_bracketed_type, - STATE(1980), 2, + STATE(1994), 2, sym_line_comment, sym_block_comment, - ACTIONS(3866), 3, + ACTIONS(3832), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - ACTIONS(4596), 3, + ACTIONS(4626), 3, anon_sym_default, anon_sym_gen, anon_sym_union, - ACTIONS(4598), 3, + ACTIONS(4628), 3, sym_self, sym_super, sym_crate, - ACTIONS(4592), 17, + ACTIONS(4622), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -168388,47 +170465,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [60980] = 17, + [61704] = 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(3868), 1, + ACTIONS(3834), 1, anon_sym_where, - ACTIONS(4594), 1, + ACTIONS(4624), 1, anon_sym_COLON_COLON, - ACTIONS(4600), 1, + ACTIONS(4630), 1, sym_metavariable, - ACTIONS(4614), 1, + ACTIONS(4644), 1, sym_identifier, - STATE(3174), 1, + STATE(3193), 1, sym_scoped_type_identifier, - STATE(3466), 1, + STATE(3483), 1, sym_generic_type, - STATE(3513), 1, + STATE(3544), 1, sym_scoped_identifier, - STATE(3643), 1, + STATE(3678), 1, sym_generic_type_with_turbofish, - STATE(3670), 1, + STATE(3705), 1, sym_bracketed_type, - STATE(1981), 2, + STATE(1995), 2, sym_line_comment, sym_block_comment, - ACTIONS(3866), 3, + ACTIONS(3832), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - ACTIONS(4596), 3, + ACTIONS(4626), 3, anon_sym_default, anon_sym_gen, anon_sym_union, - ACTIONS(4598), 3, + ACTIONS(4628), 3, sym_self, sym_super, sym_crate, - ACTIONS(4592), 17, + ACTIONS(4622), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -168446,19 +170523,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [61055] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [61779] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1982), 2, + STATE(1996), 2, sym_line_comment, sym_block_comment, - ACTIONS(4618), 3, + ACTIONS(4648), 3, anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(4616), 29, + ACTIONS(4646), 30, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -168484,23 +170561,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, - [61102] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [61827] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1983), 2, + STATE(1997), 2, sym_line_comment, sym_block_comment, - ACTIONS(4622), 3, + ACTIONS(4652), 3, anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(4620), 29, + ACTIONS(4650), 30, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -168526,23 +170604,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, - [61149] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [61875] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1984), 2, + STATE(1998), 2, sym_line_comment, sym_block_comment, - ACTIONS(4626), 3, + ACTIONS(4656), 3, anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(4624), 29, + ACTIONS(4654), 30, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -168568,39 +170647,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, - [61196] = 13, + [61923] = 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(2098), 1, + ACTIONS(2390), 1, anon_sym_COLON_COLON, - ACTIONS(4628), 1, + ACTIONS(4658), 1, sym_identifier, - ACTIONS(4634), 1, + ACTIONS(4664), 1, sym_metavariable, - STATE(2374), 1, + STATE(2384), 1, sym_scoped_identifier, - STATE(3536), 1, + STATE(3696), 1, sym_attribute, - STATE(3732), 1, + STATE(3790), 1, sym_bracketed_type, - STATE(3800), 1, + STATE(3839), 1, sym_generic_type_with_turbofish, - STATE(1985), 2, + STATE(1999), 2, sym_line_comment, sym_block_comment, - ACTIONS(4632), 3, + ACTIONS(4662), 3, sym_self, sym_super, sym_crate, - ACTIONS(4630), 20, + ACTIONS(4660), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -168621,35 +170701,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_gen, anon_sym_union, - [61258] = 13, + [61985] = 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(2098), 1, + ACTIONS(2390), 1, anon_sym_COLON_COLON, - ACTIONS(4628), 1, + ACTIONS(4658), 1, sym_identifier, - ACTIONS(4634), 1, + ACTIONS(4664), 1, sym_metavariable, - STATE(2374), 1, + STATE(2384), 1, sym_scoped_identifier, - STATE(3645), 1, + STATE(3640), 1, sym_attribute, - STATE(3732), 1, + STATE(3790), 1, sym_bracketed_type, - STATE(3800), 1, + STATE(3839), 1, sym_generic_type_with_turbofish, - STATE(1986), 2, + STATE(2000), 2, sym_line_comment, sym_block_comment, - ACTIONS(4632), 3, + ACTIONS(4662), 3, sym_self, sym_super, sym_crate, - ACTIONS(4630), 20, + ACTIONS(4660), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -168670,35 +170750,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_gen, anon_sym_union, - [61320] = 13, + [62047] = 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(2098), 1, + ACTIONS(2390), 1, anon_sym_COLON_COLON, - ACTIONS(4628), 1, + ACTIONS(4658), 1, sym_identifier, - ACTIONS(4634), 1, + ACTIONS(4664), 1, sym_metavariable, - STATE(2374), 1, + STATE(2384), 1, sym_scoped_identifier, - STATE(3547), 1, + STATE(3722), 1, sym_attribute, - STATE(3732), 1, + STATE(3790), 1, sym_bracketed_type, - STATE(3800), 1, + STATE(3839), 1, sym_generic_type_with_turbofish, - STATE(1987), 2, + STATE(2001), 2, sym_line_comment, sym_block_comment, - ACTIONS(4632), 3, + ACTIONS(4662), 3, sym_self, sym_super, sym_crate, - ACTIONS(4630), 20, + ACTIONS(4660), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -168719,35 +170799,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_gen, anon_sym_union, - [61382] = 13, + [62109] = 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(2098), 1, + ACTIONS(2390), 1, anon_sym_COLON_COLON, - ACTIONS(4628), 1, + ACTIONS(4658), 1, sym_identifier, - ACTIONS(4634), 1, + ACTIONS(4664), 1, sym_metavariable, - STATE(2374), 1, + STATE(2384), 1, sym_scoped_identifier, - STATE(3732), 1, - sym_bracketed_type, - STATE(3742), 1, + STATE(3569), 1, sym_attribute, - STATE(3800), 1, + STATE(3790), 1, + sym_bracketed_type, + STATE(3839), 1, sym_generic_type_with_turbofish, - STATE(1988), 2, + STATE(2002), 2, sym_line_comment, sym_block_comment, - ACTIONS(4632), 3, + ACTIONS(4662), 3, sym_self, sym_super, sym_crate, - ACTIONS(4630), 20, + ACTIONS(4660), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -168768,35 +170848,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_gen, anon_sym_union, - [61444] = 13, + [62171] = 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(2098), 1, + ACTIONS(2390), 1, anon_sym_COLON_COLON, - ACTIONS(4628), 1, + ACTIONS(4658), 1, sym_identifier, - ACTIONS(4634), 1, + ACTIONS(4664), 1, sym_metavariable, - STATE(2374), 1, + STATE(2384), 1, sym_scoped_identifier, - STATE(3660), 1, + STATE(3580), 1, sym_attribute, - STATE(3732), 1, + STATE(3790), 1, sym_bracketed_type, - STATE(3800), 1, + STATE(3839), 1, sym_generic_type_with_turbofish, - STATE(1989), 2, + STATE(2003), 2, sym_line_comment, sym_block_comment, - ACTIONS(4632), 3, + ACTIONS(4662), 3, sym_self, sym_super, sym_crate, - ACTIONS(4630), 20, + ACTIONS(4660), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -168817,35 +170897,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_gen, anon_sym_union, - [61506] = 13, + [62233] = 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(2098), 1, + ACTIONS(2390), 1, anon_sym_COLON_COLON, - ACTIONS(4628), 1, + ACTIONS(4658), 1, sym_identifier, - ACTIONS(4634), 1, + ACTIONS(4664), 1, sym_metavariable, - STATE(2374), 1, + STATE(2384), 1, sym_scoped_identifier, - STATE(3688), 1, + STATE(3679), 1, sym_attribute, - STATE(3732), 1, + STATE(3790), 1, sym_bracketed_type, - STATE(3800), 1, + STATE(3839), 1, sym_generic_type_with_turbofish, - STATE(1990), 2, + STATE(2004), 2, sym_line_comment, sym_block_comment, - ACTIONS(4632), 3, + ACTIONS(4662), 3, sym_self, sym_super, sym_crate, - ACTIONS(4630), 20, + ACTIONS(4660), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -168866,35 +170946,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_gen, anon_sym_union, - [61568] = 13, + [62295] = 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(2098), 1, + ACTIONS(2390), 1, anon_sym_COLON_COLON, - ACTIONS(4628), 1, + ACTIONS(4658), 1, sym_identifier, - ACTIONS(4634), 1, + ACTIONS(4664), 1, sym_metavariable, - STATE(2374), 1, + STATE(2384), 1, sym_scoped_identifier, - STATE(3602), 1, + STATE(3579), 1, sym_attribute, - STATE(3732), 1, + STATE(3790), 1, sym_bracketed_type, - STATE(3800), 1, + STATE(3839), 1, sym_generic_type_with_turbofish, - STATE(1991), 2, + STATE(2005), 2, sym_line_comment, sym_block_comment, - ACTIONS(4632), 3, + ACTIONS(4662), 3, sym_self, sym_super, sym_crate, - ACTIONS(4630), 20, + ACTIONS(4660), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -168915,35 +170995,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_gen, anon_sym_union, - [61630] = 13, + [62357] = 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(2098), 1, + ACTIONS(2390), 1, anon_sym_COLON_COLON, - ACTIONS(4628), 1, + ACTIONS(4658), 1, sym_identifier, - ACTIONS(4634), 1, + ACTIONS(4664), 1, sym_metavariable, - STATE(2374), 1, + STATE(2384), 1, sym_scoped_identifier, - STATE(3557), 1, + STATE(3758), 1, sym_attribute, - STATE(3732), 1, + STATE(3790), 1, sym_bracketed_type, - STATE(3800), 1, + STATE(3839), 1, sym_generic_type_with_turbofish, - STATE(1992), 2, + STATE(2006), 2, sym_line_comment, sym_block_comment, - ACTIONS(4632), 3, + ACTIONS(4662), 3, sym_self, sym_super, sym_crate, - ACTIONS(4630), 20, + ACTIONS(4660), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -168964,35 +171044,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_gen, anon_sym_union, - [61692] = 13, + [62419] = 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(2098), 1, + ACTIONS(2390), 1, anon_sym_COLON_COLON, - ACTIONS(4628), 1, + ACTIONS(4658), 1, sym_identifier, - ACTIONS(4634), 1, + ACTIONS(4664), 1, sym_metavariable, - STATE(2374), 1, + STATE(2384), 1, sym_scoped_identifier, - STATE(3626), 1, + STATE(3644), 1, sym_attribute, - STATE(3732), 1, + STATE(3790), 1, sym_bracketed_type, - STATE(3800), 1, + STATE(3839), 1, sym_generic_type_with_turbofish, - STATE(1993), 2, + STATE(2007), 2, sym_line_comment, sym_block_comment, - ACTIONS(4632), 3, + ACTIONS(4662), 3, sym_self, sym_super, sym_crate, - ACTIONS(4630), 20, + ACTIONS(4660), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -169013,33 +171093,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_gen, anon_sym_union, - [61754] = 12, + [62481] = 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(4636), 1, + ACTIONS(4666), 1, sym_identifier, - ACTIONS(4640), 1, + ACTIONS(4670), 1, anon_sym_COLON_COLON, - ACTIONS(4644), 1, + ACTIONS(4674), 1, sym_metavariable, - STATE(3197), 1, + STATE(3523), 1, sym_scoped_identifier, - STATE(3653), 1, + STATE(3565), 1, sym_generic_type_with_turbofish, - STATE(3666), 1, + STATE(3607), 1, sym_bracketed_type, - STATE(1994), 2, + STATE(2008), 2, sym_line_comment, sym_block_comment, - ACTIONS(4642), 3, + ACTIONS(4672), 3, sym_self, sym_super, sym_crate, - ACTIONS(4638), 20, + ACTIONS(4668), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -169060,33 +171140,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_gen, anon_sym_union, - [61813] = 12, + [62540] = 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(4640), 1, + ACTIONS(4670), 1, anon_sym_COLON_COLON, - ACTIONS(4646), 1, + ACTIONS(4676), 1, sym_identifier, - ACTIONS(4652), 1, + ACTIONS(4682), 1, sym_metavariable, - STATE(3306), 1, + STATE(3491), 1, sym_scoped_identifier, - STATE(3653), 1, + STATE(3565), 1, sym_generic_type_with_turbofish, - STATE(3666), 1, + STATE(3607), 1, sym_bracketed_type, - STATE(1995), 2, + STATE(2009), 2, sym_line_comment, sym_block_comment, - ACTIONS(4650), 3, + ACTIONS(4680), 3, sym_self, sym_super, sym_crate, - ACTIONS(4648), 20, + ACTIONS(4678), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -169103,86 +171183,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_f64, anon_sym_bool, anon_sym_str, - anon_sym_char, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - [61872] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(951), 1, - anon_sym_DOT_DOT, - STATE(1996), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(953), 20, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - anon_sym_else, - anon_sym_in, - [61908] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1013), 1, - anon_sym_DOT_DOT, - STATE(1997), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1015), 20, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_async, - anon_sym_const, + anon_sym_char, anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - anon_sym_else, - anon_sym_in, - [61944] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_gen, + anon_sym_union, + [62599] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3544), 1, + ACTIONS(3582), 1, anon_sym_COLON, - ACTIONS(3548), 2, + ACTIONS(3586), 2, anon_sym_BANG, anon_sym_COLON_COLON, - STATE(1998), 2, + STATE(2010), 2, sym_line_comment, sym_block_comment, - ACTIONS(3542), 17, + ACTIONS(3580), 17, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -169200,20 +171218,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_else, anon_sym_LT2, - [61981] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [62636] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3528), 1, + ACTIONS(3510), 1, anon_sym_COLON, - ACTIONS(3532), 2, + ACTIONS(3514), 2, anon_sym_BANG, anon_sym_COLON_COLON, - STATE(1999), 2, + STATE(2011), 2, sym_line_comment, sym_block_comment, - ACTIONS(3526), 17, + ACTIONS(3508), 17, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -169231,59 +171249,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_else, anon_sym_LT2, - [62018] = 14, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [62673] = 6, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4656), 1, - anon_sym_LPAREN, - ACTIONS(4658), 1, - anon_sym_LBRACE, - ACTIONS(4660), 1, - anon_sym_COLON, - ACTIONS(4662), 1, - anon_sym_BANG, - ACTIONS(4664), 1, - anon_sym_AT, - ACTIONS(4666), 1, - anon_sym_DOT_DOT, - ACTIONS(4670), 1, - anon_sym_COLON_COLON, - ACTIONS(4672), 1, - anon_sym_LT2, - STATE(2027), 1, - sym_type_arguments, - ACTIONS(4668), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2000), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4654), 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, - [62071] = 6, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3536), 1, + ACTIONS(3518), 1, anon_sym_COLON, - ACTIONS(3540), 2, + ACTIONS(3522), 2, anon_sym_BANG, anon_sym_COLON_COLON, - STATE(2001), 2, + STATE(2012), 2, sym_line_comment, sym_block_comment, - ACTIONS(3534), 17, + ACTIONS(3516), 17, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -169301,20 +171280,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_else, anon_sym_LT2, - [62108] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [62710] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3503), 1, + ACTIONS(3526), 1, anon_sym_COLON, - ACTIONS(3507), 2, + ACTIONS(3530), 2, anon_sym_BANG, anon_sym_COLON_COLON, - STATE(2002), 2, + STATE(2013), 2, sym_line_comment, sym_block_comment, - ACTIONS(3501), 17, + ACTIONS(3524), 17, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -169332,81 +171311,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_else, anon_sym_LT2, - [62145] = 10, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [62747] = 14, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4662), 1, - anon_sym_BANG, - ACTIONS(4672), 1, - anon_sym_LT2, - ACTIONS(4674), 1, + ACTIONS(4686), 1, anon_sym_LPAREN, - ACTIONS(4676), 1, - anon_sym_COLON_COLON, - STATE(2027), 1, - sym_type_arguments, - STATE(2097), 1, - sym_parameters, - STATE(2003), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3458), 13, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, + ACTIONS(4688), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_where, - anon_sym_else, - [62189] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3530), 2, + ACTIONS(4690), 1, anon_sym_COLON, + ACTIONS(4692), 1, + anon_sym_BANG, + ACTIONS(4694), 1, + anon_sym_AT, + ACTIONS(4696), 1, anon_sym_DOT_DOT, - STATE(2004), 2, + ACTIONS(4700), 1, + anon_sym_COLON_COLON, + ACTIONS(4702), 1, + anon_sym_LT2, + STATE(2039), 1, + sym_type_arguments, + ACTIONS(4698), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2014), 2, sym_line_comment, sym_block_comment, - ACTIONS(3526), 3, - anon_sym_LBRACE, - anon_sym_for, - anon_sym_LT2, - ACTIONS(3532), 14, + ACTIONS(4684), 9, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_BANG, anon_sym_PIPE, anon_sym_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_COLON_COLON, anon_sym_else, anon_sym_in, - [62225] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [62800] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3686), 1, + ACTIONS(3680), 1, anon_sym_COLON, - STATE(2005), 2, + STATE(2015), 2, sym_line_comment, sym_block_comment, - ACTIONS(3684), 18, + ACTIONS(3678), 18, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -169425,17 +171379,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_else, anon_sym_in, - [62259] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [62834] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3784), 1, + ACTIONS(3690), 1, anon_sym_COLON, - STATE(2006), 2, + STATE(2016), 2, sym_line_comment, sym_block_comment, - ACTIONS(3782), 18, + ACTIONS(3688), 18, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -169454,22 +171408,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_else, anon_sym_in, - [62293] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [62868] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3505), 2, + ACTIONS(3512), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(2007), 2, + STATE(2017), 2, sym_line_comment, sym_block_comment, - ACTIONS(3501), 3, + ACTIONS(3508), 3, anon_sym_LBRACE, anon_sym_for, anon_sym_LT2, - ACTIONS(3507), 14, + ACTIONS(3514), 14, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -169484,22 +171438,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_else, anon_sym_in, - [62329] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [62904] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3538), 2, + ACTIONS(3520), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(2008), 2, + STATE(2018), 2, sym_line_comment, sym_block_comment, - ACTIONS(3534), 3, + ACTIONS(3516), 3, anon_sym_LBRACE, anon_sym_for, anon_sym_LT2, - ACTIONS(3540), 14, + ACTIONS(3522), 14, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -169514,22 +171468,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_else, anon_sym_in, - [62365] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [62940] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3546), 2, + ACTIONS(3528), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(2009), 2, + STATE(2019), 2, sym_line_comment, sym_block_comment, - ACTIONS(3542), 3, + ACTIONS(3524), 3, anon_sym_LBRACE, anon_sym_for, anon_sym_LT2, - ACTIONS(3548), 14, + ACTIONS(3530), 14, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -169544,19 +171498,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_else, anon_sym_in, - [62401] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [62976] = 10, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3800), 1, - anon_sym_COLON, - STATE(2010), 2, + ACTIONS(4692), 1, + anon_sym_BANG, + ACTIONS(4702), 1, + anon_sym_LT2, + ACTIONS(4704), 1, + anon_sym_LPAREN, + ACTIONS(4706), 1, + anon_sym_COLON_COLON, + STATE(2039), 1, + sym_type_arguments, + STATE(2104), 1, + sym_parameters, + STATE(2020), 2, sym_line_comment, sym_block_comment, - ACTIONS(3798), 18, + ACTIONS(3478), 13, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, @@ -169566,35 +171529,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_COMMA, - anon_sym_COLON_COLON, anon_sym_SQUOTE, - anon_sym_as, - anon_sym_for, anon_sym_where, anon_sym_else, - anon_sym_in, - [62435] = 10, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [63020] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4662), 1, - anon_sym_BANG, - ACTIONS(4672), 1, - anon_sym_LT2, - ACTIONS(4674), 1, - anon_sym_LPAREN, - ACTIONS(4676), 1, - anon_sym_COLON_COLON, - STATE(2027), 1, - sym_type_arguments, - STATE(2097), 1, - sym_parameters, - STATE(2011), 2, + ACTIONS(3798), 1, + anon_sym_COLON, + STATE(2021), 2, sym_line_comment, sym_block_comment, - ACTIONS(3428), 13, + ACTIONS(3796), 18, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, @@ -169604,30 +171554,34 @@ 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, - [62479] = 10, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_in, + [63054] = 10, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4662), 1, + ACTIONS(4692), 1, anon_sym_BANG, - ACTIONS(4672), 1, + ACTIONS(4702), 1, anon_sym_LT2, - ACTIONS(4674), 1, + ACTIONS(4704), 1, anon_sym_LPAREN, - ACTIONS(4676), 1, + ACTIONS(4706), 1, anon_sym_COLON_COLON, - STATE(2027), 1, + STATE(2039), 1, sym_type_arguments, - STATE(2097), 1, + STATE(2104), 1, sym_parameters, - STATE(2012), 2, + STATE(2022), 2, sym_line_comment, sym_block_comment, - ACTIONS(3452), 13, + ACTIONS(3454), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -169641,17 +171595,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_where, anon_sym_else, - [62523] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [63098] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3626), 1, + ACTIONS(3666), 1, anon_sym_COLON, - STATE(2013), 2, + STATE(2023), 2, sym_line_comment, sym_block_comment, - ACTIONS(3624), 18, + ACTIONS(3664), 18, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -169670,79 +171624,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_else, anon_sym_in, - [62557] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [63132] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3546), 2, + ACTIONS(3584), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(2014), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3548), 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, - [62590] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(2015), 2, + STATE(2024), 2, sym_line_comment, sym_block_comment, - ACTIONS(3501), 18, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, + ACTIONS(3580), 3, 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, - [62621] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3530), 2, - anon_sym_COLON, - anon_sym_DOT_DOT, - STATE(2016), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3532), 16, + ACTIONS(3586), 14, 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, @@ -169753,25 +171654,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_else, anon_sym_in, - [62654] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [63168] = 10, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4672), 1, + ACTIONS(4692), 1, + anon_sym_BANG, + ACTIONS(4702), 1, anon_sym_LT2, - ACTIONS(4674), 1, + ACTIONS(4704), 1, anon_sym_LPAREN, - ACTIONS(4678), 1, + ACTIONS(4706), 1, anon_sym_COLON_COLON, - STATE(2027), 1, + STATE(2039), 1, sym_type_arguments, - STATE(2097), 1, + STATE(2104), 1, sym_parameters, - STATE(2017), 2, + STATE(2025), 2, sym_line_comment, sym_block_comment, - ACTIONS(3469), 13, + ACTIONS(3482), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -169785,55 +171688,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_where, anon_sym_else, - [62695] = 14, + [63212] = 14, ACTIONS(37), 1, anon_sym_SQUOTE, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1117), 1, + ACTIONS(1064), 1, anon_sym_DASH, - ACTIONS(1167), 1, + ACTIONS(1114), 1, aux_sym_string_literal_token1, - ACTIONS(1177), 1, + ACTIONS(1124), 1, sym__raw_string_literal_start, - ACTIONS(1617), 1, + ACTIONS(1622), 1, anon_sym_LBRACE, - ACTIONS(4680), 1, + ACTIONS(4708), 1, sym_identifier, - STATE(3770), 1, + STATE(3805), 1, sym_label, - ACTIONS(1169), 2, + ACTIONS(1116), 2, anon_sym_true, anon_sym_false, - STATE(2018), 2, + STATE(2026), 2, sym_line_comment, sym_block_comment, - ACTIONS(1643), 3, + ACTIONS(1648), 3, sym_float_literal, sym_integer_literal, sym_char_literal, - STATE(3039), 3, + STATE(3174), 3, sym_string_literal, sym_raw_string_literal, sym_boolean_literal, - STATE(3417), 3, + STATE(3411), 3, sym_block, sym__literal, sym_negative_literal, - [62746] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [63263] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3538), 2, + ACTIONS(3528), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(2019), 2, + STATE(2027), 2, sym_line_comment, sym_block_comment, - ACTIONS(3540), 16, + ACTIONS(3530), 16, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -169850,18 +171753,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_else, anon_sym_in, - [62779] = 5, - ACTIONS(103), 1, + [63296] = 20, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(4712), 1, + anon_sym_const, + ACTIONS(4714), 1, + anon_sym_enum, + ACTIONS(4716), 1, + anon_sym_fn, + ACTIONS(4718), 1, + anon_sym_mod, + ACTIONS(4720), 1, + anon_sym_static, + ACTIONS(4722), 1, + anon_sym_struct, + ACTIONS(4724), 1, + anon_sym_trait, + ACTIONS(4726), 1, + anon_sym_type, + ACTIONS(4728), 1, + anon_sym_union, + ACTIONS(4730), 1, + anon_sym_unsafe, + ACTIONS(4732), 1, + anon_sym_use, + ACTIONS(4734), 1, + anon_sym_extern, + ACTIONS(4736), 1, + anon_sym_safe, + STATE(2288), 1, + aux_sym__item_modifiers, + STATE(2666), 1, + sym_extern_modifier, + STATE(3825), 1, + sym_function_modifiers, + ACTIONS(4710), 2, + anon_sym_async, + anon_sym_default, + STATE(2028), 2, + sym_line_comment, + sym_block_comment, + [63359] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3505), 2, + ACTIONS(3520), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(2020), 2, + STATE(2029), 2, sym_line_comment, sym_block_comment, - ACTIONS(3507), 16, + ACTIONS(3522), 16, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -169878,132 +171824,297 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_else, anon_sym_in, - [62812] = 19, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [63392] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4684), 1, - anon_sym_const, - ACTIONS(4686), 1, - anon_sym_enum, - ACTIONS(4688), 1, - anon_sym_fn, - ACTIONS(4690), 1, - anon_sym_mod, - ACTIONS(4692), 1, - anon_sym_static, - ACTIONS(4694), 1, - anon_sym_struct, - ACTIONS(4696), 1, - anon_sym_trait, - ACTIONS(4698), 1, - anon_sym_type, - ACTIONS(4700), 1, - anon_sym_union, - ACTIONS(4702), 1, - anon_sym_unsafe, - ACTIONS(4704), 1, - anon_sym_use, - ACTIONS(4706), 1, - anon_sym_extern, - STATE(2240), 1, - sym_extern_modifier, - STATE(2317), 1, - aux_sym_function_modifiers_repeat1, - STATE(3792), 1, - sym_function_modifiers, - ACTIONS(4682), 2, - anon_sym_async, - anon_sym_default, - STATE(2021), 2, + STATE(2030), 2, sym_line_comment, sym_block_comment, - [62872] = 11, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3516), 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, + [63423] = 12, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4672), 1, + ACTIONS(4702), 1, anon_sym_LT2, - ACTIONS(4710), 1, + ACTIONS(4740), 1, anon_sym_COLON, - ACTIONS(4712), 1, + ACTIONS(4742), 1, anon_sym_BANG, - ACTIONS(4714), 1, + ACTIONS(4744), 1, anon_sym_DOT_DOT, - ACTIONS(4718), 1, + ACTIONS(4748), 1, anon_sym_COLON_COLON, - STATE(2024), 1, + STATE(2038), 1, sym_type_arguments, - ACTIONS(4716), 2, + ACTIONS(4746), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(2022), 2, + STATE(2031), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4738), 3, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_COMMA, + ACTIONS(3574), 7, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + anon_sym_safe, + [63470] = 5, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(3512), 2, + anon_sym_COLON, + anon_sym_DOT_DOT, + STATE(2032), 2, sym_line_comment, sym_block_comment, - ACTIONS(4708), 9, + ACTIONS(3514), 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, - [62916] = 19, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [63503] = 20, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4720), 1, + ACTIONS(4750), 1, anon_sym_const, - ACTIONS(4722), 1, + ACTIONS(4752), 1, anon_sym_enum, - ACTIONS(4724), 1, + ACTIONS(4754), 1, anon_sym_fn, - ACTIONS(4726), 1, + ACTIONS(4756), 1, anon_sym_mod, - ACTIONS(4728), 1, + ACTIONS(4758), 1, anon_sym_static, - ACTIONS(4730), 1, + ACTIONS(4760), 1, anon_sym_struct, - ACTIONS(4732), 1, + ACTIONS(4762), 1, anon_sym_trait, - ACTIONS(4734), 1, + ACTIONS(4764), 1, anon_sym_type, - ACTIONS(4736), 1, + ACTIONS(4766), 1, anon_sym_union, - ACTIONS(4738), 1, + ACTIONS(4768), 1, anon_sym_unsafe, - ACTIONS(4740), 1, + ACTIONS(4770), 1, anon_sym_use, - ACTIONS(4742), 1, + ACTIONS(4772), 1, anon_sym_extern, - STATE(2281), 1, + ACTIONS(4774), 1, + anon_sym_safe, + STATE(2266), 1, + aux_sym__item_modifiers, + STATE(2888), 1, sym_extern_modifier, - STATE(2317), 1, - aux_sym_function_modifiers_repeat1, - STATE(3675), 1, + STATE(3753), 1, sym_function_modifiers, - ACTIONS(4682), 2, + ACTIONS(4710), 2, anon_sym_async, anon_sym_default, - STATE(2023), 2, + STATE(2033), 2, + sym_line_comment, + sym_block_comment, + [63566] = 5, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(3584), 2, + anon_sym_COLON, + anon_sym_DOT_DOT, + STATE(2034), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3586), 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, + [63599] = 9, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(4702), 1, + anon_sym_LT2, + ACTIONS(4704), 1, + anon_sym_LPAREN, + ACTIONS(4776), 1, + anon_sym_COLON_COLON, + STATE(2039), 1, + sym_type_arguments, + STATE(2104), 1, + sym_parameters, + STATE(2035), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3488), 13, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_where, + anon_sym_else, + [63640] = 8, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(4702), 1, + anon_sym_LT2, + ACTIONS(4704), 1, + anon_sym_LPAREN, + STATE(2043), 1, + sym_type_arguments, + STATE(2105), 1, + sym_parameters, + STATE(2036), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3564), 13, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_where, + anon_sym_else, + [63678] = 8, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(4702), 1, + anon_sym_LT2, + ACTIONS(4704), 1, + anon_sym_LPAREN, + STATE(2043), 1, + sym_type_arguments, + STATE(2105), 1, + sym_parameters, + STATE(2037), 2, sym_line_comment, sym_block_comment, - [62976] = 5, - ACTIONS(103), 1, + ACTIONS(3504), 13, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_where, + anon_sym_else, + [63716] = 5, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(3770), 1, + anon_sym_COLON, + STATE(2038), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3768), 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, + [63748] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3704), 1, + ACTIONS(3784), 1, anon_sym_COLON, - STATE(2024), 2, + STATE(2039), 2, sym_line_comment, sym_block_comment, - ACTIONS(3702), 16, + ACTIONS(3782), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -170020,78 +172131,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_where, anon_sym_else, - [63008] = 12, - ACTIONS(103), 1, + [63780] = 5, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(4778), 1, + anon_sym_LPAREN, + STATE(2040), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4140), 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, + [63812] = 11, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4672), 1, + ACTIONS(4702), 1, anon_sym_LT2, - ACTIONS(4710), 1, - anon_sym_COLON, - ACTIONS(4712), 1, + ACTIONS(4742), 1, anon_sym_BANG, - ACTIONS(4714), 1, - anon_sym_DOT_DOT, ACTIONS(4744), 1, + anon_sym_DOT_DOT, + ACTIONS(4780), 1, anon_sym_COLON_COLON, - STATE(2024), 1, + STATE(2038), 1, sym_type_arguments, - ACTIONS(4716), 2, + ACTIONS(4746), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(2025), 2, + STATE(2041), 2, sym_line_comment, sym_block_comment, - ACTIONS(4708), 3, - anon_sym_RPAREN, + ACTIONS(4738), 3, + anon_sym_RBRACK, anon_sym_PIPE, anon_sym_COMMA, - ACTIONS(3566), 6, + ACTIONS(3574), 7, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [63054] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_safe, + [63856] = 11, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3738), 1, + ACTIONS(4702), 1, + anon_sym_LT2, + ACTIONS(4740), 1, anon_sym_COLON, - STATE(2026), 2, + ACTIONS(4742), 1, + anon_sym_BANG, + ACTIONS(4744), 1, + anon_sym_DOT_DOT, + ACTIONS(4782), 1, + anon_sym_COLON_COLON, + STATE(2038), 1, + sym_type_arguments, + ACTIONS(4746), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2042), 2, sym_line_comment, sym_block_comment, - ACTIONS(3736), 16, + ACTIONS(4738), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, - anon_sym_GT, anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_for, - anon_sym_where, anon_sym_else, - [63086] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_in, + [63900] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3734), 1, + ACTIONS(3788), 1, anon_sym_COLON, - STATE(2027), 2, + STATE(2043), 2, sym_line_comment, sym_block_comment, - ACTIONS(3732), 16, + ACTIONS(3786), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -170108,23 +172251,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_where, anon_sym_else, - [63118] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [63932] = 8, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4672), 1, + ACTIONS(4702), 1, anon_sym_LT2, - ACTIONS(4674), 1, + ACTIONS(4704), 1, anon_sym_LPAREN, - STATE(2026), 1, + STATE(2043), 1, sym_type_arguments, - STATE(2098), 1, + STATE(2105), 1, sym_parameters, - STATE(2028), 2, + STATE(2044), 2, sym_line_comment, sym_block_comment, - ACTIONS(3475), 13, + ACTIONS(3594), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -170138,23 +172281,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_where, anon_sym_else, - [63156] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [63970] = 8, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4672), 1, + ACTIONS(4702), 1, anon_sym_LT2, - ACTIONS(4674), 1, + ACTIONS(4704), 1, anon_sym_LPAREN, - STATE(2026), 1, + STATE(2043), 1, sym_type_arguments, - STATE(2098), 1, + STATE(2105), 1, sym_parameters, - STATE(2029), 2, + STATE(2045), 2, sym_line_comment, sym_block_comment, - ACTIONS(3513), 13, + ACTIONS(3568), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -170168,53 +172311,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_where, anon_sym_else, - [63194] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [64008] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4672), 1, - anon_sym_LT2, - ACTIONS(4674), 1, - anon_sym_LPAREN, - STATE(2026), 1, - sym_type_arguments, - STATE(2098), 1, - sym_parameters, - STATE(2030), 2, + STATE(2046), 2, sym_line_comment, sym_block_comment, - ACTIONS(3509), 13, + ACTIONS(1048), 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, - [63232] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_in, + [64037] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4672), 1, - anon_sym_LT2, - ACTIONS(4674), 1, - anon_sym_LPAREN, - STATE(2026), 1, - sym_type_arguments, - STATE(2098), 1, - sym_parameters, - STATE(2031), 2, + ACTIONS(3506), 1, + anon_sym_COLON, + ACTIONS(4784), 1, + anon_sym_COLON_COLON, + STATE(2047), 2, sym_line_comment, sym_block_comment, - ACTIONS(3517), 13, + ACTIONS(3504), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -170226,21 +172360,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_COMMA, anon_sym_SQUOTE, + anon_sym_as, anon_sym_where, anon_sym_else, - [63270] = 6, - ACTIONS(103), 1, + [64070] = 6, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(3570), 1, + anon_sym_COLON, + ACTIONS(4784), 1, + anon_sym_COLON_COLON, + STATE(2048), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3568), 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, + [64103] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3511), 1, + ACTIONS(3566), 1, anon_sym_COLON, - ACTIONS(4746), 1, + ACTIONS(4784), 1, anon_sym_COLON_COLON, - STATE(2032), 2, + STATE(2049), 2, sym_line_comment, sym_block_comment, - ACTIONS(3509), 14, + ACTIONS(3564), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -170255,15 +172417,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [63303] = 4, - ACTIONS(103), 1, + [64136] = 16, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(4688), 1, + anon_sym_LBRACE, + ACTIONS(4692), 1, + anon_sym_BANG, + ACTIONS(4694), 1, + anon_sym_AT, + ACTIONS(4696), 1, + anon_sym_DOT_DOT, + ACTIONS(4702), 1, + anon_sym_LT2, + ACTIONS(4786), 1, + anon_sym_LPAREN, + ACTIONS(4788), 1, + anon_sym_RBRACK, + ACTIONS(4791), 1, + anon_sym_COLON_COLON, + STATE(2039), 1, + sym_type_arguments, + STATE(2104), 1, + sym_parameters, + ACTIONS(3482), 2, + anon_sym_SEMI, + anon_sym_PLUS, + ACTIONS(4684), 2, + anon_sym_PIPE, + anon_sym_COMMA, + ACTIONS(4698), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2050), 2, + sym_line_comment, + sym_block_comment, + [64189] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2033), 2, + STATE(2051), 2, sym_line_comment, sym_block_comment, - ACTIONS(1531), 16, + ACTIONS(1178), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -170280,17 +172479,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_else, anon_sym_in, - [63332] = 5, - ACTIONS(103), 1, + [64218] = 6, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(3596), 1, + anon_sym_COLON, + ACTIONS(4793), 1, + anon_sym_COLON_COLON, + STATE(2052), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3594), 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, + [64251] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4748), 1, - anon_sym_LPAREN, - STATE(2034), 2, + ACTIONS(4164), 1, + anon_sym_COLON_COLON, + STATE(2053), 2, sym_line_comment, sym_block_comment, - ACTIONS(4154), 15, + ACTIONS(4142), 15, anon_sym_async, anon_sym_const, anon_sym_default, @@ -170305,116 +172531,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, - sym_identifier, - [63363] = 10, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_safe, + [64282] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4656), 1, - anon_sym_LPAREN, - ACTIONS(4660), 1, + ACTIONS(3596), 1, anon_sym_COLON, - ACTIONS(4662), 1, - anon_sym_BANG, - ACTIONS(4666), 1, - anon_sym_DOT_DOT, - ACTIONS(4750), 1, + ACTIONS(4784), 1, anon_sym_COLON_COLON, - ACTIONS(4668), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2035), 2, + STATE(2054), 2, sym_line_comment, sym_block_comment, - ACTIONS(4654), 9, + ACTIONS(3594), 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, - [63404] = 11, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [64315] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4672), 1, - anon_sym_LT2, - ACTIONS(4712), 1, - anon_sym_BANG, - ACTIONS(4714), 1, - anon_sym_DOT_DOT, - ACTIONS(4752), 1, - anon_sym_COLON_COLON, - STATE(2024), 1, - sym_type_arguments, - ACTIONS(4716), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2036), 2, + STATE(2055), 2, sym_line_comment, sym_block_comment, - ACTIONS(4708), 3, - anon_sym_RBRACK, - anon_sym_PIPE, - anon_sym_COMMA, - ACTIONS(3566), 6, + ACTIONS(4160), 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, - [63447] = 16, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_safe, + sym_identifier, + [64344] = 10, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4654), 1, - anon_sym_PIPE, - ACTIONS(4658), 1, - anon_sym_LBRACE, - ACTIONS(4660), 1, + ACTIONS(4686), 1, + anon_sym_LPAREN, + ACTIONS(4690), 1, anon_sym_COLON, - ACTIONS(4662), 1, + ACTIONS(4692), 1, anon_sym_BANG, - ACTIONS(4664), 1, - anon_sym_AT, - ACTIONS(4666), 1, + ACTIONS(4696), 1, anon_sym_DOT_DOT, - ACTIONS(4672), 1, - anon_sym_LT2, - ACTIONS(4754), 1, - anon_sym_LPAREN, - ACTIONS(4756), 1, + ACTIONS(4795), 1, anon_sym_COLON_COLON, - STATE(2027), 1, - sym_type_arguments, - STATE(2097), 1, - sym_parameters, - ACTIONS(4668), 2, + ACTIONS(4698), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(2037), 2, + STATE(2056), 2, sym_line_comment, sym_block_comment, - ACTIONS(3452), 3, + ACTIONS(4684), 9, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_PLUS, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_EQ, anon_sym_COMMA, - [63500] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_else, + anon_sym_in, + [64385] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2038), 2, + STATE(2057), 2, sym_line_comment, sym_block_comment, - ACTIONS(1055), 16, + ACTIONS(3706), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -170426,51 +172635,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, - anon_sym_in, - [63529] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [64414] = 6, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(186), 1, - sym_fragment_specifier, - ACTIONS(4760), 2, - anon_sym_expr, - anon_sym_pat, - STATE(2039), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4758), 13, - anon_sym_block, - anon_sym_expr_2021, - anon_sym_ident, - anon_sym_item, - anon_sym_lifetime, - anon_sym_literal, - anon_sym_meta, - anon_sym_pat_param, - anon_sym_path, - anon_sym_stmt, - anon_sym_tt, - anon_sym_ty, - anon_sym_vis, - [63562] = 6, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3477), 1, + ACTIONS(3596), 1, anon_sym_COLON, - ACTIONS(4746), 1, + ACTIONS(4797), 1, anon_sym_COLON_COLON, - STATE(2040), 2, + STATE(2058), 2, sym_line_comment, sym_block_comment, - ACTIONS(3475), 14, + ACTIONS(3594), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -170485,104 +172667,198 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [63595] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [64447] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2041), 2, + STATE(2059), 2, sym_line_comment, sym_block_comment, - ACTIONS(3628), 16, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PLUS, + ACTIONS(4152), 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, + [64476] = 12, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(4702), 1, + anon_sym_LT2, + ACTIONS(4738), 1, 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, - [63624] = 6, - ACTIONS(103), 1, + ACTIONS(4740), 1, + anon_sym_COLON, + ACTIONS(4742), 1, + anon_sym_BANG, + ACTIONS(4744), 1, + anon_sym_DOT_DOT, + ACTIONS(4799), 1, + anon_sym_COLON_COLON, + STATE(2038), 1, + sym_type_arguments, + ACTIONS(4746), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2060), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3574), 7, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + anon_sym_safe, + [64521] = 4, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + STATE(2061), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4156), 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, + [64550] = 17, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3515), 1, + ACTIONS(3482), 1, + anon_sym_PLUS, + ACTIONS(4684), 1, + anon_sym_PIPE, + ACTIONS(4688), 1, + anon_sym_LBRACE, + ACTIONS(4690), 1, anon_sym_COLON, - ACTIONS(4746), 1, + ACTIONS(4692), 1, + anon_sym_BANG, + ACTIONS(4694), 1, + anon_sym_AT, + ACTIONS(4696), 1, + anon_sym_DOT_DOT, + ACTIONS(4702), 1, + anon_sym_LT2, + ACTIONS(4801), 1, + anon_sym_LPAREN, + ACTIONS(4803), 1, anon_sym_COLON_COLON, - STATE(2042), 2, + STATE(2039), 1, + sym_type_arguments, + STATE(2104), 1, + sym_parameters, + ACTIONS(4698), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4788), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(2062), 2, + sym_line_comment, + sym_block_comment, + [64605] = 4, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + STATE(2063), 2, sym_line_comment, sym_block_comment, - ACTIONS(3513), 14, + ACTIONS(3692), 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, - [63657] = 16, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [64634] = 16, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4658), 1, + ACTIONS(4684), 1, + anon_sym_PIPE, + ACTIONS(4688), 1, anon_sym_LBRACE, - ACTIONS(4662), 1, + ACTIONS(4690), 1, + anon_sym_COLON, + ACTIONS(4692), 1, anon_sym_BANG, - ACTIONS(4664), 1, + ACTIONS(4694), 1, anon_sym_AT, - ACTIONS(4666), 1, + ACTIONS(4696), 1, anon_sym_DOT_DOT, - ACTIONS(4672), 1, + ACTIONS(4702), 1, anon_sym_LT2, - ACTIONS(4762), 1, + ACTIONS(4805), 1, anon_sym_LPAREN, - ACTIONS(4764), 1, - anon_sym_RBRACK, - ACTIONS(4767), 1, + ACTIONS(4807), 1, anon_sym_COLON_COLON, - STATE(2027), 1, + STATE(2039), 1, sym_type_arguments, - STATE(2097), 1, + STATE(2104), 1, sym_parameters, - ACTIONS(3452), 2, - anon_sym_SEMI, - anon_sym_PLUS, - ACTIONS(4654), 2, - anon_sym_PIPE, - anon_sym_COMMA, - ACTIONS(4668), 2, + ACTIONS(4698), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(2043), 2, + STATE(2064), 2, sym_line_comment, sym_block_comment, - [63710] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3482), 3, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + [64687] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2044), 2, + STATE(2065), 2, sym_line_comment, sym_block_comment, - ACTIONS(1467), 16, + ACTIONS(3800), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -170594,20 +172870,46 @@ 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, - [63739] = 4, - ACTIONS(103), 1, + [64716] = 5, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(4809), 1, + anon_sym_COLON_COLON, + STATE(2066), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4142), 15, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_mod, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + anon_sym_safe, + [64747] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2045), 2, + STATE(2067), 2, sym_line_comment, sym_block_comment, - ACTIONS(3610), 16, + ACTIONS(1552), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -170619,20 +172921,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, - [63768] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_in, + [64776] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2046), 2, + STATE(2068), 2, sym_line_comment, sym_block_comment, - ACTIONS(3760), 16, + ACTIONS(3670), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -170649,24 +172951,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [63797] = 6, - ACTIONS(103), 1, + [64805] = 6, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + STATE(160), 1, + sym_fragment_specifier, + ACTIONS(4813), 2, + anon_sym_expr, + anon_sym_pat, + STATE(2069), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4811), 13, + anon_sym_block, + anon_sym_expr_2021, + anon_sym_ident, + anon_sym_item, + anon_sym_lifetime, + anon_sym_literal, + anon_sym_meta, + anon_sym_pat_param, + anon_sym_path, + anon_sym_stmt, + anon_sym_tt, + anon_sym_ty, + anon_sym_vis, + [64838] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3519), 1, - anon_sym_COLON, - ACTIONS(4746), 1, - anon_sym_COLON_COLON, - STATE(2047), 2, + STATE(2070), 2, sym_line_comment, sym_block_comment, - ACTIONS(3517), 14, + ACTIONS(1518), 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, @@ -170676,15 +173002,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [63830] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_in, + [64867] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2048), 2, + STATE(2071), 2, sym_line_comment, sym_block_comment, - ACTIONS(1047), 16, + ACTIONS(3682), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -170696,20 +173023,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, - [63859] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [64896] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2049), 2, + STATE(2072), 2, sym_line_comment, sym_block_comment, - ACTIONS(3786), 16, + ACTIONS(4036), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -170721,29 +173048,25 @@ 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, - [63888] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [64924] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3477), 1, - anon_sym_COLON, - ACTIONS(4769), 1, - anon_sym_COLON_COLON, - STATE(2050), 2, + STATE(2073), 2, sym_line_comment, sym_block_comment, - ACTIONS(3475), 14, + ACTIONS(3848), 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, @@ -170753,53 +173076,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [63921] = 17, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [64952] = 4, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3452), 1, - anon_sym_PLUS, - ACTIONS(4654), 1, - anon_sym_PIPE, - ACTIONS(4658), 1, - anon_sym_LBRACE, - ACTIONS(4660), 1, - anon_sym_COLON, - ACTIONS(4662), 1, - anon_sym_BANG, - ACTIONS(4664), 1, - anon_sym_AT, - ACTIONS(4666), 1, - anon_sym_DOT_DOT, - ACTIONS(4672), 1, - anon_sym_LT2, - ACTIONS(4771), 1, - anon_sym_LPAREN, - ACTIONS(4773), 1, - anon_sym_COLON_COLON, - STATE(2027), 1, - sym_type_arguments, - STATE(2097), 1, - sym_parameters, - ACTIONS(4668), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4764), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2051), 2, - sym_line_comment, - sym_block_comment, - [63976] = 4, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2052), 2, + STATE(2074), 2, sym_line_comment, sym_block_comment, - ACTIONS(3688), 16, + ACTIONS(4076), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -170811,29 +173096,25 @@ 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, - [64005] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [64980] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3477), 1, - anon_sym_COLON, - ACTIONS(4775), 1, - anon_sym_COLON_COLON, - STATE(2053), 2, + STATE(2075), 2, sym_line_comment, sym_block_comment, - ACTIONS(3475), 14, + ACTIONS(3836), 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, @@ -170843,47 +173124,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64038] = 12, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [65008] = 4, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4672), 1, - anon_sym_LT2, - ACTIONS(4708), 1, - anon_sym_PIPE, - ACTIONS(4710), 1, - anon_sym_COLON, - ACTIONS(4712), 1, - anon_sym_BANG, - ACTIONS(4714), 1, - anon_sym_DOT_DOT, - ACTIONS(4777), 1, - anon_sym_COLON_COLON, - STATE(2024), 1, - sym_type_arguments, - ACTIONS(4716), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2054), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3566), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [64082] = 4, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2055), 2, + STATE(2076), 2, sym_line_comment, sym_block_comment, - ACTIONS(4004), 15, + ACTIONS(4068), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -170899,15 +173148,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64110] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [65036] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2056), 2, + STATE(2077), 2, sym_line_comment, sym_block_comment, - ACTIONS(4016), 15, + ACTIONS(4056), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -170923,15 +173172,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64138] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [65064] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2057), 2, + STATE(2078), 2, sym_line_comment, sym_block_comment, - ACTIONS(3802), 15, + ACTIONS(4060), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -170947,15 +173196,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64166] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [65092] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2058), 2, + STATE(2079), 2, sym_line_comment, sym_block_comment, - ACTIONS(3806), 15, + ACTIONS(4032), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -170971,15 +173220,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64194] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [65120] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2059), 2, + STATE(2080), 2, sym_line_comment, sym_block_comment, - ACTIONS(3880), 15, + ACTIONS(4084), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -170995,39 +173244,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64222] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [65148] = 4, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(2060), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4161), 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, - [64250] = 4, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2061), 2, + STATE(2081), 2, sym_line_comment, sym_block_comment, - ACTIONS(3814), 15, + ACTIONS(4088), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -171043,15 +173268,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64278] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [65176] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2062), 2, + STATE(2082), 2, sym_line_comment, sym_block_comment, - ACTIONS(3513), 15, + ACTIONS(4092), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -171067,15 +173292,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64306] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [65204] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2063), 2, + STATE(2083), 2, sym_line_comment, sym_block_comment, - ACTIONS(3517), 15, + ACTIONS(3832), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -171091,15 +173316,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64334] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [65232] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2064), 2, + STATE(2084), 2, sym_line_comment, sym_block_comment, - ACTIONS(3844), 15, + ACTIONS(4028), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -171115,15 +173340,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64362] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [65260] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2065), 2, + STATE(2085), 2, sym_line_comment, sym_block_comment, - ACTIONS(3862), 15, + ACTIONS(3966), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -171139,15 +173364,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64390] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [65288] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2066), 2, + STATE(2086), 2, sym_line_comment, sym_block_comment, - ACTIONS(4102), 15, + ACTIONS(3970), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -171163,39 +173388,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64418] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [65316] = 4, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(2067), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4167), 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, - [64446] = 4, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2068), 2, + STATE(2087), 2, sym_line_comment, sym_block_comment, - ACTIONS(3822), 15, + ACTIONS(3990), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -171211,15 +173412,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64474] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [65344] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2069), 2, + STATE(2088), 2, sym_line_comment, sym_block_comment, - ACTIONS(3475), 15, + ACTIONS(4040), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -171235,64 +173436,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64502] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [65372] = 4, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4779), 1, - anon_sym_COLON_COLON, - STATE(2070), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4156), 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, - [64532] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(2071), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4171), 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, - [64560] = 4, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2072), 2, + STATE(2089), 2, sym_line_comment, sym_block_comment, - ACTIONS(3509), 15, + ACTIONS(4024), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -171308,15 +173460,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64588] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [65400] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2073), 2, + STATE(2090), 2, sym_line_comment, sym_block_comment, - ACTIONS(3866), 15, + ACTIONS(3930), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -171332,15 +173484,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64616] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [65428] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2074), 2, + STATE(2091), 2, sym_line_comment, sym_block_comment, - ACTIONS(3884), 15, + ACTIONS(3892), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -171356,15 +173508,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64644] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [65456] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2075), 2, + STATE(2092), 2, sym_line_comment, sym_block_comment, - ACTIONS(3888), 15, + ACTIONS(3998), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -171380,15 +173532,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64672] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [65484] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2076), 2, + STATE(2093), 2, sym_line_comment, sym_block_comment, - ACTIONS(3810), 15, + ACTIONS(4072), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -171404,15 +173556,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64700] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [65512] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2077), 2, + STATE(2094), 2, sym_line_comment, sym_block_comment, - ACTIONS(3892), 15, + ACTIONS(4002), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -171428,15 +173580,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64728] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [65540] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2078), 2, + STATE(2095), 2, sym_line_comment, sym_block_comment, - ACTIONS(3896), 15, + ACTIONS(3978), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -171452,15 +173604,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64756] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [65568] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2079), 2, + STATE(2096), 2, sym_line_comment, sym_block_comment, - ACTIONS(3908), 15, + ACTIONS(4064), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -171476,15 +173628,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64784] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [65596] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2080), 2, + STATE(2097), 2, sym_line_comment, sym_block_comment, - ACTIONS(3870), 15, + ACTIONS(3922), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -171500,15 +173652,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64812] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [65624] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2081), 2, + STATE(2098), 2, sym_line_comment, sym_block_comment, - ACTIONS(4110), 15, + ACTIONS(3568), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -171524,15 +173676,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64840] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [65652] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2082), 2, + STATE(2099), 2, sym_line_comment, sym_block_comment, - ACTIONS(3978), 15, + ACTIONS(3504), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -171548,15 +173700,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64868] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [65680] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2083), 2, + STATE(2100), 2, sym_line_comment, sym_block_comment, - ACTIONS(3988), 15, + ACTIONS(4006), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -171572,15 +173724,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64896] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [65708] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2084), 2, + STATE(2101), 2, sym_line_comment, sym_block_comment, - ACTIONS(3900), 15, + ACTIONS(3594), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -171596,15 +173748,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64924] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [65736] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2085), 2, + STATE(2102), 2, sym_line_comment, sym_block_comment, - ACTIONS(4074), 15, + ACTIONS(3564), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -171620,15 +173772,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64952] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [65764] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2086), 2, + STATE(2103), 2, sym_line_comment, sym_block_comment, - ACTIONS(4038), 15, + ACTIONS(4044), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -171644,186 +173796,164 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64980] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [65792] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2087), 2, + ACTIONS(4815), 1, + anon_sym_DASH_GT, + STATE(2104), 2, sym_line_comment, sym_block_comment, - ACTIONS(4008), 15, + ACTIONS(3818), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COLON, anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, anon_sym_COMMA, anon_sym_SQUOTE, - anon_sym_as, anon_sym_where, anon_sym_else, - [65008] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [65821] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2088), 2, + ACTIONS(4817), 1, + anon_sym_DASH_GT, + STATE(2105), 2, sym_line_comment, sym_block_comment, - ACTIONS(4106), 15, + ACTIONS(3742), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COLON, anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, anon_sym_COMMA, anon_sym_SQUOTE, - anon_sym_as, anon_sym_where, anon_sym_else, - [65036] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [65850] = 5, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4114), 1, - anon_sym_COLON_COLON, - STATE(2089), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4156), 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, - [65066] = 4, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2090), 2, + ACTIONS(4819), 1, + anon_sym_DASH_GT, + STATE(2106), 2, sym_line_comment, sym_block_comment, - ACTIONS(3996), 15, + ACTIONS(3716), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COLON, anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, anon_sym_COMMA, anon_sym_SQUOTE, - anon_sym_as, anon_sym_where, anon_sym_else, - [65094] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [65879] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2091), 2, + ACTIONS(4821), 1, + anon_sym_DASH_GT, + STATE(2107), 2, sym_line_comment, sym_block_comment, - ACTIONS(3858), 15, + ACTIONS(3722), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COLON, anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, anon_sym_COMMA, anon_sym_SQUOTE, - anon_sym_as, anon_sym_where, anon_sym_else, - [65122] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [65908] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4783), 1, - anon_sym_DOT_DOT, - STATE(2092), 2, + ACTIONS(4823), 1, + anon_sym_DASH_GT, + STATE(2108), 2, sym_line_comment, sym_block_comment, - ACTIONS(4781), 13, + ACTIONS(3728), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COLON, + anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_where, anon_sym_else, - anon_sym_in, - [65151] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [65937] = 8, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(955), 1, + ACTIONS(4740), 1, + anon_sym_COLON, + ACTIONS(4744), 1, anon_sym_DOT_DOT, - STATE(2093), 2, + ACTIONS(4782), 1, + anon_sym_COLON_COLON, + ACTIONS(4746), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2109), 2, sym_line_comment, sym_block_comment, - ACTIONS(957), 13, + ACTIONS(4738), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_COLON, anon_sym_PIPE, anon_sym_EQ, - anon_sym_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_else, anon_sym_in, - [65180] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [65972] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(975), 1, + ACTIONS(938), 1, anon_sym_DOT_DOT, - STATE(2094), 2, + STATE(2110), 2, sym_line_comment, sym_block_comment, - ACTIONS(977), 13, + ACTIONS(940), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -171837,44 +173967,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [65209] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [66001] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4710), 1, - anon_sym_COLON, - ACTIONS(4714), 1, + ACTIONS(4827), 1, anon_sym_DOT_DOT, - ACTIONS(4718), 1, - anon_sym_COLON_COLON, - ACTIONS(4716), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2095), 2, + STATE(2111), 2, sym_line_comment, sym_block_comment, - ACTIONS(4708), 9, + ACTIONS(4825), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, + anon_sym_COLON, anon_sym_PIPE, anon_sym_EQ, + anon_sym_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_else, anon_sym_in, - [65244] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [66030] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4785), 1, + ACTIONS(4829), 1, anon_sym_DASH_GT, - STATE(2096), 2, + STATE(2112), 2, sym_line_comment, sym_block_comment, - ACTIONS(3740), 13, + ACTIONS(3806), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -171888,134 +174015,146 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_where, anon_sym_else, - [65273] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [66059] = 11, + ACTIONS(19), 1, + anon_sym_LBRACE, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4787), 1, - anon_sym_DASH_GT, - STATE(2097), 2, + ACTIONS(3474), 1, + anon_sym_SQUOTE, + ACTIONS(4831), 1, + anon_sym_move, + STATE(251), 1, + sym_closure_parameters, + STATE(407), 1, + sym_block, + STATE(3785), 1, + sym_label, + STATE(2113), 2, sym_line_comment, sym_block_comment, - ACTIONS(3746), 13, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, + ACTIONS(3574), 7, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + anon_sym_safe, + [66100] = 11, + ACTIONS(19), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_where, - anon_sym_else, - [65302] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4789), 1, - anon_sym_DASH_GT, - STATE(2098), 2, + ACTIONS(3474), 1, + anon_sym_SQUOTE, + ACTIONS(4758), 1, + anon_sym_static, + ACTIONS(4762), 1, + anon_sym_trait, + ACTIONS(4833), 1, + anon_sym_impl, + STATE(416), 1, + sym_block, + STATE(3785), 1, + sym_label, + STATE(2114), 2, sym_line_comment, sym_block_comment, - ACTIONS(3752), 13, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_where, - anon_sym_else, - [65331] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3574), 7, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + anon_sym_safe, + [66141] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4791), 1, - anon_sym_DASH_GT, - STATE(2099), 2, + ACTIONS(928), 1, + anon_sym_DOT_DOT, + STATE(2115), 2, sym_line_comment, sym_block_comment, - ACTIONS(3764), 13, + ACTIONS(930), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_PLUS, + anon_sym_COLON, anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_where, anon_sym_else, - [65360] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_in, + [66170] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4793), 1, - anon_sym_DASH_GT, - STATE(2100), 2, + ACTIONS(954), 1, + anon_sym_DOT_DOT, + STATE(2116), 2, sym_line_comment, sym_block_comment, - ACTIONS(3770), 13, + ACTIONS(956), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_PLUS, + anon_sym_COLON, anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_where, anon_sym_else, - [65389] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_in, + [66199] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4795), 1, - anon_sym_DASH_GT, - STATE(2101), 2, + ACTIONS(958), 1, + anon_sym_DOT_DOT, + STATE(2117), 2, sym_line_comment, sym_block_comment, - ACTIONS(3776), 13, + ACTIONS(960), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_PLUS, + anon_sym_COLON, anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_where, anon_sym_else, - [65418] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_in, + [66228] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4797), 1, + ACTIONS(4835), 1, anon_sym_DASH_GT, - STATE(2102), 2, + STATE(2118), 2, sym_line_comment, sym_block_comment, ACTIONS(3790), 13, @@ -172032,489 +174171,490 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_where, anon_sym_else, - [65447] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [66257] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4799), 1, + ACTIONS(4837), 1, anon_sym_LPAREN, - ACTIONS(3538), 2, + ACTIONS(3520), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(2103), 2, + STATE(2119), 2, sym_line_comment, sym_block_comment, - ACTIONS(3534), 5, + ACTIONS(3516), 5, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_COMMA, anon_sym_LT2, - ACTIONS(3540), 5, + ACTIONS(3522), 5, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, - [65479] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [66289] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3546), 1, - anon_sym_DOT_DOT, - ACTIONS(4802), 2, + ACTIONS(4840), 1, anon_sym_LPAREN, - anon_sym_RBRACK, - STATE(2104), 2, + ACTIONS(3512), 2, + anon_sym_COLON, + anon_sym_DOT_DOT, + STATE(2120), 2, sym_line_comment, sym_block_comment, - ACTIONS(3542), 4, - anon_sym_SEMI, + ACTIONS(3508), 5, + anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_PLUS, + anon_sym_COMMA, anon_sym_LT2, - ACTIONS(3548), 6, + ACTIONS(3514), 5, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, anon_sym_COLON_COLON, - [65511] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [66321] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3530), 1, + ACTIONS(3584), 1, anon_sym_DOT_DOT, - ACTIONS(4805), 2, + ACTIONS(4843), 2, anon_sym_LPAREN, anon_sym_RBRACK, - STATE(2105), 2, + STATE(2121), 2, sym_line_comment, sym_block_comment, - ACTIONS(3526), 4, + ACTIONS(3580), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(3532), 6, + ACTIONS(3586), 6, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_COLON_COLON, - [65543] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [66353] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3505), 1, + ACTIONS(3584), 2, + anon_sym_COLON, anon_sym_DOT_DOT, - ACTIONS(4808), 2, - anon_sym_LPAREN, - anon_sym_RBRACK, - STATE(2106), 2, + STATE(2122), 2, sym_line_comment, sym_block_comment, - ACTIONS(3501), 4, - anon_sym_SEMI, + ACTIONS(3580), 3, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(3507), 6, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, - [65575] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4808), 1, + ACTIONS(4843), 3, anon_sym_LPAREN, - ACTIONS(3505), 2, - anon_sym_COLON, - anon_sym_DOT_DOT, - STATE(2107), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3501), 5, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_PLUS, anon_sym_COMMA, - anon_sym_LT2, - ACTIONS(3507), 5, + ACTIONS(3586), 5, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, - [65607] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [66385] = 7, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4666), 1, - anon_sym_DOT_DOT, - ACTIONS(4668), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2108), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4654), 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, - [65637] = 7, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4805), 1, - anon_sym_LPAREN, - ACTIONS(3530), 2, - anon_sym_COLON, + ACTIONS(3512), 1, anon_sym_DOT_DOT, - STATE(2109), 2, + ACTIONS(4840), 2, + anon_sym_LPAREN, + anon_sym_RBRACK, + STATE(2123), 2, sym_line_comment, sym_block_comment, - ACTIONS(3526), 5, - anon_sym_RPAREN, + ACTIONS(3508), 4, + anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_COMMA, anon_sym_LT2, - ACTIONS(3532), 5, + ACTIONS(3514), 6, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, anon_sym_COLON_COLON, - [65669] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [66417] = 7, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4813), 1, - anon_sym_DOT_DOT, - STATE(2110), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4811), 12, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [65697] = 7, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4802), 1, - anon_sym_LPAREN, - ACTIONS(3546), 2, - anon_sym_COLON, + ACTIONS(3520), 1, anon_sym_DOT_DOT, - STATE(2111), 2, + ACTIONS(4837), 2, + anon_sym_LPAREN, + anon_sym_RBRACK, + STATE(2124), 2, sym_line_comment, sym_block_comment, - ACTIONS(3542), 5, - anon_sym_RPAREN, + ACTIONS(3516), 4, + anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_COMMA, anon_sym_LT2, - ACTIONS(3548), 5, + ACTIONS(3522), 6, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, anon_sym_COLON_COLON, - [65729] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [66449] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3505), 2, + ACTIONS(3520), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(2112), 2, + STATE(2125), 2, sym_line_comment, sym_block_comment, - ACTIONS(3501), 3, + ACTIONS(3516), 3, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(4808), 3, + ACTIONS(4837), 3, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(3507), 5, + ACTIONS(3522), 5, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, - [65761] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [66481] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3546), 2, + ACTIONS(3512), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(2113), 2, + STATE(2126), 2, sym_line_comment, sym_block_comment, - ACTIONS(3542), 3, + ACTIONS(3508), 3, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(4802), 3, + ACTIONS(4840), 3, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(3548), 5, + ACTIONS(3514), 5, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, - [65793] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [66513] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3538), 2, + ACTIONS(4843), 1, + anon_sym_LPAREN, + ACTIONS(3584), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(2114), 2, + STATE(2127), 2, sym_line_comment, sym_block_comment, - ACTIONS(3534), 3, + ACTIONS(3580), 5, + anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(4799), 3, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(3540), 5, + anon_sym_LT2, + ACTIONS(3586), 5, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, - [65825] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [66545] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3538), 1, + ACTIONS(3528), 1, anon_sym_DOT_DOT, - ACTIONS(4799), 2, + ACTIONS(4846), 2, anon_sym_LPAREN, anon_sym_RBRACK, - STATE(2115), 2, + STATE(2128), 2, sym_line_comment, sym_block_comment, - ACTIONS(3534), 4, + ACTIONS(3524), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(3540), 6, + ACTIONS(3530), 6, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_COLON_COLON, - [65857] = 13, - ACTIONS(103), 1, + [66577] = 5, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(4851), 1, + anon_sym_DOT_DOT, + STATE(2129), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4849), 12, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_else, + anon_sym_in, + [66605] = 14, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4672), 1, + ACTIONS(4692), 1, + anon_sym_BANG, + ACTIONS(4702), 1, anon_sym_LT2, - ACTIONS(4815), 1, + ACTIONS(4704), 1, anon_sym_LPAREN, - ACTIONS(4817), 1, + ACTIONS(4706), 1, + anon_sym_COLON_COLON, + ACTIONS(4853), 1, + anon_sym_COLON, + ACTIONS(4855), 1, + anon_sym_EQ, + STATE(2039), 1, + sym_type_arguments, + STATE(2451), 1, + sym_parameters, + STATE(3037), 1, + sym_trait_bounds, + ACTIONS(3482), 2, + anon_sym_PLUS, + anon_sym_as, + ACTIONS(4857), 2, + anon_sym_GT, + anon_sym_COMMA, + STATE(2130), 2, + sym_line_comment, + sym_block_comment, + [66651] = 13, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(4702), 1, + anon_sym_LT2, + ACTIONS(4859), 1, + anon_sym_LPAREN, + ACTIONS(4861), 1, anon_sym_LBRACE, - ACTIONS(4819), 1, + ACTIONS(4863), 1, anon_sym_BANG, - ACTIONS(4821), 1, + ACTIONS(4865), 1, anon_sym_AT, - ACTIONS(4823), 1, + ACTIONS(4867), 1, anon_sym_DOT_DOT, - ACTIONS(4827), 1, + ACTIONS(4871), 1, anon_sym_COLON_COLON, - STATE(2027), 1, + STATE(2039), 1, sym_type_arguments, - ACTIONS(4825), 2, + ACTIONS(4869), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(2116), 2, + STATE(2131), 2, sym_line_comment, sym_block_comment, - ACTIONS(4654), 3, + ACTIONS(4684), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [65901] = 11, - ACTIONS(19), 1, - anon_sym_LBRACE, - ACTIONS(27), 1, - anon_sym_PIPE, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [66695] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3448), 1, - anon_sym_SQUOTE, - ACTIONS(4829), 1, - anon_sym_move, - STATE(224), 1, - sym_closure_parameters, - STATE(409), 1, - sym_block, - STATE(3621), 1, - sym_label, - STATE(2117), 2, + ACTIONS(4696), 1, + anon_sym_DOT_DOT, + ACTIONS(4698), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2132), 2, sym_line_comment, sym_block_comment, - ACTIONS(3566), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [65941] = 7, - ACTIONS(103), 1, + ACTIONS(4684), 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, + [66725] = 7, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(4846), 1, + anon_sym_LPAREN, + ACTIONS(3528), 2, + anon_sym_COLON, + anon_sym_DOT_DOT, + STATE(2133), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3524), 5, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_LT2, + ACTIONS(3530), 5, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, + [66757] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3530), 2, + ACTIONS(3528), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(2118), 2, + STATE(2134), 2, sym_line_comment, sym_block_comment, - ACTIONS(3526), 3, + ACTIONS(3524), 3, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(4805), 3, + ACTIONS(4846), 3, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(3532), 5, + ACTIONS(3530), 5, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, - [65973] = 14, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [66789] = 13, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4662), 1, - anon_sym_BANG, - ACTIONS(4672), 1, - anon_sym_LT2, - ACTIONS(4674), 1, - anon_sym_LPAREN, - ACTIONS(4676), 1, - anon_sym_COLON_COLON, - ACTIONS(4831), 1, - anon_sym_COLON, - ACTIONS(4833), 1, - anon_sym_EQ, - STATE(2027), 1, - sym_type_arguments, - STATE(2409), 1, - sym_parameters, - STATE(3144), 1, - sym_trait_bounds, - ACTIONS(3452), 2, - anon_sym_PLUS, - anon_sym_as, - ACTIONS(4835), 2, + ACTIONS(3094), 1, + anon_sym_POUND, + ACTIONS(3096), 1, + anon_sym_SQUOTE, + ACTIONS(4873), 1, + sym_identifier, + ACTIONS(4875), 1, anon_sym_GT, - anon_sym_COMMA, - STATE(2119), 2, + ACTIONS(4877), 1, + anon_sym_const, + ACTIONS(4879), 1, + sym_metavariable, + STATE(1314), 1, + sym_attribute_item, + STATE(2145), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2634), 1, + sym_lifetime, + STATE(2135), 2, sym_line_comment, sym_block_comment, - [66019] = 13, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + STATE(3402), 3, + sym_const_parameter, + sym_type_parameter, + sym_lifetime_parameter, + [66832] = 13, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3068), 1, + ACTIONS(3094), 1, anon_sym_POUND, - ACTIONS(3070), 1, + ACTIONS(3096), 1, anon_sym_SQUOTE, - ACTIONS(4837), 1, + ACTIONS(4873), 1, sym_identifier, - ACTIONS(4839), 1, - anon_sym_GT, - ACTIONS(4841), 1, + ACTIONS(4877), 1, anon_sym_const, - ACTIONS(4843), 1, + ACTIONS(4879), 1, sym_metavariable, - STATE(1254), 1, + ACTIONS(4881), 1, + anon_sym_GT, + STATE(1314), 1, sym_attribute_item, - STATE(2132), 1, + STATE(2145), 1, aux_sym_enum_variant_list_repeat1, - STATE(2725), 1, + STATE(2634), 1, sym_lifetime, - STATE(2120), 2, + STATE(2136), 2, sym_line_comment, sym_block_comment, - STATE(3273), 3, + STATE(3402), 3, sym_const_parameter, sym_type_parameter, sym_lifetime_parameter, - [66062] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [66875] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4847), 1, + ACTIONS(4885), 1, anon_sym_COLON, - ACTIONS(4028), 2, + ACTIONS(3944), 2, anon_sym_LPAREN, anon_sym_COLON_COLON, - STATE(2121), 2, + STATE(2137), 2, sym_line_comment, sym_block_comment, - ACTIONS(4845), 9, + ACTIONS(4883), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -172524,197 +174664,363 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [66091] = 13, - ACTIONS(103), 1, + [66904] = 6, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(4885), 1, + anon_sym_COLON, + ACTIONS(4118), 2, + anon_sym_LPAREN, + anon_sym_COLON_COLON, + STATE(2138), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4883), 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, + [66933] = 13, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3068), 1, + ACTIONS(3094), 1, anon_sym_POUND, - ACTIONS(3070), 1, + ACTIONS(3096), 1, anon_sym_SQUOTE, - ACTIONS(4837), 1, + ACTIONS(4873), 1, sym_identifier, - ACTIONS(4841), 1, + ACTIONS(4877), 1, anon_sym_const, - ACTIONS(4843), 1, + ACTIONS(4879), 1, sym_metavariable, - ACTIONS(4849), 1, + ACTIONS(4887), 1, anon_sym_GT, - STATE(1254), 1, + STATE(1314), 1, sym_attribute_item, - STATE(2132), 1, + STATE(2145), 1, aux_sym_enum_variant_list_repeat1, - STATE(2725), 1, + STATE(2634), 1, sym_lifetime, - STATE(2122), 2, + STATE(2139), 2, sym_line_comment, sym_block_comment, - STATE(3273), 3, + STATE(3402), 3, sym_const_parameter, sym_type_parameter, sym_lifetime_parameter, - [66134] = 13, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [66976] = 13, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3068), 1, + ACTIONS(3094), 1, anon_sym_POUND, - ACTIONS(3070), 1, + ACTIONS(3096), 1, anon_sym_SQUOTE, - ACTIONS(4837), 1, + ACTIONS(4873), 1, sym_identifier, - ACTIONS(4841), 1, + ACTIONS(4877), 1, anon_sym_const, - ACTIONS(4843), 1, + ACTIONS(4879), 1, sym_metavariable, - ACTIONS(4851), 1, + ACTIONS(4889), 1, anon_sym_GT, - STATE(1254), 1, + STATE(1314), 1, sym_attribute_item, - STATE(2132), 1, + STATE(2145), 1, aux_sym_enum_variant_list_repeat1, - STATE(2725), 1, + STATE(2634), 1, sym_lifetime, - STATE(2123), 2, + STATE(2140), 2, sym_line_comment, sym_block_comment, - STATE(3273), 3, + STATE(3402), 3, sym_const_parameter, sym_type_parameter, sym_lifetime_parameter, - [66177] = 13, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [67019] = 13, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3068), 1, + ACTIONS(3094), 1, anon_sym_POUND, - ACTIONS(3070), 1, + ACTIONS(3096), 1, anon_sym_SQUOTE, - ACTIONS(4837), 1, + ACTIONS(4873), 1, sym_identifier, - ACTIONS(4841), 1, + ACTIONS(4877), 1, anon_sym_const, - ACTIONS(4843), 1, + ACTIONS(4879), 1, sym_metavariable, - ACTIONS(4853), 1, + ACTIONS(4891), 1, anon_sym_GT, - STATE(1254), 1, + STATE(1314), 1, sym_attribute_item, - STATE(2132), 1, + STATE(2145), 1, aux_sym_enum_variant_list_repeat1, - STATE(2725), 1, + STATE(2634), 1, sym_lifetime, - STATE(2124), 2, + STATE(2141), 2, sym_line_comment, sym_block_comment, - STATE(3273), 3, + STATE(3402), 3, sym_const_parameter, sym_type_parameter, sym_lifetime_parameter, - [66220] = 10, + [67062] = 9, ACTIONS(19), 1, anon_sym_LBRACE, - ACTIONS(103), 1, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(3474), 1, + anon_sym_SQUOTE, + ACTIONS(4893), 1, + sym_identifier, + STATE(410), 1, + sym_block, + STATE(3785), 1, + sym_label, + STATE(2142), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4895), 7, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + anon_sym_safe, + [67097] = 13, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(3094), 1, + anon_sym_POUND, + ACTIONS(3096), 1, + anon_sym_SQUOTE, + ACTIONS(4873), 1, + sym_identifier, + ACTIONS(4877), 1, + anon_sym_const, + ACTIONS(4879), 1, + sym_metavariable, + ACTIONS(4897), 1, + anon_sym_GT, + STATE(1314), 1, + sym_attribute_item, + STATE(2145), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2634), 1, + sym_lifetime, + STATE(2143), 2, + sym_line_comment, + sym_block_comment, + STATE(3402), 3, + sym_const_parameter, + sym_type_parameter, + sym_lifetime_parameter, + [67140] = 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(1450), 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, + [67164] = 12, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(3094), 1, + anon_sym_POUND, + ACTIONS(3096), 1, + anon_sym_SQUOTE, + ACTIONS(4873), 1, + sym_identifier, + ACTIONS(4877), 1, + anon_sym_const, + ACTIONS(4899), 1, + sym_metavariable, + STATE(1097), 1, + aux_sym_enum_variant_list_repeat1, + STATE(1314), 1, + sym_attribute_item, + STATE(2634), 1, + sym_lifetime, + STATE(2145), 2, + sym_line_comment, + sym_block_comment, + STATE(3435), 3, + sym_const_parameter, + sym_type_parameter, + sym_lifetime_parameter, + [67204] = 4, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + STATE(2146), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1442), 11, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_else, + anon_sym_in, + [67228] = 11, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(3458), 1, + anon_sym_COLON, + ACTIONS(4692), 1, + anon_sym_BANG, + ACTIONS(4702), 1, + anon_sym_LT2, + ACTIONS(4704), 1, + anon_sym_LPAREN, + ACTIONS(4706), 1, + anon_sym_COLON_COLON, + STATE(2039), 1, + sym_type_arguments, + STATE(2451), 1, + sym_parameters, + STATE(2147), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3454), 4, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_as, + [67266] = 12, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(3094), 1, + anon_sym_POUND, + ACTIONS(4901), 1, + sym_identifier, + ACTIONS(4903), 1, + anon_sym_RBRACE, + ACTIONS(4905), 1, + anon_sym_DOT_DOT, + ACTIONS(4907), 1, + anon_sym_COMMA, + ACTIONS(4909), 1, + sym_integer_literal, + STATE(1314), 1, + sym_attribute_item, + STATE(2553), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2148), 2, + sym_line_comment, + sym_block_comment, + STATE(3075), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [67306] = 8, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3448), 1, - anon_sym_SQUOTE, - ACTIONS(4732), 1, - anon_sym_trait, - ACTIONS(4855), 1, - anon_sym_impl, - STATE(416), 1, - sym_block, - STATE(3621), 1, - sym_label, - STATE(2125), 2, + ACTIONS(4178), 1, + anon_sym_LT2, + ACTIONS(4374), 1, + anon_sym_COLON_COLON, + ACTIONS(4911), 1, + anon_sym_BANG, + STATE(1723), 1, + sym_type_arguments, + STATE(2149), 2, sym_line_comment, sym_block_comment, - ACTIONS(3566), 6, + ACTIONS(3574), 7, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [66257] = 13, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_safe, + [67338] = 12, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3068), 1, - anon_sym_POUND, - ACTIONS(3070), 1, - anon_sym_SQUOTE, - ACTIONS(4837), 1, - sym_identifier, - ACTIONS(4841), 1, - anon_sym_const, - ACTIONS(4843), 1, - sym_metavariable, - ACTIONS(4857), 1, - anon_sym_GT, - STATE(1254), 1, - sym_attribute_item, - STATE(2132), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2725), 1, - sym_lifetime, - STATE(2126), 2, - sym_line_comment, - sym_block_comment, - STATE(3273), 3, - sym_const_parameter, - sym_type_parameter, - sym_lifetime_parameter, - [66300] = 13, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3068), 1, + ACTIONS(3094), 1, anon_sym_POUND, - ACTIONS(3070), 1, - anon_sym_SQUOTE, - ACTIONS(4837), 1, + ACTIONS(4901), 1, sym_identifier, - ACTIONS(4841), 1, - anon_sym_const, - ACTIONS(4843), 1, - sym_metavariable, - ACTIONS(4859), 1, - anon_sym_GT, - STATE(1254), 1, + ACTIONS(4905), 1, + anon_sym_DOT_DOT, + ACTIONS(4909), 1, + sym_integer_literal, + ACTIONS(4913), 1, + anon_sym_RBRACE, + ACTIONS(4915), 1, + anon_sym_COMMA, + STATE(1314), 1, sym_attribute_item, - STATE(2132), 1, + STATE(2553), 1, aux_sym_enum_variant_list_repeat1, - STATE(2725), 1, - sym_lifetime, - STATE(2127), 2, + STATE(2150), 2, sym_line_comment, sym_block_comment, - STATE(3273), 3, - sym_const_parameter, - sym_type_parameter, - sym_lifetime_parameter, - [66343] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + STATE(3156), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [67378] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4847), 1, + ACTIONS(4919), 1, anon_sym_COLON, - ACTIONS(3984), 2, - anon_sym_LPAREN, + ACTIONS(4921), 1, anon_sym_COLON_COLON, - STATE(2128), 2, + STATE(2151), 2, sym_line_comment, sym_block_comment, - ACTIONS(4845), 9, + ACTIONS(4917), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -172724,19 +175030,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [66372] = 6, - ACTIONS(103), 1, + [67406] = 8, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(4702), 1, + anon_sym_LT2, + ACTIONS(4742), 1, + anon_sym_BANG, + ACTIONS(4793), 1, + anon_sym_COLON_COLON, + STATE(2038), 1, + sym_type_arguments, + STATE(2152), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3574), 7, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + anon_sym_safe, + [67438] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4863), 1, - anon_sym_COLON, - ACTIONS(4865), 1, + ACTIONS(4921), 1, anon_sym_COLON_COLON, - STATE(2129), 2, + ACTIONS(4925), 1, + anon_sym_COLON, + STATE(2153), 2, sym_line_comment, sym_block_comment, - ACTIONS(4861), 9, + ACTIONS(4923), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -172746,117 +175076,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [66400] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [67466] = 6, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3538), 1, - anon_sym_DOT_DOT, - ACTIONS(3534), 2, - anon_sym_LBRACE, - anon_sym_LT2, - STATE(2130), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3540), 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, - [66428] = 4, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2131), 2, + ACTIONS(4929), 1, + anon_sym_COLON, + ACTIONS(4931), 1, + anon_sym_COLON_COLON, + STATE(2154), 2, sym_line_comment, sym_block_comment, - ACTIONS(1437), 11, + ACTIONS(4927), 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, - [66452] = 12, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [67494] = 11, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3068), 1, - anon_sym_POUND, - ACTIONS(3070), 1, - anon_sym_SQUOTE, - ACTIONS(4837), 1, - sym_identifier, - ACTIONS(4841), 1, - anon_sym_const, - ACTIONS(4867), 1, - sym_metavariable, - STATE(1093), 1, - aux_sym_enum_variant_list_repeat1, - STATE(1254), 1, - sym_attribute_item, - STATE(2725), 1, - sym_lifetime, - STATE(2132), 2, - sym_line_comment, - sym_block_comment, - STATE(3299), 3, - sym_const_parameter, - sym_type_parameter, - sym_lifetime_parameter, - [66492] = 12, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3454), 1, - anon_sym_COLON, - ACTIONS(4662), 1, + ACTIONS(4692), 1, anon_sym_BANG, - ACTIONS(4672), 1, + ACTIONS(4702), 1, anon_sym_LT2, - ACTIONS(4674), 1, + ACTIONS(4704), 1, anon_sym_LPAREN, - ACTIONS(4676), 1, + ACTIONS(4706), 1, anon_sym_COLON_COLON, - ACTIONS(4869), 1, - anon_sym_EQ, - STATE(2409), 1, - sym_parameters, - STATE(2435), 1, + ACTIONS(4933), 1, + anon_sym_for, + STATE(2039), 1, sym_type_arguments, - STATE(2133), 2, + STATE(2104), 1, + sym_parameters, + STATE(2155), 2, sym_line_comment, sym_block_comment, - ACTIONS(3452), 3, + ACTIONS(3482), 4, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_GT, - anon_sym_COMMA, - [66532] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_where, + [67532] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4873), 1, - anon_sym_COLON, - ACTIONS(4875), 1, + ACTIONS(4809), 1, anon_sym_COLON_COLON, - STATE(2134), 2, + ACTIONS(4929), 1, + anon_sym_COLON, + STATE(2156), 2, sym_line_comment, sym_block_comment, - ACTIONS(4871), 9, + ACTIONS(4927), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -172866,47 +175147,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [66560] = 12, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [67560] = 6, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3068), 1, - anon_sym_POUND, - ACTIONS(3070), 1, - anon_sym_SQUOTE, - ACTIONS(4837), 1, - sym_identifier, - ACTIONS(4841), 1, - anon_sym_const, - ACTIONS(4877), 1, - sym_metavariable, - STATE(1254), 1, - sym_attribute_item, - STATE(2137), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2725), 1, - sym_lifetime, - STATE(2135), 2, - sym_line_comment, - sym_block_comment, - STATE(3161), 3, - sym_const_parameter, - sym_type_parameter, - sym_lifetime_parameter, - [66600] = 6, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4881), 1, - anon_sym_COLON, - ACTIONS(4883), 1, + ACTIONS(4931), 1, anon_sym_COLON_COLON, - STATE(2136), 2, + ACTIONS(4937), 1, + anon_sym_COLON, + STATE(2157), 2, sym_line_comment, sym_block_comment, - ACTIONS(4879), 9, + ACTIONS(4935), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -172916,75 +175169,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [66628] = 12, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [67588] = 8, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3068), 1, - anon_sym_POUND, - ACTIONS(3070), 1, - anon_sym_SQUOTE, - ACTIONS(4837), 1, - sym_identifier, - ACTIONS(4841), 1, - anon_sym_const, - ACTIONS(4885), 1, - sym_metavariable, - STATE(1093), 1, - aux_sym_enum_variant_list_repeat1, - STATE(1254), 1, - sym_attribute_item, - STATE(2725), 1, - sym_lifetime, - STATE(2137), 2, + ACTIONS(3464), 1, + anon_sym_LT2, + ACTIONS(3710), 1, + anon_sym_COLON_COLON, + ACTIONS(4742), 1, + anon_sym_BANG, + STATE(1427), 1, + sym_type_arguments, + STATE(2158), 2, sym_line_comment, sym_block_comment, - STATE(2894), 3, - sym_const_parameter, - sym_type_parameter, - sym_lifetime_parameter, - [66668] = 12, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3574), 7, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + anon_sym_safe, + [67620] = 8, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3068), 1, - anon_sym_POUND, - ACTIONS(4887), 1, - sym_identifier, - ACTIONS(4889), 1, - anon_sym_RBRACE, - ACTIONS(4891), 1, - anon_sym_DOT_DOT, - ACTIONS(4893), 1, - anon_sym_COMMA, - ACTIONS(4895), 1, - sym_integer_literal, - STATE(1254), 1, - sym_attribute_item, - STATE(2552), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2138), 2, + ACTIONS(4178), 1, + anon_sym_LT2, + ACTIONS(4374), 1, + anon_sym_COLON_COLON, + ACTIONS(4742), 1, + anon_sym_BANG, + STATE(1723), 1, + sym_type_arguments, + STATE(2159), 2, sym_line_comment, sym_block_comment, - STATE(3080), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [66708] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3574), 7, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + anon_sym_safe, + [67652] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4883), 1, - anon_sym_COLON_COLON, - ACTIONS(4899), 1, + ACTIONS(4929), 1, anon_sym_COLON, - STATE(2139), 2, + ACTIONS(4939), 1, + anon_sym_COLON_COLON, + STATE(2160), 2, sym_line_comment, sym_block_comment, - ACTIONS(4897), 9, + ACTIONS(4927), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -172994,114 +175239,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [66736] = 11, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [67680] = 11, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4672), 1, + ACTIONS(4702), 1, anon_sym_LT2, - ACTIONS(4710), 1, + ACTIONS(4740), 1, anon_sym_COLON, - ACTIONS(4712), 1, + ACTIONS(4742), 1, anon_sym_BANG, - ACTIONS(4714), 1, - anon_sym_DOT_DOT, ACTIONS(4744), 1, + anon_sym_DOT_DOT, + ACTIONS(4748), 1, anon_sym_COLON_COLON, - STATE(2024), 1, + STATE(2038), 1, sym_type_arguments, - ACTIONS(4716), 2, + ACTIONS(4746), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(2140), 2, + STATE(2161), 2, sym_line_comment, sym_block_comment, - ACTIONS(4708), 3, + ACTIONS(4738), 3, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_COMMA, - [66774] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [67718] = 11, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3530), 1, - anon_sym_DOT_DOT, - ACTIONS(3526), 2, - anon_sym_LBRACE, - anon_sym_LT2, - STATE(2141), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3532), 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, - [66802] = 11, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4662), 1, + ACTIONS(3480), 1, + anon_sym_COLON, + ACTIONS(4692), 1, anon_sym_BANG, - ACTIONS(4672), 1, + ACTIONS(4702), 1, anon_sym_LT2, - ACTIONS(4674), 1, + ACTIONS(4704), 1, anon_sym_LPAREN, - ACTIONS(4676), 1, + ACTIONS(4706), 1, anon_sym_COLON_COLON, - ACTIONS(4901), 1, - anon_sym_for, - STATE(2027), 1, + STATE(2039), 1, sym_type_arguments, - STATE(2097), 1, + STATE(2451), 1, sym_parameters, - STATE(2142), 2, + STATE(2162), 2, sym_line_comment, sym_block_comment, - ACTIONS(3452), 4, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(3478), 4, anon_sym_PLUS, - anon_sym_where, - [66840] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_as, + [67756] = 4, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1167), 1, - aux_sym_string_literal_token1, - ACTIONS(4905), 1, - sym_crate, - STATE(2327), 1, - sym_string_literal, - STATE(2143), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4903), 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, - [66870] = 4, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2144), 2, + STATE(2163), 2, sym_line_comment, sym_block_comment, - ACTIONS(1433), 11, + ACTIONS(1454), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -173113,115 +175313,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [66894] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [67780] = 12, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4863), 1, - anon_sym_COLON, - ACTIONS(4875), 1, - anon_sym_COLON_COLON, - STATE(2145), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4861), 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, - [66922] = 12, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3068), 1, + ACTIONS(3094), 1, anon_sym_POUND, - ACTIONS(3070), 1, + ACTIONS(3096), 1, anon_sym_SQUOTE, - ACTIONS(4837), 1, + ACTIONS(4873), 1, sym_identifier, - ACTIONS(4841), 1, + ACTIONS(4877), 1, anon_sym_const, - ACTIONS(4843), 1, + ACTIONS(4941), 1, sym_metavariable, - STATE(1254), 1, + STATE(1314), 1, sym_attribute_item, - STATE(2132), 1, + STATE(2179), 1, aux_sym_enum_variant_list_repeat1, - STATE(2725), 1, + STATE(2634), 1, sym_lifetime, - STATE(2146), 2, + STATE(2164), 2, sym_line_comment, sym_block_comment, - STATE(3273), 3, + STATE(2966), 3, sym_const_parameter, sym_type_parameter, sym_lifetime_parameter, - [66962] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [67820] = 11, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4883), 1, + ACTIONS(4692), 1, + anon_sym_BANG, + ACTIONS(4702), 1, + anon_sym_LT2, + ACTIONS(4704), 1, + anon_sym_LPAREN, + ACTIONS(4706), 1, anon_sym_COLON_COLON, - ACTIONS(4909), 1, - anon_sym_COLON, - STATE(2147), 2, + ACTIONS(4943), 1, + anon_sym_for, + STATE(2039), 1, + sym_type_arguments, + STATE(2104), 1, + sym_parameters, + STATE(2165), 2, sym_line_comment, sym_block_comment, - ACTIONS(4907), 9, + ACTIONS(3482), 4, 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, - [66990] = 12, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [67858] = 12, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3068), 1, + ACTIONS(3094), 1, anon_sym_POUND, - ACTIONS(4887), 1, + ACTIONS(3096), 1, + anon_sym_SQUOTE, + ACTIONS(4873), 1, sym_identifier, - ACTIONS(4891), 1, - anon_sym_DOT_DOT, - ACTIONS(4895), 1, - sym_integer_literal, - ACTIONS(4911), 1, - anon_sym_RBRACE, - ACTIONS(4913), 1, - anon_sym_COMMA, - STATE(1254), 1, + ACTIONS(4877), 1, + anon_sym_const, + ACTIONS(4945), 1, + sym_metavariable, + STATE(1314), 1, sym_attribute_item, - STATE(2552), 1, + STATE(2169), 1, aux_sym_enum_variant_list_repeat1, - STATE(2148), 2, + STATE(2634), 1, + sym_lifetime, + STATE(2166), 2, sym_line_comment, sym_block_comment, - STATE(3169), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [67030] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + STATE(3123), 3, + sym_const_parameter, + sym_type_parameter, + sym_lifetime_parameter, + [67898] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2149), 2, + STATE(2167), 2, sym_line_comment, sym_block_comment, - ACTIONS(1445), 11, + ACTIONS(1446), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -173233,19 +175416,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [67054] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [67922] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4779), 1, + ACTIONS(4939), 1, anon_sym_COLON_COLON, - ACTIONS(4863), 1, + ACTIONS(4949), 1, anon_sym_COLON, - STATE(2150), 2, + STATE(2168), 2, sym_line_comment, sym_block_comment, - ACTIONS(4861), 9, + ACTIONS(4947), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -173255,69 +175438,142 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [67082] = 11, - ACTIONS(103), 1, + [67950] = 12, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(3094), 1, + anon_sym_POUND, + ACTIONS(3096), 1, + anon_sym_SQUOTE, + ACTIONS(4873), 1, + sym_identifier, + ACTIONS(4877), 1, + anon_sym_const, + ACTIONS(4951), 1, + sym_metavariable, + STATE(1097), 1, + aux_sym_enum_variant_list_repeat1, + STATE(1314), 1, + sym_attribute_item, + STATE(2634), 1, + sym_lifetime, + STATE(2169), 2, + sym_line_comment, + sym_block_comment, + STATE(2921), 3, + sym_const_parameter, + sym_type_parameter, + sym_lifetime_parameter, + [67990] = 11, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4662), 1, + ACTIONS(3484), 1, + anon_sym_COLON, + ACTIONS(4692), 1, anon_sym_BANG, - ACTIONS(4672), 1, + ACTIONS(4702), 1, anon_sym_LT2, - ACTIONS(4674), 1, + ACTIONS(4704), 1, anon_sym_LPAREN, - ACTIONS(4676), 1, + ACTIONS(4706), 1, anon_sym_COLON_COLON, - ACTIONS(4915), 1, - anon_sym_for, - STATE(2027), 1, + STATE(2039), 1, sym_type_arguments, - STATE(2097), 1, + STATE(2451), 1, sym_parameters, - STATE(2151), 2, + STATE(2170), 2, sym_line_comment, sym_block_comment, - ACTIONS(3452), 4, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(3482), 4, anon_sym_PLUS, - anon_sym_where, - [67120] = 7, - ACTIONS(103), 1, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_as, + [68028] = 6, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(3584), 1, + anon_sym_DOT_DOT, + ACTIONS(3580), 2, + anon_sym_LBRACE, + anon_sym_LT2, + STATE(2171), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3586), 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, + [68056] = 6, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(3512), 1, + anon_sym_DOT_DOT, + ACTIONS(3508), 2, + anon_sym_LBRACE, + anon_sym_LT2, + STATE(2172), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3514), 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, + [68084] = 8, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1167), 1, - aux_sym_string_literal_token1, - ACTIONS(4917), 1, - sym_crate, - STATE(2327), 1, - sym_string_literal, - STATE(2152), 2, + ACTIONS(3464), 1, + anon_sym_LT2, + ACTIONS(3710), 1, + anon_sym_COLON_COLON, + ACTIONS(4953), 1, + anon_sym_BANG, + STATE(1427), 1, + sym_type_arguments, + STATE(2173), 2, sym_line_comment, sym_block_comment, - ACTIONS(4903), 8, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(3574), 7, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [67150] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_safe, + [68116] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4779), 1, - anon_sym_COLON_COLON, - ACTIONS(4921), 1, + ACTIONS(4937), 1, anon_sym_COLON, - STATE(2153), 2, + ACTIONS(4939), 1, + anon_sym_COLON_COLON, + STATE(2174), 2, sym_line_comment, sym_block_comment, - ACTIONS(4919), 9, + ACTIONS(4935), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -173327,19 +175583,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [67178] = 6, - ACTIONS(103), 1, + [68144] = 6, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(3520), 1, + anon_sym_DOT_DOT, + ACTIONS(3516), 2, + anon_sym_LBRACE, + anon_sym_LT2, + STATE(2175), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3522), 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, + [68172] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4865), 1, + ACTIONS(3528), 1, + anon_sym_DOT_DOT, + ACTIONS(3524), 2, + anon_sym_LBRACE, + anon_sym_LT2, + STATE(2176), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3530), 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, + [68200] = 6, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, ACTIONS(4921), 1, + anon_sym_COLON_COLON, + ACTIONS(4957), 1, anon_sym_COLON, - STATE(2154), 2, + STATE(2177), 2, sym_line_comment, sym_block_comment, - ACTIONS(4919), 9, + ACTIONS(4955), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -173349,307 +175649,262 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [67206] = 11, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [68228] = 11, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3432), 1, - anon_sym_COLON, - ACTIONS(4662), 1, - anon_sym_BANG, - ACTIONS(4672), 1, - anon_sym_LT2, - ACTIONS(4674), 1, - anon_sym_LPAREN, - ACTIONS(4676), 1, - anon_sym_COLON_COLON, - STATE(2027), 1, - sym_type_arguments, - STATE(2409), 1, - sym_parameters, - STATE(2155), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3428), 4, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_as, - [67244] = 11, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4662), 1, + ACTIONS(4692), 1, anon_sym_BANG, - ACTIONS(4672), 1, + ACTIONS(4702), 1, anon_sym_LT2, - ACTIONS(4674), 1, + ACTIONS(4704), 1, anon_sym_LPAREN, - ACTIONS(4676), 1, + ACTIONS(4706), 1, anon_sym_COLON_COLON, - ACTIONS(4923), 1, + ACTIONS(4959), 1, anon_sym_for, - STATE(2027), 1, + STATE(2039), 1, sym_type_arguments, - STATE(2097), 1, + STATE(2104), 1, sym_parameters, - STATE(2156), 2, + STATE(2178), 2, sym_line_comment, sym_block_comment, - ACTIONS(3452), 4, + ACTIONS(3482), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [67282] = 11, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [68266] = 12, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4662), 1, - anon_sym_BANG, - ACTIONS(4672), 1, - anon_sym_LT2, - ACTIONS(4674), 1, - anon_sym_LPAREN, - ACTIONS(4676), 1, - anon_sym_COLON_COLON, - ACTIONS(4925), 1, - anon_sym_for, - STATE(2027), 1, - sym_type_arguments, - STATE(2097), 1, - sym_parameters, - STATE(2157), 2, + ACTIONS(3094), 1, + anon_sym_POUND, + ACTIONS(3096), 1, + anon_sym_SQUOTE, + ACTIONS(4873), 1, + sym_identifier, + ACTIONS(4877), 1, + anon_sym_const, + ACTIONS(4961), 1, + sym_metavariable, + STATE(1097), 1, + aux_sym_enum_variant_list_repeat1, + STATE(1314), 1, + sym_attribute_item, + STATE(2634), 1, + sym_lifetime, + STATE(2179), 2, sym_line_comment, sym_block_comment, - ACTIONS(3452), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [67320] = 11, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + STATE(3078), 3, + sym_const_parameter, + sym_type_parameter, + sym_lifetime_parameter, + [68306] = 11, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4662), 1, + ACTIONS(4692), 1, anon_sym_BANG, - ACTIONS(4672), 1, + ACTIONS(4702), 1, anon_sym_LT2, - ACTIONS(4674), 1, + ACTIONS(4704), 1, anon_sym_LPAREN, - ACTIONS(4676), 1, + ACTIONS(4706), 1, anon_sym_COLON_COLON, - ACTIONS(4927), 1, + ACTIONS(4963), 1, anon_sym_for, - STATE(2027), 1, + STATE(2039), 1, sym_type_arguments, - STATE(2097), 1, + STATE(2104), 1, sym_parameters, - STATE(2158), 2, + STATE(2180), 2, sym_line_comment, sym_block_comment, - ACTIONS(3452), 4, + ACTIONS(3482), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [67358] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [68344] = 11, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3505), 1, - anon_sym_DOT_DOT, - ACTIONS(3501), 2, - anon_sym_LBRACE, - anon_sym_LT2, - STATE(2159), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3507), 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, - [67386] = 11, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4662), 1, + ACTIONS(4692), 1, anon_sym_BANG, - ACTIONS(4672), 1, + ACTIONS(4702), 1, anon_sym_LT2, - ACTIONS(4674), 1, + ACTIONS(4704), 1, anon_sym_LPAREN, - ACTIONS(4676), 1, + ACTIONS(4706), 1, anon_sym_COLON_COLON, - ACTIONS(4929), 1, + ACTIONS(4965), 1, anon_sym_for, - STATE(2027), 1, + STATE(2039), 1, sym_type_arguments, - STATE(2097), 1, + STATE(2104), 1, sym_parameters, - STATE(2160), 2, + STATE(2181), 2, sym_line_comment, sym_block_comment, - ACTIONS(3452), 4, + ACTIONS(3482), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [67424] = 11, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [68382] = 12, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4662), 1, - anon_sym_BANG, - ACTIONS(4672), 1, - anon_sym_LT2, - ACTIONS(4674), 1, - anon_sym_LPAREN, - ACTIONS(4676), 1, - anon_sym_COLON_COLON, - ACTIONS(4931), 1, - anon_sym_for, - STATE(2027), 1, - sym_type_arguments, - STATE(2097), 1, - sym_parameters, - STATE(2161), 2, + ACTIONS(3094), 1, + anon_sym_POUND, + ACTIONS(3096), 1, + anon_sym_SQUOTE, + ACTIONS(4873), 1, + sym_identifier, + ACTIONS(4877), 1, + anon_sym_const, + ACTIONS(4879), 1, + sym_metavariable, + STATE(1314), 1, + sym_attribute_item, + STATE(2145), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2634), 1, + sym_lifetime, + STATE(2182), 2, sym_line_comment, sym_block_comment, - ACTIONS(3452), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [67462] = 11, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + STATE(3402), 3, + sym_const_parameter, + sym_type_parameter, + sym_lifetime_parameter, + [68422] = 11, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4662), 1, + ACTIONS(4692), 1, anon_sym_BANG, - ACTIONS(4672), 1, + ACTIONS(4702), 1, anon_sym_LT2, - ACTIONS(4674), 1, + ACTIONS(4704), 1, anon_sym_LPAREN, - ACTIONS(4676), 1, + ACTIONS(4706), 1, anon_sym_COLON_COLON, - ACTIONS(4933), 1, + ACTIONS(4967), 1, anon_sym_for, - STATE(2027), 1, + STATE(2039), 1, sym_type_arguments, - STATE(2097), 1, + STATE(2104), 1, sym_parameters, - STATE(2162), 2, + STATE(2183), 2, sym_line_comment, sym_block_comment, - ACTIONS(3452), 4, + ACTIONS(3482), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [67500] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [68460] = 12, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3546), 1, - anon_sym_DOT_DOT, - ACTIONS(3542), 2, - anon_sym_LBRACE, - anon_sym_LT2, - STATE(2163), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3548), 8, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - anon_sym_if, - [67528] = 12, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3068), 1, + ACTIONS(3094), 1, anon_sym_POUND, - ACTIONS(3070), 1, + ACTIONS(3096), 1, anon_sym_SQUOTE, - ACTIONS(4837), 1, + ACTIONS(4873), 1, sym_identifier, - ACTIONS(4841), 1, + ACTIONS(4877), 1, anon_sym_const, - ACTIONS(4935), 1, + ACTIONS(4941), 1, sym_metavariable, - STATE(1254), 1, + STATE(1314), 1, sym_attribute_item, - STATE(2169), 1, + STATE(2179), 1, aux_sym_enum_variant_list_repeat1, - STATE(2579), 1, + STATE(2550), 1, sym_lifetime, - STATE(2164), 2, + STATE(2184), 2, sym_line_comment, sym_block_comment, - STATE(2971), 3, + STATE(2966), 3, sym_const_parameter, sym_type_parameter, sym_lifetime_parameter, - [67568] = 11, - ACTIONS(103), 1, + [68500] = 8, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(1622), 1, + anon_sym_LBRACE, + ACTIONS(3474), 1, + anon_sym_SQUOTE, + STATE(2198), 1, + sym_block, + STATE(3805), 1, + sym_label, + STATE(2185), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3574), 7, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + anon_sym_safe, + [68532] = 11, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3454), 1, - anon_sym_COLON, - ACTIONS(4662), 1, + ACTIONS(4692), 1, anon_sym_BANG, - ACTIONS(4672), 1, + ACTIONS(4702), 1, anon_sym_LT2, - ACTIONS(4674), 1, + ACTIONS(4704), 1, anon_sym_LPAREN, - ACTIONS(4676), 1, + ACTIONS(4706), 1, anon_sym_COLON_COLON, - STATE(2027), 1, + ACTIONS(4969), 1, + anon_sym_for, + STATE(2039), 1, sym_type_arguments, - STATE(2409), 1, + STATE(2104), 1, sym_parameters, - STATE(2165), 2, + STATE(2186), 2, sym_line_comment, sym_block_comment, - ACTIONS(3452), 4, + ACTIONS(3482), 4, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_as, - [67606] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_where, + [68570] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4865), 1, + ACTIONS(4931), 1, anon_sym_COLON_COLON, - ACTIONS(4873), 1, + ACTIONS(4949), 1, anon_sym_COLON, - STATE(2166), 2, + STATE(2187), 2, sym_line_comment, sym_block_comment, - ACTIONS(4871), 9, + ACTIONS(4947), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -173659,19 +175914,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [67634] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [68598] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4875), 1, + ACTIONS(4809), 1, anon_sym_COLON_COLON, - ACTIONS(4921), 1, + ACTIONS(4949), 1, anon_sym_COLON, - STATE(2167), 2, + STATE(2188), 2, sym_line_comment, sym_block_comment, - ACTIONS(4919), 9, + ACTIONS(4947), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -173681,108 +175936,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [67662] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [68626] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4779), 1, - anon_sym_COLON_COLON, - ACTIONS(4873), 1, - anon_sym_COLON, - STATE(2168), 2, + STATE(2189), 2, sym_line_comment, sym_block_comment, - ACTIONS(4871), 9, + ACTIONS(1438), 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, - [67690] = 12, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [68650] = 11, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3068), 1, - anon_sym_POUND, - ACTIONS(3070), 1, - anon_sym_SQUOTE, - ACTIONS(4837), 1, - sym_identifier, - ACTIONS(4841), 1, - anon_sym_const, - ACTIONS(4937), 1, - sym_metavariable, - STATE(1093), 1, - aux_sym_enum_variant_list_repeat1, - STATE(1254), 1, - sym_attribute_item, - STATE(2725), 1, - sym_lifetime, - STATE(2169), 2, + ACTIONS(4692), 1, + anon_sym_BANG, + ACTIONS(4702), 1, + anon_sym_LT2, + ACTIONS(4704), 1, + anon_sym_LPAREN, + ACTIONS(4706), 1, + anon_sym_COLON_COLON, + ACTIONS(4971), 1, + anon_sym_for, + STATE(2039), 1, + sym_type_arguments, + STATE(2104), 1, + sym_parameters, + STATE(2190), 2, sym_line_comment, sym_block_comment, - STATE(3157), 3, - sym_const_parameter, - sym_type_parameter, - sym_lifetime_parameter, - [67730] = 4, - ACTIONS(103), 1, + ACTIONS(3482), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [68688] = 12, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(3484), 1, + anon_sym_COLON, + ACTIONS(4692), 1, + anon_sym_BANG, + ACTIONS(4702), 1, + anon_sym_LT2, + ACTIONS(4704), 1, + anon_sym_LPAREN, + ACTIONS(4706), 1, + anon_sym_COLON_COLON, + ACTIONS(4973), 1, + anon_sym_EQ, + STATE(2451), 1, + sym_parameters, + STATE(2505), 1, + sym_type_arguments, + STATE(2191), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3482), 3, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_COMMA, + [68728] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2170), 2, + ACTIONS(4809), 1, + anon_sym_COLON_COLON, + ACTIONS(4937), 1, + anon_sym_COLON, + STATE(2192), 2, sym_line_comment, sym_block_comment, - ACTIONS(1449), 11, + ACTIONS(4935), 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, - [67754] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [68756] = 4, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1167), 1, - aux_sym_string_literal_token1, - ACTIONS(4939), 1, - sym_crate, - STATE(2327), 1, - sym_string_literal, - STATE(2171), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4903), 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, - [67784] = 4, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2172), 2, + STATE(2193), 2, sym_line_comment, sym_block_comment, - ACTIONS(1441), 11, + ACTIONS(4975), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -173790,150 +176049,75 @@ 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, - [67808] = 11, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [68779] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3460), 1, - anon_sym_COLON, - ACTIONS(4662), 1, - anon_sym_BANG, - ACTIONS(4672), 1, - anon_sym_LT2, - ACTIONS(4674), 1, - anon_sym_LPAREN, - ACTIONS(4676), 1, - anon_sym_COLON_COLON, - STATE(2027), 1, - sym_type_arguments, - STATE(2409), 1, - sym_parameters, - STATE(2173), 2, + STATE(2194), 2, sym_line_comment, sym_block_comment, - ACTIONS(3458), 4, - anon_sym_PLUS, - anon_sym_GT, + ACTIONS(4977), 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_as, - [67846] = 9, - ACTIONS(19), 1, - anon_sym_LBRACE, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_else, + anon_sym_in, + [68802] = 4, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3448), 1, - anon_sym_SQUOTE, - ACTIONS(4941), 1, - sym_identifier, - STATE(411), 1, - sym_block, - STATE(3621), 1, - sym_label, - STATE(2174), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4943), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [67880] = 12, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3068), 1, - anon_sym_POUND, - ACTIONS(3070), 1, - anon_sym_SQUOTE, - ACTIONS(4837), 1, - sym_identifier, - ACTIONS(4841), 1, - anon_sym_const, - ACTIONS(4935), 1, - sym_metavariable, - STATE(1254), 1, - sym_attribute_item, - STATE(2169), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2725), 1, - sym_lifetime, - STATE(2175), 2, + STATE(2195), 2, sym_line_comment, sym_block_comment, - STATE(2971), 3, - sym_const_parameter, - sym_type_parameter, - sym_lifetime_parameter, - [67920] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4979), 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, + [68825] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1167), 1, - aux_sym_string_literal_token1, - ACTIONS(4945), 1, - sym_crate, - STATE(2327), 1, - sym_string_literal, - STATE(2176), 2, + STATE(2196), 2, sym_line_comment, sym_block_comment, - ACTIONS(4903), 8, + ACTIONS(4981), 10, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [67950] = 13, - ACTIONS(69), 1, - anon_sym_pub, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3068), 1, - anon_sym_POUND, - ACTIONS(4947), 1, - sym_identifier, - ACTIONS(4949), 1, + anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_RBRACE, - ACTIONS(4951), 1, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_EQ, anon_sym_COMMA, - ACTIONS(4953), 1, - sym_crate, - STATE(1254), 1, - sym_attribute_item, - STATE(2300), 1, - aux_sym_enum_variant_list_repeat1, - STATE(3044), 1, - sym_field_declaration, - STATE(3506), 1, - sym_visibility_modifier, - STATE(2177), 2, - sym_line_comment, - sym_block_comment, - [67991] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_else, + anon_sym_in, + [68848] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2178), 2, + STATE(2197), 2, sym_line_comment, sym_block_comment, - ACTIONS(4955), 10, + ACTIONS(4684), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -173944,15 +176128,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68014] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [68871] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2179), 2, + STATE(2198), 2, sym_line_comment, sym_block_comment, - ACTIONS(4871), 10, + ACTIONS(1490), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -173963,15 +176147,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68037] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [68894] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2180), 2, + STATE(2199), 2, sym_line_comment, sym_block_comment, - ACTIONS(4957), 10, + ACTIONS(4983), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -173982,34 +176166,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68060] = 4, - ACTIONS(103), 1, + [68917] = 11, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(3094), 1, + anon_sym_POUND, + ACTIONS(4901), 1, + sym_identifier, + ACTIONS(4905), 1, + anon_sym_DOT_DOT, + ACTIONS(4909), 1, + sym_integer_literal, + ACTIONS(4985), 1, + anon_sym_RBRACE, + STATE(1314), 1, + sym_attribute_item, + STATE(2553), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2200), 2, + sym_line_comment, + sym_block_comment, + STATE(3517), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [68954] = 10, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2181), 2, + ACTIONS(4702), 1, + anon_sym_LT2, + ACTIONS(4742), 1, + anon_sym_BANG, + ACTIONS(4744), 1, + anon_sym_DOT_DOT, + ACTIONS(4780), 1, + anon_sym_COLON_COLON, + STATE(2038), 1, + sym_type_arguments, + ACTIONS(4746), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2201), 2, sym_line_comment, sym_block_comment, - ACTIONS(4959), 10, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(4738), 3, anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COLON, anon_sym_PIPE, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [68083] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [68989] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2182), 2, + STATE(2202), 2, sym_line_comment, sym_block_comment, - ACTIONS(4961), 10, + ACTIONS(4987), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -174020,34 +176236,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68106] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [69012] = 13, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2183), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4963), 10, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, + ACTIONS(3094), 1, + anon_sym_POUND, + ACTIONS(4989), 1, + sym_identifier, + ACTIONS(4991), 1, anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_EQ, + ACTIONS(4993), 1, anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [68129] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4995), 1, + sym_crate, + STATE(1314), 1, + sym_attribute_item, + STATE(2340), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2924), 1, + sym_field_declaration, + STATE(3631), 1, + sym_visibility_modifier, + STATE(2203), 2, + sym_line_comment, + sym_block_comment, + [69053] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2184), 2, + STATE(2204), 2, sym_line_comment, sym_block_comment, - ACTIONS(4965), 10, + ACTIONS(4997), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -174058,15 +176283,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68152] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [69076] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2185), 2, + STATE(2205), 2, sym_line_comment, sym_block_comment, - ACTIONS(4967), 10, + ACTIONS(4999), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -174077,39 +176302,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68175] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [69099] = 10, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4672), 1, + ACTIONS(4702), 1, anon_sym_LT2, - ACTIONS(4674), 1, - anon_sym_LPAREN, - ACTIONS(4969), 1, - anon_sym_LBRACE, - STATE(2026), 1, + ACTIONS(5001), 1, + anon_sym_BANG, + ACTIONS(5003), 1, + anon_sym_DOT_DOT, + ACTIONS(5007), 1, + anon_sym_COLON_COLON, + STATE(2038), 1, sym_type_arguments, - STATE(2098), 1, - sym_parameters, - STATE(2186), 2, + ACTIONS(5005), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2206), 2, sym_line_comment, sym_block_comment, - ACTIONS(3475), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_PLUS, - anon_sym_COMMA, - [68208] = 4, - ACTIONS(103), 1, + ACTIONS(4738), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [69134] = 11, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(3094), 1, + anon_sym_POUND, + ACTIONS(4901), 1, + sym_identifier, + ACTIONS(4905), 1, + anon_sym_DOT_DOT, + ACTIONS(4909), 1, + sym_integer_literal, + ACTIONS(5009), 1, + anon_sym_RBRACE, + STATE(1314), 1, + sym_attribute_item, + STATE(2553), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2207), 2, + sym_line_comment, + sym_block_comment, + STATE(3517), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [69171] = 13, + ACTIONS(69), 1, + anon_sym_pub, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(3094), 1, + anon_sym_POUND, + ACTIONS(4995), 1, + sym_crate, + ACTIONS(5011), 1, + sym_identifier, + ACTIONS(5013), 1, + anon_sym_RBRACE, + ACTIONS(5015), 1, + anon_sym_COMMA, + STATE(1314), 1, + sym_attribute_item, + STATE(2341), 1, + aux_sym_enum_variant_list_repeat1, + STATE(3178), 1, + sym_enum_variant, + STATE(3757), 1, + sym_visibility_modifier, + STATE(2208), 2, + sym_line_comment, + sym_block_comment, + [69212] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2187), 2, + STATE(2209), 2, sym_line_comment, sym_block_comment, - ACTIONS(4971), 10, + ACTIONS(4947), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -174120,15 +176400,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68231] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [69235] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2188), 2, + STATE(2210), 2, sym_line_comment, sym_block_comment, - ACTIONS(4973), 10, + ACTIONS(4935), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -174139,15 +176419,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68254] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [69258] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2189), 2, + STATE(2211), 2, sym_line_comment, sym_block_comment, - ACTIONS(4975), 10, + ACTIONS(5017), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -174158,15 +176438,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68277] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [69281] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2190), 2, + STATE(2212), 2, sym_line_comment, sym_block_comment, - ACTIONS(4977), 10, + ACTIONS(5019), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -174177,15 +176457,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68300] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [69304] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2191), 2, + STATE(2213), 2, sym_line_comment, sym_block_comment, - ACTIONS(4979), 10, + ACTIONS(5021), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -174196,15 +176476,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68323] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [69327] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2192), 2, + STATE(2214), 2, sym_line_comment, sym_block_comment, - ACTIONS(4981), 10, + ACTIONS(5023), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -174215,15 +176495,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68346] = 4, - ACTIONS(103), 1, + [69350] = 11, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(3094), 1, + anon_sym_POUND, + ACTIONS(4901), 1, + sym_identifier, + ACTIONS(4905), 1, + anon_sym_DOT_DOT, + ACTIONS(4909), 1, + sym_integer_literal, + ACTIONS(5025), 1, + anon_sym_RBRACE, + STATE(1314), 1, + sym_attribute_item, + STATE(2553), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2215), 2, + sym_line_comment, + sym_block_comment, + STATE(3517), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [69387] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2193), 2, + STATE(2216), 2, sym_line_comment, sym_block_comment, - ACTIONS(4983), 10, + ACTIONS(5027), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -174234,15 +176540,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68369] = 4, - ACTIONS(103), 1, + [69410] = 7, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(4720), 1, + anon_sym_static, + ACTIONS(4724), 1, + anon_sym_trait, + ACTIONS(5029), 1, + anon_sym_impl, + STATE(2217), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3574), 7, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + anon_sym_safe, + [69439] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2194), 2, + STATE(2218), 2, sym_line_comment, sym_block_comment, - ACTIONS(4985), 10, + ACTIONS(5031), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -174253,15 +176581,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68392] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [69462] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2195), 2, + STATE(2219), 2, sym_line_comment, sym_block_comment, - ACTIONS(4987), 10, + ACTIONS(5033), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -174272,63 +176600,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68415] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [69485] = 10, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3438), 1, - anon_sym_LT2, - ACTIONS(3674), 1, - anon_sym_COLON_COLON, - ACTIONS(4989), 1, - anon_sym_BANG, - STATE(1284), 1, - sym_type_arguments, - STATE(2196), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3566), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [68446] = 10, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3471), 1, + ACTIONS(3490), 1, anon_sym_COLON, - ACTIONS(4672), 1, + ACTIONS(4702), 1, anon_sym_LT2, - ACTIONS(4674), 1, + ACTIONS(4704), 1, anon_sym_LPAREN, - ACTIONS(4678), 1, + ACTIONS(4776), 1, anon_sym_COLON_COLON, - STATE(2027), 1, + STATE(2039), 1, sym_type_arguments, - STATE(2409), 1, + STATE(2451), 1, sym_parameters, - STATE(2197), 2, + STATE(2220), 2, sym_line_comment, sym_block_comment, - ACTIONS(3469), 4, + ACTIONS(3488), 4, anon_sym_PLUS, anon_sym_GT, anon_sym_COMMA, anon_sym_as, - [68481] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [69520] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2198), 2, + STATE(2221), 2, sym_line_comment, sym_block_comment, - ACTIONS(4991), 10, + ACTIONS(5035), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -174339,68 +176644,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68504] = 10, - ACTIONS(103), 1, + [69543] = 4, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + STATE(2222), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5037), 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, + [69566] = 10, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4672), 1, - anon_sym_LT2, - ACTIONS(4993), 1, + ACTIONS(4686), 1, + anon_sym_LPAREN, + ACTIONS(4690), 1, + anon_sym_COLON, + ACTIONS(4692), 1, anon_sym_BANG, - ACTIONS(4995), 1, + ACTIONS(4696), 1, anon_sym_DOT_DOT, - ACTIONS(4999), 1, + ACTIONS(5039), 1, anon_sym_COLON_COLON, - STATE(2024), 1, - sym_type_arguments, - ACTIONS(4997), 2, + ACTIONS(4698), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(2199), 2, + STATE(2223), 2, sym_line_comment, sym_block_comment, - ACTIONS(4708), 3, - anon_sym_EQ_GT, + ACTIONS(4684), 3, + anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_if, - [68539] = 13, - ACTIONS(69), 1, - anon_sym_pub, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3068), 1, - anon_sym_POUND, - ACTIONS(4953), 1, - sym_crate, - ACTIONS(5001), 1, - sym_identifier, - ACTIONS(5003), 1, - anon_sym_RBRACE, - ACTIONS(5005), 1, anon_sym_COMMA, - STATE(1254), 1, - sym_attribute_item, - STATE(2321), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2890), 1, - sym_enum_variant, - STATE(3794), 1, - sym_visibility_modifier, - STATE(2200), 2, - sym_line_comment, - sym_block_comment, - [68580] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [69601] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2201), 2, + STATE(2224), 2, sym_line_comment, sym_block_comment, - ACTIONS(5007), 10, + ACTIONS(5041), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -174411,67 +176707,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68603] = 11, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3068), 1, - anon_sym_POUND, - ACTIONS(4887), 1, - sym_identifier, - ACTIONS(4891), 1, - anon_sym_DOT_DOT, - ACTIONS(4895), 1, - sym_integer_literal, - ACTIONS(5009), 1, - anon_sym_RBRACE, - STATE(1254), 1, - sym_attribute_item, - STATE(2552), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2202), 2, - sym_line_comment, - sym_block_comment, - STATE(3408), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [68640] = 11, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [69624] = 4, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3068), 1, - anon_sym_POUND, - ACTIONS(4887), 1, - sym_identifier, - ACTIONS(4891), 1, - anon_sym_DOT_DOT, - ACTIONS(4895), 1, - sym_integer_literal, - ACTIONS(5011), 1, - anon_sym_RBRACE, - STATE(1254), 1, - sym_attribute_item, - STATE(2552), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2203), 2, - sym_line_comment, - sym_block_comment, - STATE(3408), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [68677] = 4, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2204), 2, + STATE(2225), 2, sym_line_comment, sym_block_comment, - ACTIONS(4861), 10, + ACTIONS(4927), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -174482,15 +176726,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68700] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [69647] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2205), 2, + STATE(2226), 2, sym_line_comment, sym_block_comment, - ACTIONS(5013), 10, + ACTIONS(5043), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -174501,38 +176745,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68723] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [69670] = 4, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4672), 1, - anon_sym_LT2, - ACTIONS(4712), 1, - anon_sym_BANG, - ACTIONS(4775), 1, - anon_sym_COLON_COLON, - STATE(2024), 1, - sym_type_arguments, - STATE(2206), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3566), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [68754] = 4, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2207), 2, + STATE(2227), 2, sym_line_comment, sym_block_comment, - ACTIONS(1501), 10, + ACTIONS(5045), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -174543,66 +176764,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68777] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [69693] = 4, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4184), 1, - anon_sym_LT2, - ACTIONS(4298), 1, - anon_sym_COLON_COLON, - ACTIONS(5015), 1, - anon_sym_BANG, - STATE(1659), 1, - sym_type_arguments, - STATE(2208), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3566), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [68808] = 13, - ACTIONS(69), 1, - anon_sym_pub, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3068), 1, - anon_sym_POUND, - ACTIONS(4953), 1, - sym_crate, - ACTIONS(5001), 1, - sym_identifier, - ACTIONS(5017), 1, - anon_sym_RBRACE, - ACTIONS(5019), 1, - anon_sym_COMMA, - STATE(1254), 1, - sym_attribute_item, - STATE(2313), 1, - aux_sym_enum_variant_list_repeat1, - STATE(3003), 1, - sym_enum_variant, - STATE(3794), 1, - sym_visibility_modifier, - STATE(2209), 2, - sym_line_comment, - sym_block_comment, - [68849] = 4, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2210), 2, + STATE(2228), 2, sym_line_comment, sym_block_comment, - ACTIONS(5021), 10, + ACTIONS(5047), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -174613,15 +176783,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68872] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [69716] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2211), 2, + STATE(2229), 2, sym_line_comment, sym_block_comment, - ACTIONS(5023), 10, + ACTIONS(5049), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -174632,41 +176802,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68895] = 11, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [69739] = 4, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3068), 1, - anon_sym_POUND, - ACTIONS(4887), 1, - sym_identifier, - ACTIONS(4891), 1, - anon_sym_DOT_DOT, - ACTIONS(4895), 1, - sym_integer_literal, - ACTIONS(5025), 1, - anon_sym_RBRACE, - STATE(1254), 1, - sym_attribute_item, - STATE(2552), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2212), 2, - sym_line_comment, - sym_block_comment, - STATE(3408), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [68932] = 4, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2213), 2, + STATE(2230), 2, sym_line_comment, sym_block_comment, - ACTIONS(5027), 10, + ACTIONS(5051), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -174677,15 +176821,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68955] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [69762] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2214), 2, + STATE(2231), 2, sym_line_comment, sym_block_comment, - ACTIONS(5029), 10, + ACTIONS(5053), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -174696,41 +176840,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68978] = 11, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [69785] = 4, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3068), 1, - anon_sym_POUND, - ACTIONS(4887), 1, - sym_identifier, - ACTIONS(4891), 1, - anon_sym_DOT_DOT, - ACTIONS(4895), 1, - sym_integer_literal, - ACTIONS(5031), 1, - anon_sym_RBRACE, - STATE(1254), 1, - sym_attribute_item, - STATE(2552), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2215), 2, - sym_line_comment, - sym_block_comment, - STATE(3408), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [69015] = 4, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2216), 2, + STATE(2232), 2, sym_line_comment, sym_block_comment, - ACTIONS(4919), 10, + ACTIONS(5055), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -174741,15 +176859,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [69038] = 4, - ACTIONS(103), 1, + [69808] = 7, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(3464), 1, + anon_sym_LT2, + ACTIONS(5057), 1, + anon_sym_COLON_COLON, + STATE(1427), 1, + sym_type_arguments, + STATE(2233), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3574), 7, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + anon_sym_safe, + [69837] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2217), 2, + STATE(2234), 2, sym_line_comment, sym_block_comment, - ACTIONS(5033), 10, + ACTIONS(5059), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -174760,15 +176900,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [69061] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [69860] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2218), 2, + STATE(2235), 2, sym_line_comment, sym_block_comment, - ACTIONS(5035), 10, + ACTIONS(5061), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -174779,15 +176919,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [69084] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [69883] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2219), 2, + STATE(2236), 2, sym_line_comment, sym_block_comment, - ACTIONS(5037), 10, + ACTIONS(5063), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -174798,124 +176938,178 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [69107] = 4, - ACTIONS(103), 1, + [69906] = 7, + ACTIONS(27), 1, + anon_sym_PIPE, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(5065), 1, + anon_sym_move, + STATE(222), 1, + sym_closure_parameters, + STATE(2237), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3574), 7, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + anon_sym_safe, + [69935] = 9, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2220), 2, + ACTIONS(4702), 1, + anon_sym_LT2, + ACTIONS(4704), 1, + anon_sym_LPAREN, + ACTIONS(5067), 1, + anon_sym_LBRACE, + STATE(2043), 1, + sym_type_arguments, + STATE(2105), 1, + sym_parameters, + STATE(2238), 2, sym_line_comment, sym_block_comment, - ACTIONS(5039), 10, + ACTIONS(3594), 5, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, + anon_sym_PLUS, + anon_sym_COMMA, + [69968] = 13, + ACTIONS(69), 1, + anon_sym_pub, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(3094), 1, + anon_sym_POUND, + ACTIONS(4989), 1, + sym_identifier, + ACTIONS(4995), 1, + sym_crate, + ACTIONS(5069), 1, anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_EQ, + ACTIONS(5071), 1, anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [69130] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + STATE(1314), 1, + sym_attribute_item, + STATE(2334), 1, + aux_sym_enum_variant_list_repeat1, + STATE(3038), 1, + sym_field_declaration, + STATE(3631), 1, + sym_visibility_modifier, + STATE(2239), 2, + sym_line_comment, + sym_block_comment, + [70009] = 11, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2221), 2, + ACTIONS(3094), 1, + anon_sym_POUND, + ACTIONS(4901), 1, + sym_identifier, + ACTIONS(4905), 1, + anon_sym_DOT_DOT, + ACTIONS(4909), 1, + sym_integer_literal, + ACTIONS(5073), 1, + anon_sym_RBRACE, + STATE(1314), 1, + sym_attribute_item, + STATE(2553), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2240), 2, sym_line_comment, sym_block_comment, - ACTIONS(4654), 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, - [69153] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + STATE(3517), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [70046] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3438), 1, + ACTIONS(4702), 1, anon_sym_LT2, - ACTIONS(3674), 1, + ACTIONS(5075), 1, anon_sym_COLON_COLON, - ACTIONS(4712), 1, - anon_sym_BANG, - STATE(1284), 1, + STATE(2038), 1, sym_type_arguments, - STATE(2222), 2, + STATE(2241), 2, sym_line_comment, sym_block_comment, - ACTIONS(3566), 6, + ACTIONS(3574), 7, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [69184] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_safe, + [70075] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4184), 1, + ACTIONS(4178), 1, anon_sym_LT2, - ACTIONS(4298), 1, + ACTIONS(5077), 1, anon_sym_COLON_COLON, - ACTIONS(4712), 1, - anon_sym_BANG, - STATE(1659), 1, + STATE(1723), 1, sym_type_arguments, - STATE(2223), 2, + STATE(2242), 2, sym_line_comment, sym_block_comment, - ACTIONS(3566), 6, + ACTIONS(3574), 7, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [69215] = 10, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_safe, + [70104] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4656), 1, - anon_sym_LPAREN, - ACTIONS(4660), 1, - anon_sym_COLON, - ACTIONS(4662), 1, - anon_sym_BANG, - ACTIONS(4666), 1, - anon_sym_DOT_DOT, - ACTIONS(5041), 1, - anon_sym_COLON_COLON, - ACTIONS(4668), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2224), 2, + STATE(2243), 2, sym_line_comment, sym_block_comment, - ACTIONS(4654), 3, + ACTIONS(5079), 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, - [69250] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_else, + anon_sym_in, + [70127] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2225), 2, + STATE(2244), 2, sym_line_comment, sym_block_comment, - ACTIONS(5043), 10, + ACTIONS(5081), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -174926,40 +177120,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [69273] = 10, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [70150] = 13, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4672), 1, - anon_sym_LT2, - ACTIONS(4712), 1, - anon_sym_BANG, - ACTIONS(4714), 1, - anon_sym_DOT_DOT, - ACTIONS(4752), 1, - anon_sym_COLON_COLON, - STATE(2024), 1, - sym_type_arguments, - ACTIONS(4716), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2226), 2, + ACTIONS(3094), 1, + anon_sym_POUND, + ACTIONS(4995), 1, + sym_crate, + ACTIONS(5011), 1, + sym_identifier, + ACTIONS(5083), 1, + anon_sym_RBRACE, + ACTIONS(5085), 1, + anon_sym_COMMA, + STATE(1314), 1, + sym_attribute_item, + STATE(2339), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2918), 1, + sym_enum_variant, + STATE(3757), 1, + sym_visibility_modifier, + STATE(2245), 2, sym_line_comment, sym_block_comment, - ACTIONS(4708), 3, - anon_sym_RBRACK, - anon_sym_PIPE, - anon_sym_COMMA, - [69308] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [70191] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2227), 2, + STATE(2246), 2, sym_line_comment, sym_block_comment, - ACTIONS(5045), 10, + ACTIONS(5087), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -174970,212 +177167,353 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [69331] = 8, - ACTIONS(103), 1, + [70214] = 9, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(4702), 1, + anon_sym_LT2, + ACTIONS(4704), 1, + anon_sym_LPAREN, + ACTIONS(5089), 1, + anon_sym_for, + STATE(2043), 1, + sym_type_arguments, + STATE(2105), 1, + sym_parameters, + STATE(2247), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3594), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [70246] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1617), 1, + ACTIONS(5093), 1, + anon_sym_PLUS, + STATE(2248), 3, + sym_line_comment, + sym_block_comment, + aux_sym_trait_bounds_repeat1, + ACTIONS(5091), 7, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(3448), 1, + anon_sym_EQ, + anon_sym_GT, + anon_sym_COMMA, anon_sym_SQUOTE, - STATE(2207), 1, - sym_block, - STATE(3770), 1, - sym_label, - STATE(2228), 2, + anon_sym_where, + [70270] = 8, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(4702), 1, + anon_sym_LT2, + ACTIONS(4704), 1, + anon_sym_LPAREN, + STATE(2043), 1, + sym_type_arguments, + STATE(2484), 1, + sym_parameters, + STATE(2249), 2, sym_line_comment, sym_block_comment, - ACTIONS(3566), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [69362] = 4, - ACTIONS(103), 1, + ACTIONS(3568), 5, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_as, + [70300] = 10, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(3094), 1, + anon_sym_POUND, + ACTIONS(4901), 1, + sym_identifier, + ACTIONS(4905), 1, + anon_sym_DOT_DOT, + ACTIONS(4909), 1, + sym_integer_literal, + STATE(1314), 1, + sym_attribute_item, + STATE(2553), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2250), 2, + sym_line_comment, + sym_block_comment, + STATE(3517), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [70334] = 8, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2229), 2, + ACTIONS(4702), 1, + anon_sym_LT2, + ACTIONS(4704), 1, + anon_sym_LPAREN, + STATE(2043), 1, + sym_type_arguments, + STATE(2484), 1, + sym_parameters, + STATE(2251), 2, sym_line_comment, sym_block_comment, - ACTIONS(5047), 10, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, + ACTIONS(3504), 5, anon_sym_COLON, - anon_sym_PIPE, - anon_sym_EQ, + anon_sym_PLUS, + anon_sym_GT, anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [69385] = 4, - ACTIONS(103), 1, + anon_sym_as, + [70364] = 12, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(5096), 1, + anon_sym_SEMI, + ACTIONS(5098), 1, + anon_sym_LPAREN, + ACTIONS(5100), 1, + anon_sym_LBRACE, + ACTIONS(5102), 1, + anon_sym_LT, + ACTIONS(5104), 1, + anon_sym_where, + STATE(696), 1, + sym_field_declaration_list, + STATE(2413), 1, + sym_type_parameters, + STATE(3133), 1, + sym_ordered_field_declaration_list, + STATE(3357), 1, + sym_where_clause, + STATE(2252), 2, + sym_line_comment, + sym_block_comment, + [70402] = 12, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2230), 2, + ACTIONS(3094), 1, + anon_sym_POUND, + ACTIONS(4995), 1, + sym_crate, + ACTIONS(5011), 1, + sym_identifier, + ACTIONS(5106), 1, + anon_sym_RBRACE, + STATE(1314), 1, + sym_attribute_item, + STATE(2299), 1, + aux_sym_enum_variant_list_repeat1, + STATE(3405), 1, + sym_enum_variant, + STATE(3757), 1, + sym_visibility_modifier, + STATE(2253), 2, sym_line_comment, sym_block_comment, - ACTIONS(5049), 10, + [70440] = 6, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(5110), 1, + anon_sym_PLUS, + STATE(2282), 1, + aux_sym_trait_bounds_repeat1, + STATE(2254), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5108), 7, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PIPE, + anon_sym_LBRACE, anon_sym_EQ, + anon_sym_GT, anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [69408] = 13, + anon_sym_SQUOTE, + anon_sym_where, + [70466] = 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(3068), 1, + ACTIONS(3094), 1, anon_sym_POUND, - ACTIONS(4947), 1, + ACTIONS(4989), 1, sym_identifier, - ACTIONS(4953), 1, + ACTIONS(4995), 1, sym_crate, - ACTIONS(5051), 1, + ACTIONS(5112), 1, anon_sym_RBRACE, - ACTIONS(5053), 1, - anon_sym_COMMA, - STATE(1254), 1, + STATE(1314), 1, sym_attribute_item, - STATE(2324), 1, + STATE(2342), 1, aux_sym_enum_variant_list_repeat1, - STATE(2898), 1, + STATE(3241), 1, sym_field_declaration, - STATE(3506), 1, + STATE(3631), 1, sym_visibility_modifier, - STATE(2231), 2, + STATE(2255), 2, sym_line_comment, sym_block_comment, - [69449] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [70504] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3505), 1, - anon_sym_DOT_DOT, - STATE(2232), 2, + ACTIONS(5114), 1, + anon_sym_PLUS, + STATE(2282), 1, + aux_sym_trait_bounds_repeat1, + STATE(2256), 2, sym_line_comment, sym_block_comment, - ACTIONS(3507), 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, - [69473] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5108), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_where, + [70530] = 9, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4672), 1, + ACTIONS(4702), 1, anon_sym_LT2, - ACTIONS(4674), 1, + ACTIONS(4704), 1, anon_sym_LPAREN, - ACTIONS(5055), 1, + ACTIONS(5116), 1, anon_sym_for, - STATE(2026), 1, + STATE(2043), 1, sym_type_arguments, - STATE(2098), 1, + STATE(2105), 1, sym_parameters, - STATE(2233), 2, + STATE(2257), 2, sym_line_comment, sym_block_comment, - ACTIONS(3475), 4, + ACTIONS(3594), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [69505] = 8, - ACTIONS(103), 1, + [70562] = 9, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(4744), 1, + anon_sym_DOT_DOT, + ACTIONS(4780), 1, + anon_sym_COLON_COLON, + ACTIONS(5118), 1, + anon_sym_RBRACK, + ACTIONS(3594), 2, + anon_sym_SEMI, + anon_sym_PLUS, + ACTIONS(4738), 2, + anon_sym_PIPE, + anon_sym_COMMA, + ACTIONS(4746), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2258), 2, + sym_line_comment, + sym_block_comment, + [70594] = 9, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4672), 1, + ACTIONS(4702), 1, anon_sym_LT2, - ACTIONS(4674), 1, + ACTIONS(4704), 1, anon_sym_LPAREN, - STATE(2026), 1, + ACTIONS(5121), 1, + anon_sym_for, + STATE(2043), 1, sym_type_arguments, - STATE(2405), 1, + STATE(2105), 1, sym_parameters, - STATE(2234), 2, + STATE(2259), 2, sym_line_comment, sym_block_comment, - ACTIONS(3513), 5, - anon_sym_COLON, + ACTIONS(3594), 4, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_as, - [69535] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_where, + [70626] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5057), 1, - anon_sym_SEMI, - ACTIONS(5059), 1, - anon_sym_LBRACE, - STATE(1272), 1, - sym_declaration_list, - STATE(2235), 2, + ACTIONS(3584), 1, + anon_sym_DOT_DOT, + STATE(2260), 2, sym_line_comment, sym_block_comment, - ACTIONS(3566), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [69563] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3586), 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, + [70650] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4672), 1, - anon_sym_LT2, - ACTIONS(5061), 1, - anon_sym_COLON_COLON, - STATE(2024), 1, - sym_type_arguments, - STATE(2236), 2, + ACTIONS(5123), 1, + anon_sym_static, + ACTIONS(5125), 1, + anon_sym_trait, + STATE(2261), 2, sym_line_comment, sym_block_comment, - ACTIONS(3566), 6, + ACTIONS(3574), 7, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [69591] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_safe, + [70676] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3538), 1, + ACTIONS(3512), 1, anon_sym_DOT_DOT, - STATE(2237), 2, + STATE(2262), 2, sym_line_comment, sym_block_comment, - ACTIONS(3540), 8, + ACTIONS(3514), 8, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_BANG, @@ -175184,1503 +177522,1213 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, anon_sym_if, - [69615] = 12, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [70700] = 9, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5063), 1, - anon_sym_SEMI, - ACTIONS(5065), 1, + ACTIONS(5127), 1, anon_sym_LPAREN, - ACTIONS(5067), 1, + ACTIONS(5132), 1, + anon_sym_LBRACK, + ACTIONS(5135), 1, anon_sym_LBRACE, - ACTIONS(5069), 1, - anon_sym_LT, - ACTIONS(5071), 1, - anon_sym_where, - STATE(1314), 1, - sym_field_declaration_list, - STATE(2366), 1, - sym_type_parameters, - STATE(3164), 1, - sym_ordered_field_declaration_list, - STATE(3445), 1, - sym_where_clause, - STATE(2238), 2, + STATE(3801), 1, + sym_token_tree_pattern, + STATE(3815), 1, + sym_macro_rule, + ACTIONS(5130), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + STATE(2263), 3, sym_line_comment, sym_block_comment, - [69653] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + aux_sym_macro_definition_repeat1, + [70732] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4672), 1, - anon_sym_LT2, - ACTIONS(4674), 1, - anon_sym_LPAREN, - STATE(2026), 1, - sym_type_arguments, - STATE(2405), 1, - sym_parameters, - STATE(2239), 2, + ACTIONS(3520), 1, + anon_sym_DOT_DOT, + STATE(2264), 2, sym_line_comment, sym_block_comment, - ACTIONS(3517), 5, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_as, - [69683] = 7, - ACTIONS(103), 1, + ACTIONS(3522), 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, + [70756] = 5, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(3528), 1, + anon_sym_DOT_DOT, + STATE(2265), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3530), 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, + [70780] = 8, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5059), 1, - anon_sym_LBRACE, - ACTIONS(5073), 1, - anon_sym_SEMI, - STATE(1321), 1, - sym_declaration_list, - STATE(2240), 2, + ACTIONS(5138), 1, + anon_sym_fn, + ACTIONS(5140), 1, + anon_sym_extern, + STATE(2317), 1, + aux_sym__item_modifiers, + STATE(2682), 1, + sym_extern_modifier, + STATE(2266), 2, sym_line_comment, sym_block_comment, - ACTIONS(3566), 6, + ACTIONS(4710), 5, anon_sym_async, anon_sym_const, anon_sym_default, - anon_sym_fn, anon_sym_unsafe, - anon_sym_extern, - [69711] = 9, - ACTIONS(103), 1, + anon_sym_safe, + [70810] = 9, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(4702), 1, + anon_sym_LT2, + ACTIONS(4704), 1, + anon_sym_LPAREN, + ACTIONS(5142), 1, + anon_sym_for, + STATE(2043), 1, + sym_type_arguments, + STATE(2105), 1, + sym_parameters, + STATE(2267), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3594), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [70842] = 9, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4815), 1, + ACTIONS(4859), 1, anon_sym_LPAREN, - ACTIONS(4819), 1, + ACTIONS(4863), 1, anon_sym_BANG, - ACTIONS(4823), 1, + ACTIONS(4867), 1, anon_sym_DOT_DOT, - ACTIONS(5075), 1, + ACTIONS(5144), 1, anon_sym_COLON_COLON, - ACTIONS(4825), 2, + ACTIONS(4869), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(2241), 2, + STATE(2268), 2, sym_line_comment, sym_block_comment, - ACTIONS(4654), 3, + ACTIONS(4684), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [69743] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [70874] = 8, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3438), 1, + ACTIONS(4702), 1, anon_sym_LT2, - ACTIONS(5077), 1, - anon_sym_COLON_COLON, - STATE(1284), 1, + ACTIONS(4704), 1, + anon_sym_LPAREN, + STATE(2043), 1, sym_type_arguments, - STATE(2242), 2, + STATE(2484), 1, + sym_parameters, + STATE(2269), 2, sym_line_comment, sym_block_comment, - ACTIONS(3566), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [69771] = 7, - ACTIONS(27), 1, - anon_sym_PIPE, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3564), 5, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_as, + [70904] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5079), 1, - anon_sym_move, - STATE(233), 1, - sym_closure_parameters, - STATE(2243), 2, + ACTIONS(4921), 1, + anon_sym_COLON_COLON, + ACTIONS(5001), 1, + anon_sym_BANG, + STATE(2270), 2, sym_line_comment, sym_block_comment, - ACTIONS(3566), 6, + ACTIONS(3574), 7, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [69799] = 12, + anon_sym_safe, + [70930] = 12, ACTIONS(69), 1, anon_sym_pub, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(3094), 1, + anon_sym_POUND, + ACTIONS(4989), 1, + sym_identifier, + ACTIONS(4995), 1, + sym_crate, + ACTIONS(5146), 1, + anon_sym_RBRACE, + STATE(1314), 1, + sym_attribute_item, + STATE(2342), 1, + aux_sym_enum_variant_list_repeat1, + STATE(3241), 1, + sym_field_declaration, + STATE(3631), 1, + sym_visibility_modifier, + STATE(2271), 2, + sym_line_comment, + sym_block_comment, + [70968] = 12, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3068), 1, + ACTIONS(3094), 1, anon_sym_POUND, - ACTIONS(4953), 1, + ACTIONS(4995), 1, sym_crate, - ACTIONS(5001), 1, + ACTIONS(5011), 1, sym_identifier, - ACTIONS(5081), 1, + ACTIONS(5148), 1, anon_sym_RBRACE, - STATE(1254), 1, + STATE(1314), 1, sym_attribute_item, - STATE(2292), 1, + STATE(2299), 1, aux_sym_enum_variant_list_repeat1, - STATE(3425), 1, + STATE(3405), 1, sym_enum_variant, - STATE(3794), 1, + STATE(3757), 1, sym_visibility_modifier, - STATE(2244), 2, + STATE(2272), 2, sym_line_comment, sym_block_comment, - [69837] = 12, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [71006] = 12, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5065), 1, + ACTIONS(5098), 1, anon_sym_LPAREN, - ACTIONS(5067), 1, + ACTIONS(5100), 1, anon_sym_LBRACE, - ACTIONS(5069), 1, + ACTIONS(5102), 1, anon_sym_LT, - ACTIONS(5071), 1, + ACTIONS(5104), 1, anon_sym_where, - ACTIONS(5083), 1, + ACTIONS(5150), 1, anon_sym_SEMI, - STATE(1423), 1, + STATE(585), 1, sym_field_declaration_list, - STATE(2363), 1, + STATE(2393), 1, sym_type_parameters, - STATE(2905), 1, + STATE(3044), 1, sym_ordered_field_declaration_list, - STATE(3257), 1, + STATE(3394), 1, sym_where_clause, - STATE(2245), 2, + STATE(2273), 2, sym_line_comment, sym_block_comment, - [69875] = 12, - ACTIONS(69), 1, - anon_sym_pub, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [71044] = 12, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3068), 1, - anon_sym_POUND, - ACTIONS(4947), 1, - sym_identifier, - ACTIONS(4953), 1, - sym_crate, - ACTIONS(5085), 1, - anon_sym_RBRACE, - STATE(1254), 1, - sym_attribute_item, - STATE(2299), 1, - aux_sym_enum_variant_list_repeat1, - STATE(3225), 1, - sym_field_declaration, - STATE(3506), 1, - sym_visibility_modifier, - STATE(2246), 2, - sym_line_comment, - sym_block_comment, - [69913] = 6, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5089), 1, - anon_sym_PLUS, - STATE(2262), 1, - aux_sym_trait_bounds_repeat1, - STATE(2247), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5087), 7, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_SQUOTE, + ACTIONS(5098), 1, + anon_sym_LPAREN, + ACTIONS(5102), 1, + anon_sym_LT, + ACTIONS(5104), 1, anon_sym_where, - [69939] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5091), 1, + ACTIONS(5152), 1, anon_sym_SEMI, - ACTIONS(5093), 1, + ACTIONS(5154), 1, anon_sym_LBRACE, - STATE(551), 1, - sym_declaration_list, - STATE(2248), 2, + STATE(1368), 1, + sym_field_declaration_list, + STATE(2372), 1, + sym_type_parameters, + STATE(2932), 1, + sym_ordered_field_declaration_list, + STATE(3391), 1, + sym_where_clause, + STATE(2274), 2, sym_line_comment, sym_block_comment, - ACTIONS(3566), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [69967] = 12, + [71082] = 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(3068), 1, + ACTIONS(3094), 1, anon_sym_POUND, - ACTIONS(4953), 1, + ACTIONS(4995), 1, sym_crate, - ACTIONS(5001), 1, + ACTIONS(5011), 1, sym_identifier, - ACTIONS(5095), 1, + ACTIONS(5156), 1, anon_sym_RBRACE, - STATE(1254), 1, + STATE(1314), 1, sym_attribute_item, - STATE(2292), 1, + STATE(2299), 1, aux_sym_enum_variant_list_repeat1, - STATE(3425), 1, + STATE(3405), 1, sym_enum_variant, - STATE(3794), 1, + STATE(3757), 1, sym_visibility_modifier, - STATE(2249), 2, + STATE(2275), 2, sym_line_comment, sym_block_comment, - [70005] = 12, + [71120] = 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(3068), 1, + ACTIONS(3094), 1, anon_sym_POUND, - ACTIONS(4947), 1, + ACTIONS(4989), 1, sym_identifier, - ACTIONS(4953), 1, + ACTIONS(4995), 1, sym_crate, - ACTIONS(5097), 1, + ACTIONS(5158), 1, anon_sym_RBRACE, - STATE(1254), 1, + STATE(1314), 1, sym_attribute_item, - STATE(2299), 1, + STATE(2342), 1, aux_sym_enum_variant_list_repeat1, - STATE(3225), 1, + STATE(3241), 1, sym_field_declaration, - STATE(3506), 1, + STATE(3631), 1, sym_visibility_modifier, - STATE(2250), 2, + STATE(2276), 2, sym_line_comment, sym_block_comment, - [70043] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [71158] = 12, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3530), 1, - anon_sym_DOT_DOT, - STATE(2251), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3532), 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, - [70067] = 9, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4672), 1, - anon_sym_LT2, - ACTIONS(4674), 1, - anon_sym_LPAREN, - ACTIONS(5099), 1, - anon_sym_for, - STATE(2026), 1, - sym_type_arguments, - STATE(2098), 1, - sym_parameters, - STATE(2252), 2, + ACTIONS(3094), 1, + anon_sym_POUND, + ACTIONS(4989), 1, + sym_identifier, + ACTIONS(4995), 1, + sym_crate, + ACTIONS(5160), 1, + anon_sym_RBRACE, + STATE(1314), 1, + sym_attribute_item, + STATE(2342), 1, + aux_sym_enum_variant_list_repeat1, + STATE(3241), 1, + sym_field_declaration, + STATE(3631), 1, + sym_visibility_modifier, + STATE(2277), 2, sym_line_comment, sym_block_comment, - ACTIONS(3475), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [70099] = 12, + [71196] = 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(3068), 1, + ACTIONS(3094), 1, anon_sym_POUND, - ACTIONS(4953), 1, + ACTIONS(4995), 1, sym_crate, - ACTIONS(5001), 1, + ACTIONS(5011), 1, sym_identifier, - ACTIONS(5101), 1, + ACTIONS(5162), 1, anon_sym_RBRACE, - STATE(1254), 1, + STATE(1314), 1, sym_attribute_item, - STATE(2292), 1, + STATE(2299), 1, aux_sym_enum_variant_list_repeat1, - STATE(3425), 1, + STATE(3405), 1, sym_enum_variant, - STATE(3794), 1, + STATE(3757), 1, sym_visibility_modifier, - STATE(2253), 2, + STATE(2278), 2, sym_line_comment, sym_block_comment, - [70137] = 12, + [71234] = 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(3068), 1, + ACTIONS(3094), 1, anon_sym_POUND, - ACTIONS(4947), 1, + ACTIONS(4989), 1, sym_identifier, - ACTIONS(4953), 1, + ACTIONS(4995), 1, sym_crate, - ACTIONS(5103), 1, + ACTIONS(5164), 1, anon_sym_RBRACE, - STATE(1254), 1, + STATE(1314), 1, sym_attribute_item, - STATE(2299), 1, + STATE(2342), 1, aux_sym_enum_variant_list_repeat1, - STATE(3225), 1, + STATE(3241), 1, sym_field_declaration, - STATE(3506), 1, + STATE(3631), 1, sym_visibility_modifier, - STATE(2254), 2, - sym_line_comment, - sym_block_comment, - [70175] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4672), 1, - anon_sym_LT2, - ACTIONS(4674), 1, - anon_sym_LPAREN, - STATE(2026), 1, - sym_type_arguments, - STATE(2405), 1, - sym_parameters, - STATE(2255), 2, + STATE(2279), 2, sym_line_comment, sym_block_comment, - ACTIONS(3475), 5, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_as, - [70205] = 12, + [71272] = 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(3068), 1, + ACTIONS(3094), 1, anon_sym_POUND, - ACTIONS(4953), 1, + ACTIONS(4995), 1, sym_crate, - ACTIONS(5001), 1, + ACTIONS(5011), 1, sym_identifier, - ACTIONS(5105), 1, + ACTIONS(5166), 1, anon_sym_RBRACE, - STATE(1254), 1, + STATE(1314), 1, sym_attribute_item, - STATE(2292), 1, + STATE(2299), 1, aux_sym_enum_variant_list_repeat1, - STATE(3425), 1, + STATE(3405), 1, sym_enum_variant, - STATE(3794), 1, + STATE(3757), 1, sym_visibility_modifier, - STATE(2256), 2, + STATE(2280), 2, sym_line_comment, sym_block_comment, - [70243] = 12, + [71310] = 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(3068), 1, + ACTIONS(3094), 1, anon_sym_POUND, - ACTIONS(4947), 1, + ACTIONS(4989), 1, sym_identifier, - ACTIONS(4953), 1, + ACTIONS(4995), 1, sym_crate, - ACTIONS(5107), 1, + ACTIONS(5168), 1, anon_sym_RBRACE, - STATE(1254), 1, + STATE(1314), 1, sym_attribute_item, - STATE(2299), 1, + STATE(2342), 1, aux_sym_enum_variant_list_repeat1, - STATE(3225), 1, + STATE(3241), 1, sym_field_declaration, - STATE(3506), 1, + STATE(3631), 1, sym_visibility_modifier, - STATE(2257), 2, + STATE(2281), 2, sym_line_comment, sym_block_comment, - [70281] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [71348] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4672), 1, - anon_sym_LT2, - ACTIONS(4674), 1, - anon_sym_LPAREN, - STATE(2026), 1, - sym_type_arguments, - STATE(2405), 1, - sym_parameters, - STATE(2258), 2, + ACTIONS(5110), 1, + anon_sym_PLUS, + STATE(2248), 1, + aux_sym_trait_bounds_repeat1, + STATE(2282), 2, sym_line_comment, sym_block_comment, - ACTIONS(3509), 5, - anon_sym_COLON, - anon_sym_PLUS, + ACTIONS(5170), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_GT, anon_sym_COMMA, - anon_sym_as, - [70311] = 10, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_SQUOTE, + anon_sym_where, + [71374] = 10, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3475), 1, + ACTIONS(3594), 1, anon_sym_PLUS, - ACTIONS(4708), 1, + ACTIONS(4738), 1, anon_sym_PIPE, - ACTIONS(4710), 1, + ACTIONS(4740), 1, anon_sym_COLON, - ACTIONS(4714), 1, - anon_sym_DOT_DOT, ACTIONS(4744), 1, + anon_sym_DOT_DOT, + ACTIONS(4748), 1, anon_sym_COLON_COLON, - ACTIONS(4716), 2, + ACTIONS(4746), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(5109), 2, + ACTIONS(5118), 2, anon_sym_RPAREN, anon_sym_COMMA, - STATE(2259), 2, + STATE(2283), 2, sym_line_comment, sym_block_comment, - [70345] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [71408] = 8, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4184), 1, - anon_sym_LT2, - ACTIONS(5112), 1, - anon_sym_COLON_COLON, - STATE(1659), 1, - sym_type_arguments, - STATE(2260), 2, + ACTIONS(5138), 1, + anon_sym_fn, + ACTIONS(5140), 1, + anon_sym_extern, + STATE(2317), 1, + aux_sym__item_modifiers, + STATE(3548), 1, + sym_extern_modifier, + STATE(2284), 2, sym_line_comment, sym_block_comment, - ACTIONS(3566), 6, + ACTIONS(4710), 5, anon_sym_async, anon_sym_const, anon_sym_default, - anon_sym_fn, anon_sym_unsafe, - anon_sym_extern, - [70373] = 12, - ACTIONS(69), 1, - anon_sym_pub, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3068), 1, - anon_sym_POUND, - ACTIONS(4947), 1, - sym_identifier, - ACTIONS(4953), 1, - sym_crate, - ACTIONS(5114), 1, - anon_sym_RBRACE, - STATE(1254), 1, - sym_attribute_item, - STATE(2299), 1, - aux_sym_enum_variant_list_repeat1, - STATE(3225), 1, - sym_field_declaration, - STATE(3506), 1, - sym_visibility_modifier, - STATE(2261), 2, - sym_line_comment, - sym_block_comment, - [70411] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_safe, + [71438] = 8, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5118), 1, - anon_sym_PLUS, - STATE(2262), 3, - sym_line_comment, - sym_block_comment, - aux_sym_trait_bounds_repeat1, - ACTIONS(5116), 7, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_where, - [70435] = 6, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5089), 1, - anon_sym_PLUS, - STATE(2247), 1, - aux_sym_trait_bounds_repeat1, - STATE(2263), 2, + ACTIONS(4702), 1, + anon_sym_LT2, + ACTIONS(4704), 1, + anon_sym_LPAREN, + STATE(2043), 1, + sym_type_arguments, + STATE(2484), 1, + sym_parameters, + STATE(2285), 2, sym_line_comment, sym_block_comment, - ACTIONS(5121), 7, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_where, - [70461] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5123), 1, + ACTIONS(3594), 5, + anon_sym_COLON, anon_sym_PLUS, - STATE(2247), 1, - aux_sym_trait_bounds_repeat1, - STATE(2264), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5121), 7, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, anon_sym_GT, anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_where, - [70487] = 10, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_as, + [71468] = 8, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3068), 1, - anon_sym_POUND, - ACTIONS(4887), 1, - sym_identifier, - ACTIONS(4891), 1, - anon_sym_DOT_DOT, - ACTIONS(4895), 1, - sym_integer_literal, - STATE(1254), 1, - sym_attribute_item, - STATE(2552), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2265), 2, - sym_line_comment, - sym_block_comment, - STATE(3408), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [70521] = 12, - ACTIONS(69), 1, - anon_sym_pub, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3068), 1, - anon_sym_POUND, - ACTIONS(4947), 1, - sym_identifier, - ACTIONS(4953), 1, - sym_crate, - ACTIONS(5125), 1, - anon_sym_RBRACE, - STATE(1254), 1, - sym_attribute_item, - STATE(2299), 1, - aux_sym_enum_variant_list_repeat1, - STATE(3225), 1, - sym_field_declaration, - STATE(3506), 1, - sym_visibility_modifier, - STATE(2266), 2, + ACTIONS(5138), 1, + anon_sym_fn, + ACTIONS(5140), 1, + anon_sym_extern, + STATE(2317), 1, + aux_sym__item_modifiers, + STATE(2665), 1, + sym_extern_modifier, + STATE(2286), 2, sym_line_comment, sym_block_comment, - [70559] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4710), 5, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_unsafe, + anon_sym_safe, + [71498] = 11, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4672), 1, - anon_sym_LT2, - ACTIONS(4674), 1, - anon_sym_LPAREN, - ACTIONS(5127), 1, - anon_sym_for, - STATE(2026), 1, - sym_type_arguments, - STATE(2098), 1, - sym_parameters, - STATE(2267), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3475), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [70591] = 11, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4672), 1, + ACTIONS(4702), 1, anon_sym_LT2, - ACTIONS(4708), 1, + ACTIONS(4738), 1, anon_sym_PIPE, - ACTIONS(4710), 1, + ACTIONS(4740), 1, anon_sym_COLON, - ACTIONS(4712), 1, + ACTIONS(4742), 1, anon_sym_BANG, - ACTIONS(4714), 1, + ACTIONS(4744), 1, anon_sym_DOT_DOT, - ACTIONS(4777), 1, + ACTIONS(4799), 1, anon_sym_COLON_COLON, - STATE(2024), 1, + STATE(2038), 1, sym_type_arguments, - ACTIONS(4716), 2, + ACTIONS(4746), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(2268), 2, + STATE(2287), 2, sym_line_comment, sym_block_comment, - [70627] = 12, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [71534] = 8, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5065), 1, - anon_sym_LPAREN, - ACTIONS(5069), 1, - anon_sym_LT, - ACTIONS(5071), 1, - anon_sym_where, - ACTIONS(5129), 1, - anon_sym_SEMI, - ACTIONS(5131), 1, - anon_sym_LBRACE, - STATE(536), 1, - sym_field_declaration_list, - STATE(2370), 1, - sym_type_parameters, - STATE(3170), 1, - sym_ordered_field_declaration_list, - STATE(3463), 1, - sym_where_clause, - STATE(2269), 2, - sym_line_comment, - sym_block_comment, - [70665] = 9, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4672), 1, - anon_sym_LT2, - ACTIONS(4674), 1, - anon_sym_LPAREN, - ACTIONS(5133), 1, - anon_sym_for, - STATE(2026), 1, - sym_type_arguments, - STATE(2098), 1, - sym_parameters, - STATE(2270), 2, + ACTIONS(5138), 1, + anon_sym_fn, + ACTIONS(5140), 1, + anon_sym_extern, + STATE(2317), 1, + aux_sym__item_modifiers, + STATE(2687), 1, + sym_extern_modifier, + STATE(2288), 2, sym_line_comment, sym_block_comment, - ACTIONS(3475), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [70697] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4710), 5, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_unsafe, + anon_sym_safe, + [71564] = 9, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4714), 1, + ACTIONS(4738), 1, + anon_sym_PIPE, + ACTIONS(4740), 1, + anon_sym_COLON, + ACTIONS(4744), 1, anon_sym_DOT_DOT, - ACTIONS(4752), 1, + ACTIONS(4799), 1, anon_sym_COLON_COLON, - ACTIONS(5109), 1, - anon_sym_RBRACK, - ACTIONS(3475), 2, - anon_sym_SEMI, - anon_sym_PLUS, - ACTIONS(4708), 2, - anon_sym_PIPE, - anon_sym_COMMA, - ACTIONS(4716), 2, + ACTIONS(4746), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(2271), 2, + STATE(2289), 2, sym_line_comment, sym_block_comment, - [70729] = 12, + ACTIONS(3594), 3, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + [71596] = 12, ACTIONS(69), 1, anon_sym_pub, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3068), 1, - anon_sym_POUND, - ACTIONS(4953), 1, - sym_crate, - ACTIONS(5001), 1, - sym_identifier, - ACTIONS(5135), 1, - anon_sym_RBRACE, - STATE(1254), 1, - sym_attribute_item, - STATE(2292), 1, - aux_sym_enum_variant_list_repeat1, - STATE(3425), 1, - sym_enum_variant, - STATE(3794), 1, - sym_visibility_modifier, - STATE(2272), 2, - sym_line_comment, - sym_block_comment, - [70767] = 12, - ACTIONS(69), 1, - anon_sym_pub, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3068), 1, + ACTIONS(3094), 1, anon_sym_POUND, - ACTIONS(4953), 1, + ACTIONS(4995), 1, sym_crate, - ACTIONS(5001), 1, + ACTIONS(5011), 1, sym_identifier, - ACTIONS(5137), 1, + ACTIONS(5172), 1, anon_sym_RBRACE, - STATE(1254), 1, + STATE(1314), 1, sym_attribute_item, - STATE(2292), 1, + STATE(2299), 1, aux_sym_enum_variant_list_repeat1, - STATE(3425), 1, + STATE(3405), 1, sym_enum_variant, - STATE(3794), 1, + STATE(3757), 1, sym_visibility_modifier, - STATE(2273), 2, - sym_line_comment, - sym_block_comment, - [70805] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4708), 1, - anon_sym_PIPE, - ACTIONS(4710), 1, - anon_sym_COLON, - ACTIONS(4714), 1, - anon_sym_DOT_DOT, - ACTIONS(4777), 1, - anon_sym_COLON_COLON, - ACTIONS(4716), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2274), 2, + STATE(2290), 2, sym_line_comment, - sym_block_comment, - ACTIONS(3475), 3, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, - [70837] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + sym_block_comment, + [71634] = 9, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4656), 1, + ACTIONS(4686), 1, anon_sym_LPAREN, - ACTIONS(4662), 1, + ACTIONS(4692), 1, anon_sym_BANG, - ACTIONS(4666), 1, + ACTIONS(4696), 1, anon_sym_DOT_DOT, - ACTIONS(5139), 1, + ACTIONS(5174), 1, anon_sym_COLON_COLON, - ACTIONS(4668), 2, + ACTIONS(4698), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(2275), 2, + STATE(2291), 2, sym_line_comment, sym_block_comment, - ACTIONS(4654), 3, + ACTIONS(4684), 3, anon_sym_RBRACK, anon_sym_PIPE, anon_sym_COMMA, - [70869] = 12, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [71666] = 8, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5065), 1, - anon_sym_LPAREN, - ACTIONS(5069), 1, - anon_sym_LT, - ACTIONS(5071), 1, - anon_sym_where, - ACTIONS(5131), 1, - anon_sym_LBRACE, - ACTIONS(5141), 1, - anon_sym_SEMI, - STATE(525), 1, - sym_field_declaration_list, - STATE(2361), 1, - sym_type_parameters, - STATE(3152), 1, - sym_ordered_field_declaration_list, - STATE(3421), 1, - sym_where_clause, - STATE(2276), 2, + ACTIONS(5138), 1, + anon_sym_fn, + ACTIONS(5140), 1, + anon_sym_extern, + STATE(2317), 1, + aux_sym__item_modifiers, + STATE(2807), 1, + sym_extern_modifier, + STATE(2292), 2, sym_line_comment, sym_block_comment, - [70907] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4710), 5, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_unsafe, + anon_sym_safe, + [71696] = 9, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4672), 1, + ACTIONS(4702), 1, anon_sym_LT2, - ACTIONS(4674), 1, + ACTIONS(4704), 1, anon_sym_LPAREN, - ACTIONS(5143), 1, + ACTIONS(5176), 1, anon_sym_for, - STATE(2026), 1, + STATE(2043), 1, sym_type_arguments, - STATE(2098), 1, + STATE(2105), 1, sym_parameters, - STATE(2277), 2, + STATE(2293), 2, sym_line_comment, sym_block_comment, - ACTIONS(3475), 4, + ACTIONS(3594), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [70939] = 9, - ACTIONS(103), 1, + [71728] = 6, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(5178), 1, + anon_sym_static, + ACTIONS(5180), 1, + anon_sym_trait, + STATE(2294), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3574), 7, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + anon_sym_safe, + [71754] = 9, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4672), 1, + ACTIONS(4702), 1, anon_sym_LT2, - ACTIONS(4674), 1, + ACTIONS(4704), 1, anon_sym_LPAREN, - ACTIONS(5145), 1, + ACTIONS(5182), 1, anon_sym_for, - STATE(2026), 1, + STATE(2043), 1, sym_type_arguments, - STATE(2098), 1, + STATE(2105), 1, sym_parameters, - STATE(2278), 2, + STATE(2295), 2, sym_line_comment, sym_block_comment, - ACTIONS(3475), 4, + ACTIONS(3594), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [70971] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [71786] = 9, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5147), 1, - anon_sym_LPAREN, - ACTIONS(5152), 1, - anon_sym_LBRACK, - ACTIONS(5155), 1, - anon_sym_LBRACE, - STATE(3661), 1, - sym_token_tree_pattern, - STATE(3785), 1, - sym_macro_rule, - ACTIONS(5150), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - STATE(2279), 3, - sym_line_comment, - sym_block_comment, - aux_sym_macro_definition_repeat1, - [71003] = 9, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4672), 1, + ACTIONS(4702), 1, anon_sym_LT2, - ACTIONS(4674), 1, + ACTIONS(4704), 1, anon_sym_LPAREN, - ACTIONS(5158), 1, + ACTIONS(5184), 1, anon_sym_for, - STATE(2026), 1, + STATE(2043), 1, sym_type_arguments, - STATE(2098), 1, + STATE(2105), 1, sym_parameters, - STATE(2280), 2, + STATE(2296), 2, sym_line_comment, sym_block_comment, - ACTIONS(3475), 4, + ACTIONS(3594), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [71035] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [71818] = 9, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5093), 1, - anon_sym_LBRACE, - ACTIONS(5160), 1, - anon_sym_SEMI, - STATE(548), 1, - sym_declaration_list, - STATE(2281), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3566), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [71063] = 9, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4672), 1, + ACTIONS(4702), 1, anon_sym_LT2, - ACTIONS(4674), 1, + ACTIONS(4704), 1, anon_sym_LPAREN, - ACTIONS(5162), 1, + ACTIONS(5186), 1, anon_sym_for, - STATE(2026), 1, + STATE(2043), 1, sym_type_arguments, - STATE(2098), 1, + STATE(2105), 1, sym_parameters, - STATE(2282), 2, + STATE(2297), 2, sym_line_comment, sym_block_comment, - ACTIONS(3475), 4, + ACTIONS(3594), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [71095] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3546), 1, - anon_sym_DOT_DOT, - STATE(2283), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3548), 8, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - anon_sym_if, - [71119] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [71850] = 12, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4883), 1, - anon_sym_COLON_COLON, - ACTIONS(4993), 1, - anon_sym_BANG, - STATE(2284), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3566), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [71144] = 11, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5071), 1, + ACTIONS(5098), 1, + anon_sym_LPAREN, + ACTIONS(5102), 1, + anon_sym_LT, + ACTIONS(5104), 1, anon_sym_where, - ACTIONS(5093), 1, + ACTIONS(5154), 1, anon_sym_LBRACE, - ACTIONS(5164), 1, - anon_sym_COLON, - ACTIONS(5166), 1, - anon_sym_LT, - STATE(510), 1, - sym_declaration_list, - STATE(2410), 1, + ACTIONS(5188), 1, + anon_sym_SEMI, + STATE(1323), 1, + sym_field_declaration_list, + STATE(2368), 1, sym_type_parameters, - STATE(2698), 1, - sym_trait_bounds, - STATE(3338), 1, + STATE(3131), 1, + sym_ordered_field_declaration_list, + STATE(3349), 1, sym_where_clause, - STATE(2285), 2, + STATE(2298), 2, sym_line_comment, sym_block_comment, - [71179] = 11, - ACTIONS(103), 1, + [71888] = 11, + ACTIONS(69), 1, + anon_sym_pub, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(3094), 1, + anon_sym_POUND, + ACTIONS(4995), 1, + sym_crate, + ACTIONS(5011), 1, + sym_identifier, + STATE(1097), 1, + aux_sym_enum_variant_list_repeat1, + STATE(1314), 1, + sym_attribute_item, + STATE(3507), 1, + sym_enum_variant, + STATE(3757), 1, + sym_visibility_modifier, + STATE(2299), 2, + sym_line_comment, + sym_block_comment, + [71923] = 11, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, - anon_sym_PLUS, - ACTIONS(3448), 1, + ACTIONS(3474), 1, anon_sym_SQUOTE, - ACTIONS(5071), 1, + ACTIONS(5104), 1, anon_sym_where, - ACTIONS(5168), 1, + ACTIONS(5190), 1, anon_sym_SEMI, - ACTIONS(5170), 1, + ACTIONS(5192), 1, anon_sym_LBRACE, - STATE(1292), 1, + ACTIONS(5194), 1, + anon_sym_DASH_GT, + STATE(629), 1, sym_block, - STATE(2514), 1, + STATE(2524), 1, sym_where_clause, - STATE(3777), 1, + STATE(3808), 1, sym_label, - STATE(2286), 2, + STATE(2300), 2, sym_line_comment, sym_block_comment, - [71214] = 11, - ACTIONS(69), 1, - anon_sym_pub, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [71958] = 10, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3068), 1, - anon_sym_POUND, - ACTIONS(4947), 1, + ACTIONS(5196), 1, sym_identifier, - ACTIONS(4953), 1, - sym_crate, - STATE(1254), 1, - sym_attribute_item, - STATE(2299), 1, - aux_sym_enum_variant_list_repeat1, - STATE(3225), 1, - sym_field_declaration, - STATE(3506), 1, - sym_visibility_modifier, - STATE(2287), 2, + ACTIONS(5198), 1, + anon_sym_RBRACE, + ACTIONS(5200), 1, + anon_sym_DOT_DOT, + ACTIONS(5202), 1, + anon_sym_COMMA, + ACTIONS(5204), 1, + anon_sym_ref, + ACTIONS(5206), 1, + sym_mutable_specifier, + STATE(2301), 2, sym_line_comment, sym_block_comment, - [71249] = 11, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + STATE(2905), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [71991] = 10, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5071), 1, - anon_sym_where, - ACTIONS(5164), 1, - anon_sym_COLON, - ACTIONS(5166), 1, - anon_sym_LT, - ACTIONS(5172), 1, - anon_sym_SEMI, - ACTIONS(5174), 1, - anon_sym_EQ, - STATE(2460), 1, - sym_type_parameters, - STATE(3167), 1, - sym_trait_bounds, - STATE(3450), 1, - sym_where_clause, - STATE(2288), 2, + ACTIONS(5196), 1, + sym_identifier, + ACTIONS(5200), 1, + anon_sym_DOT_DOT, + ACTIONS(5204), 1, + anon_sym_ref, + ACTIONS(5206), 1, + sym_mutable_specifier, + ACTIONS(5208), 1, + anon_sym_RBRACE, + ACTIONS(5210), 1, + anon_sym_COMMA, + STATE(2302), 2, sym_line_comment, sym_block_comment, - [71284] = 11, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + STATE(2906), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [72024] = 11, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, - anon_sym_PLUS, - ACTIONS(3448), 1, + ACTIONS(3474), 1, anon_sym_SQUOTE, - ACTIONS(5071), 1, + ACTIONS(5104), 1, anon_sym_where, - ACTIONS(5170), 1, + ACTIONS(5192), 1, anon_sym_LBRACE, - ACTIONS(5176), 1, + ACTIONS(5212), 1, anon_sym_SEMI, - STATE(1361), 1, + ACTIONS(5214), 1, + anon_sym_DASH_GT, + STATE(642), 1, sym_block, - STATE(2516), 1, + STATE(2572), 1, sym_where_clause, - STATE(3777), 1, + STATE(3808), 1, sym_label, - STATE(2289), 2, + STATE(2303), 2, sym_line_comment, sym_block_comment, - [71319] = 11, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [72059] = 11, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3448), 1, + ACTIONS(3182), 1, + anon_sym_PLUS, + ACTIONS(3474), 1, anon_sym_SQUOTE, - ACTIONS(5071), 1, + ACTIONS(5104), 1, anon_sym_where, - ACTIONS(5170), 1, + ACTIONS(5192), 1, anon_sym_LBRACE, - ACTIONS(5178), 1, + ACTIONS(5216), 1, anon_sym_SEMI, - ACTIONS(5180), 1, - anon_sym_DASH_GT, - STATE(1373), 1, + STATE(719), 1, sym_block, - STATE(2517), 1, + STATE(2595), 1, sym_where_clause, - STATE(3777), 1, + STATE(3808), 1, sym_label, - STATE(2290), 2, + STATE(2304), 2, sym_line_comment, sym_block_comment, - [71354] = 11, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [72094] = 11, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3448), 1, + ACTIONS(3474), 1, anon_sym_SQUOTE, - ACTIONS(5071), 1, + ACTIONS(5104), 1, anon_sym_where, - ACTIONS(5170), 1, - anon_sym_LBRACE, - ACTIONS(5182), 1, + ACTIONS(5218), 1, anon_sym_SEMI, - ACTIONS(5184), 1, + ACTIONS(5220), 1, + anon_sym_LBRACE, + ACTIONS(5222), 1, anon_sym_DASH_GT, - STATE(1354), 1, + STATE(1338), 1, sym_block, - STATE(2570), 1, + STATE(2561), 1, sym_where_clause, - STATE(3777), 1, + STATE(3810), 1, sym_label, - STATE(2291), 2, + STATE(2305), 2, sym_line_comment, sym_block_comment, - [71389] = 11, - ACTIONS(69), 1, - anon_sym_pub, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [72129] = 11, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3068), 1, - anon_sym_POUND, - ACTIONS(4953), 1, - sym_crate, - ACTIONS(5001), 1, - sym_identifier, - STATE(1093), 1, - aux_sym_enum_variant_list_repeat1, - STATE(1254), 1, - sym_attribute_item, - STATE(3399), 1, - sym_enum_variant, - STATE(3794), 1, - sym_visibility_modifier, - STATE(2292), 2, + ACTIONS(5104), 1, + anon_sym_where, + ACTIONS(5224), 1, + anon_sym_LBRACE, + ACTIONS(5226), 1, + anon_sym_COLON, + ACTIONS(5228), 1, + anon_sym_LT, + STATE(1361), 1, + sym_declaration_list, + STATE(2437), 1, + sym_type_parameters, + STATE(2704), 1, + sym_trait_bounds, + STATE(3307), 1, + sym_where_clause, + STATE(2306), 2, sym_line_comment, sym_block_comment, - [71424] = 11, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [72164] = 11, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, + ACTIONS(3182), 1, anon_sym_PLUS, - ACTIONS(3448), 1, + ACTIONS(3474), 1, anon_sym_SQUOTE, - ACTIONS(5071), 1, + ACTIONS(5104), 1, anon_sym_where, - ACTIONS(5170), 1, + ACTIONS(5192), 1, anon_sym_LBRACE, - ACTIONS(5186), 1, + ACTIONS(5230), 1, anon_sym_SEMI, - STATE(1115), 1, + STATE(510), 1, sym_block, - STATE(2519), 1, + STATE(2594), 1, sym_where_clause, - STATE(3777), 1, + STATE(3808), 1, sym_label, - STATE(2293), 2, + STATE(2307), 2, sym_line_comment, sym_block_comment, - [71459] = 11, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [72199] = 11, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, - anon_sym_PLUS, - ACTIONS(3448), 1, + ACTIONS(3474), 1, anon_sym_SQUOTE, - ACTIONS(5071), 1, + ACTIONS(5104), 1, anon_sym_where, - ACTIONS(5170), 1, + ACTIONS(5220), 1, anon_sym_LBRACE, - ACTIONS(5188), 1, + ACTIONS(5232), 1, anon_sym_SEMI, - STATE(1127), 1, + ACTIONS(5234), 1, + anon_sym_DASH_GT, + STATE(1380), 1, sym_block, - STATE(2521), 1, + STATE(2541), 1, sym_where_clause, - STATE(3777), 1, + STATE(3810), 1, sym_label, - STATE(2294), 2, + STATE(2308), 2, sym_line_comment, sym_block_comment, - [71494] = 11, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [72234] = 11, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, - anon_sym_PLUS, - ACTIONS(3448), 1, + ACTIONS(3474), 1, anon_sym_SQUOTE, - ACTIONS(5071), 1, + ACTIONS(5104), 1, anon_sym_where, - ACTIONS(5170), 1, + ACTIONS(5220), 1, anon_sym_LBRACE, - ACTIONS(5190), 1, + ACTIONS(5236), 1, anon_sym_SEMI, - STATE(1138), 1, + ACTIONS(5238), 1, + anon_sym_DASH_GT, + STATE(1134), 1, sym_block, - STATE(2523), 1, + STATE(2557), 1, sym_where_clause, - STATE(3777), 1, + STATE(3810), 1, sym_label, - STATE(2295), 2, + STATE(2309), 2, sym_line_comment, sym_block_comment, - [71529] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [72269] = 11, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1167), 1, - aux_sym_string_literal_token1, - STATE(2327), 1, - sym_string_literal, - STATE(2296), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4903), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [71554] = 11, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5059), 1, - anon_sym_LBRACE, - ACTIONS(5071), 1, + ACTIONS(5104), 1, anon_sym_where, - ACTIONS(5164), 1, + ACTIONS(5224), 1, + anon_sym_LBRACE, + ACTIONS(5226), 1, anon_sym_COLON, - ACTIONS(5166), 1, + ACTIONS(5228), 1, anon_sym_LT, - STATE(1416), 1, + STATE(1142), 1, sym_declaration_list, - STATE(2433), 1, + STATE(2449), 1, sym_type_parameters, - STATE(2743), 1, + STATE(2723), 1, sym_trait_bounds, - STATE(3234), 1, + STATE(3223), 1, sym_where_clause, - STATE(2297), 2, + STATE(2310), 2, sym_line_comment, sym_block_comment, - [71589] = 10, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [72304] = 5, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5192), 1, - sym_identifier, - ACTIONS(5194), 1, - anon_sym_RBRACE, - ACTIONS(5196), 1, - anon_sym_DOT_DOT, - ACTIONS(5198), 1, - anon_sym_COMMA, - ACTIONS(5200), 1, - anon_sym_ref, - ACTIONS(5202), 1, - sym_mutable_specifier, - STATE(2298), 2, - sym_line_comment, - sym_block_comment, - STATE(2941), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [71622] = 11, - ACTIONS(69), 1, - anon_sym_pub, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3068), 1, - anon_sym_POUND, - ACTIONS(4947), 1, - sym_identifier, - ACTIONS(4953), 1, - sym_crate, - STATE(1093), 1, - aux_sym_enum_variant_list_repeat1, - STATE(1254), 1, - sym_attribute_item, - STATE(3237), 1, - sym_field_declaration, - STATE(3506), 1, - sym_visibility_modifier, - STATE(2299), 2, + ACTIONS(5178), 1, + anon_sym_static, + STATE(2311), 2, sym_line_comment, sym_block_comment, - [71657] = 11, - ACTIONS(69), 1, - anon_sym_pub, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3574), 7, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + anon_sym_safe, + [72327] = 11, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3068), 1, - anon_sym_POUND, - ACTIONS(4947), 1, - sym_identifier, - ACTIONS(4953), 1, - sym_crate, - STATE(1093), 1, - aux_sym_enum_variant_list_repeat1, - STATE(1254), 1, - sym_attribute_item, - STATE(3122), 1, - sym_field_declaration, - STATE(3506), 1, - sym_visibility_modifier, - STATE(2300), 2, + ACTIONS(3474), 1, + anon_sym_SQUOTE, + ACTIONS(5104), 1, + anon_sym_where, + ACTIONS(5192), 1, + anon_sym_LBRACE, + ACTIONS(5240), 1, + anon_sym_SEMI, + ACTIONS(5242), 1, + anon_sym_DASH_GT, + STATE(680), 1, + sym_block, + STATE(2547), 1, + sym_where_clause, + STATE(3808), 1, + sym_label, + STATE(2312), 2, sym_line_comment, sym_block_comment, - [71692] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [72362] = 11, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2301), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5116), 8, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(3182), 1, anon_sym_PLUS, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, + ACTIONS(3474), 1, anon_sym_SQUOTE, + ACTIONS(5104), 1, anon_sym_where, - [71713] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5220), 1, + anon_sym_LBRACE, + ACTIONS(5244), 1, + anon_sym_SEMI, + STATE(1150), 1, + sym_block, + STATE(2574), 1, + sym_where_clause, + STATE(3810), 1, + sym_label, + STATE(2313), 2, + sym_line_comment, + sym_block_comment, + [72397] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2302), 2, + STATE(2314), 2, sym_line_comment, sym_block_comment, - ACTIONS(5116), 8, + ACTIONS(5091), 8, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, @@ -176689,11645 +178737,11529 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_where, - [71734] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [72418] = 11, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2303), 2, + ACTIONS(3474), 1, + anon_sym_SQUOTE, + ACTIONS(5104), 1, + anon_sym_where, + ACTIONS(5220), 1, + anon_sym_LBRACE, + ACTIONS(5246), 1, + anon_sym_SEMI, + ACTIONS(5248), 1, + anon_sym_DASH_GT, + STATE(1181), 1, + sym_block, + STATE(2590), 1, + sym_where_clause, + STATE(3810), 1, + sym_label, + STATE(2315), 2, sym_line_comment, sym_block_comment, - ACTIONS(5116), 8, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, + [72453] = 11, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(3474), 1, anon_sym_SQUOTE, + ACTIONS(5104), 1, anon_sym_where, - [71755] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5220), 1, + anon_sym_LBRACE, + ACTIONS(5250), 1, + anon_sym_SEMI, + ACTIONS(5252), 1, + anon_sym_DASH_GT, + STATE(1195), 1, + sym_block, + STATE(2598), 1, + sym_where_clause, + STATE(3810), 1, + sym_label, + STATE(2316), 2, + sym_line_comment, + sym_block_comment, + [72488] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5207), 1, + ACTIONS(5257), 2, anon_sym_fn, - ACTIONS(5209), 1, anon_sym_extern, - STATE(2461), 1, - sym_extern_modifier, - STATE(2304), 3, + STATE(2317), 3, + aux_sym__item_modifiers, + sym_line_comment, + sym_block_comment, + ACTIONS(5254), 5, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_unsafe, + anon_sym_safe, + [72511] = 11, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(5104), 1, + anon_sym_where, + ACTIONS(5226), 1, + anon_sym_COLON, + ACTIONS(5228), 1, + anon_sym_LT, + ACTIONS(5259), 1, + anon_sym_LBRACE, + STATE(692), 1, + sym_declaration_list, + STATE(2480), 1, + sym_type_parameters, + STATE(2826), 1, + sym_trait_bounds, + STATE(3262), 1, + sym_where_clause, + STATE(2318), 2, sym_line_comment, sym_block_comment, - aux_sym_function_modifiers_repeat1, - ACTIONS(5204), 4, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_unsafe, - [71782] = 11, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [72546] = 11, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, + ACTIONS(3182), 1, anon_sym_PLUS, - ACTIONS(3448), 1, + ACTIONS(3474), 1, anon_sym_SQUOTE, - ACTIONS(5071), 1, + ACTIONS(5104), 1, anon_sym_where, - ACTIONS(5212), 1, - anon_sym_SEMI, - ACTIONS(5214), 1, + ACTIONS(5220), 1, anon_sym_LBRACE, - STATE(697), 1, + ACTIONS(5261), 1, + anon_sym_SEMI, + STATE(1201), 1, sym_block, - STATE(2590), 1, + STATE(2603), 1, sym_where_clause, - STATE(3774), 1, + STATE(3810), 1, sym_label, - STATE(2305), 2, + STATE(2319), 2, sym_line_comment, sym_block_comment, - [71817] = 11, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [72581] = 11, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3448), 1, + ACTIONS(3182), 1, + anon_sym_PLUS, + ACTIONS(3474), 1, anon_sym_SQUOTE, - ACTIONS(5071), 1, + ACTIONS(5104), 1, anon_sym_where, - ACTIONS(5170), 1, + ACTIONS(5192), 1, anon_sym_LBRACE, - ACTIONS(5216), 1, + ACTIONS(5263), 1, anon_sym_SEMI, - ACTIONS(5218), 1, - anon_sym_DASH_GT, - STATE(1154), 1, + STATE(790), 1, sym_block, - STATE(2595), 1, + STATE(2611), 1, sym_where_clause, - STATE(3777), 1, + STATE(3808), 1, sym_label, - STATE(2306), 2, + STATE(2320), 2, sym_line_comment, sym_block_comment, - [71852] = 10, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [72616] = 11, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5192), 1, - sym_identifier, - ACTIONS(5196), 1, - anon_sym_DOT_DOT, - ACTIONS(5200), 1, - anon_sym_ref, - ACTIONS(5202), 1, - sym_mutable_specifier, - ACTIONS(5220), 1, - anon_sym_RBRACE, - ACTIONS(5222), 1, - anon_sym_COMMA, - STATE(2307), 2, - sym_line_comment, - sym_block_comment, - STATE(2880), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [71885] = 11, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5059), 1, - anon_sym_LBRACE, - ACTIONS(5071), 1, + ACTIONS(3182), 1, + anon_sym_PLUS, + ACTIONS(3474), 1, + anon_sym_SQUOTE, + ACTIONS(5104), 1, anon_sym_where, - ACTIONS(5164), 1, - anon_sym_COLON, - ACTIONS(5166), 1, - anon_sym_LT, - STATE(1315), 1, - sym_declaration_list, - STATE(2457), 1, - sym_type_parameters, - STATE(2651), 1, - sym_trait_bounds, - STATE(3448), 1, + ACTIONS(5220), 1, + anon_sym_LBRACE, + ACTIONS(5265), 1, + anon_sym_SEMI, + STATE(1237), 1, + sym_block, + STATE(2609), 1, sym_where_clause, - STATE(2308), 2, + STATE(3810), 1, + sym_label, + STATE(2321), 2, sym_line_comment, sym_block_comment, - [71920] = 11, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [72651] = 11, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, - anon_sym_PLUS, - ACTIONS(3448), 1, + ACTIONS(3474), 1, anon_sym_SQUOTE, - ACTIONS(5071), 1, + ACTIONS(5104), 1, anon_sym_where, - ACTIONS(5214), 1, + ACTIONS(5220), 1, anon_sym_LBRACE, - ACTIONS(5224), 1, + ACTIONS(5267), 1, anon_sym_SEMI, - STATE(779), 1, + ACTIONS(5269), 1, + anon_sym_DASH_GT, + STATE(1247), 1, sym_block, - STATE(2545), 1, + STATE(2612), 1, sym_where_clause, - STATE(3774), 1, + STATE(3810), 1, sym_label, - STATE(2309), 2, + STATE(2322), 2, sym_line_comment, sym_block_comment, - [71955] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [72686] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4696), 1, - anon_sym_trait, - ACTIONS(5226), 1, - anon_sym_impl, - STATE(2310), 2, + ACTIONS(4758), 1, + anon_sym_static, + STATE(2323), 2, sym_line_comment, sym_block_comment, - ACTIONS(3566), 6, + ACTIONS(3574), 7, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [71980] = 10, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_safe, + [72709] = 11, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4654), 1, - anon_sym_PIPE, - ACTIONS(4656), 1, - anon_sym_LPAREN, - ACTIONS(4660), 1, + ACTIONS(5104), 1, + anon_sym_where, + ACTIONS(5226), 1, anon_sym_COLON, - ACTIONS(4662), 1, - anon_sym_BANG, - ACTIONS(4666), 1, - anon_sym_DOT_DOT, ACTIONS(5228), 1, - anon_sym_COLON_COLON, - ACTIONS(4668), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2311), 2, + anon_sym_LT, + ACTIONS(5259), 1, + anon_sym_LBRACE, + STATE(698), 1, + sym_declaration_list, + STATE(2502), 1, + sym_type_parameters, + STATE(2880), 1, + sym_trait_bounds, + STATE(3416), 1, + sym_where_clause, + STATE(2324), 2, sym_line_comment, sym_block_comment, - [72013] = 11, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [72744] = 11, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, + ACTIONS(3182), 1, anon_sym_PLUS, - ACTIONS(3448), 1, + ACTIONS(3474), 1, anon_sym_SQUOTE, - ACTIONS(5071), 1, + ACTIONS(5104), 1, anon_sym_where, - ACTIONS(5214), 1, + ACTIONS(5220), 1, anon_sym_LBRACE, - ACTIONS(5230), 1, + ACTIONS(5271), 1, anon_sym_SEMI, - STATE(522), 1, + STATE(1276), 1, sym_block, - STATE(2548), 1, + STATE(2614), 1, sym_where_clause, - STATE(3774), 1, + STATE(3810), 1, sym_label, - STATE(2312), 2, + STATE(2325), 2, sym_line_comment, sym_block_comment, - [72048] = 11, - ACTIONS(69), 1, - anon_sym_pub, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [72779] = 11, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3068), 1, - anon_sym_POUND, - ACTIONS(4953), 1, - sym_crate, - ACTIONS(5001), 1, - sym_identifier, - STATE(1093), 1, - aux_sym_enum_variant_list_repeat1, - STATE(1254), 1, - sym_attribute_item, - STATE(3059), 1, - sym_enum_variant, - STATE(3794), 1, - sym_visibility_modifier, - STATE(2313), 2, - sym_line_comment, - sym_block_comment, - [72083] = 11, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3448), 1, + ACTIONS(3182), 1, + anon_sym_PLUS, + ACTIONS(3474), 1, anon_sym_SQUOTE, - ACTIONS(5071), 1, + ACTIONS(5104), 1, anon_sym_where, - ACTIONS(5214), 1, + ACTIONS(5220), 1, anon_sym_LBRACE, - ACTIONS(5232), 1, + ACTIONS(5273), 1, anon_sym_SEMI, - ACTIONS(5234), 1, - anon_sym_DASH_GT, - STATE(746), 1, + STATE(1287), 1, sym_block, - STATE(2586), 1, + STATE(2616), 1, sym_where_clause, - STATE(3774), 1, + STATE(3810), 1, sym_label, - STATE(2314), 2, + STATE(2326), 2, sym_line_comment, sym_block_comment, - [72118] = 11, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [72814] = 11, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3448), 1, - anon_sym_SQUOTE, - ACTIONS(5071), 1, + ACTIONS(5104), 1, anon_sym_where, - ACTIONS(5214), 1, - anon_sym_LBRACE, - ACTIONS(5236), 1, + ACTIONS(5226), 1, + anon_sym_COLON, + ACTIONS(5228), 1, + anon_sym_LT, + ACTIONS(5275), 1, anon_sym_SEMI, - ACTIONS(5238), 1, - anon_sym_DASH_GT, - STATE(643), 1, - sym_block, - STATE(2606), 1, + ACTIONS(5277), 1, + anon_sym_EQ, + STATE(2423), 1, + sym_type_parameters, + STATE(3140), 1, + sym_trait_bounds, + STATE(3366), 1, sym_where_clause, - STATE(3774), 1, - sym_label, - STATE(2315), 2, + STATE(2327), 2, sym_line_comment, sym_block_comment, - [72153] = 11, - ACTIONS(103), 1, + [72849] = 5, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(5279), 1, + sym_identifier, + STATE(2328), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4895), 7, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + anon_sym_safe, + [72872] = 11, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5071), 1, + ACTIONS(5104), 1, anon_sym_where, - ACTIONS(5164), 1, + ACTIONS(5226), 1, anon_sym_COLON, - ACTIONS(5166), 1, + ACTIONS(5228), 1, anon_sym_LT, - ACTIONS(5240), 1, + ACTIONS(5281), 1, anon_sym_SEMI, - ACTIONS(5242), 1, + ACTIONS(5283), 1, anon_sym_EQ, - STATE(2442), 1, + STATE(2441), 1, sym_type_parameters, - STATE(2889), 1, + STATE(3185), 1, sym_trait_bounds, - STATE(3253), 1, + STATE(3449), 1, sym_where_clause, - STATE(2316), 2, + STATE(2329), 2, sym_line_comment, sym_block_comment, - [72188] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [72907] = 11, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5244), 1, - anon_sym_fn, - ACTIONS(5246), 1, - anon_sym_extern, - STATE(2304), 1, - aux_sym_function_modifiers_repeat1, - STATE(2461), 1, - sym_extern_modifier, - STATE(2317), 2, + ACTIONS(3094), 1, + anon_sym_POUND, + ACTIONS(4995), 1, + sym_crate, + ACTIONS(5011), 1, + sym_identifier, + STATE(1314), 1, + sym_attribute_item, + STATE(2299), 1, + aux_sym_enum_variant_list_repeat1, + STATE(3405), 1, + sym_enum_variant, + STATE(3757), 1, + sym_visibility_modifier, + STATE(2330), 2, sym_line_comment, sym_block_comment, - ACTIONS(4682), 4, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_unsafe, - [72217] = 11, - ACTIONS(103), 1, + [72942] = 4, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + STATE(2331), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5091), 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, + [72963] = 11, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3448), 1, + ACTIONS(3474), 1, anon_sym_SQUOTE, - ACTIONS(5071), 1, + ACTIONS(5104), 1, anon_sym_where, - ACTIONS(5214), 1, + ACTIONS(5192), 1, anon_sym_LBRACE, - ACTIONS(5248), 1, + ACTIONS(5285), 1, anon_sym_SEMI, - ACTIONS(5250), 1, + ACTIONS(5287), 1, anon_sym_DASH_GT, - STATE(595), 1, + STATE(760), 1, sym_block, - STATE(2583), 1, + STATE(2610), 1, sym_where_clause, - STATE(3774), 1, + STATE(3808), 1, sym_label, - STATE(2318), 2, + STATE(2332), 2, sym_line_comment, sym_block_comment, - [72252] = 11, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [72998] = 11, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3448), 1, + ACTIONS(3474), 1, anon_sym_SQUOTE, - ACTIONS(5071), 1, + ACTIONS(5104), 1, anon_sym_where, - ACTIONS(5214), 1, + ACTIONS(5192), 1, anon_sym_LBRACE, - ACTIONS(5252), 1, + ACTIONS(5289), 1, anon_sym_SEMI, - ACTIONS(5254), 1, + ACTIONS(5291), 1, anon_sym_DASH_GT, - STATE(663), 1, + STATE(776), 1, sym_block, - STATE(2557), 1, + STATE(2584), 1, sym_where_clause, - STATE(3774), 1, + STATE(3808), 1, sym_label, - STATE(2319), 2, + STATE(2333), 2, sym_line_comment, sym_block_comment, - [72287] = 11, - ACTIONS(103), 1, + [73033] = 11, + ACTIONS(69), 1, + anon_sym_pub, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(3094), 1, + anon_sym_POUND, + ACTIONS(4989), 1, + sym_identifier, + ACTIONS(4995), 1, + sym_crate, + STATE(1097), 1, + aux_sym_enum_variant_list_repeat1, + STATE(1314), 1, + sym_attribute_item, + STATE(2973), 1, + sym_field_declaration, + STATE(3631), 1, + sym_visibility_modifier, + STATE(2334), 2, + sym_line_comment, + sym_block_comment, + [73068] = 11, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3448), 1, + ACTIONS(3474), 1, anon_sym_SQUOTE, - ACTIONS(5071), 1, + ACTIONS(5104), 1, anon_sym_where, - ACTIONS(5170), 1, + ACTIONS(5192), 1, anon_sym_LBRACE, - ACTIONS(5256), 1, + ACTIONS(5293), 1, anon_sym_SEMI, - ACTIONS(5258), 1, + ACTIONS(5295), 1, anon_sym_DASH_GT, - STATE(1196), 1, + STATE(543), 1, sym_block, - STATE(2600), 1, + STATE(2592), 1, sym_where_clause, - STATE(3777), 1, + STATE(3808), 1, sym_label, - STATE(2320), 2, + STATE(2335), 2, sym_line_comment, sym_block_comment, - [72322] = 11, - ACTIONS(69), 1, - anon_sym_pub, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [73103] = 10, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3068), 1, - anon_sym_POUND, - ACTIONS(4953), 1, - sym_crate, - ACTIONS(5001), 1, - sym_identifier, - STATE(1093), 1, - aux_sym_enum_variant_list_repeat1, - STATE(1254), 1, - sym_attribute_item, - STATE(2925), 1, - sym_enum_variant, - STATE(3794), 1, - sym_visibility_modifier, - STATE(2321), 2, + ACTIONS(4684), 1, + anon_sym_PIPE, + ACTIONS(4686), 1, + anon_sym_LPAREN, + ACTIONS(4690), 1, + anon_sym_COLON, + ACTIONS(4692), 1, + anon_sym_BANG, + ACTIONS(4696), 1, + anon_sym_DOT_DOT, + ACTIONS(5297), 1, + anon_sym_COLON_COLON, + ACTIONS(4698), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2336), 2, sym_line_comment, sym_block_comment, - [72357] = 10, - ACTIONS(103), 1, + [73136] = 5, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(5123), 1, + anon_sym_static, + STATE(2337), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3574), 7, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + anon_sym_safe, + [73159] = 10, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5192), 1, - sym_identifier, ACTIONS(5196), 1, - anon_sym_DOT_DOT, + sym_identifier, ACTIONS(5200), 1, + anon_sym_DOT_DOT, + ACTIONS(5204), 1, anon_sym_ref, - ACTIONS(5202), 1, + ACTIONS(5206), 1, sym_mutable_specifier, - ACTIONS(5260), 1, + ACTIONS(5299), 1, anon_sym_RBRACE, - ACTIONS(5262), 1, + ACTIONS(5301), 1, anon_sym_COMMA, - STATE(2322), 2, + STATE(2338), 2, sym_line_comment, sym_block_comment, - STATE(3117), 2, + STATE(3121), 2, sym_field_pattern, sym_remaining_field_pattern, - [72390] = 11, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [73192] = 11, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5059), 1, - anon_sym_LBRACE, - ACTIONS(5071), 1, - anon_sym_where, - ACTIONS(5164), 1, - anon_sym_COLON, - ACTIONS(5166), 1, - anon_sym_LT, - STATE(1205), 1, - sym_declaration_list, - STATE(2495), 1, - sym_type_parameters, - STATE(2841), 1, - sym_trait_bounds, - STATE(3233), 1, - sym_where_clause, - STATE(2323), 2, + ACTIONS(3094), 1, + anon_sym_POUND, + ACTIONS(4995), 1, + sym_crate, + ACTIONS(5011), 1, + sym_identifier, + STATE(1097), 1, + aux_sym_enum_variant_list_repeat1, + STATE(1314), 1, + sym_attribute_item, + STATE(2954), 1, + sym_enum_variant, + STATE(3757), 1, + sym_visibility_modifier, + STATE(2339), 2, sym_line_comment, sym_block_comment, - [72425] = 11, + [73227] = 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(3068), 1, + ACTIONS(3094), 1, anon_sym_POUND, - ACTIONS(4947), 1, + ACTIONS(4989), 1, sym_identifier, - ACTIONS(4953), 1, + ACTIONS(4995), 1, sym_crate, - STATE(1093), 1, + STATE(1097), 1, aux_sym_enum_variant_list_repeat1, - STATE(1254), 1, + STATE(1314), 1, sym_attribute_item, - STATE(2937), 1, + STATE(2964), 1, sym_field_declaration, - STATE(3506), 1, + STATE(3631), 1, sym_visibility_modifier, - STATE(2324), 2, - sym_line_comment, - sym_block_comment, - [72460] = 11, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5071), 1, - anon_sym_where, - ACTIONS(5093), 1, - anon_sym_LBRACE, - ACTIONS(5164), 1, - anon_sym_COLON, - ACTIONS(5166), 1, - anon_sym_LT, - STATE(605), 1, - sym_declaration_list, - STATE(2504), 1, - sym_type_parameters, - STATE(2870), 1, - sym_trait_bounds, - STATE(3344), 1, - sym_where_clause, - STATE(2325), 2, + STATE(2340), 2, sym_line_comment, sym_block_comment, - [72495] = 11, + [73262] = 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(3068), 1, + ACTIONS(3094), 1, anon_sym_POUND, - ACTIONS(4953), 1, + ACTIONS(4995), 1, sym_crate, - ACTIONS(5001), 1, + ACTIONS(5011), 1, sym_identifier, - STATE(1254), 1, - sym_attribute_item, - STATE(2292), 1, + STATE(1097), 1, aux_sym_enum_variant_list_repeat1, - STATE(3425), 1, + STATE(1314), 1, + sym_attribute_item, + STATE(3064), 1, sym_enum_variant, - STATE(3794), 1, + STATE(3757), 1, sym_visibility_modifier, - STATE(2326), 2, + STATE(2341), 2, sym_line_comment, sym_block_comment, - [72530] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [73297] = 11, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(2327), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5264), 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, - [72551] = 11, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3448), 1, - anon_sym_SQUOTE, - ACTIONS(5071), 1, - anon_sym_where, - ACTIONS(5214), 1, - anon_sym_LBRACE, - ACTIONS(5266), 1, - anon_sym_SEMI, - ACTIONS(5268), 1, - anon_sym_DASH_GT, - STATE(559), 1, - sym_block, - STATE(2558), 1, - sym_where_clause, - STATE(3774), 1, - sym_label, - STATE(2328), 2, + ACTIONS(3094), 1, + anon_sym_POUND, + ACTIONS(4989), 1, + sym_identifier, + ACTIONS(4995), 1, + sym_crate, + STATE(1097), 1, + aux_sym_enum_variant_list_repeat1, + STATE(1314), 1, + sym_attribute_item, + STATE(3285), 1, + sym_field_declaration, + STATE(3631), 1, + sym_visibility_modifier, + STATE(2342), 2, sym_line_comment, sym_block_comment, - [72586] = 11, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [73332] = 11, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5071), 1, - anon_sym_where, - ACTIONS(5093), 1, - anon_sym_LBRACE, - ACTIONS(5164), 1, - anon_sym_COLON, - ACTIONS(5166), 1, - anon_sym_LT, - STATE(539), 1, - sym_declaration_list, - STATE(2414), 1, - sym_type_parameters, - STATE(2711), 1, - sym_trait_bounds, - STATE(3495), 1, - sym_where_clause, - STATE(2329), 2, + ACTIONS(3094), 1, + anon_sym_POUND, + ACTIONS(4989), 1, + sym_identifier, + ACTIONS(4995), 1, + sym_crate, + STATE(1314), 1, + sym_attribute_item, + STATE(2342), 1, + aux_sym_enum_variant_list_repeat1, + STATE(3241), 1, + sym_field_declaration, + STATE(3631), 1, + sym_visibility_modifier, + STATE(2343), 2, sym_line_comment, sym_block_comment, - [72621] = 11, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [73367] = 11, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, + ACTIONS(3182), 1, anon_sym_PLUS, - ACTIONS(3448), 1, + ACTIONS(3474), 1, anon_sym_SQUOTE, - ACTIONS(5071), 1, + ACTIONS(5104), 1, anon_sym_where, - ACTIONS(5170), 1, + ACTIONS(5192), 1, anon_sym_LBRACE, - ACTIONS(5270), 1, + ACTIONS(5303), 1, anon_sym_SEMI, - STATE(1219), 1, + STATE(526), 1, sym_block, - STATE(2609), 1, + STATE(2602), 1, sym_where_clause, - STATE(3777), 1, + STATE(3808), 1, sym_label, - STATE(2330), 2, + STATE(2344), 2, sym_line_comment, sym_block_comment, - [72656] = 10, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [73402] = 10, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5192), 1, - sym_identifier, ACTIONS(5196), 1, - anon_sym_DOT_DOT, + sym_identifier, ACTIONS(5200), 1, + anon_sym_DOT_DOT, + ACTIONS(5204), 1, anon_sym_ref, - ACTIONS(5202), 1, + ACTIONS(5206), 1, sym_mutable_specifier, - ACTIONS(5272), 1, + ACTIONS(5305), 1, anon_sym_RBRACE, - ACTIONS(5274), 1, + ACTIONS(5307), 1, anon_sym_COMMA, - STATE(2331), 2, + STATE(2345), 2, sym_line_comment, sym_block_comment, - STATE(2879), 2, + STATE(3137), 2, sym_field_pattern, sym_remaining_field_pattern, - [72689] = 11, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [73435] = 11, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3448), 1, - anon_sym_SQUOTE, - ACTIONS(5071), 1, + ACTIONS(5104), 1, anon_sym_where, - ACTIONS(5170), 1, + ACTIONS(5226), 1, + anon_sym_COLON, + ACTIONS(5228), 1, + anon_sym_LT, + ACTIONS(5259), 1, anon_sym_LBRACE, - ACTIONS(5276), 1, - anon_sym_SEMI, - ACTIONS(5278), 1, - anon_sym_DASH_GT, - STATE(1256), 1, - sym_block, - STATE(2510), 1, + STATE(572), 1, + sym_declaration_list, + STATE(2460), 1, + sym_type_parameters, + STATE(2724), 1, + sym_trait_bounds, + STATE(3501), 1, sym_where_clause, - STATE(3777), 1, - sym_label, - STATE(2332), 2, + STATE(2346), 2, sym_line_comment, sym_block_comment, - [72724] = 11, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [73470] = 11, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3448), 1, + ACTIONS(3182), 1, + anon_sym_PLUS, + ACTIONS(3474), 1, anon_sym_SQUOTE, - ACTIONS(5071), 1, + ACTIONS(5104), 1, anon_sym_where, - ACTIONS(5170), 1, + ACTIONS(5192), 1, anon_sym_LBRACE, - ACTIONS(5280), 1, + ACTIONS(5309), 1, anon_sym_SEMI, - ACTIONS(5282), 1, - anon_sym_DASH_GT, - STATE(1277), 1, + STATE(612), 1, sym_block, - STATE(2512), 1, + STATE(2543), 1, sym_where_clause, - STATE(3777), 1, + STATE(3808), 1, sym_label, - STATE(2333), 2, + STATE(2347), 2, sym_line_comment, sym_block_comment, - [72759] = 11, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [73505] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, + STATE(2348), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5091), 8, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_PLUS, - ACTIONS(3448), 1, + anon_sym_EQ, + anon_sym_GT, + anon_sym_COMMA, anon_sym_SQUOTE, - ACTIONS(5071), 1, anon_sym_where, - ACTIONS(5214), 1, - anon_sym_LBRACE, - ACTIONS(5284), 1, - anon_sym_SEMI, - STATE(626), 1, - sym_block, - STATE(2565), 1, - sym_where_clause, - STATE(3774), 1, - sym_label, - STATE(2334), 2, + [73526] = 5, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(5311), 1, + sym_identifier, + STATE(2349), 2, sym_line_comment, sym_block_comment, - [72794] = 11, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4895), 7, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + anon_sym_safe, + [73549] = 11, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, + ACTIONS(3182), 1, anon_sym_PLUS, - ACTIONS(3448), 1, + ACTIONS(3474), 1, anon_sym_SQUOTE, - ACTIONS(5071), 1, + ACTIONS(5104), 1, anon_sym_where, - ACTIONS(5214), 1, + ACTIONS(5192), 1, anon_sym_LBRACE, - ACTIONS(5286), 1, + ACTIONS(5313), 1, anon_sym_SEMI, - STATE(509), 1, + STATE(786), 1, sym_block, - STATE(2582), 1, + STATE(2632), 1, sym_where_clause, - STATE(3774), 1, + STATE(3808), 1, sym_label, - STATE(2335), 2, + STATE(2350), 2, sym_line_comment, sym_block_comment, - [72829] = 11, - ACTIONS(103), 1, + [73584] = 5, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(5315), 1, + sym_identifier, + STATE(2351), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4895), 7, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + anon_sym_safe, + [73607] = 11, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3448), 1, - anon_sym_SQUOTE, - ACTIONS(5071), 1, + ACTIONS(5104), 1, anon_sym_where, - ACTIONS(5214), 1, + ACTIONS(5224), 1, anon_sym_LBRACE, - ACTIONS(5288), 1, - anon_sym_SEMI, - ACTIONS(5290), 1, - anon_sym_DASH_GT, - STATE(678), 1, - sym_block, - STATE(2571), 1, + ACTIONS(5226), 1, + anon_sym_COLON, + ACTIONS(5228), 1, + anon_sym_LT, + STATE(1324), 1, + sym_declaration_list, + STATE(2422), 1, + sym_type_parameters, + STATE(2683), 1, + sym_trait_bounds, + STATE(3355), 1, sym_where_clause, - STATE(3774), 1, - sym_label, - STATE(2336), 2, + STATE(2352), 2, + sym_line_comment, + sym_block_comment, + [73642] = 5, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(5317), 1, + sym_identifier, + STATE(2353), 2, sym_line_comment, sym_block_comment, - [72864] = 11, - ACTIONS(103), 1, + ACTIONS(4895), 7, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + anon_sym_safe, + [73665] = 5, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(4720), 1, + anon_sym_static, + STATE(2354), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3574), 7, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + anon_sym_safe, + [73688] = 11, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, + ACTIONS(3182), 1, anon_sym_PLUS, - ACTIONS(3448), 1, + ACTIONS(3474), 1, anon_sym_SQUOTE, - ACTIONS(5071), 1, + ACTIONS(5104), 1, anon_sym_where, - ACTIONS(5214), 1, + ACTIONS(5220), 1, anon_sym_LBRACE, - ACTIONS(5292), 1, + ACTIONS(5319), 1, anon_sym_SEMI, - STATE(736), 1, + STATE(1299), 1, sym_block, - STATE(2578), 1, + STATE(2617), 1, sym_where_clause, - STATE(3774), 1, + STATE(3810), 1, sym_label, - STATE(2337), 2, + STATE(2355), 2, sym_line_comment, sym_block_comment, - [72899] = 10, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [73723] = 10, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5294), 1, + ACTIONS(5321), 1, anon_sym_LPAREN, - ACTIONS(5296), 1, + ACTIONS(5323), 1, anon_sym_RPAREN, - ACTIONS(5298), 1, + ACTIONS(5325), 1, anon_sym_LBRACK, - ACTIONS(5300), 1, + ACTIONS(5327), 1, anon_sym_LBRACE, - STATE(2352), 1, + STATE(2386), 1, aux_sym_macro_definition_repeat1, - STATE(3364), 1, + STATE(3373), 1, sym_macro_rule, - STATE(3661), 1, + STATE(3801), 1, sym_token_tree_pattern, - STATE(2338), 2, + STATE(2356), 2, sym_line_comment, sym_block_comment, - [72931] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [73755] = 8, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5065), 1, + ACTIONS(5098), 1, anon_sym_LPAREN, - ACTIONS(5067), 1, + ACTIONS(5154), 1, anon_sym_LBRACE, - ACTIONS(5304), 1, + ACTIONS(5331), 1, anon_sym_EQ, - ACTIONS(5302), 2, + ACTIONS(5329), 2, anon_sym_RBRACE, anon_sym_COMMA, - STATE(2339), 2, + STATE(2357), 2, sym_line_comment, sym_block_comment, - STATE(3056), 2, + STATE(3035), 2, sym_field_declaration_list, sym_ordered_field_declaration_list, - [72959] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4316), 1, - anon_sym_LBRACE, - ACTIONS(4672), 1, - anon_sym_LT2, - ACTIONS(5308), 1, - anon_sym_STAR, - STATE(3139), 1, - sym_use_list, - STATE(3553), 1, - sym_type_arguments, - ACTIONS(5306), 2, - sym_identifier, - sym_super, - STATE(2340), 2, - sym_line_comment, - sym_block_comment, - [72989] = 10, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5294), 1, - anon_sym_LPAREN, - ACTIONS(5298), 1, - anon_sym_LBRACK, - ACTIONS(5300), 1, - anon_sym_LBRACE, - ACTIONS(5310), 1, - anon_sym_RBRACE, - STATE(2279), 1, - aux_sym_macro_definition_repeat1, - STATE(3355), 1, - sym_macro_rule, - STATE(3661), 1, - sym_token_tree_pattern, - STATE(2341), 2, - sym_line_comment, - sym_block_comment, - [73021] = 10, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [73783] = 7, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5294), 1, - anon_sym_LPAREN, - ACTIONS(5298), 1, - anon_sym_LBRACK, - ACTIONS(5300), 1, - anon_sym_LBRACE, - ACTIONS(5312), 1, - anon_sym_RBRACE, - STATE(2385), 1, - aux_sym_macro_definition_repeat1, - STATE(3483), 1, - sym_macro_rule, - STATE(3661), 1, - sym_token_tree_pattern, - STATE(2342), 2, - sym_line_comment, - sym_block_comment, - [73053] = 7, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4995), 1, + ACTIONS(5003), 1, anon_sym_DOT_DOT, - ACTIONS(4999), 1, + ACTIONS(5007), 1, anon_sym_COLON_COLON, - ACTIONS(4997), 2, + ACTIONS(5005), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(2343), 2, + STATE(2358), 2, sym_line_comment, sym_block_comment, - ACTIONS(4708), 3, + ACTIONS(4738), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [73079] = 10, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5294), 1, - anon_sym_LPAREN, - ACTIONS(5296), 1, - anon_sym_RBRACK, - ACTIONS(5298), 1, - anon_sym_LBRACK, - ACTIONS(5300), 1, - anon_sym_LBRACE, - STATE(2353), 1, - aux_sym_macro_definition_repeat1, - STATE(3366), 1, - sym_macro_rule, - STATE(3661), 1, - sym_token_tree_pattern, - STATE(2344), 2, - sym_line_comment, - sym_block_comment, - [73111] = 10, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5294), 1, - anon_sym_LPAREN, - ACTIONS(5298), 1, - anon_sym_LBRACK, - ACTIONS(5300), 1, - anon_sym_LBRACE, - ACTIONS(5314), 1, - anon_sym_RPAREN, - STATE(2354), 1, - aux_sym_macro_definition_repeat1, - STATE(3367), 1, - sym_macro_rule, - STATE(3661), 1, - sym_token_tree_pattern, - STATE(2345), 2, - sym_line_comment, - sym_block_comment, - [73143] = 10, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5294), 1, - anon_sym_LPAREN, - ACTIONS(5298), 1, - anon_sym_LBRACK, - ACTIONS(5300), 1, - anon_sym_LBRACE, - ACTIONS(5314), 1, - anon_sym_RBRACK, - STATE(2355), 1, - aux_sym_macro_definition_repeat1, - STATE(3368), 1, - sym_macro_rule, - STATE(3661), 1, - sym_token_tree_pattern, - STATE(2346), 2, - sym_line_comment, - sym_block_comment, - [73175] = 10, - ACTIONS(27), 1, - anon_sym_PIPE, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [73809] = 9, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1383), 1, - anon_sym_LBRACE, - ACTIONS(3448), 1, - anon_sym_SQUOTE, - ACTIONS(5316), 1, - anon_sym_move, - STATE(224), 1, - sym_closure_parameters, - STATE(484), 1, - sym_block, - STATE(3778), 1, - sym_label, - STATE(2347), 2, - sym_line_comment, - sym_block_comment, - [73207] = 9, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5192), 1, - sym_identifier, ACTIONS(5196), 1, - anon_sym_DOT_DOT, + sym_identifier, ACTIONS(5200), 1, + anon_sym_DOT_DOT, + ACTIONS(5204), 1, anon_sym_ref, - ACTIONS(5202), 1, + ACTIONS(5206), 1, sym_mutable_specifier, - ACTIONS(5318), 1, + ACTIONS(5333), 1, anon_sym_RBRACE, - STATE(2348), 2, + STATE(2359), 2, sym_line_comment, sym_block_comment, - STATE(3266), 2, + STATE(3346), 2, sym_field_pattern, sym_remaining_field_pattern, - [73237] = 10, - ACTIONS(27), 1, - anon_sym_PIPE, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [73839] = 9, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5320), 1, - sym_identifier, - ACTIONS(5322), 1, - anon_sym_async, - ACTIONS(5324), 1, - anon_sym_ref, - ACTIONS(5326), 1, - sym_mutable_specifier, - ACTIONS(5328), 1, - anon_sym_move, - STATE(224), 1, - sym_closure_parameters, - STATE(2349), 2, - sym_line_comment, - sym_block_comment, - [73269] = 9, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5192), 1, - sym_identifier, ACTIONS(5196), 1, - anon_sym_DOT_DOT, + sym_identifier, ACTIONS(5200), 1, + anon_sym_DOT_DOT, + ACTIONS(5204), 1, anon_sym_ref, - ACTIONS(5202), 1, + ACTIONS(5206), 1, sym_mutable_specifier, - ACTIONS(5330), 1, + ACTIONS(5335), 1, anon_sym_RBRACE, - STATE(2350), 2, + STATE(2360), 2, sym_line_comment, sym_block_comment, - STATE(3266), 2, + STATE(3346), 2, sym_field_pattern, sym_remaining_field_pattern, - [73299] = 10, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4883), 1, - anon_sym_COLON_COLON, - ACTIONS(5332), 1, - anon_sym_LPAREN, - ACTIONS(5334), 1, - anon_sym_LBRACK, - ACTIONS(5336), 1, - anon_sym_RBRACK, - ACTIONS(5338), 1, - anon_sym_LBRACE, - ACTIONS(5340), 1, - anon_sym_EQ, - STATE(3534), 1, - sym_delim_token_tree, - STATE(2351), 2, - sym_line_comment, - sym_block_comment, - [73331] = 10, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [73869] = 9, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5294), 1, - anon_sym_LPAREN, - ACTIONS(5298), 1, - anon_sym_LBRACK, - ACTIONS(5300), 1, - anon_sym_LBRACE, - ACTIONS(5342), 1, - anon_sym_RPAREN, - STATE(2279), 1, - aux_sym_macro_definition_repeat1, - STATE(3388), 1, - sym_macro_rule, - STATE(3661), 1, - sym_token_tree_pattern, - STATE(2352), 2, - sym_line_comment, - sym_block_comment, - [73363] = 10, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5294), 1, - anon_sym_LPAREN, - ACTIONS(5298), 1, - anon_sym_LBRACK, - ACTIONS(5300), 1, + ACTIONS(4358), 1, anon_sym_LBRACE, - ACTIONS(5342), 1, - anon_sym_RBRACK, - STATE(2279), 1, - aux_sym_macro_definition_repeat1, - STATE(3389), 1, - sym_macro_rule, - STATE(3661), 1, - sym_token_tree_pattern, - STATE(2353), 2, + ACTIONS(4702), 1, + anon_sym_LT2, + ACTIONS(5339), 1, + anon_sym_STAR, + STATE(3001), 1, + sym_use_list, + STATE(3748), 1, + sym_type_arguments, + ACTIONS(5337), 2, + sym_identifier, + sym_super, + STATE(2361), 2, sym_line_comment, sym_block_comment, - [73395] = 10, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [73899] = 9, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5294), 1, - anon_sym_LPAREN, - ACTIONS(5298), 1, - anon_sym_LBRACK, - ACTIONS(5300), 1, - anon_sym_LBRACE, - ACTIONS(5344), 1, - anon_sym_RPAREN, - STATE(2279), 1, - aux_sym_macro_definition_repeat1, - STATE(3390), 1, - sym_macro_rule, - STATE(3661), 1, - sym_token_tree_pattern, - STATE(2354), 2, - sym_line_comment, - sym_block_comment, - [73427] = 10, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5294), 1, - anon_sym_LPAREN, - ACTIONS(5298), 1, - anon_sym_LBRACK, - ACTIONS(5300), 1, + ACTIONS(4358), 1, anon_sym_LBRACE, - ACTIONS(5344), 1, - anon_sym_RBRACK, - STATE(2279), 1, - aux_sym_macro_definition_repeat1, - STATE(3391), 1, - sym_macro_rule, - STATE(3661), 1, - sym_token_tree_pattern, - STATE(2355), 2, + ACTIONS(4702), 1, + anon_sym_LT2, + ACTIONS(5339), 1, + anon_sym_STAR, + STATE(3001), 1, + sym_use_list, + STATE(3794), 1, + sym_type_arguments, + ACTIONS(5337), 2, + sym_identifier, + sym_super, + STATE(2362), 2, sym_line_comment, sym_block_comment, - [73459] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [73929] = 8, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4666), 1, - anon_sym_DOT_DOT, - ACTIONS(5348), 1, - anon_sym_COLON, - ACTIONS(5350), 1, - anon_sym_COLON_COLON, - ACTIONS(4668), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(5346), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2356), 2, - sym_line_comment, - sym_block_comment, - [73487] = 8, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4666), 1, + ACTIONS(4696), 1, anon_sym_DOT_DOT, - ACTIONS(5348), 1, + ACTIONS(5343), 1, anon_sym_COLON, - ACTIONS(5352), 1, - anon_sym_COLON_COLON, - ACTIONS(4668), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(5346), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2357), 2, - sym_line_comment, - sym_block_comment, - [73515] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4666), 1, - anon_sym_DOT_DOT, - ACTIONS(5352), 1, + ACTIONS(5345), 1, anon_sym_COLON_COLON, - ACTIONS(4668), 2, + ACTIONS(4698), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(2358), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3475), 3, + ACTIONS(5341), 2, anon_sym_RPAREN, - anon_sym_PLUS, anon_sym_COMMA, - [73541] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4666), 1, - anon_sym_DOT_DOT, - ACTIONS(5350), 1, - anon_sym_COLON_COLON, - ACTIONS(4668), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2359), 2, + STATE(2363), 2, sym_line_comment, sym_block_comment, - ACTIONS(3475), 3, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, - [73567] = 10, + [73957] = 10, 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, - ACTIONS(407), 1, + ACTIONS(348), 1, anon_sym_LBRACE, - ACTIONS(3448), 1, + ACTIONS(3474), 1, anon_sym_SQUOTE, - ACTIONS(5354), 1, + ACTIONS(5347), 1, anon_sym_move, - STATE(220), 1, + STATE(245), 1, sym_closure_parameters, - STATE(1811), 1, + STATE(1532), 1, sym_block, - STATE(3779), 1, + STATE(3750), 1, sym_label, - STATE(2360), 2, + STATE(2364), 2, sym_line_comment, sym_block_comment, - [73599] = 10, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [73989] = 8, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5065), 1, - anon_sym_LPAREN, - ACTIONS(5071), 1, - anon_sym_where, - ACTIONS(5131), 1, - anon_sym_LBRACE, - ACTIONS(5356), 1, - anon_sym_SEMI, - STATE(692), 1, - sym_field_declaration_list, - STATE(3061), 1, - sym_ordered_field_declaration_list, - STATE(3247), 1, - sym_where_clause, - STATE(2361), 2, - sym_line_comment, - sym_block_comment, - [73631] = 10, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5294), 1, + ACTIONS(5098), 1, anon_sym_LPAREN, - ACTIONS(5298), 1, - anon_sym_LBRACK, - ACTIONS(5300), 1, + ACTIONS(5154), 1, anon_sym_LBRACE, - ACTIONS(5358), 1, - anon_sym_RPAREN, - STATE(2378), 1, - aux_sym_macro_definition_repeat1, - STATE(3427), 1, - sym_macro_rule, - STATE(3661), 1, - sym_token_tree_pattern, - STATE(2362), 2, + ACTIONS(5351), 1, + anon_sym_EQ, + ACTIONS(5349), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(2365), 2, sym_line_comment, sym_block_comment, - [73663] = 10, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5065), 1, - anon_sym_LPAREN, - ACTIONS(5067), 1, - anon_sym_LBRACE, - ACTIONS(5071), 1, - anon_sym_where, - ACTIONS(5360), 1, - anon_sym_SEMI, - STATE(1202), 1, + STATE(3161), 2, sym_field_declaration_list, - STATE(2943), 1, sym_ordered_field_declaration_list, - STATE(3230), 1, - sym_where_clause, - STATE(2363), 2, - sym_line_comment, - sym_block_comment, - [73695] = 10, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [74017] = 10, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5294), 1, + ACTIONS(5321), 1, anon_sym_LPAREN, - ACTIONS(5298), 1, + ACTIONS(5325), 1, anon_sym_LBRACK, - ACTIONS(5300), 1, + ACTIONS(5327), 1, anon_sym_LBRACE, - ACTIONS(5358), 1, - anon_sym_RBRACK, - STATE(2380), 1, + ACTIONS(5353), 1, + anon_sym_RBRACE, + STATE(2369), 1, aux_sym_macro_definition_repeat1, - STATE(3436), 1, + STATE(3460), 1, sym_macro_rule, - STATE(3661), 1, + STATE(3801), 1, sym_token_tree_pattern, - STATE(2364), 2, + STATE(2366), 2, sym_line_comment, sym_block_comment, - [73727] = 10, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [74049] = 10, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5294), 1, + ACTIONS(5321), 1, anon_sym_LPAREN, - ACTIONS(5298), 1, + ACTIONS(5325), 1, anon_sym_LBRACK, - ACTIONS(5300), 1, + ACTIONS(5327), 1, anon_sym_LBRACE, - ACTIONS(5362), 1, + ACTIONS(5355), 1, anon_sym_RBRACE, - STATE(2382), 1, + STATE(2370), 1, aux_sym_macro_definition_repeat1, - STATE(3438), 1, + STATE(3469), 1, sym_macro_rule, - STATE(3661), 1, + STATE(3801), 1, sym_token_tree_pattern, - STATE(2365), 2, - sym_line_comment, - sym_block_comment, - [73759] = 10, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5065), 1, - anon_sym_LPAREN, - ACTIONS(5067), 1, - anon_sym_LBRACE, - ACTIONS(5071), 1, - anon_sym_where, - ACTIONS(5364), 1, - anon_sym_SEMI, - STATE(1405), 1, - sym_field_declaration_list, - STATE(2899), 1, - sym_ordered_field_declaration_list, - STATE(3206), 1, - sym_where_clause, - STATE(2366), 2, - sym_line_comment, - sym_block_comment, - [73791] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4316), 1, - anon_sym_LBRACE, - ACTIONS(4672), 1, - anon_sym_LT2, - ACTIONS(5308), 1, - anon_sym_STAR, - STATE(3139), 1, - sym_use_list, - STATE(3591), 1, - sym_type_arguments, - ACTIONS(5306), 2, - sym_identifier, - sym_super, STATE(2367), 2, sym_line_comment, sym_block_comment, - [73821] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5065), 1, - anon_sym_LPAREN, - ACTIONS(5067), 1, - anon_sym_LBRACE, - ACTIONS(5368), 1, - anon_sym_EQ, - ACTIONS(5366), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(2368), 2, - sym_line_comment, - sym_block_comment, - STATE(3177), 2, - sym_field_declaration_list, - sym_ordered_field_declaration_list, - [73849] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [74081] = 10, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5192), 1, - sym_identifier, - ACTIONS(5196), 1, - anon_sym_DOT_DOT, - ACTIONS(5200), 1, - anon_sym_ref, - ACTIONS(5202), 1, - sym_mutable_specifier, - ACTIONS(5370), 1, - anon_sym_RBRACE, - STATE(2369), 2, - sym_line_comment, - sym_block_comment, - STATE(3266), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [73879] = 10, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5065), 1, + ACTIONS(5098), 1, anon_sym_LPAREN, - ACTIONS(5071), 1, + ACTIONS(5104), 1, anon_sym_where, - ACTIONS(5131), 1, + ACTIONS(5154), 1, anon_sym_LBRACE, - ACTIONS(5372), 1, + ACTIONS(5357), 1, anon_sym_SEMI, - STATE(602), 1, + STATE(1349), 1, sym_field_declaration_list, - STATE(2949), 1, + STATE(2925), 1, sym_ordered_field_declaration_list, - STATE(3245), 1, + STATE(3228), 1, sym_where_clause, - STATE(2370), 2, + STATE(2368), 2, sym_line_comment, sym_block_comment, - [73911] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [74113] = 10, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5192), 1, - sym_identifier, - ACTIONS(5196), 1, - anon_sym_DOT_DOT, - ACTIONS(5200), 1, - anon_sym_ref, - ACTIONS(5202), 1, - sym_mutable_specifier, - ACTIONS(5374), 1, + ACTIONS(5321), 1, + anon_sym_LPAREN, + ACTIONS(5325), 1, + anon_sym_LBRACK, + ACTIONS(5327), 1, + anon_sym_LBRACE, + ACTIONS(5359), 1, anon_sym_RBRACE, - STATE(2371), 2, + STATE(2263), 1, + aux_sym_macro_definition_repeat1, + STATE(3421), 1, + sym_macro_rule, + STATE(3801), 1, + sym_token_tree_pattern, + STATE(2369), 2, sym_line_comment, sym_block_comment, - STATE(3266), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [73941] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [74145] = 10, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5376), 1, - anon_sym_trait, - STATE(2372), 2, + ACTIONS(5321), 1, + anon_sym_LPAREN, + ACTIONS(5325), 1, + anon_sym_LBRACK, + ACTIONS(5327), 1, + anon_sym_LBRACE, + ACTIONS(5361), 1, + anon_sym_RBRACE, + STATE(2263), 1, + aux_sym_macro_definition_repeat1, + STATE(3425), 1, + sym_macro_rule, + STATE(3801), 1, + sym_token_tree_pattern, + STATE(2370), 2, sym_line_comment, sym_block_comment, - ACTIONS(3566), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [73963] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [74177] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5378), 1, - sym_identifier, - STATE(2373), 2, + STATE(2371), 2, sym_line_comment, sym_block_comment, - ACTIONS(4943), 6, + ACTIONS(3574), 7, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [73985] = 10, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_safe, + [74197] = 10, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4865), 1, - anon_sym_COLON_COLON, - ACTIONS(5332), 1, + ACTIONS(5098), 1, anon_sym_LPAREN, - ACTIONS(5334), 1, - anon_sym_LBRACK, - ACTIONS(5338), 1, + ACTIONS(5104), 1, + anon_sym_where, + ACTIONS(5154), 1, anon_sym_LBRACE, - ACTIONS(5380), 1, - anon_sym_RBRACK, - ACTIONS(5382), 1, - anon_sym_EQ, - STATE(3595), 1, - sym_delim_token_tree, - STATE(2374), 2, + ACTIONS(5363), 1, + anon_sym_SEMI, + STATE(1140), 1, + sym_field_declaration_list, + STATE(2968), 1, + sym_ordered_field_declaration_list, + STATE(3518), 1, + sym_where_clause, + STATE(2372), 2, sym_line_comment, sym_block_comment, - [74017] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [74229] = 10, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5192), 1, - sym_identifier, - ACTIONS(5196), 1, - anon_sym_DOT_DOT, - ACTIONS(5200), 1, - anon_sym_ref, - ACTIONS(5202), 1, - sym_mutable_specifier, - ACTIONS(5384), 1, - anon_sym_RBRACE, - STATE(2375), 2, - sym_line_comment, - sym_block_comment, - STATE(3266), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [74047] = 10, - ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5386), 1, - aux_sym_line_comment_token1, - ACTIONS(5388), 1, - aux_sym_line_comment_token3, - ACTIONS(5390), 1, - anon_sym_BANG2, - ACTIONS(5392), 1, - anon_sym_SLASH2, - STATE(3567), 1, - sym__inner_line_doc_comment_marker, - STATE(3677), 1, - sym__line_doc_comment_marker, - STATE(3789), 1, - sym__outer_line_doc_comment_marker, - STATE(2376), 2, + ACTIONS(5321), 1, + anon_sym_LPAREN, + ACTIONS(5325), 1, + anon_sym_LBRACK, + ACTIONS(5327), 1, + anon_sym_LBRACE, + ACTIONS(5365), 1, + anon_sym_RPAREN, + STATE(2383), 1, + aux_sym_macro_definition_repeat1, + STATE(3236), 1, + sym_macro_rule, + STATE(3801), 1, + sym_token_tree_pattern, + STATE(2373), 2, sym_line_comment, sym_block_comment, - [74079] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [74261] = 10, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4666), 1, - anon_sym_DOT_DOT, - ACTIONS(5394), 1, - anon_sym_COLON_COLON, - ACTIONS(4668), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2377), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3475), 3, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_PLUS, - [74105] = 10, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5294), 1, + ACTIONS(5321), 1, anon_sym_LPAREN, - ACTIONS(5298), 1, + ACTIONS(5325), 1, anon_sym_LBRACK, - ACTIONS(5300), 1, + ACTIONS(5327), 1, anon_sym_LBRACE, - ACTIONS(5396), 1, - anon_sym_RPAREN, - STATE(2279), 1, + ACTIONS(5365), 1, + anon_sym_RBRACK, + STATE(2414), 1, aux_sym_macro_definition_repeat1, - STATE(3295), 1, + STATE(3277), 1, sym_macro_rule, - STATE(3661), 1, + STATE(3801), 1, sym_token_tree_pattern, - STATE(2378), 2, + STATE(2374), 2, sym_line_comment, sym_block_comment, - [74137] = 10, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [74293] = 10, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5294), 1, + ACTIONS(5321), 1, anon_sym_LPAREN, - ACTIONS(5298), 1, + ACTIONS(5325), 1, anon_sym_LBRACK, - ACTIONS(5300), 1, + ACTIONS(5327), 1, anon_sym_LBRACE, - ACTIONS(5398), 1, + ACTIONS(5367), 1, anon_sym_RBRACE, - STATE(2341), 1, + STATE(2385), 1, aux_sym_macro_definition_repeat1, - STATE(3485), 1, + STATE(3306), 1, sym_macro_rule, - STATE(3661), 1, + STATE(3801), 1, sym_token_tree_pattern, - STATE(2379), 2, + STATE(2375), 2, sym_line_comment, sym_block_comment, - [74169] = 10, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [74325] = 10, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5294), 1, + ACTIONS(5321), 1, anon_sym_LPAREN, - ACTIONS(5298), 1, + ACTIONS(5323), 1, + anon_sym_RBRACK, + ACTIONS(5325), 1, anon_sym_LBRACK, - ACTIONS(5300), 1, + ACTIONS(5327), 1, anon_sym_LBRACE, - ACTIONS(5396), 1, - anon_sym_RBRACK, - STATE(2279), 1, + STATE(2387), 1, aux_sym_macro_definition_repeat1, - STATE(3363), 1, + STATE(3381), 1, sym_macro_rule, - STATE(3661), 1, + STATE(3801), 1, sym_token_tree_pattern, - STATE(2380), 2, + STATE(2376), 2, sym_line_comment, sym_block_comment, - [74201] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [74357] = 9, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5192), 1, - sym_identifier, ACTIONS(5196), 1, - anon_sym_DOT_DOT, + sym_identifier, ACTIONS(5200), 1, + anon_sym_DOT_DOT, + ACTIONS(5204), 1, anon_sym_ref, - ACTIONS(5202), 1, + ACTIONS(5206), 1, sym_mutable_specifier, - ACTIONS(5400), 1, + ACTIONS(5369), 1, anon_sym_RBRACE, - STATE(2381), 2, + STATE(2377), 2, sym_line_comment, sym_block_comment, - STATE(3266), 2, + STATE(3346), 2, sym_field_pattern, sym_remaining_field_pattern, - [74231] = 10, - ACTIONS(103), 1, + [74387] = 9, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(5196), 1, + sym_identifier, + ACTIONS(5200), 1, + anon_sym_DOT_DOT, + ACTIONS(5204), 1, + anon_sym_ref, + ACTIONS(5206), 1, + sym_mutable_specifier, + ACTIONS(5371), 1, + anon_sym_RBRACE, + STATE(2378), 2, + sym_line_comment, + sym_block_comment, + STATE(3346), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [74417] = 10, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5294), 1, + ACTIONS(5321), 1, anon_sym_LPAREN, - ACTIONS(5298), 1, + ACTIONS(5325), 1, anon_sym_LBRACK, - ACTIONS(5300), 1, + ACTIONS(5327), 1, anon_sym_LBRACE, - ACTIONS(5402), 1, + ACTIONS(5373), 1, anon_sym_RBRACE, - STATE(2279), 1, + STATE(2388), 1, aux_sym_macro_definition_repeat1, - STATE(3371), 1, + STATE(3412), 1, sym_macro_rule, - STATE(3661), 1, + STATE(3801), 1, sym_token_tree_pattern, - STATE(2382), 2, + STATE(2379), 2, sym_line_comment, sym_block_comment, - [74263] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [74449] = 9, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5192), 1, - sym_identifier, ACTIONS(5196), 1, + sym_identifier, + ACTIONS(5200), 1, anon_sym_DOT_DOT, + ACTIONS(5204), 1, + anon_sym_ref, + ACTIONS(5206), 1, + sym_mutable_specifier, + ACTIONS(5375), 1, + anon_sym_RBRACE, + STATE(2380), 2, + sym_line_comment, + sym_block_comment, + STATE(3346), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [74479] = 9, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(5196), 1, + sym_identifier, ACTIONS(5200), 1, + anon_sym_DOT_DOT, + ACTIONS(5204), 1, anon_sym_ref, - ACTIONS(5202), 1, + ACTIONS(5206), 1, sym_mutable_specifier, - ACTIONS(5404), 1, + ACTIONS(5377), 1, anon_sym_RBRACE, - STATE(2383), 2, + STATE(2381), 2, sym_line_comment, sym_block_comment, - STATE(3266), 2, + STATE(3346), 2, sym_field_pattern, sym_remaining_field_pattern, - [74293] = 5, - ACTIONS(103), 1, + [74509] = 10, + ACTIONS(27), 1, + anon_sym_PIPE, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(348), 1, + anon_sym_LBRACE, + ACTIONS(3474), 1, + anon_sym_SQUOTE, + ACTIONS(5379), 1, + anon_sym_move, + STATE(263), 1, + sym_closure_parameters, + STATE(1532), 1, + sym_block, + STATE(3750), 1, + sym_label, + STATE(2382), 2, + sym_line_comment, + sym_block_comment, + [74541] = 10, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5406), 1, - anon_sym_trait, - STATE(2384), 2, + ACTIONS(5321), 1, + anon_sym_LPAREN, + ACTIONS(5325), 1, + anon_sym_LBRACK, + ACTIONS(5327), 1, + anon_sym_LBRACE, + ACTIONS(5381), 1, + anon_sym_RPAREN, + STATE(2263), 1, + aux_sym_macro_definition_repeat1, + STATE(3406), 1, + sym_macro_rule, + STATE(3801), 1, + sym_token_tree_pattern, + STATE(2383), 2, sym_line_comment, sym_block_comment, - ACTIONS(3566), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [74315] = 10, - ACTIONS(103), 1, + [74573] = 10, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(4939), 1, + anon_sym_COLON_COLON, + ACTIONS(5383), 1, + anon_sym_LPAREN, + ACTIONS(5385), 1, + anon_sym_LBRACK, + ACTIONS(5387), 1, + anon_sym_RBRACK, + ACTIONS(5389), 1, + anon_sym_LBRACE, + ACTIONS(5391), 1, + anon_sym_EQ, + STATE(3845), 1, + sym_delim_token_tree, + STATE(2384), 2, + sym_line_comment, + sym_block_comment, + [74605] = 10, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5294), 1, + ACTIONS(5321), 1, anon_sym_LPAREN, - ACTIONS(5298), 1, + ACTIONS(5325), 1, anon_sym_LBRACK, - ACTIONS(5300), 1, + ACTIONS(5327), 1, anon_sym_LBRACE, - ACTIONS(5408), 1, + ACTIONS(5393), 1, anon_sym_RBRACE, - STATE(2279), 1, + STATE(2263), 1, aux_sym_macro_definition_repeat1, - STATE(3334), 1, + STATE(3414), 1, sym_macro_rule, - STATE(3661), 1, + STATE(3801), 1, sym_token_tree_pattern, STATE(2385), 2, sym_line_comment, sym_block_comment, - [74347] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [74637] = 10, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5410), 1, - sym_identifier, + ACTIONS(5321), 1, + anon_sym_LPAREN, + ACTIONS(5325), 1, + anon_sym_LBRACK, + ACTIONS(5327), 1, + anon_sym_LBRACE, + ACTIONS(5395), 1, + anon_sym_RPAREN, + STATE(2263), 1, + aux_sym_macro_definition_repeat1, + STATE(3419), 1, + sym_macro_rule, + STATE(3801), 1, + sym_token_tree_pattern, STATE(2386), 2, sym_line_comment, sym_block_comment, - ACTIONS(4943), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [74369] = 10, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [74669] = 10, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4875), 1, - anon_sym_COLON_COLON, - ACTIONS(5332), 1, + ACTIONS(5321), 1, anon_sym_LPAREN, - ACTIONS(5334), 1, + ACTIONS(5325), 1, anon_sym_LBRACK, - ACTIONS(5338), 1, + ACTIONS(5327), 1, anon_sym_LBRACE, - ACTIONS(5380), 1, + ACTIONS(5395), 1, anon_sym_RBRACK, - ACTIONS(5382), 1, - anon_sym_EQ, - STATE(3595), 1, - sym_delim_token_tree, + STATE(2263), 1, + aux_sym_macro_definition_repeat1, + STATE(3422), 1, + sym_macro_rule, + STATE(3801), 1, + sym_token_tree_pattern, STATE(2387), 2, sym_line_comment, sym_block_comment, - [74401] = 10, + [74701] = 10, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(5321), 1, + anon_sym_LPAREN, + ACTIONS(5325), 1, + anon_sym_LBRACK, + ACTIONS(5327), 1, + anon_sym_LBRACE, + ACTIONS(5397), 1, + anon_sym_RBRACE, + STATE(2263), 1, + aux_sym_macro_definition_repeat1, + STATE(3428), 1, + sym_macro_rule, + STATE(3801), 1, + sym_token_tree_pattern, + STATE(2388), 2, + sym_line_comment, + sym_block_comment, + [74733] = 10, 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, - ACTIONS(343), 1, + ACTIONS(1414), 1, anon_sym_LBRACE, - ACTIONS(3448), 1, + ACTIONS(3474), 1, anon_sym_SQUOTE, - ACTIONS(5412), 1, + ACTIONS(5399), 1, anon_sym_move, - STATE(215), 1, + STATE(251), 1, sym_closure_parameters, - STATE(1463), 1, + STATE(485), 1, sym_block, - STATE(3714), 1, + STATE(3811), 1, sym_label, - STATE(2388), 2, - sym_line_comment, - sym_block_comment, - [74433] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4666), 1, - anon_sym_DOT_DOT, - ACTIONS(5416), 1, - anon_sym_COLON, - ACTIONS(5418), 1, - anon_sym_COLON_COLON, - ACTIONS(4668), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(5414), 2, - anon_sym_RPAREN, - anon_sym_COMMA, STATE(2389), 2, sym_line_comment, sym_block_comment, - [74461] = 10, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [74765] = 10, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5294), 1, - anon_sym_LPAREN, - ACTIONS(5298), 1, - anon_sym_LBRACK, - ACTIONS(5300), 1, + ACTIONS(412), 1, anon_sym_LBRACE, - ACTIONS(5420), 1, - anon_sym_RPAREN, - STATE(2396), 1, - aux_sym_macro_definition_repeat1, - STATE(3480), 1, - sym_macro_rule, - STATE(3661), 1, - sym_token_tree_pattern, + ACTIONS(3474), 1, + anon_sym_SQUOTE, + ACTIONS(5401), 1, + anon_sym_move, + STATE(227), 1, + sym_closure_parameters, + STATE(1756), 1, + sym_block, + STATE(3812), 1, + sym_label, STATE(2390), 2, sym_line_comment, sym_block_comment, - [74493] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [74797] = 10, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5422), 1, - sym_identifier, + ACTIONS(348), 1, + anon_sym_LBRACE, + ACTIONS(3474), 1, + anon_sym_SQUOTE, + ACTIONS(5403), 1, + anon_sym_move, + STATE(251), 1, + sym_closure_parameters, + STATE(1532), 1, + sym_block, + STATE(3750), 1, + sym_label, STATE(2391), 2, sym_line_comment, sym_block_comment, - ACTIONS(4943), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [74515] = 9, - ACTIONS(103), 1, + [74829] = 10, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5192), 1, - sym_identifier, - ACTIONS(5196), 1, - anon_sym_DOT_DOT, - ACTIONS(5200), 1, - anon_sym_ref, - ACTIONS(5202), 1, - sym_mutable_specifier, - ACTIONS(5424), 1, - anon_sym_RBRACE, + ACTIONS(5405), 1, + aux_sym_line_comment_token1, + ACTIONS(5407), 1, + aux_sym_line_comment_token3, + ACTIONS(5409), 1, + anon_sym_BANG2, + ACTIONS(5411), 1, + anon_sym_SLASH2, + STATE(3667), 1, + sym__line_doc_comment_marker, + STATE(3682), 1, + sym__inner_line_doc_comment_marker, + STATE(3779), 1, + sym__outer_line_doc_comment_marker, STATE(2392), 2, sym_line_comment, sym_block_comment, - STATE(3266), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [74545] = 10, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [74861] = 10, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5294), 1, + ACTIONS(5098), 1, anon_sym_LPAREN, - ACTIONS(5298), 1, - anon_sym_LBRACK, - ACTIONS(5300), 1, + ACTIONS(5100), 1, anon_sym_LBRACE, - ACTIONS(5420), 1, - anon_sym_RBRACK, - STATE(2399), 1, - aux_sym_macro_definition_repeat1, - STATE(3494), 1, - sym_macro_rule, - STATE(3661), 1, - sym_token_tree_pattern, + ACTIONS(5104), 1, + anon_sym_where, + ACTIONS(5413), 1, + anon_sym_SEMI, + STATE(689), 1, + sym_field_declaration_list, + STATE(3097), 1, + sym_ordered_field_declaration_list, + STATE(3254), 1, + sym_where_clause, STATE(2393), 2, sym_line_comment, sym_block_comment, - [74577] = 10, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [74893] = 10, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5294), 1, + ACTIONS(5321), 1, anon_sym_LPAREN, - ACTIONS(5298), 1, + ACTIONS(5325), 1, anon_sym_LBRACK, - ACTIONS(5300), 1, + ACTIONS(5327), 1, anon_sym_LBRACE, - ACTIONS(5426), 1, - anon_sym_RBRACE, - STATE(2395), 1, + ACTIONS(5415), 1, + anon_sym_RPAREN, + STATE(2399), 1, aux_sym_macro_definition_repeat1, - STATE(3329), 1, + STATE(3350), 1, sym_macro_rule, - STATE(3661), 1, + STATE(3801), 1, sym_token_tree_pattern, STATE(2394), 2, sym_line_comment, sym_block_comment, - [74609] = 10, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [74925] = 10, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5294), 1, + ACTIONS(5321), 1, anon_sym_LPAREN, - ACTIONS(5298), 1, + ACTIONS(5325), 1, anon_sym_LBRACK, - ACTIONS(5300), 1, + ACTIONS(5327), 1, anon_sym_LBRACE, - ACTIONS(5428), 1, - anon_sym_RBRACE, - STATE(2279), 1, + ACTIONS(5415), 1, + anon_sym_RBRACK, + STATE(2400), 1, aux_sym_macro_definition_repeat1, - STATE(3400), 1, + STATE(3351), 1, sym_macro_rule, - STATE(3661), 1, + STATE(3801), 1, sym_token_tree_pattern, STATE(2395), 2, sym_line_comment, sym_block_comment, - [74641] = 10, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [74957] = 10, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5294), 1, + ACTIONS(5321), 1, anon_sym_LPAREN, - ACTIONS(5298), 1, + ACTIONS(5325), 1, anon_sym_LBRACK, - ACTIONS(5300), 1, + ACTIONS(5327), 1, anon_sym_LBRACE, - ACTIONS(5430), 1, + ACTIONS(5417), 1, anon_sym_RPAREN, - STATE(2279), 1, + STATE(2401), 1, aux_sym_macro_definition_repeat1, - STATE(3382), 1, + STATE(3352), 1, sym_macro_rule, - STATE(3661), 1, + STATE(3801), 1, sym_token_tree_pattern, STATE(2396), 2, sym_line_comment, sym_block_comment, - [74673] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [74989] = 10, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5432), 1, - sym_identifier, + ACTIONS(5321), 1, + anon_sym_LPAREN, + ACTIONS(5325), 1, + anon_sym_LBRACK, + ACTIONS(5327), 1, + anon_sym_LBRACE, + ACTIONS(5417), 1, + anon_sym_RBRACK, + STATE(2402), 1, + aux_sym_macro_definition_repeat1, + STATE(3353), 1, + sym_macro_rule, + STATE(3801), 1, + sym_token_tree_pattern, STATE(2397), 2, sym_line_comment, sym_block_comment, - ACTIONS(4943), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [74695] = 10, - ACTIONS(27), 1, - anon_sym_PIPE, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [75021] = 9, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3448), 1, - anon_sym_SQUOTE, - ACTIONS(5434), 1, - anon_sym_move, - STATE(224), 1, - sym_closure_parameters, - STATE(1463), 1, - sym_block, - STATE(3714), 1, - sym_label, + ACTIONS(5196), 1, + sym_identifier, + ACTIONS(5200), 1, + anon_sym_DOT_DOT, + ACTIONS(5204), 1, + anon_sym_ref, + ACTIONS(5206), 1, + sym_mutable_specifier, + ACTIONS(5419), 1, + anon_sym_RBRACE, STATE(2398), 2, sym_line_comment, sym_block_comment, - [74727] = 10, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + STATE(3346), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [75051] = 10, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5294), 1, + ACTIONS(5321), 1, anon_sym_LPAREN, - ACTIONS(5298), 1, + ACTIONS(5325), 1, anon_sym_LBRACK, - ACTIONS(5300), 1, + ACTIONS(5327), 1, anon_sym_LBRACE, - ACTIONS(5430), 1, - anon_sym_RBRACK, - STATE(2279), 1, + ACTIONS(5421), 1, + anon_sym_RPAREN, + STATE(2263), 1, aux_sym_macro_definition_repeat1, - STATE(3387), 1, + STATE(3376), 1, sym_macro_rule, - STATE(3661), 1, + STATE(3801), 1, sym_token_tree_pattern, STATE(2399), 2, sym_line_comment, sym_block_comment, - [74759] = 10, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [75083] = 10, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4779), 1, - anon_sym_COLON_COLON, - ACTIONS(5332), 1, + ACTIONS(5321), 1, anon_sym_LPAREN, - ACTIONS(5334), 1, + ACTIONS(5325), 1, anon_sym_LBRACK, - ACTIONS(5338), 1, + ACTIONS(5327), 1, anon_sym_LBRACE, - ACTIONS(5380), 1, + ACTIONS(5421), 1, anon_sym_RBRACK, - ACTIONS(5382), 1, - anon_sym_EQ, - STATE(3595), 1, - sym_delim_token_tree, + STATE(2263), 1, + aux_sym_macro_definition_repeat1, + STATE(3377), 1, + sym_macro_rule, + STATE(3801), 1, + sym_token_tree_pattern, STATE(2400), 2, sym_line_comment, sym_block_comment, - [74791] = 10, - ACTIONS(27), 1, - anon_sym_PIPE, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [75115] = 10, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, + ACTIONS(5321), 1, + anon_sym_LPAREN, + ACTIONS(5325), 1, + anon_sym_LBRACK, + ACTIONS(5327), 1, anon_sym_LBRACE, - ACTIONS(3448), 1, - anon_sym_SQUOTE, - ACTIONS(5436), 1, - anon_sym_move, - STATE(255), 1, - sym_closure_parameters, - STATE(1463), 1, - sym_block, - STATE(3714), 1, - sym_label, + ACTIONS(5423), 1, + anon_sym_RPAREN, + STATE(2263), 1, + aux_sym_macro_definition_repeat1, + STATE(3378), 1, + sym_macro_rule, + STATE(3801), 1, + sym_token_tree_pattern, STATE(2401), 2, sym_line_comment, sym_block_comment, - [74823] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [75147] = 10, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5438), 1, - anon_sym_DASH_GT, + ACTIONS(5321), 1, + anon_sym_LPAREN, + ACTIONS(5325), 1, + anon_sym_LBRACK, + ACTIONS(5327), 1, + anon_sym_LBRACE, + ACTIONS(5423), 1, + anon_sym_RBRACK, + STATE(2263), 1, + aux_sym_macro_definition_repeat1, + STATE(3379), 1, + sym_macro_rule, + STATE(3801), 1, + sym_token_tree_pattern, STATE(2402), 2, sym_line_comment, sym_block_comment, - ACTIONS(3770), 5, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_as, - [74844] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [75179] = 9, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4746), 1, - anon_sym_COLON_COLON, - ACTIONS(5127), 1, - anon_sym_for, + ACTIONS(5196), 1, + sym_identifier, + ACTIONS(5200), 1, + anon_sym_DOT_DOT, + ACTIONS(5204), 1, + anon_sym_ref, + ACTIONS(5206), 1, + sym_mutable_specifier, + ACTIONS(5425), 1, + anon_sym_RBRACE, STATE(2403), 2, sym_line_comment, sym_block_comment, - ACTIONS(3475), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [74867] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + STATE(3346), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [75209] = 8, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5440), 1, - anon_sym_DASH_GT, + ACTIONS(4696), 1, + anon_sym_DOT_DOT, + ACTIONS(5429), 1, + anon_sym_COLON, + ACTIONS(5431), 1, + anon_sym_COLON_COLON, + ACTIONS(4698), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(5427), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(2404), 2, sym_line_comment, sym_block_comment, - ACTIONS(3790), 5, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_as, - [74888] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [75237] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5442), 1, - anon_sym_DASH_GT, + ACTIONS(4696), 1, + anon_sym_DOT_DOT, + ACTIONS(5431), 1, + anon_sym_COLON_COLON, + ACTIONS(4698), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, STATE(2405), 2, sym_line_comment, sym_block_comment, - ACTIONS(3752), 5, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_as, - [74909] = 9, - ACTIONS(19), 1, - anon_sym_LBRACE, - ACTIONS(27), 1, - anon_sym_PIPE, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3594), 3, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + [75263] = 10, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3448), 1, - anon_sym_SQUOTE, - STATE(232), 1, - sym_closure_parameters, - STATE(412), 1, - sym_block, - STATE(3621), 1, - sym_label, + ACTIONS(4921), 1, + anon_sym_COLON_COLON, + ACTIONS(5383), 1, + anon_sym_LPAREN, + ACTIONS(5385), 1, + anon_sym_LBRACK, + ACTIONS(5389), 1, + anon_sym_LBRACE, + ACTIONS(5433), 1, + anon_sym_RBRACK, + ACTIONS(5435), 1, + anon_sym_EQ, + STATE(3826), 1, + sym_delim_token_tree, STATE(2406), 2, sym_line_comment, sym_block_comment, - [74938] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [75295] = 10, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5446), 1, - anon_sym_COMMA, - STATE(2407), 3, - sym_line_comment, - sym_block_comment, - aux_sym_where_clause_repeat1, - ACTIONS(5444), 4, - anon_sym_SEMI, + ACTIONS(4931), 1, + anon_sym_COLON_COLON, + ACTIONS(5383), 1, + anon_sym_LPAREN, + ACTIONS(5385), 1, + anon_sym_LBRACK, + ACTIONS(5387), 1, + anon_sym_RBRACK, + ACTIONS(5389), 1, anon_sym_LBRACE, + ACTIONS(5391), 1, anon_sym_EQ, - anon_sym_SQUOTE, - [74959] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + STATE(3845), 1, + sym_delim_token_tree, + STATE(2407), 2, + sym_line_comment, + sym_block_comment, + [75327] = 8, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4813), 1, + ACTIONS(4696), 1, anon_sym_DOT_DOT, + ACTIONS(5429), 1, + anon_sym_COLON, + ACTIONS(5437), 1, + anon_sym_COLON_COLON, + ACTIONS(4698), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(5427), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(2408), 2, sym_line_comment, sym_block_comment, - ACTIONS(4811), 5, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_if, - [74980] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [75355] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5449), 1, - anon_sym_DASH_GT, + ACTIONS(4696), 1, + anon_sym_DOT_DOT, + ACTIONS(5437), 1, + anon_sym_COLON_COLON, + ACTIONS(4698), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, STATE(2409), 2, sym_line_comment, sym_block_comment, - ACTIONS(3746), 5, - anon_sym_COLON, + ACTIONS(3594), 3, + anon_sym_RPAREN, anon_sym_PLUS, - anon_sym_GT, anon_sym_COMMA, - anon_sym_as, - [75001] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [75381] = 10, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5071), 1, - anon_sym_where, - ACTIONS(5093), 1, - anon_sym_LBRACE, - ACTIONS(5164), 1, - anon_sym_COLON, - STATE(592), 1, - sym_declaration_list, - STATE(2620), 1, - sym_trait_bounds, - STATE(3456), 1, - sym_where_clause, + ACTIONS(5439), 1, + sym_identifier, + ACTIONS(5441), 1, + anon_sym_async, + ACTIONS(5443), 1, + anon_sym_ref, + ACTIONS(5445), 1, + sym_mutable_specifier, + ACTIONS(5447), 1, + anon_sym_move, + STATE(251), 1, + sym_closure_parameters, STATE(2410), 2, sym_line_comment, sym_block_comment, - [75030] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [75413] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3210), 1, - anon_sym_PLUS, - ACTIONS(5164), 1, - anon_sym_COLON, - ACTIONS(5451), 1, - anon_sym_GT, - ACTIONS(5453), 1, - anon_sym_COMMA, - STATE(2912), 1, - sym_trait_bounds, - STATE(2913), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(4696), 1, + anon_sym_DOT_DOT, + ACTIONS(5449), 1, + anon_sym_COLON_COLON, + ACTIONS(4698), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, STATE(2411), 2, sym_line_comment, sym_block_comment, - [75059] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3594), 3, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS, + [75439] = 10, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, - anon_sym_PLUS, - ACTIONS(5059), 1, + ACTIONS(4809), 1, + anon_sym_COLON_COLON, + ACTIONS(5383), 1, + anon_sym_LPAREN, + ACTIONS(5385), 1, + anon_sym_LBRACK, + ACTIONS(5387), 1, + anon_sym_RBRACK, + ACTIONS(5389), 1, anon_sym_LBRACE, - ACTIONS(5071), 1, - anon_sym_where, - ACTIONS(5455), 1, - anon_sym_SEMI, - STATE(1325), 1, - sym_declaration_list, - STATE(2975), 1, - sym_where_clause, + ACTIONS(5391), 1, + anon_sym_EQ, + STATE(3845), 1, + sym_delim_token_tree, STATE(2412), 2, sym_line_comment, sym_block_comment, - [75088] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [75471] = 10, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, - anon_sym_PLUS, - ACTIONS(5059), 1, + ACTIONS(5098), 1, + anon_sym_LPAREN, + ACTIONS(5100), 1, anon_sym_LBRACE, - ACTIONS(5071), 1, + ACTIONS(5104), 1, anon_sym_where, - ACTIONS(5457), 1, + ACTIONS(5451), 1, anon_sym_SEMI, - STATE(1328), 1, - sym_declaration_list, - STATE(2976), 1, + STATE(558), 1, + sym_field_declaration_list, + STATE(3095), 1, + sym_ordered_field_declaration_list, + STATE(3256), 1, sym_where_clause, STATE(2413), 2, sym_line_comment, sym_block_comment, - [75117] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [75503] = 10, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5071), 1, - anon_sym_where, - ACTIONS(5093), 1, + ACTIONS(5321), 1, + anon_sym_LPAREN, + ACTIONS(5325), 1, + anon_sym_LBRACK, + ACTIONS(5327), 1, anon_sym_LBRACE, - ACTIONS(5164), 1, - anon_sym_COLON, - STATE(716), 1, - sym_declaration_list, - STATE(2667), 1, - sym_trait_bounds, - STATE(3263), 1, - sym_where_clause, + ACTIONS(5381), 1, + anon_sym_RBRACK, + STATE(2263), 1, + aux_sym_macro_definition_repeat1, + STATE(3408), 1, + sym_macro_rule, + STATE(3801), 1, + sym_token_tree_pattern, STATE(2414), 2, sym_line_comment, sym_block_comment, - [75146] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [75535] = 9, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, + ACTIONS(3182), 1, anon_sym_PLUS, - ACTIONS(5059), 1, - anon_sym_LBRACE, - ACTIONS(5071), 1, + ACTIONS(5104), 1, anon_sym_where, - ACTIONS(5459), 1, + ACTIONS(5259), 1, + anon_sym_LBRACE, + ACTIONS(5453), 1, anon_sym_SEMI, - STATE(1346), 1, + STATE(646), 1, sym_declaration_list, - STATE(2979), 1, + STATE(2908), 1, sym_where_clause, STATE(2415), 2, sym_line_comment, sym_block_comment, - [75175] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [75564] = 9, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5069), 1, + ACTIONS(5102), 1, anon_sym_LT, - ACTIONS(5071), 1, + ACTIONS(5104), 1, anon_sym_where, - ACTIONS(5461), 1, + ACTIONS(5455), 1, anon_sym_LBRACE, - STATE(532), 1, + STATE(581), 1, sym_enum_variant_list, - STATE(2877), 1, + STATE(2762), 1, sym_type_parameters, - STATE(3442), 1, + STATE(3309), 1, sym_where_clause, STATE(2416), 2, sym_line_comment, sym_block_comment, - [75204] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [75593] = 9, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, - anon_sym_PLUS, - ACTIONS(5059), 1, + ACTIONS(5100), 1, anon_sym_LBRACE, - ACTIONS(5071), 1, + ACTIONS(5102), 1, + anon_sym_LT, + ACTIONS(5104), 1, anon_sym_where, - ACTIONS(5463), 1, - anon_sym_SEMI, - STATE(1349), 1, - sym_declaration_list, - STATE(2980), 1, + STATE(586), 1, + sym_field_declaration_list, + STATE(2805), 1, + sym_type_parameters, + STATE(3525), 1, sym_where_clause, STATE(2417), 2, sym_line_comment, sym_block_comment, - [75233] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [75622] = 9, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, + ACTIONS(3182), 1, anon_sym_PLUS, - ACTIONS(5059), 1, - anon_sym_LBRACE, - ACTIONS(5071), 1, + ACTIONS(5104), 1, anon_sym_where, - ACTIONS(5465), 1, + ACTIONS(5259), 1, + anon_sym_LBRACE, + ACTIONS(5457), 1, anon_sym_SEMI, - STATE(1351), 1, + STATE(722), 1, sym_declaration_list, - STATE(2983), 1, + STATE(3167), 1, sym_where_clause, STATE(2418), 2, sym_line_comment, sym_block_comment, - [75262] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [75651] = 9, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, + ACTIONS(3182), 1, anon_sym_PLUS, - ACTIONS(5059), 1, - anon_sym_LBRACE, - ACTIONS(5071), 1, + ACTIONS(5104), 1, anon_sym_where, - ACTIONS(5467), 1, + ACTIONS(5259), 1, + anon_sym_LBRACE, + ACTIONS(5459), 1, anon_sym_SEMI, - STATE(1356), 1, + STATE(603), 1, sym_declaration_list, - STATE(2984), 1, + STATE(2909), 1, sym_where_clause, STATE(2419), 2, sym_line_comment, sym_block_comment, - [75291] = 9, - ACTIONS(27), 1, - anon_sym_PIPE, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [75680] = 9, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, + ACTIONS(3182), 1, + anon_sym_PLUS, + ACTIONS(5104), 1, + anon_sym_where, + ACTIONS(5224), 1, anon_sym_LBRACE, - ACTIONS(3448), 1, - anon_sym_SQUOTE, - STATE(232), 1, - sym_closure_parameters, - STATE(1526), 1, - sym_block, - STATE(3714), 1, - sym_label, + ACTIONS(5461), 1, + anon_sym_SEMI, + STATE(1341), 1, + sym_declaration_list, + STATE(2922), 1, + sym_where_clause, STATE(2420), 2, sym_line_comment, sym_block_comment, - [75320] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [75709] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5069), 1, - anon_sym_LT, - ACTIONS(5071), 1, - anon_sym_where, - ACTIONS(5469), 1, - anon_sym_LBRACE, - STATE(1304), 1, - sym_enum_variant_list, - STATE(2638), 1, - sym_type_parameters, - STATE(3428), 1, - sym_where_clause, + ACTIONS(4851), 1, + anon_sym_DOT_DOT, STATE(2421), 2, sym_line_comment, sym_block_comment, - [75349] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4849), 5, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_if, + [75730] = 9, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, + ACTIONS(5104), 1, + anon_sym_where, + ACTIONS(5224), 1, anon_sym_LBRACE, - ACTIONS(3448), 1, - anon_sym_SQUOTE, - ACTIONS(5471), 1, - anon_sym_if, - STATE(3714), 1, - sym_label, - STATE(1441), 2, - sym_if_expression, - sym_block, + ACTIONS(5226), 1, + anon_sym_COLON, + STATE(1353), 1, + sym_declaration_list, + STATE(2702), 1, + sym_trait_bounds, + STATE(3230), 1, + sym_where_clause, STATE(2422), 2, sym_line_comment, sym_block_comment, - [75376] = 9, - ACTIONS(103), 1, + [75759] = 9, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(5104), 1, + anon_sym_where, + ACTIONS(5226), 1, + anon_sym_COLON, + ACTIONS(5463), 1, + anon_sym_SEMI, + ACTIONS(5465), 1, + anon_sym_EQ, + STATE(2927), 1, + sym_trait_bounds, + STATE(3235), 1, + sym_where_clause, + STATE(2423), 2, + sym_line_comment, + sym_block_comment, + [75788] = 9, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, + ACTIONS(3182), 1, anon_sym_PLUS, - ACTIONS(5059), 1, - anon_sym_LBRACE, - ACTIONS(5071), 1, + ACTIONS(5104), 1, anon_sym_where, - ACTIONS(5473), 1, + ACTIONS(5224), 1, + anon_sym_LBRACE, + ACTIONS(5467), 1, anon_sym_SEMI, - STATE(1309), 1, + STATE(1360), 1, sym_declaration_list, - STATE(3162), 1, + STATE(2928), 1, sym_where_clause, - STATE(2423), 2, + STATE(2424), 2, sym_line_comment, sym_block_comment, - [75405] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [75817] = 9, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5069), 1, + ACTIONS(5102), 1, anon_sym_LT, - ACTIONS(5071), 1, + ACTIONS(5104), 1, anon_sym_where, - ACTIONS(5131), 1, + ACTIONS(5469), 1, anon_sym_LBRACE, - STATE(537), 1, - sym_field_declaration_list, - STATE(2780), 1, + STATE(1364), 1, + sym_enum_variant_list, + STATE(2706), 1, sym_type_parameters, - STATE(3486), 1, + STATE(3360), 1, sym_where_clause, - STATE(2424), 2, + STATE(2425), 2, sym_line_comment, sym_block_comment, - [75434] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [75846] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5477), 1, + ACTIONS(5473), 1, anon_sym_COMMA, - STATE(2471), 1, + STATE(2512), 1, aux_sym_where_clause_repeat1, - STATE(2425), 2, + STATE(2426), 2, sym_line_comment, sym_block_comment, - ACTIONS(5475), 4, + ACTIONS(5471), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, anon_sym_SQUOTE, - [75457] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [75869] = 9, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3610), 2, - anon_sym_PLUS, - anon_sym_DASH_GT, - ACTIONS(4959), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(5479), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2426), 2, - sym_line_comment, - sym_block_comment, - [75480] = 9, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, - anon_sym_PLUS, - ACTIONS(5059), 1, - anon_sym_LBRACE, - ACTIONS(5071), 1, + ACTIONS(5102), 1, + anon_sym_LT, + ACTIONS(5104), 1, anon_sym_where, - ACTIONS(5482), 1, - anon_sym_SEMI, - STATE(1160), 1, - sym_declaration_list, - STATE(2929), 1, + ACTIONS(5154), 1, + anon_sym_LBRACE, + STATE(1369), 1, + sym_field_declaration_list, + STATE(2707), 1, + sym_type_parameters, + STATE(3395), 1, sym_where_clause, STATE(2427), 2, sym_line_comment, sym_block_comment, - [75509] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [75898] = 7, + ACTIONS(101), 1, + aux_sym_string_literal_token1, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, - anon_sym_PLUS, - ACTIONS(5059), 1, - anon_sym_LBRACE, - ACTIONS(5071), 1, - anon_sym_where, - ACTIONS(5484), 1, - anon_sym_SEMI, - STATE(1400), 1, - sym_declaration_list, - STATE(2992), 1, - sym_where_clause, + ACTIONS(5477), 1, + sym_crate, + STATE(2904), 1, + sym_string_literal, STATE(2428), 2, sym_line_comment, sym_block_comment, - [75538] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5475), 3, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_fn, + [75923] = 9, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, + ACTIONS(3182), 1, anon_sym_PLUS, - ACTIONS(5059), 1, - anon_sym_LBRACE, - ACTIONS(5071), 1, + ACTIONS(5104), 1, anon_sym_where, - ACTIONS(5486), 1, + ACTIONS(5259), 1, + anon_sym_LBRACE, + ACTIONS(5479), 1, anon_sym_SEMI, - STATE(1403), 1, + STATE(731), 1, sym_declaration_list, - STATE(2993), 1, + STATE(3179), 1, sym_where_clause, STATE(2429), 2, sym_line_comment, sym_block_comment, - [75567] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [75952] = 9, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, + ACTIONS(3182), 1, anon_sym_PLUS, - ACTIONS(5059), 1, - anon_sym_LBRACE, - ACTIONS(5071), 1, + ACTIONS(5104), 1, anon_sym_where, - ACTIONS(5488), 1, + ACTIONS(5259), 1, + anon_sym_LBRACE, + ACTIONS(5481), 1, anon_sym_SEMI, - STATE(1165), 1, + STATE(733), 1, sym_declaration_list, - STATE(2931), 1, + STATE(3181), 1, sym_where_clause, STATE(2430), 2, sym_line_comment, sym_block_comment, - [75596] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [75981] = 9, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, + ACTIONS(3192), 1, anon_sym_PLUS, - ACTIONS(5071), 1, - anon_sym_where, - ACTIONS(5093), 1, - anon_sym_LBRACE, - ACTIONS(5490), 1, - anon_sym_SEMI, - STATE(628), 1, - sym_declaration_list, - STATE(2888), 1, - sym_where_clause, + ACTIONS(5226), 1, + anon_sym_COLON, + ACTIONS(5483), 1, + anon_sym_GT, + ACTIONS(5485), 1, + anon_sym_COMMA, + STATE(2938), 1, + sym_trait_bounds, + STATE(2939), 1, + aux_sym_type_arguments_repeat1, STATE(2431), 2, sym_line_comment, sym_block_comment, - [75625] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [76010] = 9, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, + ACTIONS(3182), 1, anon_sym_PLUS, - ACTIONS(5059), 1, - anon_sym_LBRACE, - ACTIONS(5071), 1, + ACTIONS(5104), 1, anon_sym_where, - ACTIONS(5492), 1, + ACTIONS(5259), 1, + anon_sym_LBRACE, + ACTIONS(5487), 1, anon_sym_SEMI, - STATE(1187), 1, + STATE(596), 1, sym_declaration_list, - STATE(2940), 1, + STATE(3157), 1, sym_where_clause, STATE(2432), 2, sym_line_comment, sym_block_comment, - [75654] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [76039] = 8, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5059), 1, + ACTIONS(348), 1, anon_sym_LBRACE, - ACTIONS(5071), 1, - anon_sym_where, - ACTIONS(5164), 1, - anon_sym_COLON, - STATE(1194), 1, - sym_declaration_list, - STATE(2833), 1, - sym_trait_bounds, - STATE(3219), 1, - sym_where_clause, + ACTIONS(3474), 1, + anon_sym_SQUOTE, + ACTIONS(5489), 1, + anon_sym_if, + STATE(3750), 1, + sym_label, + STATE(1551), 2, + sym_if_expression, + sym_block, STATE(2433), 2, sym_line_comment, sym_block_comment, - [75683] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [76066] = 9, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, + ACTIONS(3182), 1, anon_sym_PLUS, - ACTIONS(5071), 1, + ACTIONS(5104), 1, anon_sym_where, - ACTIONS(5093), 1, + ACTIONS(5224), 1, anon_sym_LBRACE, - ACTIONS(5494), 1, + ACTIONS(5491), 1, anon_sym_SEMI, - STATE(615), 1, + STATE(1384), 1, sym_declaration_list, - STATE(3001), 1, + STATE(2958), 1, sym_where_clause, STATE(2434), 2, sym_line_comment, sym_block_comment, - [75712] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [76095] = 9, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3734), 1, - anon_sym_COLON, - ACTIONS(5496), 1, - anon_sym_EQ, + ACTIONS(3182), 1, + anon_sym_PLUS, + ACTIONS(5104), 1, + anon_sym_where, + ACTIONS(5224), 1, + anon_sym_LBRACE, + ACTIONS(5493), 1, + anon_sym_SEMI, + STATE(1388), 1, + sym_declaration_list, + STATE(2961), 1, + sym_where_clause, STATE(2435), 2, sym_line_comment, sym_block_comment, - ACTIONS(3732), 4, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_COLON_COLON, - [75735] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [76124] = 9, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, + ACTIONS(3182), 1, anon_sym_PLUS, - ACTIONS(5071), 1, + ACTIONS(5104), 1, anon_sym_where, - ACTIONS(5093), 1, + ACTIONS(5224), 1, anon_sym_LBRACE, - ACTIONS(5498), 1, + ACTIONS(5495), 1, anon_sym_SEMI, - STATE(568), 1, + STATE(1127), 1, sym_declaration_list, - STATE(3089), 1, + STATE(2965), 1, sym_where_clause, STATE(2436), 2, sym_line_comment, sym_block_comment, - [75764] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [76153] = 9, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3210), 1, - anon_sym_PLUS, - ACTIONS(5164), 1, + ACTIONS(5104), 1, + anon_sym_where, + ACTIONS(5224), 1, + anon_sym_LBRACE, + ACTIONS(5226), 1, anon_sym_COLON, - ACTIONS(5500), 1, - anon_sym_GT, - ACTIONS(5502), 1, - anon_sym_COMMA, - STATE(2966), 1, + STATE(1132), 1, + sym_declaration_list, + STATE(2721), 1, sym_trait_bounds, - STATE(2967), 1, - aux_sym_type_arguments_repeat1, + STATE(3487), 1, + sym_where_clause, STATE(2437), 2, sym_line_comment, sym_block_comment, - [75793] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [76182] = 9, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, + ACTIONS(3182), 1, anon_sym_PLUS, - ACTIONS(5071), 1, + ACTIONS(5104), 1, anon_sym_where, - ACTIONS(5093), 1, + ACTIONS(5259), 1, anon_sym_LBRACE, - ACTIONS(5504), 1, + ACTIONS(5497), 1, anon_sym_SEMI, - STATE(634), 1, + STATE(740), 1, sym_declaration_list, - STATE(2918), 1, + STATE(3040), 1, sym_where_clause, STATE(2438), 2, sym_line_comment, sym_block_comment, - [75822] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [76211] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4746), 1, - anon_sym_COLON_COLON, - ACTIONS(5133), 1, - anon_sym_for, + ACTIONS(4867), 1, + anon_sym_DOT_DOT, + ACTIONS(4869), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, STATE(2439), 2, sym_line_comment, sym_block_comment, - ACTIONS(3475), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [75845] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4684), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [76234] = 9, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, + ACTIONS(3182), 1, anon_sym_PLUS, - ACTIONS(5059), 1, - anon_sym_LBRACE, - ACTIONS(5071), 1, + ACTIONS(5104), 1, anon_sym_where, - ACTIONS(5506), 1, + ACTIONS(5259), 1, + anon_sym_LBRACE, + ACTIONS(5499), 1, anon_sym_SEMI, - STATE(1370), 1, + STATE(755), 1, sym_declaration_list, - STATE(2895), 1, + STATE(3043), 1, sym_where_clause, STATE(2440), 2, sym_line_comment, sym_block_comment, - [75874] = 9, - ACTIONS(27), 1, - anon_sym_PIPE, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [76263] = 9, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3448), 1, - anon_sym_SQUOTE, - STATE(219), 1, - sym_closure_parameters, - STATE(1526), 1, - sym_block, - STATE(3714), 1, - sym_label, - STATE(2441), 2, - sym_line_comment, - sym_block_comment, - [75903] = 9, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5071), 1, + ACTIONS(5104), 1, anon_sym_where, - ACTIONS(5164), 1, + ACTIONS(5226), 1, anon_sym_COLON, - ACTIONS(5508), 1, + ACTIONS(5501), 1, anon_sym_SEMI, - ACTIONS(5510), 1, + ACTIONS(5503), 1, anon_sym_EQ, - STATE(3086), 1, + STATE(2930), 1, sym_trait_bounds, - STATE(3282), 1, + STATE(3348), 1, sym_where_clause, - STATE(2442), 2, + STATE(2441), 2, sym_line_comment, sym_block_comment, - [75932] = 9, - ACTIONS(103), 1, + [76292] = 9, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(5100), 1, + anon_sym_LBRACE, + ACTIONS(5102), 1, + anon_sym_LT, + ACTIONS(5104), 1, + anon_sym_where, + STATE(702), 1, + sym_field_declaration_list, + STATE(2887), 1, + sym_type_parameters, + STATE(3464), 1, + sym_where_clause, + STATE(2442), 2, + sym_line_comment, + sym_block_comment, + [76321] = 9, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, + ACTIONS(3182), 1, anon_sym_PLUS, - ACTIONS(5071), 1, + ACTIONS(5104), 1, anon_sym_where, - ACTIONS(5093), 1, + ACTIONS(5259), 1, anon_sym_LBRACE, - ACTIONS(5512), 1, + ACTIONS(5505), 1, anon_sym_SEMI, - STATE(772), 1, + STATE(599), 1, sym_declaration_list, - STATE(3049), 1, + STATE(3170), 1, sym_where_clause, STATE(2443), 2, sym_line_comment, sym_block_comment, - [75961] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [76350] = 9, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5069), 1, - anon_sym_LT, - ACTIONS(5071), 1, + ACTIONS(3182), 1, + anon_sym_PLUS, + ACTIONS(5104), 1, anon_sym_where, - ACTIONS(5461), 1, + ACTIONS(5224), 1, anon_sym_LBRACE, - STATE(607), 1, - sym_enum_variant_list, - STATE(2807), 1, - sym_type_parameters, - STATE(3434), 1, + ACTIONS(5507), 1, + anon_sym_SEMI, + STATE(1152), 1, + sym_declaration_list, + STATE(2987), 1, sym_where_clause, STATE(2444), 2, sym_line_comment, sym_block_comment, - [75990] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [76379] = 9, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3210), 1, + ACTIONS(3182), 1, anon_sym_PLUS, - ACTIONS(5164), 1, - anon_sym_COLON, - ACTIONS(5514), 1, - anon_sym_GT, - ACTIONS(5516), 1, - anon_sym_COMMA, - STATE(3040), 1, - sym_trait_bounds, - STATE(3041), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(5104), 1, + anon_sym_where, + ACTIONS(5224), 1, + anon_sym_LBRACE, + ACTIONS(5509), 1, + anon_sym_SEMI, + STATE(1154), 1, + sym_declaration_list, + STATE(2988), 1, + sym_where_clause, STATE(2445), 2, sym_line_comment, sym_block_comment, - [76019] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [76408] = 9, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, + ACTIONS(3182), 1, anon_sym_PLUS, - ACTIONS(5071), 1, + ACTIONS(5104), 1, anon_sym_where, - ACTIONS(5093), 1, + ACTIONS(5224), 1, anon_sym_LBRACE, - ACTIONS(5518), 1, + ACTIONS(5511), 1, anon_sym_SEMI, - STATE(667), 1, + STATE(1158), 1, sym_declaration_list, - STATE(3187), 1, + STATE(2992), 1, sym_where_clause, STATE(2446), 2, sym_line_comment, sym_block_comment, - [76048] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [76437] = 9, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, + ACTIONS(3182), 1, anon_sym_PLUS, - ACTIONS(5071), 1, + ACTIONS(5104), 1, anon_sym_where, - ACTIONS(5093), 1, + ACTIONS(5224), 1, anon_sym_LBRACE, - ACTIONS(5520), 1, + ACTIONS(5513), 1, anon_sym_SEMI, - STATE(630), 1, + STATE(1160), 1, sym_declaration_list, - STATE(2908), 1, + STATE(2993), 1, sym_where_clause, STATE(2447), 2, sym_line_comment, sym_block_comment, - [76077] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [76466] = 9, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1383), 1, + ACTIONS(3182), 1, + anon_sym_PLUS, + ACTIONS(5104), 1, + anon_sym_where, + ACTIONS(5259), 1, anon_sym_LBRACE, - ACTIONS(3448), 1, - anon_sym_SQUOTE, - ACTIONS(5522), 1, - anon_sym_if, - STATE(3778), 1, - sym_label, - STATE(485), 2, - sym_if_expression, - sym_block, + ACTIONS(5515), 1, + anon_sym_SEMI, + STATE(670), 1, + sym_declaration_list, + STATE(3052), 1, + sym_where_clause, STATE(2448), 2, sym_line_comment, sym_block_comment, - [76104] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [76495] = 9, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4823), 1, - anon_sym_DOT_DOT, - ACTIONS(4825), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + ACTIONS(5104), 1, + anon_sym_where, + ACTIONS(5224), 1, + anon_sym_LBRACE, + ACTIONS(5226), 1, + anon_sym_COLON, + STATE(1193), 1, + sym_declaration_list, + STATE(2737), 1, + sym_trait_bounds, + STATE(3438), 1, + sym_where_clause, STATE(2449), 2, sym_line_comment, sym_block_comment, - ACTIONS(4654), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [76127] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [76524] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5192), 1, - sym_identifier, - ACTIONS(5196), 1, - anon_sym_DOT_DOT, - ACTIONS(5200), 1, - anon_sym_ref, - ACTIONS(5202), 1, - sym_mutable_specifier, + ACTIONS(4784), 1, + anon_sym_COLON_COLON, + ACTIONS(5116), 1, + anon_sym_for, STATE(2450), 2, sym_line_comment, sym_block_comment, - STATE(3266), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [76154] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3594), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [76547] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4666), 1, - anon_sym_DOT_DOT, - ACTIONS(5350), 1, - anon_sym_COLON_COLON, - ACTIONS(4668), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(5414), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(5517), 1, + anon_sym_DASH_GT, STATE(2451), 2, sym_line_comment, sym_block_comment, - [76179] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3818), 5, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_as, + [76568] = 9, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4666), 1, - anon_sym_DOT_DOT, - ACTIONS(5350), 1, - anon_sym_COLON_COLON, - ACTIONS(4668), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(5524), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(3182), 1, + anon_sym_PLUS, + ACTIONS(5104), 1, + anon_sym_where, + ACTIONS(5259), 1, + anon_sym_LBRACE, + ACTIONS(5519), 1, + anon_sym_SEMI, + STATE(571), 1, + sym_declaration_list, + STATE(2960), 1, + sym_where_clause, STATE(2452), 2, sym_line_comment, sym_block_comment, - [76204] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [76597] = 8, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4666), 1, - anon_sym_DOT_DOT, - ACTIONS(5352), 1, + ACTIONS(4797), 1, anon_sym_COLON_COLON, - ACTIONS(4668), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(5414), 2, - anon_sym_RPAREN, + ACTIONS(5521), 1, + anon_sym_GT, + ACTIONS(5523), 1, anon_sym_COMMA, + STATE(3047), 1, + aux_sym_type_parameters_repeat1, + ACTIONS(3594), 2, + anon_sym_PLUS, + anon_sym_as, STATE(2453), 2, sym_line_comment, sym_block_comment, - [76229] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [76624] = 9, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4959), 2, - anon_sym_COLON, - anon_sym_PIPE, + ACTIONS(3182), 1, + anon_sym_PLUS, + ACTIONS(5104), 1, + anon_sym_where, + ACTIONS(5224), 1, + anon_sym_LBRACE, + ACTIONS(5525), 1, + anon_sym_SEMI, + STATE(1209), 1, + sym_declaration_list, + STATE(3007), 1, + sym_where_clause, STATE(2454), 2, sym_line_comment, sym_block_comment, - ACTIONS(3610), 4, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH_GT, - [76250] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [76653] = 9, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, + ACTIONS(3182), 1, anon_sym_PLUS, - ACTIONS(5071), 1, + ACTIONS(5104), 1, anon_sym_where, - ACTIONS(5093), 1, + ACTIONS(5224), 1, anon_sym_LBRACE, - ACTIONS(5526), 1, + ACTIONS(5527), 1, anon_sym_SEMI, - STATE(705), 1, + STATE(1211), 1, sym_declaration_list, - STATE(3158), 1, + STATE(3008), 1, sym_where_clause, STATE(2455), 2, sym_line_comment, sym_block_comment, - [76279] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [76682] = 9, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5528), 1, - anon_sym_DASH_GT, + ACTIONS(3182), 1, + anon_sym_PLUS, + ACTIONS(5104), 1, + anon_sym_where, + ACTIONS(5224), 1, + anon_sym_LBRACE, + ACTIONS(5529), 1, + anon_sym_SEMI, + STATE(1226), 1, + sym_declaration_list, + STATE(3010), 1, + sym_where_clause, STATE(2456), 2, sym_line_comment, sym_block_comment, - ACTIONS(3764), 5, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_as, - [76300] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [76711] = 9, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5059), 1, - anon_sym_LBRACE, - ACTIONS(5071), 1, + ACTIONS(3182), 1, + anon_sym_PLUS, + ACTIONS(5104), 1, anon_sym_where, - ACTIONS(5164), 1, - anon_sym_COLON, - STATE(1408), 1, + ACTIONS(5224), 1, + anon_sym_LBRACE, + ACTIONS(5531), 1, + anon_sym_SEMI, + STATE(1228), 1, sym_declaration_list, - STATE(2740), 1, - sym_trait_bounds, - STATE(3209), 1, + STATE(3011), 1, sym_where_clause, STATE(2457), 2, sym_line_comment, sym_block_comment, - [76329] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [76740] = 9, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, + ACTIONS(3182), 1, anon_sym_PLUS, - ACTIONS(5071), 1, + ACTIONS(5104), 1, anon_sym_where, - ACTIONS(5093), 1, + ACTIONS(5224), 1, anon_sym_LBRACE, - ACTIONS(5530), 1, + ACTIONS(5533), 1, anon_sym_SEMI, - STATE(636), 1, + STATE(1230), 1, sym_declaration_list, - STATE(2947), 1, + STATE(3013), 1, sym_where_clause, STATE(2458), 2, sym_line_comment, sym_block_comment, - [76358] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [76769] = 9, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4666), 1, - anon_sym_DOT_DOT, - ACTIONS(5352), 1, - anon_sym_COLON_COLON, - ACTIONS(4668), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(5524), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(3182), 1, + anon_sym_PLUS, + ACTIONS(5104), 1, + anon_sym_where, + ACTIONS(5224), 1, + anon_sym_LBRACE, + ACTIONS(5535), 1, + anon_sym_SEMI, + STATE(1232), 1, + sym_declaration_list, + STATE(3014), 1, + sym_where_clause, STATE(2459), 2, sym_line_comment, sym_block_comment, - [76383] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [76798] = 9, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5071), 1, + ACTIONS(5104), 1, anon_sym_where, - ACTIONS(5164), 1, + ACTIONS(5226), 1, anon_sym_COLON, - ACTIONS(5532), 1, - anon_sym_SEMI, - ACTIONS(5534), 1, - anon_sym_EQ, - STATE(2900), 1, + ACTIONS(5259), 1, + anon_sym_LBRACE, + STATE(676), 1, + sym_declaration_list, + STATE(2786), 1, sym_trait_bounds, - STATE(3189), 1, + STATE(3455), 1, sym_where_clause, STATE(2460), 2, sym_line_comment, sym_block_comment, - [76412] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [76827] = 9, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(3182), 1, + anon_sym_PLUS, + ACTIONS(5104), 1, + anon_sym_where, + ACTIONS(5224), 1, + anon_sym_LBRACE, + ACTIONS(5537), 1, + anon_sym_SEMI, + STATE(1267), 1, + sym_declaration_list, + STATE(3019), 1, + sym_where_clause, STATE(2461), 2, sym_line_comment, sym_block_comment, - ACTIONS(3566), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [76431] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [76856] = 9, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, + ACTIONS(3182), 1, anon_sym_PLUS, - ACTIONS(5059), 1, - anon_sym_LBRACE, - ACTIONS(5071), 1, + ACTIONS(5104), 1, anon_sym_where, - ACTIONS(5536), 1, + ACTIONS(5224), 1, + anon_sym_LBRACE, + ACTIONS(5539), 1, anon_sym_SEMI, - STATE(1415), 1, + STATE(1269), 1, sym_declaration_list, - STATE(2902), 1, + STATE(3020), 1, sym_where_clause, STATE(2462), 2, sym_line_comment, sym_block_comment, - [76460] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [76885] = 9, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, + ACTIONS(3182), 1, anon_sym_PLUS, - ACTIONS(5071), 1, + ACTIONS(5104), 1, anon_sym_where, - ACTIONS(5093), 1, + ACTIONS(5259), 1, anon_sym_LBRACE, - ACTIONS(5538), 1, + ACTIONS(5541), 1, anon_sym_SEMI, - STATE(774), 1, + STATE(547), 1, sym_declaration_list, - STATE(3077), 1, + STATE(3158), 1, sym_where_clause, STATE(2463), 2, sym_line_comment, sym_block_comment, - [76489] = 5, - ACTIONS(103), 1, + [76914] = 6, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(4784), 1, + anon_sym_COLON_COLON, + ACTIONS(5121), 1, + anon_sym_for, + STATE(2464), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3594), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [76937] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(975), 1, + ACTIONS(4696), 1, anon_sym_DOT_DOT, - STATE(2464), 2, + ACTIONS(5437), 1, + anon_sym_COLON_COLON, + ACTIONS(4698), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(5341), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(2465), 2, + sym_line_comment, + sym_block_comment, + [76962] = 9, + ACTIONS(27), 1, + anon_sym_PIPE, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(348), 1, + anon_sym_LBRACE, + ACTIONS(3474), 1, + anon_sym_SQUOTE, + STATE(252), 1, + sym_closure_parameters, + STATE(1567), 1, + sym_block, + STATE(3750), 1, + sym_label, + STATE(2466), 2, + sym_line_comment, + sym_block_comment, + [76991] = 6, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(4784), 1, + anon_sym_COLON_COLON, + ACTIONS(5142), 1, + anon_sym_for, + STATE(2467), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3594), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [77014] = 5, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(928), 1, + anon_sym_DOT_DOT, + STATE(2468), 2, sym_line_comment, sym_block_comment, - ACTIONS(977), 5, + ACTIONS(930), 5, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_if, - [76510] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [77035] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(951), 1, + ACTIONS(938), 1, anon_sym_DOT_DOT, - STATE(2465), 2, + STATE(2469), 2, sym_line_comment, sym_block_comment, - ACTIONS(953), 5, + ACTIONS(940), 5, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_if, - [76531] = 5, - ACTIONS(103), 1, + [77056] = 9, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(3192), 1, + anon_sym_PLUS, + ACTIONS(5226), 1, + anon_sym_COLON, + ACTIONS(5543), 1, + anon_sym_GT, + ACTIONS(5545), 1, + anon_sym_COMMA, + STATE(3054), 1, + sym_trait_bounds, + STATE(3055), 1, + aux_sym_type_arguments_repeat1, + STATE(2470), 2, + sym_line_comment, + sym_block_comment, + [77085] = 8, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(1414), 1, + anon_sym_LBRACE, + ACTIONS(3474), 1, + anon_sym_SQUOTE, + ACTIONS(5547), 1, + anon_sym_if, + STATE(3811), 1, + sym_label, + STATE(500), 2, + sym_if_expression, + sym_block, + STATE(2471), 2, + sym_line_comment, + sym_block_comment, + [77112] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4783), 1, + ACTIONS(954), 1, anon_sym_DOT_DOT, - STATE(2466), 2, + STATE(2472), 2, sym_line_comment, sym_block_comment, - ACTIONS(4781), 5, + ACTIONS(956), 5, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_if, - [76552] = 6, - ACTIONS(103), 1, + [77133] = 9, + ACTIONS(27), 1, + anon_sym_PIPE, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(348), 1, + anon_sym_LBRACE, + ACTIONS(3474), 1, + anon_sym_SQUOTE, + STATE(265), 1, + sym_closure_parameters, + STATE(1567), 1, + sym_block, + STATE(3750), 1, + sym_label, + STATE(2473), 2, + sym_line_comment, + sym_block_comment, + [77162] = 9, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4746), 1, - anon_sym_COLON_COLON, - ACTIONS(5162), 1, - anon_sym_for, - STATE(2467), 2, + ACTIONS(3192), 1, + anon_sym_PLUS, + ACTIONS(5226), 1, + anon_sym_COLON, + ACTIONS(5549), 1, + anon_sym_GT, + ACTIONS(5551), 1, + anon_sym_COMMA, + STATE(3081), 1, + sym_trait_bounds, + STATE(3082), 1, + aux_sym_type_arguments_repeat1, + STATE(2474), 2, sym_line_comment, sym_block_comment, - ACTIONS(3475), 4, - anon_sym_SEMI, + [77191] = 8, + ACTIONS(19), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [76575] = 5, - ACTIONS(103), 1, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(3474), 1, + anon_sym_SQUOTE, + ACTIONS(5553), 1, + anon_sym_if, + STATE(3785), 1, + sym_label, + STATE(421), 2, + sym_if_expression, + sym_block, + STATE(2475), 2, + sym_line_comment, + sym_block_comment, + [77218] = 8, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(412), 1, + anon_sym_LBRACE, + ACTIONS(3474), 1, + anon_sym_SQUOTE, + ACTIONS(5555), 1, + anon_sym_if, + STATE(3812), 1, + sym_label, + STATE(1847), 2, + sym_if_expression, + sym_block, + STATE(2476), 2, + sym_line_comment, + sym_block_comment, + [77245] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(955), 1, + ACTIONS(958), 1, anon_sym_DOT_DOT, - STATE(2468), 2, + STATE(2477), 2, sym_line_comment, sym_block_comment, - ACTIONS(957), 5, + ACTIONS(960), 5, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_if, - [76596] = 9, + [77266] = 9, ACTIONS(27), 1, anon_sym_PIPE, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(1414), 1, + anon_sym_LBRACE, + ACTIONS(3474), 1, + anon_sym_SQUOTE, + STATE(256), 1, + sym_closure_parameters, + STATE(479), 1, + sym_block, + STATE(3811), 1, + sym_label, + STATE(2478), 2, + sym_line_comment, + sym_block_comment, + [77295] = 9, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, + ACTIONS(412), 1, anon_sym_LBRACE, - ACTIONS(3448), 1, + ACTIONS(3474), 1, anon_sym_SQUOTE, - STATE(234), 1, + STATE(229), 1, sym_closure_parameters, - STATE(1526), 1, + STATE(1817), 1, sym_block, - STATE(3714), 1, + STATE(3812), 1, sym_label, - STATE(2469), 2, + STATE(2479), 2, sym_line_comment, sym_block_comment, - [76625] = 9, - ACTIONS(103), 1, + [77324] = 9, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(5104), 1, + anon_sym_where, + ACTIONS(5226), 1, + anon_sym_COLON, + ACTIONS(5259), 1, + anon_sym_LBRACE, + STATE(774), 1, + sym_declaration_list, + STATE(2698), 1, + sym_trait_bounds, + STATE(3470), 1, + sym_where_clause, + STATE(2480), 2, + sym_line_comment, + sym_block_comment, + [77353] = 9, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3210), 1, + ACTIONS(3192), 1, anon_sym_PLUS, - ACTIONS(5164), 1, + ACTIONS(5226), 1, anon_sym_COLON, - ACTIONS(5540), 1, + ACTIONS(5557), 1, anon_sym_GT, - ACTIONS(5542), 1, + ACTIONS(5559), 1, anon_sym_COMMA, - STATE(3075), 1, + STATE(3207), 1, sym_trait_bounds, - STATE(3076), 1, + STATE(3213), 1, aux_sym_type_arguments_repeat1, - STATE(2470), 2, + STATE(2481), 2, sym_line_comment, sym_block_comment, - [76654] = 6, - ACTIONS(103), 1, + [77382] = 9, + ACTIONS(19), 1, + anon_sym_LBRACE, + ACTIONS(27), 1, + anon_sym_PIPE, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(3474), 1, + anon_sym_SQUOTE, + STATE(256), 1, + sym_closure_parameters, + STATE(414), 1, + sym_block, + STATE(3785), 1, + sym_label, + STATE(2482), 2, + sym_line_comment, + sym_block_comment, + [77411] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5544), 1, + ACTIONS(5561), 1, + anon_sym_RBRACK, + ACTIONS(4979), 2, + anon_sym_PIPE, anon_sym_COMMA, - STATE(2407), 1, - aux_sym_where_clause_repeat1, - STATE(2471), 2, + STATE(2483), 2, sym_line_comment, sym_block_comment, - ACTIONS(3524), 4, + ACTIONS(3706), 3, anon_sym_SEMI, + anon_sym_PLUS, + anon_sym_DASH_GT, + [77434] = 5, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(5564), 1, + anon_sym_DASH_GT, + STATE(2484), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3742), 5, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_as, + [77455] = 5, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(5566), 1, + anon_sym_DASH_GT, + STATE(2485), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3806), 5, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_as, + [77476] = 9, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(5102), 1, + anon_sym_LT, + ACTIONS(5104), 1, + anon_sym_where, + ACTIONS(5455), 1, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - [76677] = 8, - ACTIONS(103), 1, + STATE(608), 1, + sym_enum_variant_list, + STATE(2668), 1, + sym_type_parameters, + STATE(3437), 1, + sym_where_clause, + STATE(2486), 2, + sym_line_comment, + sym_block_comment, + [77505] = 5, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(4827), 1, + anon_sym_DOT_DOT, + STATE(2487), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4825), 5, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_if, + [77526] = 9, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, + ACTIONS(348), 1, anon_sym_LBRACE, - ACTIONS(3448), 1, + ACTIONS(3474), 1, anon_sym_SQUOTE, - ACTIONS(5546), 1, - anon_sym_if, - STATE(3779), 1, - sym_label, - STATE(1846), 2, - sym_if_expression, + STATE(256), 1, + sym_closure_parameters, + STATE(1567), 1, sym_block, - STATE(2472), 2, + STATE(3750), 1, + sym_label, + STATE(2488), 2, sym_line_comment, sym_block_comment, - [76704] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [77555] = 9, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5067), 1, - anon_sym_LBRACE, - ACTIONS(5069), 1, + ACTIONS(5102), 1, anon_sym_LT, - ACTIONS(5071), 1, + ACTIONS(5104), 1, anon_sym_where, - STATE(1317), 1, - sym_field_declaration_list, - STATE(2666), 1, + ACTIONS(5469), 1, + anon_sym_LBRACE, + STATE(1315), 1, + sym_enum_variant_list, + STATE(2680), 1, sym_type_parameters, - STATE(3453), 1, + STATE(3315), 1, sym_where_clause, - STATE(2473), 2, + STATE(2489), 2, sym_line_comment, sym_block_comment, - [76733] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [77584] = 9, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, + ACTIONS(3182), 1, anon_sym_PLUS, - ACTIONS(5071), 1, + ACTIONS(5104), 1, anon_sym_where, - ACTIONS(5093), 1, + ACTIONS(5224), 1, anon_sym_LBRACE, - ACTIONS(5548), 1, + ACTIONS(5568), 1, anon_sym_SEMI, - STATE(725), 1, + STATE(1317), 1, sym_declaration_list, - STATE(2944), 1, + STATE(3124), 1, sym_where_clause, - STATE(2474), 2, + STATE(2490), 2, sym_line_comment, sym_block_comment, - [76762] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [77613] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1013), 1, - anon_sym_DOT_DOT, - STATE(2475), 2, + ACTIONS(5570), 1, + anon_sym_RBRACK, + ACTIONS(4987), 2, + anon_sym_PIPE, + anon_sym_COMMA, + STATE(2491), 2, sym_line_comment, sym_block_comment, - ACTIONS(1015), 5, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_if, - [76783] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3800), 3, + anon_sym_SEMI, + anon_sym_PLUS, + anon_sym_DASH_GT, + [77636] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, - anon_sym_PLUS, - ACTIONS(5071), 1, - anon_sym_where, - ACTIONS(5093), 1, - anon_sym_LBRACE, - ACTIONS(5550), 1, - anon_sym_SEMI, - STATE(727), 1, - sym_declaration_list, - STATE(2968), 1, - sym_where_clause, - STATE(2476), 2, + ACTIONS(4696), 1, + anon_sym_DOT_DOT, + ACTIONS(5437), 1, + anon_sym_COLON_COLON, + ACTIONS(4698), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(5573), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(2492), 2, sym_line_comment, sym_block_comment, - [76812] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [77661] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4746), 1, - anon_sym_COLON_COLON, - ACTIONS(5143), 1, - anon_sym_for, - STATE(2477), 2, + ACTIONS(4979), 2, + anon_sym_COLON, + anon_sym_PIPE, + STATE(2493), 2, sym_line_comment, sym_block_comment, - ACTIONS(3475), 4, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(3706), 4, + anon_sym_RPAREN, anon_sym_PLUS, - anon_sym_where, - [76835] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_COMMA, + anon_sym_DASH_GT, + [77682] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, - anon_sym_PLUS, - ACTIONS(5059), 1, - anon_sym_LBRACE, - ACTIONS(5071), 1, - anon_sym_where, - ACTIONS(5552), 1, - anon_sym_SEMI, - STATE(1221), 1, - sym_declaration_list, - STATE(2959), 1, - sym_where_clause, - STATE(2478), 2, + ACTIONS(4696), 1, + anon_sym_DOT_DOT, + ACTIONS(5431), 1, + anon_sym_COLON_COLON, + ACTIONS(4698), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(5341), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(2494), 2, sym_line_comment, sym_block_comment, - [76864] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [77707] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, - anon_sym_PLUS, - ACTIONS(5071), 1, - anon_sym_where, - ACTIONS(5093), 1, - anon_sym_LBRACE, - ACTIONS(5554), 1, - anon_sym_SEMI, - STATE(729), 1, - sym_declaration_list, - STATE(3095), 1, - sym_where_clause, - STATE(2479), 2, + ACTIONS(4696), 1, + anon_sym_DOT_DOT, + ACTIONS(5431), 1, + anon_sym_COLON_COLON, + ACTIONS(4698), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(5573), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(2495), 2, sym_line_comment, sym_block_comment, - [76893] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [77732] = 9, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, + ACTIONS(3182), 1, anon_sym_PLUS, - ACTIONS(5059), 1, - anon_sym_LBRACE, - ACTIONS(5071), 1, + ACTIONS(5104), 1, anon_sym_where, - ACTIONS(5556), 1, + ACTIONS(5259), 1, + anon_sym_LBRACE, + ACTIONS(5575), 1, anon_sym_SEMI, - STATE(1223), 1, + STATE(639), 1, sym_declaration_list, - STATE(2960), 1, + STATE(3191), 1, sym_where_clause, - STATE(2480), 2, + STATE(2496), 2, sym_line_comment, sym_block_comment, - [76922] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [77761] = 6, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(2481), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5150), 6, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - [76941] = 6, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5558), 1, - anon_sym_RBRACK, - ACTIONS(4975), 2, + ACTIONS(3706), 2, + anon_sym_PLUS, + anon_sym_DASH_GT, + ACTIONS(4979), 2, + anon_sym_COLON, anon_sym_PIPE, + ACTIONS(5561), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(2482), 2, + STATE(2497), 2, sym_line_comment, sym_block_comment, - ACTIONS(3760), 3, - anon_sym_SEMI, - anon_sym_PLUS, - anon_sym_DASH_GT, - [76964] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [77784] = 7, + ACTIONS(101), 1, + aux_sym_string_literal_token1, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4746), 1, - anon_sym_COLON_COLON, - ACTIONS(5145), 1, - anon_sym_for, - STATE(2483), 2, + ACTIONS(5577), 1, + sym_crate, + STATE(2904), 1, + sym_string_literal, + STATE(2498), 2, sym_line_comment, sym_block_comment, - ACTIONS(3475), 4, + ACTIONS(5475), 3, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [76987] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_fn, + [77809] = 9, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, - anon_sym_PLUS, - ACTIONS(5059), 1, - anon_sym_LBRACE, - ACTIONS(5071), 1, + ACTIONS(5102), 1, + anon_sym_LT, + ACTIONS(5104), 1, anon_sym_where, - ACTIONS(5561), 1, - anon_sym_SEMI, - STATE(1228), 1, - sym_declaration_list, - STATE(2962), 1, + ACTIONS(5154), 1, + anon_sym_LBRACE, + STATE(1326), 1, + sym_field_declaration_list, + STATE(2684), 1, + sym_type_parameters, + STATE(3375), 1, sym_where_clause, - STATE(2484), 2, + STATE(2499), 2, sym_line_comment, sym_block_comment, - [77016] = 9, - ACTIONS(27), 1, - anon_sym_PIPE, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [77838] = 5, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1383), 1, - anon_sym_LBRACE, - ACTIONS(3448), 1, - anon_sym_SQUOTE, - STATE(232), 1, - sym_closure_parameters, - STATE(495), 1, - sym_block, - STATE(3778), 1, - sym_label, - STATE(2485), 2, - sym_line_comment, - sym_block_comment, - [77045] = 6, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4746), 1, - anon_sym_COLON_COLON, - ACTIONS(5158), 1, - anon_sym_for, - STATE(2486), 2, + ACTIONS(5581), 1, + anon_sym_COMMA, + STATE(2500), 3, sym_line_comment, sym_block_comment, - ACTIONS(3475), 4, + aux_sym_where_clause_repeat1, + ACTIONS(5579), 4, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [77068] = 9, - ACTIONS(103), 1, + anon_sym_EQ, + anon_sym_SQUOTE, + [77859] = 8, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(5196), 1, + sym_identifier, + ACTIONS(5200), 1, + anon_sym_DOT_DOT, + ACTIONS(5204), 1, + anon_sym_ref, + ACTIONS(5206), 1, + sym_mutable_specifier, + STATE(2501), 2, + sym_line_comment, + sym_block_comment, + STATE(3346), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [77886] = 9, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, - anon_sym_PLUS, - ACTIONS(5071), 1, + ACTIONS(5104), 1, anon_sym_where, - ACTIONS(5093), 1, + ACTIONS(5226), 1, + anon_sym_COLON, + ACTIONS(5259), 1, anon_sym_LBRACE, - ACTIONS(5563), 1, - anon_sym_SEMI, - STATE(731), 1, + STATE(563), 1, sym_declaration_list, - STATE(3180), 1, + STATE(2686), 1, + sym_trait_bounds, + STATE(3415), 1, sym_where_clause, - STATE(2487), 2, + STATE(2502), 2, sym_line_comment, sym_block_comment, - [77097] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [77915] = 9, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5069), 1, - anon_sym_LT, - ACTIONS(5071), 1, + ACTIONS(3182), 1, + anon_sym_PLUS, + ACTIONS(5104), 1, anon_sym_where, - ACTIONS(5131), 1, + ACTIONS(5259), 1, anon_sym_LBRACE, - STATE(541), 1, - sym_field_declaration_list, - STATE(2766), 1, - sym_type_parameters, - STATE(3372), 1, + ACTIONS(5584), 1, + anon_sym_SEMI, + STATE(545), 1, + sym_declaration_list, + STATE(3091), 1, sym_where_clause, - STATE(2488), 2, + STATE(2503), 2, sym_line_comment, sym_block_comment, - [77126] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [77944] = 9, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, + ACTIONS(3182), 1, anon_sym_PLUS, - ACTIONS(5059), 1, - anon_sym_LBRACE, - ACTIONS(5071), 1, + ACTIONS(5104), 1, anon_sym_where, - ACTIONS(5565), 1, + ACTIONS(5259), 1, + anon_sym_LBRACE, + ACTIONS(5586), 1, anon_sym_SEMI, - STATE(1230), 1, + STATE(552), 1, sym_declaration_list, - STATE(2963), 1, + STATE(3119), 1, sym_where_clause, - STATE(2489), 2, + STATE(2504), 2, sym_line_comment, sym_block_comment, - [77155] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [77973] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4975), 2, + ACTIONS(3784), 1, anon_sym_COLON, - anon_sym_PIPE, - STATE(2490), 2, + ACTIONS(5588), 1, + anon_sym_EQ, + STATE(2505), 2, sym_line_comment, sym_block_comment, - ACTIONS(3760), 4, - anon_sym_RPAREN, + ACTIONS(3782), 4, anon_sym_PLUS, + anon_sym_GT, anon_sym_COMMA, - anon_sym_DASH_GT, - [77176] = 9, - ACTIONS(103), 1, + anon_sym_COLON_COLON, + [77996] = 7, + ACTIONS(101), 1, + aux_sym_string_literal_token1, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(5590), 1, + sym_crate, + STATE(2904), 1, + sym_string_literal, + STATE(2506), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5475), 3, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_fn, + [78021] = 9, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5069), 1, - anon_sym_LT, - ACTIONS(5071), 1, + ACTIONS(3182), 1, + anon_sym_PLUS, + ACTIONS(5104), 1, anon_sym_where, - ACTIONS(5469), 1, + ACTIONS(5259), 1, anon_sym_LBRACE, - STATE(1419), 1, - sym_enum_variant_list, - STATE(2747), 1, - sym_type_parameters, - STATE(3246), 1, + ACTIONS(5592), 1, + anon_sym_SEMI, + STATE(623), 1, + sym_declaration_list, + STATE(3030), 1, sym_where_clause, - STATE(2491), 2, + STATE(2507), 2, sym_line_comment, sym_block_comment, - [77205] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [78050] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4746), 1, + ACTIONS(4784), 1, anon_sym_COLON_COLON, - ACTIONS(5055), 1, + ACTIONS(5182), 1, anon_sym_for, - STATE(2492), 2, + STATE(2508), 2, sym_line_comment, sym_block_comment, - ACTIONS(3475), 4, + ACTIONS(3594), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [77228] = 9, - ACTIONS(27), 1, - anon_sym_PIPE, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [78073] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, - anon_sym_LBRACE, - ACTIONS(3448), 1, - anon_sym_SQUOTE, - STATE(256), 1, - sym_closure_parameters, - STATE(1819), 1, - sym_block, - STATE(3779), 1, - sym_label, - STATE(2493), 2, + ACTIONS(4784), 1, + anon_sym_COLON_COLON, + ACTIONS(5176), 1, + anon_sym_for, + STATE(2509), 2, sym_line_comment, sym_block_comment, - [77257] = 5, - ACTIONS(103), 1, + ACTIONS(3594), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [78096] = 7, + ACTIONS(101), 1, + aux_sym_string_literal_token1, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(5594), 1, + sym_crate, + STATE(2904), 1, + sym_string_literal, + STATE(2510), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5475), 3, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_fn, + [78121] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5567), 1, + ACTIONS(5596), 1, anon_sym_DASH_GT, - STATE(2494), 2, + STATE(2511), 2, sym_line_comment, sym_block_comment, - ACTIONS(3740), 5, + ACTIONS(3716), 5, anon_sym_COLON, anon_sym_PLUS, anon_sym_GT, anon_sym_COMMA, anon_sym_as, - [77278] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [78142] = 6, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5059), 1, - anon_sym_LBRACE, - ACTIONS(5071), 1, - anon_sym_where, - ACTIONS(5164), 1, - anon_sym_COLON, - STATE(1275), 1, - sym_declaration_list, - STATE(2854), 1, - sym_trait_bounds, - STATE(3331), 1, - sym_where_clause, - STATE(2495), 2, - sym_line_comment, - sym_block_comment, - [77307] = 9, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5067), 1, - anon_sym_LBRACE, - ACTIONS(5069), 1, - anon_sym_LT, - ACTIONS(5071), 1, - anon_sym_where, - STATE(1424), 1, - sym_field_declaration_list, - STATE(2749), 1, - sym_type_parameters, - STATE(3267), 1, - sym_where_clause, - STATE(2496), 2, + ACTIONS(5598), 1, + anon_sym_COMMA, + STATE(2500), 1, + aux_sym_where_clause_repeat1, + STATE(2512), 2, sym_line_comment, sym_block_comment, - [77336] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3538), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_SQUOTE, + [78165] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5479), 1, - anon_sym_RBRACK, - ACTIONS(4959), 2, - anon_sym_PIPE, - anon_sym_COMMA, - STATE(2497), 2, + ACTIONS(4784), 1, + anon_sym_COLON_COLON, + ACTIONS(5184), 1, + anon_sym_for, + STATE(2513), 2, sym_line_comment, sym_block_comment, - ACTIONS(3610), 3, + ACTIONS(3594), 4, anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_DASH_GT, - [77359] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_where, + [78188] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3760), 2, - anon_sym_PLUS, - anon_sym_DASH_GT, - ACTIONS(4975), 2, + ACTIONS(4987), 2, anon_sym_COLON, anon_sym_PIPE, - ACTIONS(5558), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2498), 2, + STATE(2514), 2, sym_line_comment, sym_block_comment, - [77382] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3800), 4, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH_GT, + [78209] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, - anon_sym_PLUS, - ACTIONS(5071), 1, - anon_sym_where, - ACTIONS(5093), 1, - anon_sym_LBRACE, - ACTIONS(5569), 1, - anon_sym_SEMI, - STATE(784), 1, - sym_declaration_list, - STATE(3108), 1, - sym_where_clause, - STATE(2499), 2, + ACTIONS(4784), 1, + anon_sym_COLON_COLON, + ACTIONS(5186), 1, + anon_sym_for, + STATE(2515), 2, sym_line_comment, sym_block_comment, - [77411] = 8, - ACTIONS(19), 1, + ACTIONS(3594), 4, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_where, + [78232] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3448), 1, - anon_sym_SQUOTE, - ACTIONS(5571), 1, - anon_sym_if, - STATE(3621), 1, - sym_label, - STATE(404), 2, - sym_if_expression, - sym_block, - STATE(2500), 2, + STATE(2516), 2, sym_line_comment, sym_block_comment, - [77438] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5130), 6, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + [78251] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5573), 1, + ACTIONS(5600), 1, anon_sym_DASH_GT, - STATE(2501), 2, + STATE(2517), 2, sym_line_comment, sym_block_comment, - ACTIONS(3776), 5, + ACTIONS(3722), 5, anon_sym_COLON, anon_sym_PLUS, anon_sym_GT, anon_sym_COMMA, anon_sym_as, - [77459] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [78272] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, - anon_sym_PLUS, - ACTIONS(5071), 1, - anon_sym_where, - ACTIONS(5093), 1, - anon_sym_LBRACE, - ACTIONS(5575), 1, - anon_sym_SEMI, - STATE(564), 1, - sym_declaration_list, - STATE(3085), 1, - sym_where_clause, - STATE(2502), 2, + ACTIONS(4784), 1, + anon_sym_COLON_COLON, + ACTIONS(5089), 1, + anon_sym_for, + STATE(2518), 2, sym_line_comment, sym_block_comment, - [77488] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3594), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [78295] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4769), 1, - anon_sym_COLON_COLON, - ACTIONS(5577), 1, + ACTIONS(5602), 1, + anon_sym_DASH_GT, + STATE(2519), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3728), 5, + anon_sym_COLON, + anon_sym_PLUS, anon_sym_GT, - ACTIONS(5579), 1, anon_sym_COMMA, - STATE(3148), 1, - aux_sym_type_parameters_repeat1, - ACTIONS(3475), 2, - anon_sym_PLUS, anon_sym_as, - STATE(2503), 2, + [78316] = 5, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(5604), 1, + anon_sym_DASH_GT, + STATE(2520), 2, sym_line_comment, sym_block_comment, - [77515] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3790), 5, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_as, + [78337] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5071), 1, - anon_sym_where, - ACTIONS(5093), 1, - anon_sym_LBRACE, - ACTIONS(5164), 1, + ACTIONS(3800), 2, + anon_sym_PLUS, + anon_sym_DASH_GT, + ACTIONS(4987), 2, anon_sym_COLON, - STATE(676), 1, - sym_declaration_list, - STATE(2722), 1, - sym_trait_bounds, - STATE(3352), 1, - sym_where_clause, - STATE(2504), 2, + anon_sym_PIPE, + ACTIONS(5570), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(2521), 2, sym_line_comment, sym_block_comment, - [77544] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [78360] = 9, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, + ACTIONS(3182), 1, anon_sym_PLUS, - ACTIONS(5071), 1, + ACTIONS(5104), 1, anon_sym_where, - ACTIONS(5093), 1, + ACTIONS(5259), 1, anon_sym_LBRACE, - ACTIONS(5581), 1, + ACTIONS(5606), 1, anon_sym_SEMI, - STATE(587), 1, + STATE(601), 1, sym_declaration_list, - STATE(3159), 1, + STATE(3208), 1, sym_where_clause, - STATE(2505), 2, + STATE(2522), 2, sym_line_comment, sym_block_comment, - [77573] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [78389] = 9, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4746), 1, - anon_sym_COLON_COLON, - ACTIONS(5099), 1, - anon_sym_for, - STATE(2506), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3475), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [77596] = 9, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, + ACTIONS(3182), 1, anon_sym_PLUS, - ACTIONS(5071), 1, + ACTIONS(5104), 1, anon_sym_where, - ACTIONS(5093), 1, + ACTIONS(5259), 1, anon_sym_LBRACE, - ACTIONS(5583), 1, + ACTIONS(5608), 1, anon_sym_SEMI, - STATE(707), 1, + STATE(724), 1, sym_declaration_list, - STATE(3160), 1, + STATE(3169), 1, sym_where_clause, - STATE(2507), 2, - sym_line_comment, - sym_block_comment, - [77625] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3166), 1, - anon_sym_PLUS, - ACTIONS(3448), 1, - anon_sym_SQUOTE, - STATE(1513), 1, - sym_block, - STATE(3714), 1, - sym_label, - STATE(2508), 2, - sym_line_comment, - sym_block_comment, - [77651] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(2509), 2, + STATE(2523), 2, sym_line_comment, sym_block_comment, - ACTIONS(3586), 5, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_where, - [77669] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [78418] = 8, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3448), 1, + ACTIONS(3474), 1, anon_sym_SQUOTE, - ACTIONS(5170), 1, + ACTIONS(5192), 1, anon_sym_LBRACE, - ACTIONS(5585), 1, + ACTIONS(5610), 1, anon_sym_SEMI, - STATE(1359), 1, + STATE(717), 1, sym_block, - STATE(3777), 1, + STATE(3808), 1, sym_label, - STATE(2510), 2, + STATE(2524), 2, sym_line_comment, sym_block_comment, - [77695] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [78444] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5164), 1, + ACTIONS(3594), 1, + anon_sym_PLUS, + ACTIONS(4684), 2, anon_sym_COLON, - ACTIONS(5500), 1, - anon_sym_GT, - ACTIONS(5502), 1, + anon_sym_PIPE, + ACTIONS(5612), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(2966), 1, - sym_trait_bounds, - STATE(2967), 1, - aux_sym_type_arguments_repeat1, - STATE(2511), 2, + STATE(2525), 2, sym_line_comment, sym_block_comment, - [77721] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [78466] = 7, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3448), 1, - anon_sym_SQUOTE, - ACTIONS(5170), 1, - anon_sym_LBRACE, - ACTIONS(5587), 1, - anon_sym_SEMI, - STATE(1375), 1, - sym_block, - STATE(3777), 1, - sym_label, - STATE(2512), 2, - sym_line_comment, - sym_block_comment, - [77747] = 7, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4316), 1, + ACTIONS(4358), 1, anon_sym_LBRACE, - ACTIONS(5591), 1, + ACTIONS(5339), 1, anon_sym_STAR, - STATE(3129), 1, + STATE(3001), 1, sym_use_list, - ACTIONS(5589), 2, + ACTIONS(5337), 2, sym_identifier, sym_super, - STATE(2513), 2, + STATE(2526), 2, sym_line_comment, sym_block_comment, - [77771] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [78490] = 8, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3448), 1, + ACTIONS(3110), 1, anon_sym_SQUOTE, - ACTIONS(5170), 1, - anon_sym_LBRACE, - ACTIONS(5593), 1, - anon_sym_SEMI, - STATE(1382), 1, - sym_block, - STATE(3777), 1, - sym_label, - STATE(2514), 2, + ACTIONS(5615), 1, + sym_identifier, + ACTIONS(5617), 1, + anon_sym_GT, + ACTIONS(5619), 1, + anon_sym_COMMA, + STATE(3050), 1, + sym_lifetime, + STATE(2527), 2, sym_line_comment, sym_block_comment, - [77797] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [78516] = 8, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4666), 1, - anon_sym_DOT_DOT, - ACTIONS(5348), 1, - anon_sym_COLON, - ACTIONS(5418), 1, + ACTIONS(4174), 1, + anon_sym_LPAREN, + ACTIONS(4702), 1, + anon_sym_LT2, + ACTIONS(4776), 1, anon_sym_COLON_COLON, - ACTIONS(4668), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2515), 2, + STATE(1689), 1, + sym_parameters, + STATE(2039), 1, + sym_type_arguments, + STATE(2528), 2, sym_line_comment, sym_block_comment, - [77821] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [78542] = 4, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3448), 1, - anon_sym_SQUOTE, - ACTIONS(5170), 1, - anon_sym_LBRACE, - ACTIONS(5595), 1, - anon_sym_SEMI, - STATE(1117), 1, - sym_block, - STATE(3777), 1, - sym_label, - STATE(2516), 2, - sym_line_comment, - sym_block_comment, - [77847] = 8, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3448), 1, - anon_sym_SQUOTE, - ACTIONS(5170), 1, - anon_sym_LBRACE, - ACTIONS(5597), 1, - anon_sym_SEMI, - STATE(1125), 1, - sym_block, - STATE(3777), 1, - sym_label, - STATE(2517), 2, + STATE(2529), 2, sym_line_comment, sym_block_comment, - [77873] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5621), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [78560] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2518), 2, + STATE(2530), 2, sym_line_comment, sym_block_comment, - ACTIONS(5599), 5, + ACTIONS(5623), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_EQ, anon_sym_COMMA, anon_sym_where, - [77891] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [78578] = 6, + ACTIONS(101), 1, + aux_sym_string_literal_token1, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3448), 1, - anon_sym_SQUOTE, - ACTIONS(5170), 1, - anon_sym_LBRACE, - ACTIONS(5601), 1, - anon_sym_SEMI, - STATE(1135), 1, - sym_block, - STATE(3777), 1, - sym_label, - STATE(2519), 2, - sym_line_comment, - sym_block_comment, - [77917] = 8, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3166), 1, - anon_sym_PLUS, - ACTIONS(3448), 1, - anon_sym_SQUOTE, - STATE(1532), 1, - sym_block, - STATE(3714), 1, - sym_label, - STATE(2520), 2, + STATE(2904), 1, + sym_string_literal, + STATE(2531), 2, sym_line_comment, sym_block_comment, - [77943] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5475), 3, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_fn, + [78600] = 8, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3448), 1, - anon_sym_SQUOTE, - ACTIONS(5170), 1, - anon_sym_LBRACE, - ACTIONS(5603), 1, - anon_sym_SEMI, - STATE(1140), 1, - sym_block, - STATE(3777), 1, - sym_label, - STATE(2521), 2, + ACTIONS(5226), 1, + anon_sym_COLON, + ACTIONS(5543), 1, + anon_sym_GT, + ACTIONS(5545), 1, + anon_sym_COMMA, + STATE(3054), 1, + sym_trait_bounds, + STATE(3055), 1, + aux_sym_type_arguments_repeat1, + STATE(2532), 2, sym_line_comment, sym_block_comment, - [77969] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [78626] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2522), 2, + STATE(2533), 2, sym_line_comment, sym_block_comment, - ACTIONS(5605), 5, + ACTIONS(5625), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_EQ, anon_sym_COMMA, anon_sym_where, - [77987] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [78644] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3448), 1, - anon_sym_SQUOTE, - ACTIONS(5170), 1, - anon_sym_LBRACE, - ACTIONS(5607), 1, - anon_sym_SEMI, - STATE(1144), 1, - sym_block, - STATE(3777), 1, - sym_label, - STATE(2523), 2, + ACTIONS(5627), 1, + anon_sym_RPAREN, + ACTIONS(5629), 1, + anon_sym_COMMA, + STATE(3057), 1, + aux_sym_parameters_repeat1, + ACTIONS(4684), 2, + anon_sym_COLON, + anon_sym_PIPE, + STATE(2534), 2, sym_line_comment, sym_block_comment, - [78013] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [78668] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3166), 1, - anon_sym_PLUS, - ACTIONS(3448), 1, - anon_sym_SQUOTE, - STATE(1521), 1, - sym_block, - STATE(3714), 1, - sym_label, - STATE(2524), 2, + ACTIONS(1384), 1, + anon_sym_RPAREN, + ACTIONS(5631), 1, + anon_sym_COMMA, + STATE(3141), 1, + aux_sym_parameters_repeat1, + ACTIONS(4684), 2, + anon_sym_COLON, + anon_sym_PIPE, + STATE(2535), 2, sym_line_comment, sym_block_comment, - [78039] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [78692] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3166), 1, - anon_sym_PLUS, - ACTIONS(3448), 1, - anon_sym_SQUOTE, - STATE(1510), 1, - sym_block, - STATE(3714), 1, - sym_label, - STATE(2525), 2, + ACTIONS(1242), 1, + anon_sym_RPAREN, + ACTIONS(5633), 1, + anon_sym_COMMA, + STATE(2980), 1, + aux_sym_parameters_repeat1, + ACTIONS(4684), 2, + anon_sym_COLON, + anon_sym_PIPE, + STATE(2536), 2, sym_line_comment, sym_block_comment, - [78065] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [78716] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5609), 1, + ACTIONS(1262), 1, anon_sym_RPAREN, - ACTIONS(5612), 1, + ACTIONS(5635), 1, anon_sym_COMMA, - STATE(3005), 1, + STATE(3063), 1, aux_sym_parameters_repeat1, - ACTIONS(4654), 2, + ACTIONS(4684), 2, anon_sym_COLON, anon_sym_PIPE, - STATE(2526), 2, + STATE(2537), 2, sym_line_comment, sym_block_comment, - [78089] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [78740] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5617), 1, - anon_sym_COLON_COLON, - ACTIONS(5619), 1, - anon_sym_as, - STATE(2527), 2, + STATE(2538), 2, sym_line_comment, sym_block_comment, - ACTIONS(5615), 3, + ACTIONS(3534), 5, anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [78111] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_where, + [78758] = 8, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3475), 1, + ACTIONS(412), 1, + anon_sym_LBRACE, + ACTIONS(3182), 1, anon_sym_PLUS, - ACTIONS(4654), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(5621), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2528), 2, + ACTIONS(3474), 1, + anon_sym_SQUOTE, + STATE(1915), 1, + sym_block, + STATE(3812), 1, + sym_label, + STATE(2539), 2, sym_line_comment, sym_block_comment, - [78133] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [78784] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2529), 2, + STATE(2540), 2, sym_line_comment, sym_block_comment, - ACTIONS(5624), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_where, - [78151] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3688), 5, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_COLON_COLON, + anon_sym_if, + [78802] = 8, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3084), 1, + ACTIONS(3474), 1, anon_sym_SQUOTE, - ACTIONS(5626), 1, - sym_identifier, - ACTIONS(5628), 1, + ACTIONS(5220), 1, + anon_sym_LBRACE, + ACTIONS(5637), 1, + anon_sym_SEMI, + STATE(1148), 1, + sym_block, + STATE(3810), 1, + sym_label, + STATE(2541), 2, + sym_line_comment, + sym_block_comment, + [78828] = 8, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(5226), 1, + anon_sym_COLON, + ACTIONS(5549), 1, anon_sym_GT, - ACTIONS(5630), 1, + ACTIONS(5551), 1, anon_sym_COMMA, - STATE(3035), 1, - sym_lifetime, - STATE(2530), 2, + STATE(3081), 1, + sym_trait_bounds, + STATE(3082), 1, + aux_sym_type_arguments_repeat1, + STATE(2542), 2, sym_line_comment, sym_block_comment, - [78177] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [78854] = 8, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4316), 1, + ACTIONS(3474), 1, + anon_sym_SQUOTE, + ACTIONS(5192), 1, anon_sym_LBRACE, - ACTIONS(5308), 1, - anon_sym_STAR, - STATE(3139), 1, - sym_use_list, - ACTIONS(5306), 2, - sym_identifier, - sym_super, - STATE(2531), 2, + ACTIONS(5639), 1, + anon_sym_SEMI, + STATE(523), 1, + sym_block, + STATE(3808), 1, + sym_label, + STATE(2543), 2, sym_line_comment, sym_block_comment, - [78201] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [78880] = 8, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4178), 1, - anon_sym_LPAREN, - ACTIONS(4672), 1, + ACTIONS(4702), 1, anon_sym_LT2, - ACTIONS(4678), 1, + ACTIONS(4704), 1, + anon_sym_LPAREN, + ACTIONS(4776), 1, anon_sym_COLON_COLON, - STATE(1708), 1, - sym_parameters, - STATE(2027), 1, + STATE(2039), 1, sym_type_arguments, - STATE(2532), 2, + STATE(2517), 1, + sym_parameters, + STATE(2544), 2, + sym_line_comment, + sym_block_comment, + [78906] = 8, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(5033), 1, + anon_sym_PIPE, + ACTIONS(5641), 1, + anon_sym_SEMI, + ACTIONS(5643), 1, + anon_sym_COLON, + ACTIONS(5645), 1, + anon_sym_EQ, + ACTIONS(5647), 1, + anon_sym_else, + STATE(2545), 2, + sym_line_comment, + sym_block_comment, + [78932] = 8, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(5051), 1, + anon_sym_RPAREN, + ACTIONS(5649), 1, + anon_sym_COLON, + ACTIONS(5651), 1, + anon_sym_PIPE, + ACTIONS(5653), 1, + anon_sym_COMMA, + STATE(3147), 1, + aux_sym_closure_parameters_repeat1, + STATE(2546), 2, sym_line_comment, sym_block_comment, - [78227] = 4, - ACTIONS(103), 1, + [78958] = 8, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(3474), 1, + anon_sym_SQUOTE, + ACTIONS(5192), 1, + anon_sym_LBRACE, + ACTIONS(5655), 1, + anon_sym_SEMI, + STATE(762), 1, + sym_block, + STATE(3808), 1, + sym_label, + STATE(2547), 2, + sym_line_comment, + sym_block_comment, + [78984] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2533), 2, + STATE(2548), 2, sym_line_comment, sym_block_comment, - ACTIONS(5632), 5, + ACTIONS(5657), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_EQ, anon_sym_COMMA, anon_sym_where, - [78245] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [79002] = 8, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5164), 1, + ACTIONS(5226), 1, anon_sym_COLON, - ACTIONS(5514), 1, + ACTIONS(5483), 1, anon_sym_GT, - ACTIONS(5516), 1, + ACTIONS(5485), 1, anon_sym_COMMA, - STATE(3040), 1, + STATE(2938), 1, sym_trait_bounds, - STATE(3041), 1, + STATE(2939), 1, aux_sym_type_arguments_repeat1, - STATE(2534), 2, + STATE(2549), 2, sym_line_comment, sym_block_comment, - [78271] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [79028] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2535), 2, + ACTIONS(5226), 1, + anon_sym_COLON, + STATE(3164), 1, + aux_sym_for_lifetimes_repeat1, + STATE(3413), 1, + sym_trait_bounds, + ACTIONS(5659), 2, + anon_sym_GT, + anon_sym_COMMA, + STATE(2550), 2, sym_line_comment, sym_block_comment, - ACTIONS(5634), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_where, - [78289] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [79052] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5636), 1, + ACTIONS(5661), 1, anon_sym_RPAREN, - ACTIONS(5638), 1, + ACTIONS(5663), 1, anon_sym_COMMA, - STATE(3043), 1, + STATE(2948), 1, aux_sym_parameters_repeat1, - ACTIONS(4654), 2, + ACTIONS(4684), 2, anon_sym_COLON, anon_sym_PIPE, - STATE(2536), 2, + STATE(2551), 2, sym_line_comment, sym_block_comment, - [78313] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [79076] = 8, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3084), 1, + ACTIONS(3110), 1, anon_sym_SQUOTE, - ACTIONS(5640), 1, + ACTIONS(5665), 1, sym_identifier, - ACTIONS(5642), 1, + ACTIONS(5667), 1, anon_sym_GT, - ACTIONS(5644), 1, + ACTIONS(5669), 1, anon_sym_COMMA, - STATE(2886), 1, + STATE(3183), 1, sym_lifetime, - STATE(2537), 2, + STATE(2552), 2, sym_line_comment, sym_block_comment, - [78339] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [79102] = 8, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4672), 1, - anon_sym_LT2, - ACTIONS(4674), 1, - anon_sym_LPAREN, - ACTIONS(4678), 1, - anon_sym_COLON_COLON, - STATE(2027), 1, - sym_type_arguments, - STATE(2402), 1, - sym_parameters, - STATE(2538), 2, - sym_line_comment, - sym_block_comment, - [78365] = 7, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1377), 1, - anon_sym_RPAREN, - ACTIONS(5646), 1, - anon_sym_COMMA, - STATE(3052), 1, - aux_sym_parameters_repeat1, - ACTIONS(4654), 2, - anon_sym_COLON, - anon_sym_PIPE, - STATE(2539), 2, + ACTIONS(3094), 1, + anon_sym_POUND, + ACTIONS(5671), 1, + sym_identifier, + ACTIONS(5673), 1, + sym_integer_literal, + STATE(1097), 1, + aux_sym_enum_variant_list_repeat1, + STATE(1314), 1, + sym_attribute_item, + STATE(2553), 2, sym_line_comment, sym_block_comment, - [78389] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [79128] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4654), 2, + ACTIONS(3998), 1, + anon_sym_PLUS, + ACTIONS(5021), 2, anon_sym_COLON, anon_sym_PIPE, - STATE(2540), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3475), 3, + ACTIONS(5675), 2, anon_sym_RPAREN, - anon_sym_PLUS, anon_sym_COMMA, - [78409] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(2541), 2, + STATE(2554), 2, sym_line_comment, sym_block_comment, - ACTIONS(5648), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_where, - [78427] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [79150] = 8, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3430), 1, - anon_sym_LPAREN, - ACTIONS(4672), 1, - anon_sym_LT2, - ACTIONS(4678), 1, - anon_sym_COLON_COLON, - STATE(1335), 1, - sym_parameters, - STATE(2027), 1, - sym_type_arguments, - STATE(2542), 2, - sym_line_comment, - sym_block_comment, - [78453] = 6, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5652), 1, - anon_sym_COLON_COLON, - ACTIONS(5654), 1, - anon_sym_as, - STATE(2543), 2, + ACTIONS(412), 1, + anon_sym_LBRACE, + ACTIONS(3182), 1, + anon_sym_PLUS, + ACTIONS(3474), 1, + anon_sym_SQUOTE, + STATE(1798), 1, + sym_block, + STATE(3812), 1, + sym_label, + STATE(2555), 2, sym_line_comment, sym_block_comment, - ACTIONS(5650), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [78475] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [79176] = 8, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5043), 2, + ACTIONS(5226), 1, anon_sym_COLON, - anon_sym_PIPE, - STATE(2544), 2, + ACTIONS(5557), 1, + anon_sym_GT, + ACTIONS(5559), 1, + anon_sym_COMMA, + STATE(3207), 1, + sym_trait_bounds, + STATE(3213), 1, + aux_sym_type_arguments_repeat1, + STATE(2556), 2, sym_line_comment, sym_block_comment, - ACTIONS(3996), 3, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, - [78495] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [79202] = 8, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3448), 1, + ACTIONS(3474), 1, anon_sym_SQUOTE, - ACTIONS(5214), 1, + ACTIONS(5220), 1, anon_sym_LBRACE, - ACTIONS(5656), 1, + ACTIONS(5678), 1, anon_sym_SEMI, - STATE(519), 1, + STATE(1183), 1, sym_block, - STATE(3774), 1, + STATE(3810), 1, sym_label, - STATE(2545), 2, + STATE(2557), 2, sym_line_comment, sym_block_comment, - [78521] = 8, - ACTIONS(103), 1, + [79228] = 8, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(5102), 1, + anon_sym_LT, + ACTIONS(5104), 1, + anon_sym_where, + ACTIONS(5680), 1, + anon_sym_EQ, + STATE(3061), 1, + sym_type_parameters, + STATE(3709), 1, + sym_where_clause, + STATE(2558), 2, + sym_line_comment, + sym_block_comment, + [79254] = 8, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5164), 1, + ACTIONS(5033), 1, + anon_sym_PIPE, + ACTIONS(5682), 1, + anon_sym_SEMI, + ACTIONS(5684), 1, anon_sym_COLON, - ACTIONS(5540), 1, - anon_sym_GT, - ACTIONS(5542), 1, - anon_sym_COMMA, - STATE(3075), 1, - sym_trait_bounds, - STATE(3076), 1, - aux_sym_type_arguments_repeat1, - STATE(2546), 2, + ACTIONS(5686), 1, + anon_sym_EQ, + ACTIONS(5688), 1, + anon_sym_else, + STATE(2559), 2, sym_line_comment, sym_block_comment, - [78547] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [79280] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2547), 2, + ACTIONS(5692), 1, + anon_sym_COLON_COLON, + ACTIONS(5694), 1, + anon_sym_as, + STATE(2560), 2, sym_line_comment, sym_block_comment, - ACTIONS(3390), 5, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_GT, + ACTIONS(5690), 3, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_as, - [78565] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [79302] = 8, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3448), 1, + ACTIONS(3474), 1, anon_sym_SQUOTE, - ACTIONS(5214), 1, + ACTIONS(5220), 1, anon_sym_LBRACE, - ACTIONS(5658), 1, + ACTIONS(5696), 1, anon_sym_SEMI, - STATE(529), 1, + STATE(1382), 1, sym_block, - STATE(3774), 1, + STATE(3810), 1, sym_label, - STATE(2548), 2, + STATE(2561), 2, sym_line_comment, sym_block_comment, - [78591] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [79328] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5029), 1, - anon_sym_PIPE, - ACTIONS(5660), 1, + STATE(2562), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5698), 5, anon_sym_SEMI, - ACTIONS(5662), 1, - anon_sym_COLON, - ACTIONS(5664), 1, + anon_sym_RBRACE, anon_sym_EQ, - ACTIONS(5666), 1, - anon_sym_else, - STATE(2549), 2, + anon_sym_COMMA, + anon_sym_where, + [79346] = 7, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(4358), 1, + anon_sym_LBRACE, + ACTIONS(5702), 1, + anon_sym_STAR, + STATE(2999), 1, + sym_use_list, + ACTIONS(5700), 2, + sym_identifier, + sym_super, + STATE(2563), 2, sym_line_comment, sym_block_comment, - [78617] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [79370] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2550), 2, + STATE(2564), 2, sym_line_comment, sym_block_comment, - ACTIONS(5668), 5, + ACTIONS(5704), 5, anon_sym_SEMI, - anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_EQ, anon_sym_COMMA, - anon_sym_SQUOTE, - [78635] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_where, + [79388] = 8, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2551), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5670), 5, - anon_sym_SEMI, + ACTIONS(348), 1, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COMMA, + ACTIONS(3182), 1, + anon_sym_PLUS, + ACTIONS(3474), 1, anon_sym_SQUOTE, - [78653] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3068), 1, - anon_sym_POUND, - ACTIONS(5672), 1, - sym_identifier, - ACTIONS(5674), 1, - sym_integer_literal, - STATE(1093), 1, - aux_sym_enum_variant_list_repeat1, - STATE(1254), 1, - sym_attribute_item, - STATE(2552), 2, + STATE(1475), 1, + sym_block, + STATE(3750), 1, + sym_label, + STATE(2565), 2, sym_line_comment, sym_block_comment, - [78679] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [79414] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2553), 2, + STATE(2566), 2, sym_line_comment, sym_block_comment, - ACTIONS(3570), 5, + ACTIONS(3562), 5, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COLON, anon_sym_EQ, anon_sym_where, - [78697] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [79432] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4316), 1, - anon_sym_LBRACE, - ACTIONS(5678), 1, - anon_sym_STAR, - STATE(2999), 1, - sym_use_list, - ACTIONS(5676), 2, - sym_identifier, - sym_super, - STATE(2554), 2, + ACTIONS(3192), 1, + anon_sym_PLUS, + ACTIONS(5226), 1, + anon_sym_COLON, + STATE(3477), 1, + sym_trait_bounds, + ACTIONS(5706), 2, + anon_sym_GT, + anon_sym_COMMA, + STATE(2567), 2, sym_line_comment, sym_block_comment, - [78721] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [79456] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2555), 2, + ACTIONS(5021), 2, + anon_sym_COLON, + anon_sym_PIPE, + STATE(2568), 2, sym_line_comment, sym_block_comment, - ACTIONS(5680), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, + ACTIONS(3998), 3, + anon_sym_RPAREN, + anon_sym_PLUS, anon_sym_COMMA, - anon_sym_where, - [78739] = 8, - ACTIONS(103), 1, + [79476] = 4, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + STATE(2569), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3796), 5, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_COLON_COLON, + anon_sym_if, + [79494] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, - anon_sym_LBRACE, - ACTIONS(3166), 1, - anon_sym_PLUS, - ACTIONS(3448), 1, - anon_sym_SQUOTE, - STATE(1926), 1, - sym_block, - STATE(3779), 1, - sym_label, - STATE(2556), 2, + ACTIONS(4696), 1, + anon_sym_DOT_DOT, + ACTIONS(5343), 1, + anon_sym_COLON, + ACTIONS(5345), 1, + anon_sym_COLON_COLON, + ACTIONS(4698), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2570), 2, sym_line_comment, sym_block_comment, - [78765] = 8, - ACTIONS(103), 1, + [79518] = 8, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(3110), 1, + anon_sym_SQUOTE, + ACTIONS(5708), 1, + sym_identifier, + ACTIONS(5710), 1, + anon_sym_GT, + ACTIONS(5712), 1, + anon_sym_COMMA, + STATE(2913), 1, + sym_lifetime, + STATE(2571), 2, + sym_line_comment, + sym_block_comment, + [79544] = 8, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3448), 1, + ACTIONS(3474), 1, anon_sym_SQUOTE, - ACTIONS(5214), 1, + ACTIONS(5192), 1, anon_sym_LBRACE, - ACTIONS(5682), 1, + ACTIONS(5714), 1, anon_sym_SEMI, - STATE(734), 1, + STATE(508), 1, sym_block, - STATE(3774), 1, + STATE(3808), 1, sym_label, - STATE(2557), 2, + STATE(2572), 2, sym_line_comment, sym_block_comment, - [78791] = 8, - ACTIONS(103), 1, + [79570] = 8, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(4702), 1, + anon_sym_LT2, + ACTIONS(4776), 1, + anon_sym_COLON_COLON, + ACTIONS(4853), 1, + anon_sym_COLON, + STATE(2039), 1, + sym_type_arguments, + STATE(2600), 1, + sym_trait_bounds, + STATE(2573), 2, + sym_line_comment, + sym_block_comment, + [79596] = 8, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3448), 1, + ACTIONS(3474), 1, anon_sym_SQUOTE, - ACTIONS(5214), 1, + ACTIONS(5220), 1, anon_sym_LBRACE, - ACTIONS(5684), 1, + ACTIONS(5716), 1, anon_sym_SEMI, - STATE(624), 1, + STATE(1203), 1, sym_block, - STATE(3774), 1, + STATE(3810), 1, sym_label, - STATE(2558), 2, + STATE(2574), 2, sym_line_comment, sym_block_comment, - [78817] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [79622] = 8, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(2559), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5444), 5, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - [78835] = 7, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1371), 1, - anon_sym_RPAREN, - ACTIONS(5686), 1, - anon_sym_COMMA, - STATE(3113), 1, - aux_sym_parameters_repeat1, - ACTIONS(4654), 2, + ACTIONS(5718), 1, + anon_sym_SEMI, + ACTIONS(5720), 1, anon_sym_COLON, + ACTIONS(5722), 1, anon_sym_PIPE, - STATE(2560), 2, + ACTIONS(5724), 1, + anon_sym_EQ, + ACTIONS(5726), 1, + anon_sym_else, + STATE(2575), 2, sym_line_comment, sym_block_comment, - [78859] = 4, - ACTIONS(103), 1, + [79648] = 8, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(3456), 1, + anon_sym_LPAREN, + ACTIONS(4702), 1, + anon_sym_LT2, + ACTIONS(4776), 1, + anon_sym_COLON_COLON, + STATE(1414), 1, + sym_parameters, + STATE(2039), 1, + sym_type_arguments, + STATE(2576), 2, + sym_line_comment, + sym_block_comment, + [79674] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2561), 2, + ACTIONS(5730), 1, + anon_sym_COLON_COLON, + ACTIONS(5732), 1, + anon_sym_as, + STATE(2577), 2, sym_line_comment, sym_block_comment, - ACTIONS(5688), 5, + ACTIONS(5728), 3, anon_sym_SEMI, anon_sym_RBRACE, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_where, - [78877] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [79696] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5619), 1, + ACTIONS(5732), 1, anon_sym_as, - ACTIONS(5690), 1, + ACTIONS(5734), 1, anon_sym_COLON_COLON, - STATE(2562), 2, + STATE(2578), 2, sym_line_comment, sym_block_comment, - ACTIONS(5615), 3, + ACTIONS(5728), 3, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COMMA, - [78899] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [79718] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2563), 2, + STATE(2579), 2, sym_line_comment, sym_block_comment, - ACTIONS(5692), 5, + ACTIONS(5736), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_EQ, anon_sym_COMMA, anon_sym_where, - [78917] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3984), 2, - anon_sym_LPAREN, - anon_sym_COLON_COLON, - STATE(2564), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4845), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [78937] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [79736] = 7, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3448), 1, - anon_sym_SQUOTE, - ACTIONS(5214), 1, - anon_sym_LBRACE, - ACTIONS(5694), 1, - anon_sym_SEMI, - STATE(699), 1, - sym_block, - STATE(3774), 1, - sym_label, - STATE(2565), 2, - sym_line_comment, - sym_block_comment, - [78963] = 7, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5696), 1, + ACTIONS(5738), 1, anon_sym_RPAREN, - ACTIONS(5698), 1, + ACTIONS(5741), 1, anon_sym_COMMA, - STATE(2919), 1, + STATE(3067), 1, aux_sym_parameters_repeat1, - ACTIONS(4654), 2, + ACTIONS(4684), 2, anon_sym_COLON, anon_sym_PIPE, - STATE(2566), 2, + STATE(2580), 2, sym_line_comment, sym_block_comment, - [78987] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [79760] = 8, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, + ACTIONS(412), 1, anon_sym_LBRACE, - ACTIONS(3166), 1, + ACTIONS(3182), 1, anon_sym_PLUS, - ACTIONS(3448), 1, + ACTIONS(3474), 1, anon_sym_SQUOTE, - STATE(1849), 1, + STATE(1774), 1, sym_block, - STATE(3779), 1, + STATE(3812), 1, sym_label, - STATE(2567), 2, + STATE(2581), 2, sym_line_comment, sym_block_comment, - [79013] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [79786] = 8, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4833), 1, - anon_sym_EQ, - ACTIONS(5164), 1, + ACTIONS(5722), 1, + anon_sym_PIPE, + ACTIONS(5744), 1, + anon_sym_RPAREN, + ACTIONS(5746), 1, anon_sym_COLON, - STATE(3144), 1, - sym_trait_bounds, - ACTIONS(4835), 2, - anon_sym_GT, + ACTIONS(5748), 1, anon_sym_COMMA, - STATE(2568), 2, + STATE(2911), 1, + aux_sym_slice_pattern_repeat1, + STATE(2582), 2, sym_line_comment, sym_block_comment, - [79037] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [79812] = 4, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5069), 1, - anon_sym_LT, - ACTIONS(5071), 1, - anon_sym_where, - ACTIONS(5700), 1, - anon_sym_EQ, - STATE(3182), 1, - sym_type_parameters, - STATE(3793), 1, - sym_where_clause, - STATE(2569), 2, - sym_line_comment, - sym_block_comment, - [79063] = 8, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3448), 1, - anon_sym_SQUOTE, - ACTIONS(5170), 1, - anon_sym_LBRACE, - ACTIONS(5702), 1, - anon_sym_SEMI, - STATE(1157), 1, - sym_block, - STATE(3777), 1, - sym_label, - STATE(2570), 2, + STATE(2583), 2, sym_line_comment, sym_block_comment, - [79089] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3578), 5, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_where, + [79830] = 8, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3448), 1, + ACTIONS(3474), 1, anon_sym_SQUOTE, - ACTIONS(5214), 1, + ACTIONS(5192), 1, anon_sym_LBRACE, - ACTIONS(5704), 1, + ACTIONS(5750), 1, anon_sym_SEMI, - STATE(748), 1, + STATE(651), 1, sym_block, - STATE(3774), 1, + STATE(3808), 1, sym_label, - STATE(2571), 2, + STATE(2584), 2, sym_line_comment, sym_block_comment, - [79115] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [79856] = 6, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3996), 1, - anon_sym_PLUS, - ACTIONS(5043), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(5706), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2572), 2, - sym_line_comment, - sym_block_comment, - [79137] = 8, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4672), 1, - anon_sym_LT2, - ACTIONS(4678), 1, + ACTIONS(5732), 1, + anon_sym_as, + ACTIONS(5752), 1, anon_sym_COLON_COLON, - ACTIONS(4831), 1, - anon_sym_COLON, - STATE(2027), 1, - sym_type_arguments, - STATE(2551), 1, - sym_trait_bounds, - STATE(2573), 2, - sym_line_comment, - sym_block_comment, - [79163] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(2574), 2, + STATE(2585), 2, sym_line_comment, sym_block_comment, - ACTIONS(5709), 5, + ACTIONS(5728), 3, anon_sym_SEMI, anon_sym_RBRACE, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_where, - [79181] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [79878] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2575), 2, + STATE(2586), 2, sym_line_comment, sym_block_comment, - ACTIONS(3798), 5, + ACTIONS(3678), 5, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_COLON_COLON, anon_sym_if, - [79199] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [79896] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5049), 1, + ACTIONS(5754), 1, anon_sym_RPAREN, - ACTIONS(5711), 1, + ACTIONS(5756), 1, + anon_sym_COMMA, + STATE(3067), 1, + aux_sym_parameters_repeat1, + ACTIONS(4684), 2, anon_sym_COLON, - ACTIONS(5713), 1, anon_sym_PIPE, - ACTIONS(5715), 1, - anon_sym_COMMA, - STATE(3047), 1, - aux_sym_closure_parameters_repeat1, - STATE(2576), 2, + STATE(2587), 2, sym_line_comment, sym_block_comment, - [79225] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [79920] = 8, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4666), 1, - anon_sym_DOT_DOT, - ACTIONS(5416), 1, - anon_sym_COLON, - ACTIONS(5418), 1, - anon_sym_COLON_COLON, - ACTIONS(4668), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2577), 2, - sym_line_comment, - sym_block_comment, - [79249] = 8, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3448), 1, - anon_sym_SQUOTE, - ACTIONS(5214), 1, + ACTIONS(348), 1, anon_sym_LBRACE, - ACTIONS(5717), 1, - anon_sym_SEMI, - STATE(781), 1, + ACTIONS(3182), 1, + anon_sym_PLUS, + ACTIONS(3474), 1, + anon_sym_SQUOTE, + STATE(1453), 1, sym_block, - STATE(3774), 1, + STATE(3750), 1, sym_label, - STATE(2578), 2, + STATE(2588), 2, sym_line_comment, sym_block_comment, - [79275] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [79946] = 7, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5164), 1, - anon_sym_COLON, - STATE(3021), 1, - aux_sym_for_lifetimes_repeat1, - STATE(3402), 1, - sym_trait_bounds, - ACTIONS(5719), 2, - anon_sym_GT, - anon_sym_COMMA, - STATE(2579), 2, - sym_line_comment, - sym_block_comment, - [79299] = 8, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3084), 1, - anon_sym_SQUOTE, - ACTIONS(5721), 1, + ACTIONS(4358), 1, + anon_sym_LBRACE, + ACTIONS(5760), 1, + anon_sym_STAR, + STATE(2994), 1, + sym_use_list, + ACTIONS(5758), 2, sym_identifier, - ACTIONS(5723), 1, - anon_sym_GT, - ACTIONS(5725), 1, - anon_sym_COMMA, - STATE(2878), 1, - sym_lifetime, - STATE(2580), 2, - sym_line_comment, - sym_block_comment, - [79325] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5621), 1, - anon_sym_RBRACK, - ACTIONS(3475), 2, - anon_sym_SEMI, - anon_sym_PLUS, - ACTIONS(4654), 2, - anon_sym_PIPE, - anon_sym_COMMA, - STATE(2581), 2, + sym_super, + STATE(2589), 2, sym_line_comment, sym_block_comment, - [79347] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [79970] = 8, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3448), 1, - anon_sym_SQUOTE, - ACTIONS(5214), 1, - anon_sym_LBRACE, - ACTIONS(5727), 1, - anon_sym_SEMI, - STATE(524), 1, - sym_block, - STATE(3774), 1, - sym_label, - STATE(2582), 2, - sym_line_comment, - sym_block_comment, - [79373] = 8, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3448), 1, + ACTIONS(3474), 1, anon_sym_SQUOTE, - ACTIONS(5214), 1, + ACTIONS(5220), 1, anon_sym_LBRACE, - ACTIONS(5729), 1, + ACTIONS(5762), 1, anon_sym_SEMI, - STATE(665), 1, + STATE(1235), 1, sym_block, - STATE(3774), 1, + STATE(3810), 1, sym_label, - STATE(2583), 2, + STATE(2590), 2, sym_line_comment, sym_block_comment, - [79399] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [79996] = 4, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(2584), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3624), 5, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_COLON_COLON, - anon_sym_if, - [79417] = 4, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2585), 2, + STATE(2591), 2, sym_line_comment, sym_block_comment, - ACTIONS(3574), 5, + ACTIONS(5579), 5, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_COLON, anon_sym_EQ, - anon_sym_where, - [79435] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_COMMA, + anon_sym_SQUOTE, + [80014] = 8, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3448), 1, + ACTIONS(3474), 1, anon_sym_SQUOTE, - ACTIONS(5214), 1, + ACTIONS(5192), 1, anon_sym_LBRACE, - ACTIONS(5731), 1, + ACTIONS(5764), 1, anon_sym_SEMI, - STATE(507), 1, + STATE(633), 1, sym_block, - STATE(3774), 1, + STATE(3808), 1, sym_label, - STATE(2586), 2, + STATE(2592), 2, sym_line_comment, sym_block_comment, - [79461] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [80040] = 6, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(2587), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3582), 5, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_where, - [79479] = 6, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5706), 1, + ACTIONS(5612), 1, anon_sym_RBRACK, - ACTIONS(3996), 2, + ACTIONS(3594), 2, anon_sym_SEMI, anon_sym_PLUS, - ACTIONS(5043), 2, + ACTIONS(4684), 2, anon_sym_PIPE, anon_sym_COMMA, - STATE(2588), 2, + STATE(2593), 2, sym_line_comment, sym_block_comment, - [79501] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [80062] = 8, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5733), 1, + ACTIONS(3474), 1, + anon_sym_SQUOTE, + ACTIONS(5192), 1, + anon_sym_LBRACE, + ACTIONS(5766), 1, anon_sym_SEMI, - ACTIONS(5735), 1, - anon_sym_COLON, - ACTIONS(5737), 1, - anon_sym_PIPE, - ACTIONS(5739), 1, - anon_sym_EQ, - ACTIONS(5741), 1, - anon_sym_else, - STATE(2589), 2, + STATE(525), 1, + sym_block, + STATE(3808), 1, + sym_label, + STATE(2594), 2, sym_line_comment, sym_block_comment, - [79527] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [80088] = 8, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3448), 1, + ACTIONS(3474), 1, anon_sym_SQUOTE, - ACTIONS(5214), 1, + ACTIONS(5192), 1, anon_sym_LBRACE, - ACTIONS(5743), 1, + ACTIONS(5768), 1, anon_sym_SEMI, - STATE(755), 1, + STATE(534), 1, sym_block, - STATE(3774), 1, + STATE(3808), 1, sym_label, - STATE(2590), 2, + STATE(2595), 2, sym_line_comment, sym_block_comment, - [79553] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [80114] = 4, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1365), 1, - anon_sym_RPAREN, - ACTIONS(5745), 1, - anon_sym_COMMA, - STATE(2955), 1, - aux_sym_parameters_repeat1, - ACTIONS(4654), 2, - anon_sym_COLON, - anon_sym_PIPE, - STATE(2591), 2, - sym_line_comment, - sym_block_comment, - [79577] = 4, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2592), 2, + STATE(2596), 2, sym_line_comment, sym_block_comment, - ACTIONS(5747), 5, + ACTIONS(5770), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_EQ, anon_sym_COMMA, anon_sym_where, - [79595] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [80132] = 4, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(407), 1, - anon_sym_LBRACE, - ACTIONS(3166), 1, - anon_sym_PLUS, - ACTIONS(3448), 1, - anon_sym_SQUOTE, - STATE(1732), 1, - sym_block, - STATE(3779), 1, - sym_label, - STATE(2593), 2, - sym_line_comment, - sym_block_comment, - [79621] = 4, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2594), 2, + STATE(2597), 2, sym_line_comment, sym_block_comment, - ACTIONS(5749), 5, + ACTIONS(3590), 5, anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_LBRACE, + anon_sym_COLON, anon_sym_EQ, - anon_sym_COMMA, anon_sym_where, - [79639] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [80150] = 8, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3448), 1, + ACTIONS(3474), 1, anon_sym_SQUOTE, - ACTIONS(5170), 1, + ACTIONS(5220), 1, anon_sym_LBRACE, - ACTIONS(5751), 1, + ACTIONS(5772), 1, anon_sym_SEMI, - STATE(1217), 1, + STATE(1249), 1, sym_block, - STATE(3777), 1, + STATE(3810), 1, sym_label, - STATE(2595), 2, - sym_line_comment, - sym_block_comment, - [79665] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5737), 1, - anon_sym_PIPE, - ACTIONS(5753), 1, - anon_sym_RPAREN, - ACTIONS(5755), 1, - anon_sym_COLON, - ACTIONS(5757), 1, - anon_sym_COMMA, - STATE(2969), 1, - aux_sym_slice_pattern_repeat1, - STATE(2596), 2, - sym_line_comment, - sym_block_comment, - [79691] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5759), 1, - anon_sym_RPAREN, - ACTIONS(5761), 1, - anon_sym_COMMA, - STATE(3005), 1, - aux_sym_parameters_repeat1, - ACTIONS(4654), 2, - anon_sym_COLON, - anon_sym_PIPE, - STATE(2597), 2, - sym_line_comment, - sym_block_comment, - [79715] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, STATE(2598), 2, sym_line_comment, sym_block_comment, - ACTIONS(3684), 5, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_COLON_COLON, - anon_sym_if, - [79733] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5763), 1, - anon_sym_STAR_SLASH, - ACTIONS(5765), 1, - sym__outer_block_doc_comment_marker, - ACTIONS(5767), 1, - sym__inner_block_doc_comment_marker, - ACTIONS(5769), 1, - sym__block_comment_content, - STATE(3248), 1, - sym__block_doc_comment_marker, - STATE(2599), 2, - sym_line_comment, - sym_block_comment, - [79759] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [80176] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3448), 1, - anon_sym_SQUOTE, - ACTIONS(5170), 1, - anon_sym_LBRACE, - ACTIONS(5771), 1, + STATE(2599), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5774), 5, anon_sym_SEMI, - STATE(1259), 1, - sym_block, - STATE(3777), 1, - sym_label, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + [80194] = 4, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, STATE(2600), 2, sym_line_comment, sym_block_comment, - [79785] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5776), 5, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + [80212] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(4684), 2, + anon_sym_COLON, + anon_sym_PIPE, STATE(2601), 2, sym_line_comment, sym_block_comment, - ACTIONS(3782), 5, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_COLON_COLON, - anon_sym_if, - [79803] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3594), 3, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + [80232] = 8, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5069), 1, - anon_sym_LT, - ACTIONS(5071), 1, - anon_sym_where, - ACTIONS(5773), 1, - anon_sym_EQ, - STATE(3176), 1, - sym_type_parameters, - STATE(3755), 1, - sym_where_clause, + ACTIONS(3474), 1, + anon_sym_SQUOTE, + ACTIONS(5192), 1, + anon_sym_LBRACE, + ACTIONS(5778), 1, + anon_sym_SEMI, + STATE(686), 1, + sym_block, + STATE(3808), 1, + sym_label, STATE(2602), 2, sym_line_comment, sym_block_comment, - [79829] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [80258] = 8, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5029), 1, - anon_sym_PIPE, - ACTIONS(5775), 1, + ACTIONS(3474), 1, + anon_sym_SQUOTE, + ACTIONS(5220), 1, + anon_sym_LBRACE, + ACTIONS(5780), 1, anon_sym_SEMI, - ACTIONS(5777), 1, - anon_sym_COLON, - ACTIONS(5779), 1, - anon_sym_EQ, - ACTIONS(5781), 1, - anon_sym_else, + STATE(1114), 1, + sym_block, + STATE(3810), 1, + sym_label, STATE(2603), 2, sym_line_comment, sym_block_comment, - [79855] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [80284] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, - anon_sym_LBRACE, - ACTIONS(3166), 1, + ACTIONS(3192), 1, anon_sym_PLUS, - ACTIONS(3448), 1, - anon_sym_SQUOTE, - STATE(1738), 1, - sym_block, - STATE(3779), 1, - sym_label, + ACTIONS(5226), 1, + anon_sym_COLON, + STATE(3413), 1, + sym_trait_bounds, + ACTIONS(5659), 2, + anon_sym_GT, + anon_sym_COMMA, STATE(2604), 2, sym_line_comment, sym_block_comment, - [79881] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [80308] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4028), 2, - anon_sym_LPAREN, - anon_sym_COLON_COLON, STATE(2605), 2, sym_line_comment, sym_block_comment, - ACTIONS(4845), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [79901] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5782), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [80326] = 8, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3448), 1, - anon_sym_SQUOTE, - ACTIONS(5214), 1, + ACTIONS(412), 1, anon_sym_LBRACE, - ACTIONS(5783), 1, - anon_sym_SEMI, - STATE(561), 1, + ACTIONS(3182), 1, + anon_sym_PLUS, + ACTIONS(3474), 1, + anon_sym_SQUOTE, + STATE(1753), 1, sym_block, - STATE(3774), 1, + STATE(3812), 1, sym_label, STATE(2606), 2, sym_line_comment, sym_block_comment, - [79927] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [80352] = 8, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5619), 1, - anon_sym_as, - ACTIONS(5785), 1, - anon_sym_COLON_COLON, + ACTIONS(348), 1, + anon_sym_LBRACE, + ACTIONS(3182), 1, + anon_sym_PLUS, + ACTIONS(3474), 1, + anon_sym_SQUOTE, + STATE(1456), 1, + sym_block, + STATE(3750), 1, + sym_label, STATE(2607), 2, sym_line_comment, sym_block_comment, - ACTIONS(5615), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [79949] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [80378] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5737), 1, - anon_sym_PIPE, - ACTIONS(5787), 1, + ACTIONS(5675), 1, + anon_sym_RBRACK, + ACTIONS(3998), 2, anon_sym_SEMI, - ACTIONS(5789), 1, - anon_sym_COLON, - ACTIONS(5791), 1, - anon_sym_EQ, - ACTIONS(5793), 1, - anon_sym_else, + anon_sym_PLUS, + ACTIONS(5021), 2, + anon_sym_PIPE, + anon_sym_COMMA, STATE(2608), 2, sym_line_comment, sym_block_comment, - [79975] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [80400] = 8, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3448), 1, + ACTIONS(3474), 1, anon_sym_SQUOTE, - ACTIONS(5170), 1, + ACTIONS(5220), 1, anon_sym_LBRACE, - ACTIONS(5795), 1, + ACTIONS(5784), 1, anon_sym_SEMI, - STATE(1297), 1, + STATE(1278), 1, sym_block, - STATE(3777), 1, + STATE(3810), 1, sym_label, STATE(2609), 2, sym_line_comment, sym_block_comment, - [80001] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [80426] = 8, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4672), 1, - anon_sym_LT2, - ACTIONS(4674), 1, - anon_sym_LPAREN, - ACTIONS(4678), 1, - anon_sym_COLON_COLON, - STATE(2027), 1, - sym_type_arguments, - STATE(2100), 1, - sym_parameters, + ACTIONS(3474), 1, + anon_sym_SQUOTE, + ACTIONS(5192), 1, + anon_sym_LBRACE, + ACTIONS(5786), 1, + anon_sym_SEMI, + STATE(606), 1, + sym_block, + STATE(3808), 1, + sym_label, STATE(2610), 2, sym_line_comment, sym_block_comment, - [80027] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [80452] = 8, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3210), 1, - anon_sym_PLUS, - ACTIONS(5164), 1, - anon_sym_COLON, - STATE(3376), 1, - sym_trait_bounds, - ACTIONS(5797), 2, - anon_sym_GT, - anon_sym_COMMA, + ACTIONS(3474), 1, + anon_sym_SQUOTE, + ACTIONS(5192), 1, + anon_sym_LBRACE, + ACTIONS(5788), 1, + anon_sym_SEMI, + STATE(531), 1, + sym_block, + STATE(3808), 1, + sym_label, STATE(2611), 2, sym_line_comment, sym_block_comment, - [80051] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [80478] = 8, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3210), 1, - anon_sym_PLUS, - ACTIONS(5164), 1, - anon_sym_COLON, - STATE(3402), 1, - sym_trait_bounds, - ACTIONS(5719), 2, - anon_sym_GT, - anon_sym_COMMA, + ACTIONS(3474), 1, + anon_sym_SQUOTE, + ACTIONS(5220), 1, + anon_sym_LBRACE, + ACTIONS(5790), 1, + anon_sym_SEMI, + STATE(1285), 1, + sym_block, + STATE(3810), 1, + sym_label, STATE(2612), 2, sym_line_comment, sym_block_comment, - [80075] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [80504] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, STATE(2613), 2, sym_line_comment, sym_block_comment, - ACTIONS(5799), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_where, - [80093] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3664), 5, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_COLON_COLON, + anon_sym_if, + [80522] = 8, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(3474), 1, + anon_sym_SQUOTE, + ACTIONS(5220), 1, + anon_sym_LBRACE, + ACTIONS(5792), 1, + anon_sym_SEMI, + STATE(1295), 1, + sym_block, + STATE(3810), 1, + sym_label, STATE(2614), 2, sym_line_comment, sym_block_comment, - ACTIONS(5801), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_where, - [80111] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [80548] = 8, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5164), 1, + ACTIONS(5722), 1, + anon_sym_PIPE, + ACTIONS(5794), 1, + anon_sym_SEMI, + ACTIONS(5796), 1, anon_sym_COLON, - ACTIONS(5451), 1, - anon_sym_GT, - ACTIONS(5453), 1, - anon_sym_COMMA, - STATE(2912), 1, - sym_trait_bounds, - STATE(2913), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(5798), 1, + anon_sym_EQ, + ACTIONS(5800), 1, + anon_sym_else, STATE(2615), 2, sym_line_comment, sym_block_comment, - [80137] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [80574] = 8, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4672), 1, - anon_sym_LT2, - ACTIONS(5803), 1, - anon_sym_COLON_COLON, - ACTIONS(5805), 1, - anon_sym_for, - STATE(2027), 1, - sym_type_arguments, + ACTIONS(3474), 1, + anon_sym_SQUOTE, + ACTIONS(5220), 1, + anon_sym_LBRACE, + ACTIONS(5802), 1, + anon_sym_SEMI, + STATE(1301), 1, + sym_block, + STATE(3810), 1, + sym_label, STATE(2616), 2, sym_line_comment, sym_block_comment, - [80160] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [80600] = 8, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4672), 1, - anon_sym_LT2, - ACTIONS(5306), 1, - sym_super, - ACTIONS(5807), 1, - sym_identifier, - STATE(3591), 1, - sym_type_arguments, + ACTIONS(3474), 1, + anon_sym_SQUOTE, + ACTIONS(5220), 1, + anon_sym_LBRACE, + ACTIONS(5804), 1, + anon_sym_SEMI, + STATE(1305), 1, + sym_block, + STATE(3810), 1, + sym_label, STATE(2617), 2, sym_line_comment, sym_block_comment, - [80183] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [80626] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1383), 1, - anon_sym_LBRACE, - ACTIONS(3448), 1, - anon_sym_SQUOTE, - STATE(482), 1, - sym_block, - STATE(3778), 1, - sym_label, + ACTIONS(3944), 2, + anon_sym_LPAREN, + anon_sym_COLON_COLON, STATE(2618), 2, sym_line_comment, sym_block_comment, - [80206] = 7, - ACTIONS(27), 1, + ACTIONS(4883), 3, + anon_sym_EQ_GT, anon_sym_PIPE, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_if, + [80646] = 8, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5079), 1, - anon_sym_move, - ACTIONS(5809), 1, - anon_sym_async, - STATE(233), 1, - sym_closure_parameters, + ACTIONS(5102), 1, + anon_sym_LT, + ACTIONS(5104), 1, + anon_sym_where, + ACTIONS(5806), 1, + anon_sym_EQ, + STATE(3195), 1, + sym_type_parameters, + STATE(3789), 1, + sym_where_clause, STATE(2619), 2, sym_line_comment, sym_block_comment, - [80229] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [80672] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5071), 1, - anon_sym_where, - ACTIONS(5093), 1, - anon_sym_LBRACE, - STATE(660), 1, - sym_declaration_list, - STATE(3284), 1, - sym_where_clause, STATE(2620), 2, sym_line_comment, sym_block_comment, - [80252] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5808), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [80690] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3438), 1, - anon_sym_LT2, - ACTIONS(5306), 1, - sym_super, - ACTIONS(5811), 1, - sym_identifier, - STATE(1620), 1, - sym_type_arguments, + ACTIONS(4118), 2, + anon_sym_LPAREN, + anon_sym_COLON_COLON, STATE(2621), 2, sym_line_comment, sym_block_comment, - [80275] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4883), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [80710] = 8, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, + ACTIONS(348), 1, + anon_sym_LBRACE, + ACTIONS(3182), 1, anon_sym_PLUS, - ACTIONS(5071), 1, - anon_sym_where, - ACTIONS(5813), 1, - anon_sym_SEMI, - STATE(3753), 1, - sym_where_clause, + ACTIONS(3474), 1, + anon_sym_SQUOTE, + STATE(1502), 1, + sym_block, + STATE(3750), 1, + sym_label, STATE(2622), 2, sym_line_comment, sym_block_comment, - [80298] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [80736] = 8, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5815), 1, - anon_sym_LPAREN, - ACTIONS(5817), 1, - anon_sym_LBRACK, - ACTIONS(5819), 1, - anon_sym_LBRACE, - STATE(1080), 1, - sym_delim_token_tree, + ACTIONS(5810), 1, + anon_sym_STAR_SLASH, + ACTIONS(5812), 1, + sym__outer_block_doc_comment_marker, + ACTIONS(5814), 1, + sym__inner_block_doc_comment_marker, + ACTIONS(5816), 1, + sym__block_comment_content, + STATE(3233), 1, + sym__block_doc_comment_marker, STATE(2623), 2, sym_line_comment, sym_block_comment, - [80321] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [80762] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, - anon_sym_LBRACE, - ACTIONS(3448), 1, - anon_sym_SQUOTE, - STATE(1822), 1, - sym_block, - STATE(3779), 1, - sym_label, STATE(2624), 2, sym_line_comment, sym_block_comment, - [80344] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5818), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [80780] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, - anon_sym_LBRACE, - ACTIONS(3448), 1, - anon_sym_SQUOTE, - STATE(1633), 1, - sym_block, - STATE(3779), 1, - sym_label, + ACTIONS(4855), 1, + anon_sym_EQ, + ACTIONS(5226), 1, + anon_sym_COLON, + STATE(3037), 1, + sym_trait_bounds, + ACTIONS(4857), 2, + anon_sym_GT, + anon_sym_COMMA, STATE(2625), 2, sym_line_comment, sym_block_comment, - [80367] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [80804] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5737), 1, - anon_sym_PIPE, - ACTIONS(5821), 1, - anon_sym_RPAREN, - ACTIONS(5823), 1, - anon_sym_COMMA, - STATE(2978), 1, - aux_sym_slice_pattern_repeat1, STATE(2626), 2, sym_line_comment, sym_block_comment, - [80390] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5820), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [80822] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, - anon_sym_LBRACE, - ACTIONS(3448), 1, - anon_sym_SQUOTE, - STATE(1824), 1, - sym_block, - STATE(3779), 1, - sym_label, STATE(2627), 2, sym_line_comment, sym_block_comment, - [80413] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3416), 5, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_as, + [80840] = 8, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5825), 1, - anon_sym_DQUOTE, - STATE(2635), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5827), 2, - sym_string_content, - sym_escape_sequence, + ACTIONS(4702), 1, + anon_sym_LT2, + ACTIONS(4704), 1, + anon_sym_LPAREN, + ACTIONS(4776), 1, + anon_sym_COLON_COLON, + STATE(2039), 1, + sym_type_arguments, + STATE(2107), 1, + sym_parameters, STATE(2628), 2, sym_line_comment, sym_block_comment, - [80434] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [80866] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5815), 1, - anon_sym_LPAREN, - ACTIONS(5817), 1, - anon_sym_LBRACK, - ACTIONS(5819), 1, - anon_sym_LBRACE, - STATE(1073), 1, - sym_delim_token_tree, STATE(2629), 2, sym_line_comment, sym_block_comment, - [80457] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5822), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [80884] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1383), 1, - anon_sym_LBRACE, - ACTIONS(3448), 1, - anon_sym_SQUOTE, - STATE(487), 1, - sym_block, - STATE(3778), 1, - sym_label, + ACTIONS(4696), 1, + anon_sym_DOT_DOT, + ACTIONS(5345), 1, + anon_sym_COLON_COLON, + ACTIONS(5429), 1, + anon_sym_COLON, + ACTIONS(4698), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, STATE(2630), 2, sym_line_comment, sym_block_comment, - [80480] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [80908] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4672), 1, - anon_sym_LT2, - ACTIONS(5829), 1, - sym_identifier, - ACTIONS(5831), 1, - sym_super, - STATE(2121), 1, - sym_type_arguments, STATE(2631), 2, sym_line_comment, sym_block_comment, - [80503] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5824), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [80926] = 8, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4672), 1, - anon_sym_LT2, - ACTIONS(5829), 1, - sym_identifier, - ACTIONS(5831), 1, - sym_super, - STATE(2128), 1, - sym_type_arguments, + ACTIONS(3474), 1, + anon_sym_SQUOTE, + ACTIONS(5192), 1, + anon_sym_LBRACE, + ACTIONS(5826), 1, + anon_sym_SEMI, + STATE(518), 1, + sym_block, + STATE(3808), 1, + sym_label, STATE(2632), 2, sym_line_comment, sym_block_comment, - [80526] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [80952] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4672), 1, - anon_sym_LT2, - ACTIONS(5831), 1, - sym_super, - ACTIONS(5833), 1, - sym_identifier, - STATE(3553), 1, - sym_type_arguments, + ACTIONS(3182), 1, + anon_sym_PLUS, + ACTIONS(5104), 1, + anon_sym_where, + ACTIONS(5828), 1, + anon_sym_SEMI, + STATE(3590), 1, + sym_where_clause, STATE(2633), 2, sym_line_comment, sym_block_comment, - [80549] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [80975] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4672), 1, - anon_sym_LT2, - ACTIONS(5831), 1, - sym_super, - ACTIONS(5833), 1, - sym_identifier, - STATE(3591), 1, - sym_type_arguments, + ACTIONS(5226), 1, + anon_sym_COLON, + STATE(3413), 1, + sym_trait_bounds, + ACTIONS(5659), 2, + anon_sym_GT, + anon_sym_COMMA, STATE(2634), 2, sym_line_comment, sym_block_comment, - [80572] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [80996] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5835), 1, + ACTIONS(5830), 1, anon_sym_DQUOTE, - ACTIONS(5837), 2, + ACTIONS(5832), 2, sym_string_content, sym_escape_sequence, STATE(2635), 3, sym_line_comment, sym_block_comment, aux_sym_string_literal_repeat1, - [80591] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [81015] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5840), 1, - anon_sym_LBRACE, - ACTIONS(5842), 1, - anon_sym_for, - ACTIONS(5844), 1, - anon_sym_loop, - ACTIONS(5846), 1, - anon_sym_while, + ACTIONS(5835), 1, + anon_sym_COLON, STATE(2636), 2, sym_line_comment, sym_block_comment, - [80614] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5033), 3, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_COMMA, + [81034] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, - anon_sym_LBRACE, - ACTIONS(3448), 1, - anon_sym_SQUOTE, - STATE(1842), 1, - sym_block, - STATE(3779), 1, - sym_label, + ACTIONS(4696), 1, + anon_sym_DOT_DOT, + ACTIONS(5345), 1, + anon_sym_COLON_COLON, + ACTIONS(4698), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, STATE(2637), 2, sym_line_comment, sym_block_comment, - [80637] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [81055] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5071), 1, - anon_sym_where, - ACTIONS(5469), 1, - anon_sym_LBRACE, - STATE(1352), 1, - sym_enum_variant_list, - STATE(3297), 1, - sym_where_clause, + ACTIONS(1384), 1, + anon_sym_RPAREN, + ACTIONS(3182), 1, + anon_sym_PLUS, + ACTIONS(5631), 1, + anon_sym_COMMA, + STATE(3141), 1, + aux_sym_parameters_repeat1, STATE(2638), 2, sym_line_comment, sym_block_comment, - [80660] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [81078] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1383), 1, - anon_sym_LBRACE, - ACTIONS(3448), 1, + ACTIONS(3110), 1, anon_sym_SQUOTE, - STATE(492), 1, - sym_block, - STATE(3778), 1, - sym_label, + ACTIONS(5837), 1, + sym_identifier, + ACTIONS(5839), 1, + anon_sym_GT, + STATE(3384), 1, + sym_lifetime, STATE(2639), 2, sym_line_comment, sym_block_comment, - [80683] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [81101] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, - anon_sym_PLUS, - ACTIONS(5071), 1, - anon_sym_where, - ACTIONS(5848), 1, - anon_sym_SEMI, - STATE(3566), 1, - sym_where_clause, + ACTIONS(3110), 1, + anon_sym_SQUOTE, + ACTIONS(5837), 1, + sym_identifier, + ACTIONS(5841), 1, + anon_sym_GT, + STATE(3384), 1, + sym_lifetime, STATE(2640), 2, sym_line_comment, sym_block_comment, - [80706] = 7, - ACTIONS(19), 1, - anon_sym_LBRACE, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [81124] = 7, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(4704), 1, + anon_sym_LPAREN, + ACTIONS(5102), 1, + anon_sym_LT, + STATE(2312), 1, + sym_parameters, + STATE(3244), 1, + sym_type_parameters, + STATE(2641), 2, + sym_line_comment, + sym_block_comment, + [81147] = 7, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(5649), 1, + anon_sym_COLON, + ACTIONS(5651), 1, + anon_sym_PIPE, + ACTIONS(5653), 1, + anon_sym_COMMA, + STATE(3147), 1, + aux_sym_closure_parameters_repeat1, + STATE(2642), 2, + sym_line_comment, + sym_block_comment, + [81170] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3448), 1, + ACTIONS(348), 1, + anon_sym_LBRACE, + ACTIONS(3474), 1, anon_sym_SQUOTE, - STATE(424), 1, + STATE(1543), 1, sym_block, - STATE(3621), 1, + STATE(3750), 1, sym_label, - STATE(2641), 2, + STATE(2643), 2, sym_line_comment, sym_block_comment, - [80729] = 6, - ACTIONS(103), 1, + [81193] = 7, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(348), 1, + anon_sym_LBRACE, + ACTIONS(3474), 1, + anon_sym_SQUOTE, + STATE(1496), 1, + sym_block, + STATE(3750), 1, + sym_label, + STATE(2644), 2, + sym_line_comment, + sym_block_comment, + [81216] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5850), 1, + ACTIONS(5843), 1, anon_sym_DQUOTE, - STATE(2720), 1, + STATE(2662), 1, aux_sym_string_literal_repeat1, - ACTIONS(5827), 2, + ACTIONS(5845), 2, sym_string_content, sym_escape_sequence, - STATE(2642), 2, + STATE(2645), 2, sym_line_comment, sym_block_comment, - [80750] = 7, - ACTIONS(27), 1, - anon_sym_PIPE, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [81237] = 7, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5852), 1, - anon_sym_async, - ACTIONS(5854), 1, - anon_sym_move, - STATE(224), 1, - sym_closure_parameters, - STATE(2643), 2, - sym_line_comment, - sym_block_comment, - [80773] = 7, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3448), 1, - anon_sym_SQUOTE, - ACTIONS(5170), 1, + ACTIONS(5138), 1, + anon_sym_fn, + ACTIONS(5224), 1, anon_sym_LBRACE, - STATE(3081), 1, - sym_block, - STATE(3777), 1, - sym_label, - STATE(2644), 2, + ACTIONS(5847), 1, + anon_sym_SEMI, + STATE(1221), 1, + sym_declaration_list, + STATE(2646), 2, sym_line_comment, sym_block_comment, - [80796] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [81260] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, + ACTIONS(1622), 1, anon_sym_LBRACE, - ACTIONS(3448), 1, + ACTIONS(3474), 1, anon_sym_SQUOTE, - STATE(1936), 1, + STATE(2198), 1, sym_block, - STATE(3779), 1, + STATE(3805), 1, sym_label, - STATE(2645), 2, + STATE(2647), 2, sym_line_comment, sym_block_comment, - [80819] = 7, + [81283] = 7, 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, - ACTIONS(5856), 1, + ACTIONS(5849), 1, anon_sym_async, - ACTIONS(5858), 1, + ACTIONS(5851), 1, anon_sym_move, - STATE(215), 1, + STATE(245), 1, sym_closure_parameters, - STATE(2646), 2, - sym_line_comment, - sym_block_comment, - [80842] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4666), 1, - anon_sym_DOT_DOT, - ACTIONS(5418), 1, - anon_sym_COLON_COLON, - ACTIONS(4668), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2647), 2, - sym_line_comment, - sym_block_comment, - [80863] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3166), 1, - anon_sym_PLUS, - ACTIONS(5071), 1, - anon_sym_where, - ACTIONS(5860), 1, - anon_sym_SEMI, - STATE(3743), 1, - sym_where_clause, STATE(2648), 2, sym_line_comment, sym_block_comment, - [80886] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [81306] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, - anon_sym_PLUS, + ACTIONS(1414), 1, + anon_sym_LBRACE, + ACTIONS(3474), 1, + anon_sym_SQUOTE, + STATE(477), 1, + sym_block, + STATE(3811), 1, + sym_label, STATE(2649), 2, sym_line_comment, sym_block_comment, - ACTIONS(5862), 3, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_COMMA, - [80905] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [81329] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5864), 1, - anon_sym_DQUOTE, - STATE(2658), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5827), 2, - sym_string_content, - sym_escape_sequence, + ACTIONS(348), 1, + anon_sym_LBRACE, + ACTIONS(3474), 1, + anon_sym_SQUOTE, + STATE(3694), 1, + sym_block, + STATE(3750), 1, + sym_label, STATE(2650), 2, sym_line_comment, sym_block_comment, - [80926] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [81352] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5059), 1, - anon_sym_LBRACE, - ACTIONS(5071), 1, - anon_sym_where, - STATE(1407), 1, - sym_declaration_list, - STATE(3207), 1, - sym_where_clause, + ACTIONS(5853), 1, + anon_sym_COLON_COLON, STATE(2651), 2, sym_line_comment, sym_block_comment, - [80949] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4955), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [81371] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, - anon_sym_LBRACE, - ACTIONS(3448), 1, - anon_sym_SQUOTE, - STATE(1854), 1, - sym_block, - STATE(3779), 1, - sym_label, + ACTIONS(5855), 1, + anon_sym_COLON_COLON, STATE(2652), 2, sym_line_comment, sym_block_comment, - [80972] = 7, - ACTIONS(27), 1, + ACTIONS(4947), 3, + anon_sym_EQ_GT, anon_sym_PIPE, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_if, + [81390] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5866), 1, - anon_sym_async, - ACTIONS(5868), 1, - anon_sym_move, - STATE(220), 1, - sym_closure_parameters, + ACTIONS(4867), 1, + anon_sym_DOT_DOT, + ACTIONS(5857), 1, + anon_sym_COLON_COLON, + ACTIONS(4869), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, STATE(2653), 2, sym_line_comment, sym_block_comment, - [80995] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [81411] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, - anon_sym_LBRACE, - ACTIONS(3448), 1, - anon_sym_SQUOTE, - STATE(1814), 1, - sym_block, - STATE(3779), 1, - sym_label, + ACTIONS(5859), 1, + anon_sym_COLON_COLON, STATE(2654), 2, sym_line_comment, sym_block_comment, - [81018] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4947), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [81430] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5737), 1, - anon_sym_PIPE, - ACTIONS(5870), 1, - anon_sym_RPAREN, - ACTIONS(5872), 1, - anon_sym_COMMA, - STATE(3185), 1, - aux_sym_tuple_pattern_repeat1, + ACTIONS(5861), 1, + anon_sym_COLON_COLON, STATE(2655), 2, sym_line_comment, sym_block_comment, - [81041] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4947), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [81449] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5737), 1, - anon_sym_PIPE, + ACTIONS(3464), 1, + anon_sym_LT2, + ACTIONS(3710), 1, + anon_sym_COLON_COLON, + ACTIONS(4953), 1, + anon_sym_BANG, + STATE(1427), 1, + sym_type_arguments, STATE(2656), 2, sym_line_comment, sym_block_comment, - ACTIONS(5874), 3, + [81472] = 7, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(3182), 1, + anon_sym_PLUS, + ACTIONS(5863), 1, anon_sym_RPAREN, - anon_sym_RBRACK, + ACTIONS(5865), 1, anon_sym_COMMA, - [81060] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + STATE(2956), 1, + aux_sym_ordered_field_declaration_list_repeat1, + STATE(2657), 2, + sym_line_comment, + sym_block_comment, + [81495] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5876), 1, + ACTIONS(5383), 1, anon_sym_LPAREN, - ACTIONS(5878), 1, + ACTIONS(5385), 1, anon_sym_LBRACK, - ACTIONS(5880), 1, + ACTIONS(5389), 1, anon_sym_LBRACE, - STATE(1859), 1, + STATE(1515), 1, sym_delim_token_tree, - STATE(2657), 2, - sym_line_comment, - sym_block_comment, - [81083] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5882), 1, - anon_sym_DQUOTE, - STATE(2635), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5827), 2, - sym_string_content, - sym_escape_sequence, STATE(2658), 2, sym_line_comment, sym_block_comment, - [81104] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [81518] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5876), 1, - anon_sym_LPAREN, - ACTIONS(5878), 1, - anon_sym_LBRACK, - ACTIONS(5880), 1, + ACTIONS(348), 1, anon_sym_LBRACE, - STATE(1861), 1, - sym_delim_token_tree, + ACTIONS(3474), 1, + anon_sym_SQUOTE, + STATE(1554), 1, + sym_block, + STATE(3750), 1, + sym_label, STATE(2659), 2, sym_line_comment, sym_block_comment, - [81127] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [81541] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, - anon_sym_PLUS, + ACTIONS(348), 1, + anon_sym_LBRACE, + ACTIONS(3474), 1, + anon_sym_SQUOTE, + STATE(1399), 1, + sym_block, + STATE(3750), 1, + sym_label, STATE(2660), 2, sym_line_comment, sym_block_comment, - ACTIONS(5884), 3, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_COMMA, - [81146] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [81564] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4672), 1, - anon_sym_LT2, - ACTIONS(5831), 1, - sym_super, - ACTIONS(5886), 1, - sym_identifier, - STATE(2121), 1, - sym_type_arguments, + ACTIONS(348), 1, + anon_sym_LBRACE, + ACTIONS(3474), 1, + anon_sym_SQUOTE, + STATE(1507), 1, + sym_block, + STATE(3750), 1, + sym_label, STATE(2661), 2, sym_line_comment, sym_block_comment, - [81169] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [81587] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4672), 1, - anon_sym_LT2, - ACTIONS(5831), 1, - sym_super, - ACTIONS(5886), 1, - sym_identifier, - STATE(2128), 1, - sym_type_arguments, + ACTIONS(5867), 1, + anon_sym_DQUOTE, + STATE(2635), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5845), 2, + sym_string_content, + sym_escape_sequence, STATE(2662), 2, sym_line_comment, sym_block_comment, - [81192] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [81608] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4672), 1, - anon_sym_LT2, - ACTIONS(5306), 1, - sym_super, - ACTIONS(5833), 1, - sym_identifier, - STATE(3553), 1, - sym_type_arguments, + ACTIONS(5383), 1, + anon_sym_LPAREN, + ACTIONS(5385), 1, + anon_sym_LBRACK, + ACTIONS(5389), 1, + anon_sym_LBRACE, + STATE(1510), 1, + sym_delim_token_tree, STATE(2663), 2, sym_line_comment, sym_block_comment, - [81215] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [81631] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4672), 1, + ACTIONS(3464), 1, anon_sym_LT2, - ACTIONS(5306), 1, + ACTIONS(5337), 1, sym_super, - ACTIONS(5833), 1, + ACTIONS(5869), 1, sym_identifier, - STATE(3591), 1, + STATE(1642), 1, sym_type_arguments, STATE(2664), 2, sym_line_comment, sym_block_comment, - [81238] = 7, - ACTIONS(19), 1, - anon_sym_LBRACE, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [81654] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3448), 1, - anon_sym_SQUOTE, - STATE(418), 1, - sym_block, - STATE(3621), 1, - sym_label, + ACTIONS(5224), 1, + anon_sym_LBRACE, + ACTIONS(5871), 1, + anon_sym_SEMI, + ACTIONS(5873), 1, + anon_sym_fn, + STATE(1329), 1, + sym_declaration_list, STATE(2665), 2, sym_line_comment, sym_block_comment, - [81261] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [81677] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5067), 1, + ACTIONS(5138), 1, + anon_sym_fn, + ACTIONS(5224), 1, anon_sym_LBRACE, - ACTIONS(5071), 1, - anon_sym_where, - STATE(1413), 1, - sym_field_declaration_list, - STATE(3226), 1, - sym_where_clause, + ACTIONS(5871), 1, + anon_sym_SEMI, + STATE(1329), 1, + sym_declaration_list, STATE(2666), 2, sym_line_comment, sym_block_comment, - [81284] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [81700] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5071), 1, - anon_sym_where, - ACTIONS(5093), 1, - anon_sym_LBRACE, - STATE(580), 1, - sym_declaration_list, - STATE(3374), 1, - sym_where_clause, + ACTIONS(3464), 1, + anon_sym_LT2, + ACTIONS(5337), 1, + sym_super, + ACTIONS(5869), 1, + sym_identifier, + STATE(1649), 1, + sym_type_arguments, STATE(2667), 2, sym_line_comment, sym_block_comment, - [81307] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [81723] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, - anon_sym_PLUS, - ACTIONS(5071), 1, + ACTIONS(5104), 1, anon_sym_where, - ACTIONS(5888), 1, - anon_sym_SEMI, - STATE(3572), 1, + ACTIONS(5455), 1, + anon_sym_LBRACE, + STATE(541), 1, + sym_enum_variant_list, + STATE(3332), 1, sym_where_clause, STATE(2668), 2, sym_line_comment, sym_block_comment, - [81330] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [81746] = 7, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4672), 1, - anon_sym_LT2, - STATE(3591), 1, - sym_type_arguments, - ACTIONS(5831), 2, - sym_identifier, - sym_super, - STATE(2669), 2, - sym_line_comment, - sym_block_comment, - [81351] = 7, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, - anon_sym_PLUS, - ACTIONS(5759), 1, + ACTIONS(5722), 1, + anon_sym_PIPE, + ACTIONS(5875), 1, anon_sym_RPAREN, - ACTIONS(5761), 1, + ACTIONS(5877), 1, anon_sym_COMMA, - STATE(3005), 1, - aux_sym_parameters_repeat1, - STATE(2670), 2, + STATE(3202), 1, + aux_sym_tuple_pattern_repeat1, + STATE(2669), 2, sym_line_comment, sym_block_comment, - [81374] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [81769] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5737), 1, + ACTIONS(5722), 1, anon_sym_PIPE, - ACTIONS(5890), 1, + ACTIONS(5879), 1, anon_sym_RBRACK, - ACTIONS(5892), 1, + ACTIONS(5881), 1, anon_sym_COMMA, - STATE(3186), 1, + STATE(3214), 1, aux_sym_slice_pattern_repeat1, - STATE(2671), 2, + STATE(2670), 2, sym_line_comment, sym_block_comment, - [81397] = 7, - ACTIONS(103), 1, + [81792] = 7, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(4702), 1, + anon_sym_LT2, + ACTIONS(5883), 1, + sym_identifier, + ACTIONS(5885), 1, + sym_super, + STATE(2137), 1, + sym_type_arguments, + STATE(2671), 2, + sym_line_comment, + sym_block_comment, + [81815] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4674), 1, - anon_sym_LPAREN, - ACTIONS(5069), 1, - anon_sym_LT, - STATE(2318), 1, - sym_parameters, - STATE(3409), 1, - sym_type_parameters, + ACTIONS(3182), 1, + anon_sym_PLUS, + ACTIONS(5104), 1, + anon_sym_where, + ACTIONS(5887), 1, + anon_sym_SEMI, + STATE(3575), 1, + sym_where_clause, STATE(2672), 2, sym_line_comment, sym_block_comment, - [81420] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [81838] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5894), 1, - anon_sym_DQUOTE, - STATE(2676), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5827), 2, - sym_string_content, - sym_escape_sequence, + ACTIONS(4702), 1, + anon_sym_LT2, + ACTIONS(5883), 1, + sym_identifier, + ACTIONS(5885), 1, + sym_super, + STATE(2138), 1, + sym_type_arguments, STATE(2673), 2, sym_line_comment, sym_block_comment, - [81441] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [81861] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5896), 1, - anon_sym_COLON, + ACTIONS(3182), 1, + anon_sym_PLUS, + ACTIONS(5104), 1, + anon_sym_where, + ACTIONS(5889), 1, + anon_sym_SEMI, + STATE(3604), 1, + sym_where_clause, STATE(2674), 2, sym_line_comment, sym_block_comment, - ACTIONS(5029), 3, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_COMMA, - [81460] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [81884] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4672), 1, - anon_sym_LT2, - ACTIONS(5831), 1, - sym_super, - ACTIONS(5898), 1, - sym_identifier, - STATE(2121), 1, - sym_type_arguments, + ACTIONS(3182), 1, + anon_sym_PLUS, + ACTIONS(5891), 1, + anon_sym_RPAREN, + ACTIONS(5893), 1, + anon_sym_COMMA, + STATE(2907), 1, + aux_sym_tuple_type_repeat1, STATE(2675), 2, sym_line_comment, sym_block_comment, - [81483] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [81907] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5900), 1, - anon_sym_DQUOTE, - STATE(2635), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5827), 2, - sym_string_content, - sym_escape_sequence, + ACTIONS(4702), 1, + anon_sym_LT2, + ACTIONS(5226), 1, + anon_sym_COLON, + STATE(2043), 1, + sym_type_arguments, + STATE(2599), 1, + sym_trait_bounds, STATE(2676), 2, sym_line_comment, sym_block_comment, - [81504] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [81930] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4672), 1, + ACTIONS(4702), 1, anon_sym_LT2, - ACTIONS(5803), 1, - anon_sym_COLON_COLON, - ACTIONS(5902), 1, - anon_sym_for, - STATE(2027), 1, + ACTIONS(5337), 1, + sym_super, + ACTIONS(5895), 1, + sym_identifier, + STATE(3748), 1, sym_type_arguments, STATE(2677), 2, sym_line_comment, sym_block_comment, - [81527] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [81953] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4672), 1, + ACTIONS(3456), 1, + anon_sym_LPAREN, + ACTIONS(4702), 1, anon_sym_LT2, - ACTIONS(5831), 1, - sym_super, - ACTIONS(5904), 1, - sym_identifier, - STATE(3553), 1, + STATE(1415), 1, + sym_parameters, + STATE(2043), 1, sym_type_arguments, STATE(2678), 2, sym_line_comment, sym_block_comment, - [81550] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [81976] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4672), 1, + ACTIONS(4702), 1, anon_sym_LT2, - ACTIONS(5831), 1, + ACTIONS(5337), 1, sym_super, - ACTIONS(5904), 1, + ACTIONS(5895), 1, sym_identifier, - STATE(3591), 1, + STATE(3794), 1, sym_type_arguments, STATE(2679), 2, sym_line_comment, sym_block_comment, - [81573] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [81999] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, - anon_sym_PLUS, - ACTIONS(5906), 1, - anon_sym_RPAREN, - ACTIONS(5908), 1, - anon_sym_COMMA, - STATE(3166), 1, - aux_sym_tuple_type_repeat1, + ACTIONS(5104), 1, + anon_sym_where, + ACTIONS(5469), 1, + anon_sym_LBRACE, + STATE(1336), 1, + sym_enum_variant_list, + STATE(3317), 1, + sym_where_clause, STATE(2680), 2, sym_line_comment, sym_block_comment, - [81596] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [82022] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, - anon_sym_PLUS, - ACTIONS(5910), 1, - anon_sym_RPAREN, - ACTIONS(5912), 1, - anon_sym_COMMA, - STATE(3025), 1, - aux_sym_ordered_field_declaration_list_repeat1, + ACTIONS(4702), 1, + anon_sym_LT2, + ACTIONS(5885), 1, + sym_super, + ACTIONS(5895), 1, + sym_identifier, + STATE(3748), 1, + sym_type_arguments, STATE(2681), 2, sym_line_comment, sym_block_comment, - [81619] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [82045] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3084), 1, - anon_sym_SQUOTE, - ACTIONS(5914), 1, - sym_identifier, - ACTIONS(5916), 1, - anon_sym_GT, - STATE(3383), 1, - sym_lifetime, + ACTIONS(5259), 1, + anon_sym_LBRACE, + ACTIONS(5873), 1, + anon_sym_fn, + ACTIONS(5897), 1, + anon_sym_SEMI, + STATE(589), 1, + sym_declaration_list, STATE(2682), 2, sym_line_comment, sym_block_comment, - [81642] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [82068] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4184), 1, - anon_sym_LT2, - ACTIONS(4298), 1, - anon_sym_COLON_COLON, - ACTIONS(5015), 1, - anon_sym_BANG, - STATE(1659), 1, - sym_type_arguments, + ACTIONS(5104), 1, + anon_sym_where, + ACTIONS(5224), 1, + anon_sym_LBRACE, + STATE(1352), 1, + sym_declaration_list, + STATE(3229), 1, + sym_where_clause, STATE(2683), 2, sym_line_comment, sym_block_comment, - [81665] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [82091] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, + ACTIONS(5104), 1, + anon_sym_where, + ACTIONS(5154), 1, anon_sym_LBRACE, - ACTIONS(3448), 1, - anon_sym_SQUOTE, - STATE(3530), 1, - sym_block, - STATE(3714), 1, - sym_label, + STATE(1358), 1, + sym_field_declaration_list, + STATE(3253), 1, + sym_where_clause, STATE(2684), 2, sym_line_comment, sym_block_comment, - [81688] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [82114] = 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(3448), 1, + ACTIONS(3474), 1, anon_sym_SQUOTE, - STATE(1547), 1, + STATE(425), 1, sym_block, - STATE(3714), 1, + STATE(3785), 1, sym_label, STATE(2685), 2, sym_line_comment, sym_block_comment, - [81711] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [82137] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4672), 1, - anon_sym_LT2, - ACTIONS(4674), 1, - anon_sym_LPAREN, - STATE(2026), 1, - sym_type_arguments, - STATE(2501), 1, - sym_parameters, + ACTIONS(5104), 1, + anon_sym_where, + ACTIONS(5259), 1, + anon_sym_LBRACE, + STATE(661), 1, + sym_declaration_list, + STATE(3305), 1, + sym_where_clause, STATE(2686), 2, sym_line_comment, sym_block_comment, - [81734] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [82160] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5711), 1, - anon_sym_COLON, - ACTIONS(5713), 1, - anon_sym_PIPE, - ACTIONS(5715), 1, - anon_sym_COMMA, - STATE(3047), 1, - aux_sym_closure_parameters_repeat1, + ACTIONS(5224), 1, + anon_sym_LBRACE, + ACTIONS(5873), 1, + anon_sym_fn, + ACTIONS(5899), 1, + anon_sym_SEMI, + STATE(1372), 1, + sym_declaration_list, STATE(2687), 2, sym_line_comment, sym_block_comment, - [81757] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [82183] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4672), 1, - anon_sym_LT2, - ACTIONS(5831), 1, - sym_super, - ACTIONS(5918), 1, - sym_identifier, - STATE(2121), 1, - sym_type_arguments, + ACTIONS(348), 1, + anon_sym_LBRACE, + ACTIONS(3474), 1, + anon_sym_SQUOTE, + STATE(1520), 1, + sym_block, + STATE(3750), 1, + sym_label, STATE(2688), 2, sym_line_comment, sym_block_comment, - [81780] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [82206] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4672), 1, + ACTIONS(3464), 1, anon_sym_LT2, - ACTIONS(5807), 1, - sym_identifier, - ACTIONS(5831), 1, + ACTIONS(5337), 1, sym_super, - STATE(3591), 1, + ACTIONS(5901), 1, + sym_identifier, + STATE(1558), 1, sym_type_arguments, STATE(2689), 2, sym_line_comment, sym_block_comment, - [81803] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [82229] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5920), 1, - anon_sym_COLON_COLON, + ACTIONS(4702), 1, + anon_sym_LT2, + STATE(3748), 1, + sym_type_arguments, + ACTIONS(5903), 2, + sym_identifier, + sym_super, STATE(2690), 2, sym_line_comment, sym_block_comment, - ACTIONS(4907), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [81822] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [82250] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4672), 1, - anon_sym_LT2, - ACTIONS(5306), 1, - sym_super, - ACTIONS(5904), 1, - sym_identifier, - STATE(3553), 1, + ACTIONS(4702), 1, + anon_sym_LT2, + STATE(3794), 1, sym_type_arguments, + ACTIONS(5903), 2, + sym_identifier, + sym_super, STATE(2691), 2, sym_line_comment, sym_block_comment, - [81845] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [82271] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4672), 1, - anon_sym_LT2, - ACTIONS(5306), 1, - sym_super, - ACTIONS(5904), 1, - sym_identifier, - STATE(3591), 1, - sym_type_arguments, + ACTIONS(5722), 1, + anon_sym_PIPE, + ACTIONS(5905), 1, + anon_sym_RPAREN, + ACTIONS(5907), 1, + anon_sym_COMMA, + STATE(2941), 1, + aux_sym_slice_pattern_repeat1, STATE(2692), 2, sym_line_comment, sym_block_comment, - [81868] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [82294] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3448), 1, - anon_sym_SQUOTE, - STATE(1470), 1, - sym_block, - STATE(3714), 1, - sym_label, + ACTIONS(5722), 1, + anon_sym_PIPE, + ACTIONS(5909), 1, + anon_sym_RPAREN, + ACTIONS(5911), 1, + anon_sym_COMMA, + STATE(2945), 1, + aux_sym_slice_pattern_repeat1, STATE(2693), 2, sym_line_comment, sym_block_comment, - [81891] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [82317] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3448), 1, - anon_sym_SQUOTE, - STATE(3714), 1, - sym_label, - STATE(3738), 1, - sym_block, + ACTIONS(3182), 1, + anon_sym_PLUS, + ACTIONS(5661), 1, + anon_sym_RPAREN, + ACTIONS(5663), 1, + anon_sym_COMMA, + STATE(2948), 1, + aux_sym_parameters_repeat1, STATE(2694), 2, sym_line_comment, sym_block_comment, - [81914] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [82340] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1371), 1, - anon_sym_RPAREN, - ACTIONS(3166), 1, + ACTIONS(3182), 1, anon_sym_PLUS, - ACTIONS(5686), 1, - anon_sym_COMMA, - STATE(3113), 1, - aux_sym_parameters_repeat1, + ACTIONS(5913), 1, + anon_sym_SEMI, + ACTIONS(5915), 1, + anon_sym_EQ, + ACTIONS(5917), 1, + anon_sym_else, STATE(2695), 2, sym_line_comment, sym_block_comment, - [81937] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [82363] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5922), 1, - anon_sym_LPAREN, - ACTIONS(5924), 1, - anon_sym_LBRACK, - ACTIONS(5926), 1, - anon_sym_LBRACE, - STATE(2033), 1, - sym_delim_token_tree, + ACTIONS(4702), 1, + anon_sym_LT2, + ACTIONS(4742), 1, + anon_sym_BANG, + ACTIONS(4793), 1, + anon_sym_COLON_COLON, + STATE(2038), 1, + sym_type_arguments, STATE(2696), 2, sym_line_comment, sym_block_comment, - [81960] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [82386] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4672), 1, - anon_sym_LT2, - ACTIONS(5803), 1, - anon_sym_COLON_COLON, - ACTIONS(5928), 1, + ACTIONS(5919), 1, + anon_sym_LBRACE, + ACTIONS(5921), 1, anon_sym_for, - STATE(2027), 1, - sym_type_arguments, + ACTIONS(5923), 1, + anon_sym_loop, + ACTIONS(5925), 1, + anon_sym_while, STATE(2697), 2, sym_line_comment, sym_block_comment, - [81983] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [82409] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5071), 1, + ACTIONS(5104), 1, anon_sym_where, - ACTIONS(5093), 1, + ACTIONS(5259), 1, anon_sym_LBRACE, - STATE(591), 1, + STATE(636), 1, sym_declaration_list, - STATE(3437), 1, + STATE(3259), 1, sym_where_clause, STATE(2698), 2, sym_line_comment, sym_block_comment, - [82006] = 7, - ACTIONS(19), 1, - anon_sym_LBRACE, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [82432] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3448), 1, + ACTIONS(348), 1, + anon_sym_LBRACE, + ACTIONS(3474), 1, anon_sym_SQUOTE, - STATE(290), 1, - sym_block, - STATE(3621), 1, + STATE(3750), 1, sym_label, + STATE(3759), 1, + sym_block, STATE(2699), 2, sym_line_comment, sym_block_comment, - [82029] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [82455] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4672), 1, - anon_sym_LT2, - STATE(3553), 1, - sym_type_arguments, - ACTIONS(5930), 2, - sym_identifier, - sym_super, + ACTIONS(3182), 1, + anon_sym_PLUS, + ACTIONS(5927), 1, + anon_sym_SEMI, + ACTIONS(5929), 1, + anon_sym_EQ, + ACTIONS(5931), 1, + anon_sym_else, STATE(2700), 2, sym_line_comment, sym_block_comment, - [82050] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [82478] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4672), 1, - anon_sym_LT2, - STATE(3591), 1, - sym_type_arguments, - ACTIONS(5930), 2, - sym_identifier, - sym_super, + ACTIONS(348), 1, + anon_sym_LBRACE, + ACTIONS(3474), 1, + anon_sym_SQUOTE, + STATE(3750), 1, + sym_label, + STATE(3762), 1, + sym_block, STATE(2701), 2, sym_line_comment, sym_block_comment, - [82071] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [82501] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1383), 1, + ACTIONS(5104), 1, + anon_sym_where, + ACTIONS(5224), 1, anon_sym_LBRACE, - ACTIONS(3448), 1, - anon_sym_SQUOTE, - STATE(488), 1, - sym_block, - STATE(3778), 1, - sym_label, + STATE(1120), 1, + sym_declaration_list, + STATE(3459), 1, + sym_where_clause, STATE(2702), 2, sym_line_comment, sym_block_comment, - [82094] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [82524] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1383), 1, - anon_sym_LBRACE, - ACTIONS(3448), 1, - anon_sym_SQUOTE, - STATE(463), 1, - sym_block, - STATE(3778), 1, - sym_label, + ACTIONS(3182), 1, + anon_sym_PLUS, + ACTIONS(5104), 1, + anon_sym_where, + ACTIONS(5933), 1, + anon_sym_SEMI, + STATE(3608), 1, + sym_where_clause, STATE(2703), 2, sym_line_comment, sym_block_comment, - [82117] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [82547] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4666), 1, - anon_sym_DOT_DOT, - ACTIONS(5350), 1, - anon_sym_COLON_COLON, - ACTIONS(4668), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + ACTIONS(5104), 1, + anon_sym_where, + ACTIONS(5224), 1, + anon_sym_LBRACE, + STATE(1131), 1, + sym_declaration_list, + STATE(3484), 1, + sym_where_clause, STATE(2704), 2, sym_line_comment, sym_block_comment, - [82138] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [82570] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4672), 1, + ACTIONS(4702), 1, anon_sym_LT2, - ACTIONS(5807), 1, - sym_identifier, - ACTIONS(5831), 1, - sym_super, - STATE(3553), 1, + ACTIONS(4971), 1, + anon_sym_for, + ACTIONS(5935), 1, + anon_sym_COLON_COLON, + STATE(2039), 1, sym_type_arguments, STATE(2705), 2, sym_line_comment, sym_block_comment, - [82161] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [82593] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, - anon_sym_PLUS, - ACTIONS(5071), 1, + ACTIONS(5104), 1, anon_sym_where, - ACTIONS(5932), 1, - anon_sym_SEMI, - STATE(3571), 1, + ACTIONS(5469), 1, + anon_sym_LBRACE, + STATE(1136), 1, + sym_enum_variant_list, + STATE(3513), 1, sym_where_clause, STATE(2706), 2, sym_line_comment, sym_block_comment, - [82184] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [82616] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5737), 1, - anon_sym_PIPE, - ACTIONS(5934), 1, - anon_sym_RPAREN, - ACTIONS(5936), 1, - anon_sym_COMMA, - STATE(2914), 1, - aux_sym_slice_pattern_repeat1, + ACTIONS(5104), 1, + anon_sym_where, + ACTIONS(5154), 1, + anon_sym_LBRACE, + STATE(1395), 1, + sym_field_declaration_list, + STATE(3221), 1, + sym_where_clause, STATE(2707), 2, sym_line_comment, sym_block_comment, - [82207] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [82639] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5737), 1, - anon_sym_PIPE, - ACTIONS(5938), 1, - anon_sym_RPAREN, - ACTIONS(5940), 1, - anon_sym_COMMA, - STATE(2916), 1, - aux_sym_slice_pattern_repeat1, + ACTIONS(348), 1, + anon_sym_LBRACE, + ACTIONS(3474), 1, + anon_sym_SQUOTE, + STATE(1512), 1, + sym_block, + STATE(3750), 1, + sym_label, STATE(2708), 2, sym_line_comment, sym_block_comment, - [82230] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [82662] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4674), 1, - anon_sym_LPAREN, - ACTIONS(5069), 1, - anon_sym_LT, - STATE(2291), 1, - sym_parameters, - STATE(3356), 1, - sym_type_parameters, + ACTIONS(4702), 1, + anon_sym_LT2, + ACTIONS(5935), 1, + anon_sym_COLON_COLON, + ACTIONS(5937), 1, + anon_sym_for, + STATE(2039), 1, + sym_type_arguments, STATE(2709), 2, sym_line_comment, sym_block_comment, - [82253] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [82685] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, + ACTIONS(3182), 1, anon_sym_PLUS, - ACTIONS(5071), 1, + ACTIONS(5104), 1, anon_sym_where, - ACTIONS(5942), 1, + ACTIONS(5939), 1, anon_sym_SEMI, - STATE(3658), 1, + STATE(3596), 1, sym_where_clause, STATE(2710), 2, sym_line_comment, sym_block_comment, - [82276] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [82708] = 7, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5071), 1, - anon_sym_where, - ACTIONS(5093), 1, - anon_sym_LBRACE, - STATE(715), 1, - sym_declaration_list, - STATE(3258), 1, - sym_where_clause, + ACTIONS(3474), 1, + anon_sym_SQUOTE, + STATE(413), 1, + sym_block, + STATE(3785), 1, + sym_label, STATE(2711), 2, sym_line_comment, sym_block_comment, - [82299] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [82731] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5944), 1, + ACTIONS(5941), 1, anon_sym_in, STATE(2712), 2, sym_line_comment, sym_block_comment, - ACTIONS(5946), 3, + ACTIONS(5943), 3, sym_self, sym_super, sym_crate, - [82318] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [82750] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3448), 1, - anon_sym_SQUOTE, - STATE(3575), 1, - sym_block, - STATE(3714), 1, - sym_label, + ACTIONS(3182), 1, + anon_sym_PLUS, + ACTIONS(5945), 1, + anon_sym_RPAREN, + ACTIONS(5947), 1, + anon_sym_COMMA, + STATE(3203), 1, + aux_sym_ordered_field_declaration_list_repeat1, STATE(2713), 2, sym_line_comment, sym_block_comment, - [82341] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [82773] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5948), 1, - anon_sym_DQUOTE, - STATE(2635), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5827), 2, - sym_string_content, - sym_escape_sequence, + ACTIONS(1242), 1, + anon_sym_RPAREN, + ACTIONS(3182), 1, + anon_sym_PLUS, + ACTIONS(5633), 1, + anon_sym_COMMA, + STATE(2980), 1, + aux_sym_parameters_repeat1, STATE(2714), 2, sym_line_comment, sym_block_comment, - [82362] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [82796] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5950), 1, - anon_sym_LBRACE, - ACTIONS(5952), 1, - anon_sym_for, - ACTIONS(5954), 1, - anon_sym_loop, - ACTIONS(5956), 1, - anon_sym_while, + ACTIONS(3110), 1, + anon_sym_SQUOTE, + ACTIONS(5837), 1, + sym_identifier, + ACTIONS(5949), 1, + anon_sym_GT, + STATE(3384), 1, + sym_lifetime, STATE(2715), 2, sym_line_comment, sym_block_comment, - [82385] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [82819] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1383), 1, - anon_sym_LBRACE, - ACTIONS(3448), 1, + ACTIONS(3110), 1, anon_sym_SQUOTE, - STATE(478), 1, - sym_block, - STATE(3778), 1, - sym_label, + ACTIONS(5837), 1, + sym_identifier, + ACTIONS(5951), 1, + anon_sym_GT, + STATE(3384), 1, + sym_lifetime, STATE(2716), 2, sym_line_comment, sym_block_comment, - [82408] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [82842] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, - anon_sym_PLUS, - ACTIONS(5696), 1, - anon_sym_RPAREN, - ACTIONS(5698), 1, - anon_sym_COMMA, - STATE(2919), 1, - aux_sym_parameters_repeat1, STATE(2717), 2, sym_line_comment, sym_block_comment, - [82431] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4526), 4, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_AMP_AMP, + anon_sym_SQUOTE, + [82859] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, + ACTIONS(3182), 1, anon_sym_PLUS, - ACTIONS(5071), 1, - anon_sym_where, - ACTIONS(5958), 1, + ACTIONS(5953), 1, anon_sym_SEMI, - STATE(3552), 1, - sym_where_clause, + ACTIONS(5955), 1, + anon_sym_EQ, + ACTIONS(5957), 1, + anon_sym_else, STATE(2718), 2, sym_line_comment, sym_block_comment, - [82454] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [82882] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, + ACTIONS(3182), 1, anon_sym_PLUS, - ACTIONS(5960), 1, + ACTIONS(5104), 1, + anon_sym_where, + ACTIONS(5959), 1, anon_sym_SEMI, - ACTIONS(5962), 1, - anon_sym_EQ, - ACTIONS(5964), 1, - anon_sym_else, + STATE(3593), 1, + sym_where_clause, STATE(2719), 2, sym_line_comment, sym_block_comment, - [82477] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [82905] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5966), 1, - anon_sym_DQUOTE, - STATE(2635), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5827), 2, - sym_string_content, - sym_escape_sequence, + ACTIONS(3182), 1, + anon_sym_PLUS, + ACTIONS(5104), 1, + anon_sym_where, + ACTIONS(5961), 1, + anon_sym_SEMI, + STATE(3597), 1, + sym_where_clause, STATE(2720), 2, sym_line_comment, sym_block_comment, - [82498] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [82928] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5922), 1, - anon_sym_LPAREN, - ACTIONS(5924), 1, - anon_sym_LBRACK, - ACTIONS(5926), 1, + ACTIONS(5104), 1, + anon_sym_where, + ACTIONS(5224), 1, anon_sym_LBRACE, - STATE(2044), 1, - sym_delim_token_tree, + STATE(1178), 1, + sym_declaration_list, + STATE(3418), 1, + sym_where_clause, STATE(2721), 2, sym_line_comment, sym_block_comment, - [82521] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [82951] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5071), 1, + ACTIONS(3182), 1, + anon_sym_PLUS, + ACTIONS(5104), 1, anon_sym_where, - ACTIONS(5093), 1, - anon_sym_LBRACE, - STATE(743), 1, - sym_declaration_list, - STATE(3489), 1, + ACTIONS(5963), 1, + anon_sym_SEMI, + STATE(3614), 1, sym_where_clause, STATE(2722), 2, sym_line_comment, sym_block_comment, - [82544] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [82974] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4184), 1, - anon_sym_LT2, - ACTIONS(5968), 1, - sym_identifier, - ACTIONS(5970), 1, - sym_super, - STATE(1618), 1, - sym_type_arguments, + ACTIONS(5104), 1, + anon_sym_where, + ACTIONS(5224), 1, + anon_sym_LBRACE, + STATE(1192), 1, + sym_declaration_list, + STATE(3434), 1, + sym_where_clause, STATE(2723), 2, sym_line_comment, sym_block_comment, - [82567] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [82997] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5972), 1, - anon_sym_DQUOTE, - STATE(2635), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5827), 2, - sym_string_content, - sym_escape_sequence, + ACTIONS(5104), 1, + anon_sym_where, + ACTIONS(5259), 1, + anon_sym_LBRACE, + STATE(675), 1, + sym_declaration_list, + STATE(3443), 1, + sym_where_clause, STATE(2724), 2, sym_line_comment, sym_block_comment, - [82588] = 6, - ACTIONS(103), 1, + [83020] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5164), 1, - anon_sym_COLON, - STATE(3402), 1, - sym_trait_bounds, - ACTIONS(5719), 2, - anon_sym_GT, - anon_sym_COMMA, + ACTIONS(5965), 1, + aux_sym_token_repetition_pattern_token1, STATE(2725), 2, sym_line_comment, sym_block_comment, - [82609] = 7, - ACTIONS(103), 1, + ACTIONS(5967), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [83039] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4184), 1, - anon_sym_LT2, - ACTIONS(5968), 1, - sym_identifier, - ACTIONS(5970), 1, - sym_super, - STATE(1627), 1, - sym_type_arguments, + ACTIONS(5969), 1, + aux_sym_token_repetition_pattern_token1, STATE(2726), 2, sym_line_comment, sym_block_comment, - [82632] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5971), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [83058] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5974), 1, - sym_identifier, + ACTIONS(5853), 1, + anon_sym_COLON_COLON, STATE(2727), 2, sym_line_comment, sym_block_comment, - ACTIONS(5976), 3, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - [82651] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4923), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [83077] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5978), 1, - anon_sym_DQUOTE, - STATE(2724), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5827), 2, - sym_string_content, - sym_escape_sequence, STATE(2728), 2, sym_line_comment, sym_block_comment, - [82672] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(970), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + [83094] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5930), 1, - sym_super, - ACTIONS(5980), 1, - sym_identifier, - ACTIONS(5982), 1, - anon_sym_LT2, - STATE(2605), 1, - sym_type_arguments, + ACTIONS(5855), 1, + anon_sym_COLON_COLON, STATE(2729), 2, sym_line_comment, sym_block_comment, - [82695] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4935), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [83113] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5930), 1, - sym_super, - ACTIONS(5980), 1, - sym_identifier, - ACTIONS(5982), 1, - anon_sym_LT2, - STATE(2564), 1, - sym_type_arguments, + ACTIONS(5859), 1, + anon_sym_COLON_COLON, STATE(2730), 2, sym_line_comment, sym_block_comment, - [82718] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4935), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [83132] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3448), 1, + ACTIONS(3110), 1, anon_sym_SQUOTE, - STATE(3714), 1, - sym_label, - STATE(3751), 1, - sym_block, + ACTIONS(5837), 1, + sym_identifier, + ACTIONS(5973), 1, + anon_sym_GT, + STATE(3384), 1, + sym_lifetime, STATE(2731), 2, sym_line_comment, sym_block_comment, - [82741] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [83155] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, - anon_sym_PLUS, - ACTIONS(5984), 1, - anon_sym_RPAREN, - ACTIONS(5986), 1, - anon_sym_COMMA, - STATE(3030), 1, - aux_sym_tuple_type_repeat1, + ACTIONS(3110), 1, + anon_sym_SQUOTE, + ACTIONS(5837), 1, + sym_identifier, + ACTIONS(5975), 1, + anon_sym_GT, + STATE(3384), 1, + sym_lifetime, STATE(2732), 2, sym_line_comment, sym_block_comment, - [82764] = 5, - ACTIONS(3), 1, + [83178] = 5, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5988), 1, - aux_sym_token_repetition_pattern_token1, + ACTIONS(5861), 1, + anon_sym_COLON_COLON, STATE(2733), 2, sym_line_comment, sym_block_comment, - ACTIONS(5990), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [82783] = 5, - ACTIONS(3), 1, + ACTIONS(4935), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [83197] = 7, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5992), 1, - aux_sym_token_repetition_pattern_token1, + ACTIONS(3182), 1, + anon_sym_PLUS, + ACTIONS(5104), 1, + anon_sym_where, + ACTIONS(5977), 1, + anon_sym_SEMI, + STATE(3688), 1, + sym_where_clause, STATE(2734), 2, sym_line_comment, sym_block_comment, - ACTIONS(5994), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [82802] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [83220] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3438), 1, - anon_sym_LT2, - ACTIONS(5306), 1, - sym_super, - ACTIONS(5996), 1, - sym_identifier, - STATE(1498), 1, - sym_type_arguments, + ACTIONS(3182), 1, + anon_sym_PLUS, + ACTIONS(5104), 1, + anon_sym_where, + ACTIONS(5979), 1, + anon_sym_SEMI, + STATE(3715), 1, + sym_where_clause, STATE(2735), 2, sym_line_comment, sym_block_comment, - [82825] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [83243] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4674), 1, - anon_sym_LPAREN, - ACTIONS(5069), 1, - anon_sym_LT, - STATE(2320), 1, - sym_parameters, - STATE(3386), 1, - sym_type_parameters, + ACTIONS(3182), 1, + anon_sym_PLUS, + ACTIONS(5104), 1, + anon_sym_where, + ACTIONS(5981), 1, + anon_sym_SEMI, + STATE(3723), 1, + sym_where_clause, STATE(2736), 2, sym_line_comment, sym_block_comment, - [82848] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [83266] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, - anon_sym_PLUS, - ACTIONS(5998), 1, - anon_sym_SEMI, - ACTIONS(6000), 1, - anon_sym_EQ, - ACTIONS(6002), 1, - anon_sym_else, + ACTIONS(5104), 1, + anon_sym_where, + ACTIONS(5224), 1, + anon_sym_LBRACE, + STATE(1244), 1, + sym_declaration_list, + STATE(3226), 1, + sym_where_clause, STATE(2737), 2, sym_line_comment, sym_block_comment, - [82871] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [83289] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(4702), 1, + anon_sym_LT2, + STATE(3748), 1, + sym_type_arguments, + ACTIONS(5337), 2, + sym_identifier, + sym_super, STATE(2738), 2, sym_line_comment, sym_block_comment, - ACTIONS(1005), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - [82888] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [83310] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3438), 1, + ACTIONS(4702), 1, anon_sym_LT2, - ACTIONS(5306), 1, - sym_super, - ACTIONS(5811), 1, - sym_identifier, - STATE(1635), 1, + STATE(3794), 1, sym_type_arguments, + ACTIONS(5337), 2, + sym_identifier, + sym_super, STATE(2739), 2, sym_line_comment, sym_block_comment, - [82911] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [83331] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5059), 1, - anon_sym_LBRACE, - ACTIONS(5071), 1, - anon_sym_where, - STATE(1177), 1, - sym_declaration_list, - STATE(3214), 1, - sym_where_clause, + ACTIONS(5853), 1, + anon_sym_COLON_COLON, STATE(2740), 2, sym_line_comment, sym_block_comment, - [82934] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4917), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [83350] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, - anon_sym_PLUS, - ACTIONS(5071), 1, - anon_sym_where, - ACTIONS(6004), 1, - anon_sym_SEMI, - STATE(3578), 1, - sym_where_clause, + ACTIONS(5983), 1, + anon_sym_DQUOTE, + STATE(2635), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5845), 2, + sym_string_content, + sym_escape_sequence, STATE(2741), 2, sym_line_comment, sym_block_comment, - [82957] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [83371] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6006), 1, - anon_sym_COMMA, - ACTIONS(5874), 2, - anon_sym_RPAREN, - anon_sym_RBRACK, - STATE(2742), 3, + ACTIONS(348), 1, + anon_sym_LBRACE, + ACTIONS(3474), 1, + anon_sym_SQUOTE, + STATE(3750), 1, + sym_label, + STATE(3850), 1, + sym_block, + STATE(2742), 2, sym_line_comment, sym_block_comment, - aux_sym_slice_pattern_repeat1, - [82976] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [83394] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5059), 1, - anon_sym_LBRACE, - ACTIONS(5071), 1, - anon_sym_where, - STATE(1193), 1, - sym_declaration_list, - STATE(3218), 1, - sym_where_clause, + ACTIONS(5855), 1, + anon_sym_COLON_COLON, STATE(2743), 2, sym_line_comment, sym_block_comment, - [82999] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4927), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [83413] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3084), 1, - anon_sym_SQUOTE, - ACTIONS(5914), 1, - sym_identifier, - ACTIONS(6009), 1, - anon_sym_GT, - STATE(3383), 1, - sym_lifetime, + ACTIONS(5859), 1, + anon_sym_COLON_COLON, STATE(2744), 2, sym_line_comment, sym_block_comment, - [83022] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4927), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [83432] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4654), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(6011), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(5985), 1, + anon_sym_LPAREN, + ACTIONS(5987), 1, + anon_sym_LBRACK, + ACTIONS(5989), 1, + anon_sym_LBRACE, + STATE(427), 1, + sym_delim_token_tree, STATE(2745), 2, sym_line_comment, sym_block_comment, - [83041] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [83455] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, STATE(2746), 2, sym_line_comment, sym_block_comment, - ACTIONS(1009), 4, + ACTIONS(966), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, - [83058] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [83472] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5071), 1, - anon_sym_where, - ACTIONS(5469), 1, - anon_sym_LBRACE, - STATE(1198), 1, - sym_enum_variant_list, - STATE(3227), 1, - sym_where_clause, + ACTIONS(5861), 1, + anon_sym_COLON_COLON, STATE(2747), 2, sym_line_comment, sym_block_comment, - [83081] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4927), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [83491] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(3182), 1, + anon_sym_PLUS, + ACTIONS(5104), 1, + anon_sym_where, + ACTIONS(5991), 1, + anon_sym_SEMI, + STATE(3760), 1, + sym_where_clause, STATE(2748), 2, sym_line_comment, sym_block_comment, - ACTIONS(6013), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - [83098] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [83514] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5067), 1, - anon_sym_LBRACE, - ACTIONS(5071), 1, - anon_sym_where, - STATE(1204), 1, - sym_field_declaration_list, - STATE(3232), 1, - sym_where_clause, + ACTIONS(4702), 1, + anon_sym_LT2, + ACTIONS(4704), 1, + anon_sym_LPAREN, + STATE(2043), 1, + sym_type_arguments, + STATE(2519), 1, + sym_parameters, STATE(2749), 2, sym_line_comment, sym_block_comment, - [83121] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [83537] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4672), 1, - anon_sym_LT2, - ACTIONS(5831), 1, - sym_super, - ACTIONS(5918), 1, - sym_identifier, - STATE(2128), 1, - sym_type_arguments, + ACTIONS(1414), 1, + anon_sym_LBRACE, + ACTIONS(3474), 1, + anon_sym_SQUOTE, + STATE(498), 1, + sym_block, + STATE(3811), 1, + sym_label, STATE(2750), 2, sym_line_comment, sym_block_comment, - [83144] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [83560] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6015), 1, - anon_sym_COLON, + ACTIONS(1414), 1, + anon_sym_LBRACE, + ACTIONS(3474), 1, + anon_sym_SQUOTE, + STATE(482), 1, + sym_block, + STATE(3811), 1, + sym_label, STATE(2751), 2, sym_line_comment, sym_block_comment, - ACTIONS(5029), 3, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_COMMA, - [83163] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [83583] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6017), 1, - anon_sym_COLON_COLON, + ACTIONS(5993), 1, + anon_sym_DQUOTE, + STATE(2765), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5845), 2, + sym_string_content, + sym_escape_sequence, STATE(2752), 2, sym_line_comment, sym_block_comment, - ACTIONS(4919), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [83182] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [83604] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4672), 1, + ACTIONS(4702), 1, anon_sym_LT2, - ACTIONS(5306), 1, + ACTIONS(5885), 1, sym_super, - ACTIONS(5898), 1, + ACTIONS(5895), 1, sym_identifier, - STATE(3553), 1, + STATE(3794), 1, sym_type_arguments, STATE(2753), 2, sym_line_comment, sym_block_comment, - [83205] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [83627] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3448), 1, + ACTIONS(3474), 1, anon_sym_SQUOTE, - STATE(1544), 1, + ACTIONS(5220), 1, + anon_sym_LBRACE, + STATE(3090), 1, sym_block, - STATE(3714), 1, + STATE(3810), 1, sym_label, STATE(2754), 2, sym_line_comment, sym_block_comment, - [83228] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [83650] = 7, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3210), 1, - anon_sym_PLUS, + ACTIONS(5995), 1, + anon_sym_async, + ACTIONS(5997), 1, + anon_sym_move, + STATE(263), 1, + sym_closure_parameters, STATE(2755), 2, sym_line_comment, sym_block_comment, - ACTIONS(6019), 3, - anon_sym_COLON, - anon_sym_GT, - anon_sym_COMMA, - [83247] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [83673] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, - anon_sym_PLUS, - ACTIONS(6021), 1, - anon_sym_EQ, - ACTIONS(6023), 2, - anon_sym_GT, - anon_sym_COMMA, + ACTIONS(412), 1, + anon_sym_LBRACE, + ACTIONS(3474), 1, + anon_sym_SQUOTE, + STATE(1776), 1, + sym_block, + STATE(3812), 1, + sym_label, STATE(2756), 2, sym_line_comment, sym_block_comment, - [83268] = 5, - ACTIONS(3), 1, + [83696] = 7, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6025), 1, - aux_sym_token_repetition_pattern_token1, + ACTIONS(3464), 1, + anon_sym_LT2, + ACTIONS(5337), 1, + sym_super, + ACTIONS(5901), 1, + sym_identifier, + STATE(1489), 1, + sym_type_arguments, STATE(2757), 2, sym_line_comment, sym_block_comment, - ACTIONS(6027), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [83287] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [83719] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, ACTIONS(4178), 1, - anon_sym_LPAREN, - ACTIONS(4672), 1, anon_sym_LT2, - STATE(1712), 1, - sym_parameters, - STATE(2026), 1, + ACTIONS(4374), 1, + anon_sym_COLON_COLON, + ACTIONS(4911), 1, + anon_sym_BANG, + STATE(1723), 1, sym_type_arguments, STATE(2758), 2, sym_line_comment, sym_block_comment, - [83310] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [83742] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6029), 1, - anon_sym_COMMA, - ACTIONS(4296), 2, - anon_sym_RPAREN, - anon_sym_RBRACK, - STATE(2759), 3, + ACTIONS(5999), 1, + anon_sym_LPAREN, + ACTIONS(6001), 1, + anon_sym_LBRACK, + ACTIONS(6003), 1, + anon_sym_LBRACE, + STATE(2070), 1, + sym_delim_token_tree, + STATE(2759), 2, sym_line_comment, sym_block_comment, - aux_sym_arguments_repeat1, - [83329] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [83765] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, - anon_sym_PLUS, - ACTIONS(5071), 1, - anon_sym_where, - ACTIONS(6032), 1, - anon_sym_SEMI, - STATE(3726), 1, - sym_where_clause, + ACTIONS(1414), 1, + anon_sym_LBRACE, + ACTIONS(3474), 1, + anon_sym_SQUOTE, + STATE(496), 1, + sym_block, + STATE(3811), 1, + sym_label, STATE(2760), 2, sym_line_comment, sym_block_comment, - [83352] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [83788] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, + ACTIONS(1414), 1, anon_sym_LBRACE, - ACTIONS(3448), 1, + ACTIONS(3474), 1, anon_sym_SQUOTE, - STATE(3634), 1, + STATE(463), 1, sym_block, - STATE(3714), 1, + STATE(3811), 1, sym_label, STATE(2761), 2, sym_line_comment, sym_block_comment, - [83375] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [83811] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6034), 1, - anon_sym_LPAREN, - ACTIONS(6036), 1, - anon_sym_LBRACK, - ACTIONS(6038), 1, + ACTIONS(5104), 1, + anon_sym_where, + ACTIONS(5455), 1, anon_sym_LBRACE, - STATE(402), 1, - sym_delim_token_tree, + STATE(682), 1, + sym_enum_variant_list, + STATE(3232), 1, + sym_where_clause, STATE(2762), 2, sym_line_comment, sym_block_comment, - [83398] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [83834] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, + ACTIONS(1414), 1, anon_sym_LBRACE, - ACTIONS(3448), 1, + ACTIONS(3474), 1, anon_sym_SQUOTE, - STATE(1469), 1, + STATE(484), 1, sym_block, - STATE(3714), 1, + STATE(3811), 1, sym_label, STATE(2763), 2, sym_line_comment, sym_block_comment, - [83421] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [83857] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4672), 1, - anon_sym_LT2, - STATE(3553), 1, - sym_type_arguments, - ACTIONS(5306), 2, - sym_identifier, - sym_super, + ACTIONS(3182), 1, + anon_sym_PLUS, + ACTIONS(5104), 1, + anon_sym_where, + ACTIONS(6005), 1, + anon_sym_SEMI, + STATE(3673), 1, + sym_where_clause, STATE(2764), 2, sym_line_comment, sym_block_comment, - [83442] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [83880] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4672), 1, - anon_sym_LT2, - STATE(3591), 1, - sym_type_arguments, - ACTIONS(5306), 2, - sym_identifier, - sym_super, + ACTIONS(6007), 1, + anon_sym_DQUOTE, + STATE(2635), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5845), 2, + sym_string_content, + sym_escape_sequence, STATE(2765), 2, sym_line_comment, sym_block_comment, - [83463] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [83901] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5071), 1, - anon_sym_where, - ACTIONS(5131), 1, + ACTIONS(5999), 1, + anon_sym_LPAREN, + ACTIONS(6001), 1, + anon_sym_LBRACK, + ACTIONS(6003), 1, anon_sym_LBRACE, - STATE(752), 1, - sym_field_declaration_list, - STATE(3285), 1, - sym_where_clause, + STATE(2067), 1, + sym_delim_token_tree, STATE(2766), 2, sym_line_comment, sym_block_comment, - [83486] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [83924] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4674), 1, - anon_sym_LPAREN, - ACTIONS(5069), 1, - anon_sym_LT, - STATE(2333), 1, - sym_parameters, - STATE(3401), 1, - sym_type_parameters, + ACTIONS(4178), 1, + anon_sym_LT2, + ACTIONS(6009), 1, + sym_identifier, + ACTIONS(6011), 1, + sym_super, + STATE(1636), 1, + sym_type_arguments, STATE(2767), 2, sym_line_comment, sym_block_comment, - [83509] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [83947] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3448), 1, - anon_sym_SQUOTE, - STATE(1471), 1, - sym_block, - STATE(3714), 1, - sym_label, + ACTIONS(4178), 1, + anon_sym_LT2, + ACTIONS(6009), 1, + sym_identifier, + ACTIONS(6011), 1, + sym_super, + STATE(1651), 1, + sym_type_arguments, STATE(2768), 2, sym_line_comment, sym_block_comment, - [83532] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [83970] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4654), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(6040), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(5903), 1, + sym_super, + ACTIONS(6013), 1, + sym_identifier, + ACTIONS(6015), 1, + anon_sym_LT2, + STATE(2618), 1, + sym_type_arguments, STATE(2769), 2, sym_line_comment, sym_block_comment, - [83551] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [83993] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4672), 1, - anon_sym_LT2, - ACTIONS(5306), 1, + ACTIONS(5903), 1, sym_super, - ACTIONS(5898), 1, + ACTIONS(6013), 1, sym_identifier, - STATE(3591), 1, + ACTIONS(6015), 1, + anon_sym_LT2, + STATE(2621), 1, sym_type_arguments, STATE(2770), 2, sym_line_comment, sym_block_comment, - [83574] = 7, - ACTIONS(19), 1, - anon_sym_LBRACE, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [84016] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3448), 1, - anon_sym_SQUOTE, - STATE(423), 1, - sym_block, - STATE(3621), 1, - sym_label, + ACTIONS(3182), 1, + anon_sym_PLUS, + ACTIONS(6017), 1, + anon_sym_RPAREN, + ACTIONS(6019), 1, + anon_sym_COMMA, + STATE(3045), 1, + aux_sym_tuple_type_repeat1, STATE(2771), 2, sym_line_comment, sym_block_comment, - [83597] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [84039] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6042), 1, - anon_sym_DQUOTE, - STATE(2714), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5827), 2, - sym_string_content, - sym_escape_sequence, + ACTIONS(3182), 1, + anon_sym_PLUS, + ACTIONS(5104), 1, + anon_sym_where, + ACTIONS(6021), 1, + anon_sym_SEMI, + STATE(3670), 1, + sym_where_clause, STATE(2772), 2, sym_line_comment, sym_block_comment, - [83618] = 5, - ACTIONS(3), 1, + [84062] = 7, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6044), 1, - aux_sym_token_repetition_pattern_token1, + ACTIONS(4702), 1, + anon_sym_LT2, + ACTIONS(5337), 1, + sym_super, + ACTIONS(6023), 1, + sym_identifier, + STATE(3748), 1, + sym_type_arguments, STATE(2773), 2, sym_line_comment, sym_block_comment, - ACTIONS(6046), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [83637] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [84085] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3448), 1, - anon_sym_SQUOTE, - STATE(3556), 1, - sym_block, - STATE(3714), 1, - sym_label, + ACTIONS(4174), 1, + anon_sym_LPAREN, + ACTIONS(4702), 1, + anon_sym_LT2, + STATE(1690), 1, + sym_parameters, + STATE(2043), 1, + sym_type_arguments, STATE(2774), 2, sym_line_comment, sym_block_comment, - [83660] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [84108] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3448), 1, - anon_sym_SQUOTE, - STATE(3558), 1, - sym_block, - STATE(3714), 1, - sym_label, + ACTIONS(4702), 1, + anon_sym_LT2, + ACTIONS(5337), 1, + sym_super, + ACTIONS(6023), 1, + sym_identifier, + STATE(3794), 1, + sym_type_arguments, STATE(2775), 2, sym_line_comment, sym_block_comment, - [83683] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [84131] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5737), 1, - anon_sym_PIPE, - ACTIONS(5753), 1, - anon_sym_RPAREN, - ACTIONS(5757), 1, - anon_sym_COMMA, - STATE(2969), 1, - aux_sym_slice_pattern_repeat1, + ACTIONS(1414), 1, + anon_sym_LBRACE, + ACTIONS(3474), 1, + anon_sym_SQUOTE, + STATE(490), 1, + sym_block, + STATE(3811), 1, + sym_label, STATE(2776), 2, sym_line_comment, sym_block_comment, - [83706] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [84154] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4672), 1, + ACTIONS(4702), 1, anon_sym_LT2, - ACTIONS(5831), 1, - sym_super, - ACTIONS(5898), 1, - sym_identifier, - STATE(2128), 1, + ACTIONS(5935), 1, + anon_sym_COLON_COLON, + ACTIONS(6025), 1, + anon_sym_for, + STATE(2039), 1, sym_type_arguments, STATE(2777), 2, sym_line_comment, sym_block_comment, - [83729] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [84177] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1383), 1, - anon_sym_LBRACE, - ACTIONS(3448), 1, - anon_sym_SQUOTE, - STATE(494), 1, - sym_block, - STATE(3778), 1, - sym_label, + ACTIONS(3182), 1, + anon_sym_PLUS, + ACTIONS(5627), 1, + anon_sym_RPAREN, + ACTIONS(5629), 1, + anon_sym_COMMA, + STATE(3057), 1, + aux_sym_parameters_repeat1, STATE(2778), 2, sym_line_comment, sym_block_comment, - [83752] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [84200] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, - anon_sym_PLUS, - ACTIONS(6048), 1, - anon_sym_RPAREN, - ACTIONS(6050), 1, - anon_sym_COMMA, - STATE(2882), 1, - aux_sym_tuple_type_repeat1, + ACTIONS(1414), 1, + anon_sym_LBRACE, + ACTIONS(3474), 1, + anon_sym_SQUOTE, + STATE(492), 1, + sym_block, + STATE(3811), 1, + sym_label, STATE(2779), 2, sym_line_comment, sym_block_comment, - [83775] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [84223] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5071), 1, - anon_sym_where, - ACTIONS(5131), 1, - anon_sym_LBRACE, - STATE(604), 1, - sym_field_declaration_list, - STATE(3340), 1, - sym_where_clause, + ACTIONS(3192), 1, + anon_sym_PLUS, STATE(2780), 2, sym_line_comment, sym_block_comment, - [83798] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(6027), 3, + anon_sym_COLON, + anon_sym_GT, + anon_sym_COMMA, + [84242] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1617), 1, - anon_sym_LBRACE, - ACTIONS(3448), 1, - anon_sym_SQUOTE, - STATE(2207), 1, - sym_block, - STATE(3770), 1, - sym_label, + ACTIONS(3182), 1, + anon_sym_PLUS, + ACTIONS(6029), 1, + anon_sym_SEMI, + ACTIONS(6031), 1, + anon_sym_EQ, + ACTIONS(6033), 1, + anon_sym_else, STATE(2781), 2, sym_line_comment, sym_block_comment, - [83821] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [84265] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4674), 1, - anon_sym_LPAREN, - ACTIONS(5069), 1, - anon_sym_LT, - STATE(2336), 1, - sym_parameters, - STATE(3360), 1, - sym_type_parameters, + ACTIONS(3110), 1, + anon_sym_SQUOTE, + ACTIONS(5837), 1, + sym_identifier, + ACTIONS(6035), 1, + anon_sym_GT, + STATE(3384), 1, + sym_lifetime, STATE(2782), 2, sym_line_comment, sym_block_comment, - [83844] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [84288] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5920), 1, - anon_sym_COLON_COLON, + ACTIONS(3110), 1, + anon_sym_SQUOTE, + ACTIONS(5837), 1, + sym_identifier, + ACTIONS(6037), 1, + anon_sym_GT, + STATE(3384), 1, + sym_lifetime, STATE(2783), 2, sym_line_comment, sym_block_comment, - ACTIONS(4897), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [83863] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [84311] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3448), 1, + ACTIONS(3110), 1, anon_sym_SQUOTE, - STATE(1465), 1, - sym_block, - STATE(3714), 1, - sym_label, + ACTIONS(5837), 1, + sym_identifier, + ACTIONS(6039), 1, + anon_sym_GT, + STATE(3384), 1, + sym_lifetime, STATE(2784), 2, sym_line_comment, sym_block_comment, - [83886] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [84334] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6052), 1, - anon_sym_COLON_COLON, + ACTIONS(3110), 1, + anon_sym_SQUOTE, + ACTIONS(5837), 1, + sym_identifier, + ACTIONS(6041), 1, + anon_sym_GT, + STATE(3384), 1, + sym_lifetime, STATE(2785), 2, sym_line_comment, sym_block_comment, - ACTIONS(4861), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [83905] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [84357] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6034), 1, - anon_sym_LPAREN, - ACTIONS(6036), 1, - anon_sym_LBRACK, - ACTIONS(6038), 1, + ACTIONS(5104), 1, + anon_sym_where, + ACTIONS(5259), 1, anon_sym_LBRACE, - STATE(419), 1, - sym_delim_token_tree, + STATE(757), 1, + sym_declaration_list, + STATE(3356), 1, + sym_where_clause, STATE(2786), 2, sym_line_comment, sym_block_comment, - [83928] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [84380] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, + ACTIONS(412), 1, anon_sym_LBRACE, - ACTIONS(3448), 1, + ACTIONS(3474), 1, anon_sym_SQUOTE, - STATE(3540), 1, + STATE(1765), 1, sym_block, - STATE(3714), 1, + STATE(3812), 1, sym_label, STATE(2787), 2, sym_line_comment, sym_block_comment, - [83951] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [84403] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, + ACTIONS(412), 1, anon_sym_LBRACE, - ACTIONS(3448), 1, + ACTIONS(3474), 1, anon_sym_SQUOTE, - STATE(3544), 1, + STATE(1777), 1, sym_block, - STATE(3714), 1, + STATE(3812), 1, sym_label, STATE(2788), 2, sym_line_comment, sym_block_comment, - [83974] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [84426] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4672), 1, - anon_sym_LT2, - ACTIONS(4712), 1, - anon_sym_BANG, - ACTIONS(4775), 1, - anon_sym_COLON_COLON, - STATE(2024), 1, - sym_type_arguments, + ACTIONS(6043), 1, + anon_sym_DQUOTE, + STATE(2797), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5845), 2, + sym_string_content, + sym_escape_sequence, STATE(2789), 2, sym_line_comment, sym_block_comment, - [83997] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [84447] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6052), 1, - anon_sym_COLON_COLON, + ACTIONS(1414), 1, + anon_sym_LBRACE, + ACTIONS(3474), 1, + anon_sym_SQUOTE, + STATE(483), 1, + sym_block, + STATE(3811), 1, + sym_label, STATE(2790), 2, sym_line_comment, sym_block_comment, - ACTIONS(4919), 3, - anon_sym_EQ_GT, + [84470] = 7, + ACTIONS(27), 1, anon_sym_PIPE, - anon_sym_if, - [84016] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3166), 1, - anon_sym_PLUS, - ACTIONS(5071), 1, - anon_sym_where, - ACTIONS(6054), 1, - anon_sym_SEMI, - STATE(3613), 1, - sym_where_clause, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(5065), 1, + anon_sym_move, + ACTIONS(6045), 1, + anon_sym_async, + STATE(222), 1, + sym_closure_parameters, STATE(2791), 2, sym_line_comment, sym_block_comment, - [84039] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [84493] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1365), 1, - anon_sym_RPAREN, - ACTIONS(3166), 1, - anon_sym_PLUS, - ACTIONS(5745), 1, - anon_sym_COMMA, - STATE(2955), 1, - aux_sym_parameters_repeat1, + ACTIONS(348), 1, + anon_sym_LBRACE, + ACTIONS(3474), 1, + anon_sym_SQUOTE, + STATE(3618), 1, + sym_block, + STATE(3750), 1, + sym_label, STATE(2792), 2, sym_line_comment, sym_block_comment, - [84062] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [84516] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, - anon_sym_PLUS, - ACTIONS(5636), 1, - anon_sym_RPAREN, - ACTIONS(5638), 1, - anon_sym_COMMA, - STATE(3043), 1, - aux_sym_parameters_repeat1, + ACTIONS(6047), 1, + anon_sym_LPAREN, + ACTIONS(6049), 1, + anon_sym_LBRACK, + ACTIONS(6051), 1, + anon_sym_LBRACE, + STATE(1088), 1, + sym_delim_token_tree, STATE(2793), 2, sym_line_comment, sym_block_comment, - [84085] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [84539] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6056), 1, - anon_sym_in, + ACTIONS(412), 1, + anon_sym_LBRACE, + ACTIONS(3474), 1, + anon_sym_SQUOTE, + STATE(1836), 1, + sym_block, + STATE(3812), 1, + sym_label, STATE(2794), 2, sym_line_comment, sym_block_comment, - ACTIONS(6058), 3, - sym_self, - sym_super, - sym_crate, - [84104] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [84562] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, + ACTIONS(412), 1, anon_sym_LBRACE, - ACTIONS(3448), 1, + ACTIONS(3474), 1, anon_sym_SQUOTE, - STATE(3593), 1, + STATE(1652), 1, sym_block, - STATE(3714), 1, + STATE(3812), 1, sym_label, STATE(2795), 2, sym_line_comment, sym_block_comment, - [84127] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [84585] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4672), 1, - anon_sym_LT2, - ACTIONS(5164), 1, - anon_sym_COLON, - STATE(2026), 1, - sym_type_arguments, - STATE(2550), 1, - sym_trait_bounds, + ACTIONS(412), 1, + anon_sym_LBRACE, + ACTIONS(3474), 1, + anon_sym_SQUOTE, + STATE(1854), 1, + sym_block, + STATE(3812), 1, + sym_label, STATE(2796), 2, sym_line_comment, sym_block_comment, - [84150] = 7, - ACTIONS(19), 1, - anon_sym_LBRACE, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [84608] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3448), 1, - anon_sym_SQUOTE, - STATE(410), 1, - sym_block, - STATE(3621), 1, - sym_label, + ACTIONS(6053), 1, + anon_sym_DQUOTE, + STATE(2635), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5845), 2, + sym_string_content, + sym_escape_sequence, STATE(2797), 2, sym_line_comment, sym_block_comment, - [84173] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [84629] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, + ACTIONS(6047), 1, + anon_sym_LPAREN, + ACTIONS(6049), 1, + anon_sym_LBRACK, + ACTIONS(6051), 1, anon_sym_LBRACE, - ACTIONS(3448), 1, - anon_sym_SQUOTE, - STATE(3623), 1, - sym_block, - STATE(3714), 1, - sym_label, + STATE(1077), 1, + sym_delim_token_tree, STATE(2798), 2, sym_line_comment, sym_block_comment, - [84196] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [84652] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3084), 1, - anon_sym_SQUOTE, - ACTIONS(5914), 1, + ACTIONS(4702), 1, + anon_sym_LT2, + ACTIONS(5885), 1, + sym_super, + ACTIONS(6055), 1, sym_identifier, - ACTIONS(6060), 1, - anon_sym_GT, - STATE(3383), 1, - sym_lifetime, + STATE(2137), 1, + sym_type_arguments, STATE(2799), 2, sym_line_comment, sym_block_comment, - [84219] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [84675] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3084), 1, - anon_sym_SQUOTE, - ACTIONS(5914), 1, + ACTIONS(4702), 1, + anon_sym_LT2, + ACTIONS(5885), 1, + sym_super, + ACTIONS(6055), 1, sym_identifier, - ACTIONS(6062), 1, - anon_sym_GT, - STATE(3383), 1, - sym_lifetime, + STATE(2138), 1, + sym_type_arguments, STATE(2800), 2, sym_line_comment, sym_block_comment, - [84242] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [84698] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3438), 1, + ACTIONS(4702), 1, anon_sym_LT2, - ACTIONS(3674), 1, - anon_sym_COLON_COLON, - ACTIONS(4712), 1, - anon_sym_BANG, - STATE(1284), 1, + ACTIONS(5885), 1, + sym_super, + ACTIONS(6057), 1, + sym_identifier, + STATE(3748), 1, sym_type_arguments, STATE(2801), 2, sym_line_comment, sym_block_comment, - [84265] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [84721] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, - anon_sym_PLUS, - ACTIONS(6064), 1, - anon_sym_RPAREN, - ACTIONS(6066), 1, - anon_sym_COMMA, - STATE(2977), 1, - aux_sym_ordered_field_declaration_list_repeat1, + ACTIONS(4702), 1, + anon_sym_LT2, + ACTIONS(5885), 1, + sym_super, + ACTIONS(6057), 1, + sym_identifier, + STATE(3794), 1, + sym_type_arguments, STATE(2802), 2, sym_line_comment, sym_block_comment, - [84288] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [84744] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4184), 1, - anon_sym_LT2, - ACTIONS(4298), 1, - anon_sym_COLON_COLON, - ACTIONS(4712), 1, - anon_sym_BANG, - STATE(1659), 1, - sym_type_arguments, - STATE(2803), 2, + ACTIONS(6059), 1, + anon_sym_COMMA, + ACTIONS(4320), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + STATE(2803), 3, sym_line_comment, sym_block_comment, - [84311] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + aux_sym_arguments_repeat1, + [84763] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4674), 1, - anon_sym_LPAREN, - ACTIONS(5069), 1, - anon_sym_LT, - STATE(2315), 1, - sym_parameters, - STATE(3381), 1, - sym_type_parameters, + ACTIONS(412), 1, + anon_sym_LBRACE, + ACTIONS(3474), 1, + anon_sym_SQUOTE, + STATE(1941), 1, + sym_block, + STATE(3812), 1, + sym_label, STATE(2804), 2, sym_line_comment, sym_block_comment, - [84334] = 7, - ACTIONS(27), 1, - anon_sym_PIPE, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [84786] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6068), 1, - anon_sym_async, - ACTIONS(6070), 1, - anon_sym_move, - STATE(255), 1, - sym_closure_parameters, + ACTIONS(5100), 1, + anon_sym_LBRACE, + ACTIONS(5104), 1, + anon_sym_where, + STATE(691), 1, + sym_field_declaration_list, + STATE(3260), 1, + sym_where_clause, STATE(2805), 2, sym_line_comment, sym_block_comment, - [84357] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [84809] = 7, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4666), 1, - anon_sym_DOT_DOT, - ACTIONS(5352), 1, - anon_sym_COLON_COLON, - ACTIONS(4668), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + ACTIONS(3474), 1, + anon_sym_SQUOTE, + STATE(401), 1, + sym_block, + STATE(3785), 1, + sym_label, STATE(2806), 2, sym_line_comment, sym_block_comment, - [84378] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [84832] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5071), 1, - anon_sym_where, - ACTIONS(5461), 1, + ACTIONS(5259), 1, anon_sym_LBRACE, - STATE(622), 1, - sym_enum_variant_list, - STATE(3294), 1, - sym_where_clause, + ACTIONS(5873), 1, + anon_sym_fn, + ACTIONS(6062), 1, + anon_sym_SEMI, + STATE(715), 1, + sym_declaration_list, STATE(2807), 2, sym_line_comment, sym_block_comment, - [84401] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [84855] = 7, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5920), 1, - anon_sym_COLON_COLON, - STATE(2808), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4879), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [84420] = 7, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1383), 1, + ACTIONS(412), 1, anon_sym_LBRACE, - ACTIONS(3448), 1, + ACTIONS(3474), 1, anon_sym_SQUOTE, - STATE(491), 1, + STATE(1730), 1, sym_block, - STATE(3778), 1, + STATE(3812), 1, sym_label, - STATE(2809), 2, + STATE(2808), 2, sym_line_comment, sym_block_comment, - [84443] = 7, - ACTIONS(103), 1, + [84878] = 6, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(6064), 1, + anon_sym_DQUOTE, + STATE(2815), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5845), 2, + sym_string_content, + sym_escape_sequence, + STATE(2809), 2, + sym_line_comment, + sym_block_comment, + [84899] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6072), 1, + ACTIONS(412), 1, anon_sym_LBRACE, - ACTIONS(6074), 1, - anon_sym_for, - ACTIONS(6076), 1, - anon_sym_loop, - ACTIONS(6078), 1, - anon_sym_while, + ACTIONS(3474), 1, + anon_sym_SQUOTE, + STATE(1735), 1, + sym_block, + STATE(3812), 1, + sym_label, STATE(2810), 2, sym_line_comment, sym_block_comment, - [84466] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [84922] = 7, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6052), 1, - anon_sym_COLON_COLON, + ACTIONS(6066), 1, + anon_sym_async, + ACTIONS(6068), 1, + anon_sym_move, + STATE(227), 1, + sym_closure_parameters, STATE(2811), 2, sym_line_comment, sym_block_comment, - ACTIONS(4871), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [84485] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [84945] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6080), 1, - anon_sym_COLON_COLON, + ACTIONS(5722), 1, + anon_sym_PIPE, + ACTIONS(6070), 1, + anon_sym_RPAREN, + ACTIONS(6072), 1, + anon_sym_COMMA, + STATE(3086), 1, + aux_sym_tuple_pattern_repeat1, STATE(2812), 2, sym_line_comment, sym_block_comment, - ACTIONS(4871), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [84504] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [84968] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3210), 1, - anon_sym_PLUS, + ACTIONS(4704), 1, + anon_sym_LPAREN, + ACTIONS(5102), 1, + anon_sym_LT, + STATE(2333), 1, + sym_parameters, + STATE(3273), 1, + sym_type_parameters, STATE(2813), 2, sym_line_comment, sym_block_comment, - ACTIONS(6082), 3, - anon_sym_COLON, - anon_sym_GT, - anon_sym_COMMA, - [84523] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [84991] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4672), 1, - anon_sym_LT2, - ACTIONS(4933), 1, - anon_sym_for, - ACTIONS(5803), 1, - anon_sym_COLON_COLON, - STATE(2027), 1, - sym_type_arguments, + ACTIONS(6074), 1, + anon_sym_LPAREN, + ACTIONS(6076), 1, + anon_sym_LBRACK, + ACTIONS(6078), 1, + anon_sym_LBRACE, + STATE(1741), 1, + sym_delim_token_tree, STATE(2814), 2, sym_line_comment, sym_block_comment, - [84546] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [85014] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, - anon_sym_PLUS, - ACTIONS(6084), 1, - anon_sym_SEMI, - ACTIONS(6086), 1, - anon_sym_EQ, - ACTIONS(6088), 1, - anon_sym_else, + ACTIONS(6080), 1, + anon_sym_DQUOTE, + STATE(2635), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5845), 2, + sym_string_content, + sym_escape_sequence, STATE(2815), 2, sym_line_comment, sym_block_comment, - [84569] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [85035] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6080), 1, - anon_sym_COLON_COLON, + ACTIONS(6074), 1, + anon_sym_LPAREN, + ACTIONS(6076), 1, + anon_sym_LBRACK, + ACTIONS(6078), 1, + anon_sym_LBRACE, + STATE(1743), 1, + sym_delim_token_tree, STATE(2816), 2, sym_line_comment, sym_block_comment, - ACTIONS(4861), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [84588] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [85058] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4666), 1, - anon_sym_DOT_DOT, - ACTIONS(5394), 1, - anon_sym_COLON_COLON, - ACTIONS(4668), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + ACTIONS(4702), 1, + anon_sym_LT2, + ACTIONS(5885), 1, + sym_super, + ACTIONS(6082), 1, + sym_identifier, + STATE(2137), 1, + sym_type_arguments, STATE(2817), 2, sym_line_comment, sym_block_comment, - [84609] = 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(3438), 1, + ACTIONS(4702), 1, anon_sym_LT2, - ACTIONS(5306), 1, + ACTIONS(5885), 1, sym_super, - ACTIONS(5996), 1, + ACTIONS(6082), 1, sym_identifier, - STATE(1516), 1, + STATE(2138), 1, sym_type_arguments, STATE(2818), 2, sym_line_comment, sym_block_comment, - [84632] = 7, - ACTIONS(19), 1, - anon_sym_LBRACE, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [85104] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3448), 1, - anon_sym_SQUOTE, - STATE(425), 1, - sym_block, - STATE(3621), 1, - sym_label, + ACTIONS(4702), 1, + anon_sym_LT2, + ACTIONS(5337), 1, + sym_super, + ACTIONS(6057), 1, + sym_identifier, + STATE(3748), 1, + sym_type_arguments, STATE(2819), 2, sym_line_comment, sym_block_comment, - [84655] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [85127] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6090), 1, - anon_sym_LBRACE, - ACTIONS(6092), 1, - anon_sym_for, - ACTIONS(6094), 1, - anon_sym_loop, - ACTIONS(6096), 1, - anon_sym_while, + ACTIONS(4702), 1, + anon_sym_LT2, + ACTIONS(5337), 1, + sym_super, + ACTIONS(6057), 1, + sym_identifier, + STATE(3794), 1, + sym_type_arguments, STATE(2820), 2, sym_line_comment, sym_block_comment, - [84678] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [85150] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3448), 1, - anon_sym_SQUOTE, - STATE(3714), 1, - sym_label, - STATE(3798), 1, - sym_block, + ACTIONS(3182), 1, + anon_sym_PLUS, + ACTIONS(5104), 1, + anon_sym_where, + ACTIONS(6084), 1, + anon_sym_SEMI, + STATE(3541), 1, + sym_where_clause, STATE(2821), 2, sym_line_comment, sym_block_comment, - [84701] = 7, - ACTIONS(19), 1, - anon_sym_LBRACE, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [85173] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3448), 1, - anon_sym_SQUOTE, - STATE(414), 1, - sym_block, - STATE(3621), 1, - sym_label, + ACTIONS(5722), 1, + anon_sym_PIPE, + ACTIONS(6086), 1, + anon_sym_RBRACK, + ACTIONS(6088), 1, + anon_sym_COMMA, + STATE(3093), 1, + aux_sym_slice_pattern_repeat1, STATE(2822), 2, sym_line_comment, sym_block_comment, - [84724] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [85196] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, - anon_sym_PLUS, - ACTIONS(6098), 1, - anon_sym_SEMI, - ACTIONS(6100), 1, - anon_sym_EQ, - ACTIONS(6102), 1, - anon_sym_else, + ACTIONS(348), 1, + anon_sym_LBRACE, + ACTIONS(3474), 1, + anon_sym_SQUOTE, + STATE(1536), 1, + sym_block, + STATE(3750), 1, + sym_label, STATE(2823), 2, sym_line_comment, sym_block_comment, - [84747] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [85219] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5737), 1, - anon_sym_PIPE, - ACTIONS(6104), 1, - anon_sym_RPAREN, - ACTIONS(6106), 1, - anon_sym_COMMA, - STATE(3023), 1, - aux_sym_tuple_pattern_repeat1, + ACTIONS(6090), 1, + anon_sym_DQUOTE, + STATE(2825), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5845), 2, + sym_string_content, + sym_escape_sequence, STATE(2824), 2, sym_line_comment, sym_block_comment, - [84770] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [85240] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, - anon_sym_PLUS, - ACTIONS(5071), 1, - anon_sym_where, - ACTIONS(6108), 1, - anon_sym_SEMI, - STATE(3757), 1, - sym_where_clause, + ACTIONS(6092), 1, + anon_sym_DQUOTE, + STATE(2635), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5845), 2, + sym_string_content, + sym_escape_sequence, STATE(2825), 2, sym_line_comment, sym_block_comment, - [84793] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [85261] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6110), 1, - sym_identifier, + ACTIONS(5104), 1, + anon_sym_where, + ACTIONS(5259), 1, + anon_sym_LBRACE, + STATE(773), 1, + sym_declaration_list, + STATE(3361), 1, + sym_where_clause, STATE(2826), 2, sym_line_comment, sym_block_comment, - ACTIONS(6112), 3, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - [84812] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [85284] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6017), 1, - anon_sym_COLON_COLON, + ACTIONS(4702), 1, + anon_sym_LT2, + ACTIONS(5885), 1, + sym_super, + ACTIONS(6094), 1, + sym_identifier, + STATE(3748), 1, + sym_type_arguments, STATE(2827), 2, sym_line_comment, sym_block_comment, - ACTIONS(4861), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [84831] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [85307] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5737), 1, - anon_sym_PIPE, - ACTIONS(6114), 1, - anon_sym_RBRACK, - ACTIONS(6116), 1, - anon_sym_COMMA, - STATE(3111), 1, - aux_sym_slice_pattern_repeat1, + ACTIONS(4702), 1, + anon_sym_LT2, + ACTIONS(5885), 1, + sym_super, + ACTIONS(6094), 1, + sym_identifier, + STATE(3794), 1, + sym_type_arguments, STATE(2828), 2, sym_line_comment, sym_block_comment, - [84854] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [85330] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4823), 1, - anon_sym_DOT_DOT, - ACTIONS(6118), 1, + ACTIONS(4702), 1, + anon_sym_LT2, + ACTIONS(5935), 1, anon_sym_COLON_COLON, - ACTIONS(4825), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + ACTIONS(6096), 1, + anon_sym_for, + STATE(2039), 1, + sym_type_arguments, STATE(2829), 2, sym_line_comment, sym_block_comment, - [84875] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [85353] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6017), 1, - anon_sym_COLON_COLON, + ACTIONS(4702), 1, + anon_sym_LT2, + STATE(3748), 1, + sym_type_arguments, + ACTIONS(5885), 2, + sym_identifier, + sym_super, STATE(2830), 2, sym_line_comment, sym_block_comment, - ACTIONS(4871), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [84894] = 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(3166), 1, - anon_sym_PLUS, - ACTIONS(5071), 1, - anon_sym_where, - ACTIONS(6120), 1, - anon_sym_SEMI, - STATE(3598), 1, - sym_where_clause, + ACTIONS(4702), 1, + anon_sym_LT2, + ACTIONS(5337), 1, + sym_super, + ACTIONS(6094), 1, + sym_identifier, + STATE(3748), 1, + sym_type_arguments, STATE(2831), 2, sym_line_comment, sym_block_comment, - [84917] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [85397] = 7, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3166), 1, - anon_sym_PLUS, - ACTIONS(5071), 1, - anon_sym_where, - ACTIONS(6122), 1, - anon_sym_SEMI, - STATE(3599), 1, - sym_where_clause, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(4702), 1, + anon_sym_LT2, + ACTIONS(5337), 1, + sym_super, + ACTIONS(6094), 1, + sym_identifier, + STATE(3794), 1, + sym_type_arguments, STATE(2832), 2, sym_line_comment, sym_block_comment, - [84940] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [85420] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5059), 1, - anon_sym_LBRACE, - ACTIONS(5071), 1, - anon_sym_where, - STATE(1252), 1, - sym_declaration_list, - STATE(3305), 1, - sym_where_clause, + ACTIONS(4702), 1, + anon_sym_LT2, + STATE(3794), 1, + sym_type_arguments, + ACTIONS(5885), 2, + sym_identifier, + sym_super, STATE(2833), 2, sym_line_comment, sym_block_comment, - [84963] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [85441] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, - anon_sym_PLUS, - ACTIONS(6124), 1, - anon_sym_RPAREN, - ACTIONS(6126), 1, - anon_sym_COMMA, - STATE(3114), 1, - aux_sym_ordered_field_declaration_list_repeat1, + ACTIONS(6098), 1, + anon_sym_DQUOTE, + STATE(2741), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5845), 2, + sym_string_content, + sym_escape_sequence, STATE(2834), 2, sym_line_comment, sym_block_comment, - [84986] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [85462] = 7, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1383), 1, - anon_sym_LBRACE, - ACTIONS(3448), 1, - anon_sym_SQUOTE, - STATE(493), 1, - sym_block, - STATE(3778), 1, - sym_label, + ACTIONS(6100), 1, + anon_sym_async, + ACTIONS(6102), 1, + anon_sym_move, + STATE(251), 1, + sym_closure_parameters, STATE(2835), 2, sym_line_comment, sym_block_comment, - [85009] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [85485] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6080), 1, - anon_sym_COLON_COLON, + ACTIONS(5722), 1, + anon_sym_PIPE, + ACTIONS(5744), 1, + anon_sym_RPAREN, + ACTIONS(5748), 1, + anon_sym_COMMA, + STATE(2911), 1, + aux_sym_slice_pattern_repeat1, STATE(2836), 2, sym_line_comment, sym_block_comment, - ACTIONS(4919), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [85028] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [85508] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, - anon_sym_PLUS, - ACTIONS(5071), 1, - anon_sym_where, - ACTIONS(6128), 1, - anon_sym_SEMI, - STATE(3580), 1, - sym_where_clause, STATE(2837), 2, sym_line_comment, sym_block_comment, - [85051] = 7, - ACTIONS(103), 1, + ACTIONS(6104), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + [85525] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4672), 1, - anon_sym_LT2, - ACTIONS(4925), 1, - anon_sym_for, - ACTIONS(5803), 1, - anon_sym_COLON_COLON, - STATE(2027), 1, - sym_type_arguments, + ACTIONS(6106), 1, + aux_sym_token_repetition_pattern_token1, STATE(2838), 2, sym_line_comment, sym_block_comment, - [85074] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(6108), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [85544] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6130), 1, - anon_sym_LPAREN, - ACTIONS(6132), 1, - anon_sym_LBRACK, - ACTIONS(6134), 1, - anon_sym_LBRACE, - STATE(2748), 1, - sym_token_tree, + ACTIONS(4696), 1, + anon_sym_DOT_DOT, + ACTIONS(5437), 1, + anon_sym_COLON_COLON, + ACTIONS(4698), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, STATE(2839), 2, sym_line_comment, sym_block_comment, - [85097] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [85565] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, - anon_sym_PLUS, - ACTIONS(5071), 1, - anon_sym_where, - ACTIONS(6136), 1, - anon_sym_SEMI, - STATE(3724), 1, - sym_where_clause, + ACTIONS(4704), 1, + anon_sym_LPAREN, + ACTIONS(5102), 1, + anon_sym_LT, + STATE(2305), 1, + sym_parameters, + STATE(3339), 1, + sym_type_parameters, STATE(2840), 2, sym_line_comment, sym_block_comment, - [85120] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [85588] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5059), 1, - anon_sym_LBRACE, - ACTIONS(5071), 1, - anon_sym_where, - STATE(1274), 1, - sym_declaration_list, - STATE(3330), 1, - sym_where_clause, + ACTIONS(6110), 1, + anon_sym_in, STATE(2841), 2, sym_line_comment, sym_block_comment, - [85143] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(6112), 3, + sym_self, + sym_super, + sym_crate, + [85607] = 7, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3438), 1, - anon_sym_LT2, - ACTIONS(3674), 1, - anon_sym_COLON_COLON, - ACTIONS(4989), 1, - anon_sym_BANG, - STATE(1284), 1, - sym_type_arguments, - STATE(2842), 2, - sym_line_comment, - sym_block_comment, - [85166] = 7, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, + ACTIONS(348), 1, anon_sym_LBRACE, - ACTIONS(3448), 1, + ACTIONS(3474), 1, anon_sym_SQUOTE, - STATE(3518), 1, + STATE(1516), 1, sym_block, - STATE(3714), 1, + STATE(3750), 1, sym_label, - STATE(2843), 2, + STATE(2842), 2, sym_line_comment, sym_block_comment, - [85189] = 7, - ACTIONS(103), 1, + [85630] = 5, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(6114), 1, + sym_identifier, + STATE(2843), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(6116), 3, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + [85649] = 7, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, - anon_sym_PLUS, - ACTIONS(5071), 1, - anon_sym_where, - ACTIONS(6138), 1, - anon_sym_SEMI, - STATE(3582), 1, - sym_where_clause, + ACTIONS(3474), 1, + anon_sym_SQUOTE, + STATE(415), 1, + sym_block, + STATE(3785), 1, + sym_label, STATE(2844), 2, sym_line_comment, sym_block_comment, - [85212] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [85672] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4672), 1, - anon_sym_LT2, - ACTIONS(5803), 1, - anon_sym_COLON_COLON, - ACTIONS(6140), 1, + ACTIONS(6118), 1, + anon_sym_LBRACE, + ACTIONS(6120), 1, anon_sym_for, - STATE(2027), 1, - sym_type_arguments, + ACTIONS(6122), 1, + anon_sym_loop, + ACTIONS(6124), 1, + anon_sym_while, STATE(2845), 2, sym_line_comment, sym_block_comment, - [85235] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [85695] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3448), 1, - anon_sym_SQUOTE, - STATE(3519), 1, - sym_block, - STATE(3714), 1, - sym_label, + ACTIONS(3192), 1, + anon_sym_PLUS, STATE(2846), 2, sym_line_comment, sym_block_comment, - [85258] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(6126), 3, + anon_sym_COLON, + anon_sym_GT, + anon_sym_COMMA, + [85714] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5332), 1, + ACTIONS(5985), 1, anon_sym_LPAREN, - ACTIONS(5334), 1, + ACTIONS(5987), 1, anon_sym_LBRACK, - ACTIONS(5338), 1, + ACTIONS(5989), 1, anon_sym_LBRACE, - STATE(1527), 1, + STATE(417), 1, sym_delim_token_tree, STATE(2847), 2, sym_line_comment, sym_block_comment, - [85281] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [85737] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1377), 1, - anon_sym_RPAREN, - ACTIONS(3166), 1, - anon_sym_PLUS, - ACTIONS(5646), 1, + ACTIONS(5226), 1, + anon_sym_COLON, + STATE(3477), 1, + sym_trait_bounds, + ACTIONS(5706), 2, + anon_sym_GT, anon_sym_COMMA, - STATE(3052), 1, - aux_sym_parameters_repeat1, STATE(2848), 2, sym_line_comment, sym_block_comment, - [85304] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [85758] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4672), 1, - anon_sym_LT2, - ACTIONS(5803), 1, - anon_sym_COLON_COLON, - ACTIONS(6142), 1, - anon_sym_for, - STATE(2027), 1, - sym_type_arguments, + ACTIONS(3182), 1, + anon_sym_PLUS, STATE(2849), 2, sym_line_comment, sym_block_comment, - [85327] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(6128), 3, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_COMMA, + [85777] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3084), 1, + ACTIONS(348), 1, + anon_sym_LBRACE, + ACTIONS(3474), 1, anon_sym_SQUOTE, - ACTIONS(5914), 1, - sym_identifier, - ACTIONS(6144), 1, - anon_sym_GT, - STATE(3383), 1, - sym_lifetime, + STATE(3642), 1, + sym_block, + STATE(3750), 1, + sym_label, STATE(2850), 2, sym_line_comment, sym_block_comment, - [85350] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [85800] = 7, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3084), 1, + ACTIONS(3474), 1, anon_sym_SQUOTE, - ACTIONS(5914), 1, - sym_identifier, - ACTIONS(6146), 1, - anon_sym_GT, - STATE(3383), 1, - sym_lifetime, + STATE(424), 1, + sym_block, + STATE(3785), 1, + sym_label, STATE(2851), 2, sym_line_comment, sym_block_comment, - [85373] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [85823] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3448), 1, - anon_sym_SQUOTE, - STATE(1530), 1, - sym_block, - STATE(3714), 1, - sym_label, + ACTIONS(4704), 1, + anon_sym_LPAREN, + ACTIONS(5102), 1, + anon_sym_LT, + STATE(2309), 1, + sym_parameters, + STATE(3372), 1, + sym_type_parameters, STATE(2852), 2, sym_line_comment, sym_block_comment, - [85396] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [85846] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3448), 1, - anon_sym_SQUOTE, - STATE(3664), 1, - sym_block, - STATE(3714), 1, - sym_label, + ACTIONS(6130), 1, + anon_sym_COLON, STATE(2853), 2, sym_line_comment, sym_block_comment, - [85419] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5033), 3, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_COMMA, + [85865] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5059), 1, - anon_sym_LBRACE, - ACTIONS(5071), 1, - anon_sym_where, - STATE(1368), 1, - sym_declaration_list, - STATE(3393), 1, - sym_where_clause, + ACTIONS(5722), 1, + anon_sym_PIPE, + ACTIONS(6132), 1, + anon_sym_RPAREN, + ACTIONS(6134), 1, + anon_sym_COMMA, + STATE(2979), 1, + aux_sym_slice_pattern_repeat1, STATE(2854), 2, sym_line_comment, sym_block_comment, - [85442] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [85888] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3448), 1, - anon_sym_SQUOTE, - STATE(1307), 1, - sym_block, - STATE(3714), 1, - sym_label, + ACTIONS(4704), 1, + anon_sym_LPAREN, + ACTIONS(5102), 1, + anon_sym_LT, + STATE(2335), 1, + sym_parameters, + STATE(3508), 1, + sym_type_parameters, STATE(2855), 2, sym_line_comment, sym_block_comment, - [85465] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [85911] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3084), 1, - anon_sym_SQUOTE, - ACTIONS(5914), 1, - sym_identifier, - ACTIONS(6148), 1, - anon_sym_GT, - STATE(3383), 1, - sym_lifetime, + ACTIONS(4684), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(6136), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(2856), 2, sym_line_comment, sym_block_comment, - [85488] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [85930] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4672), 1, + ACTIONS(4702), 1, anon_sym_LT2, - ACTIONS(5803), 1, - anon_sym_COLON_COLON, - ACTIONS(6150), 1, - anon_sym_for, - STATE(2027), 1, + ACTIONS(5885), 1, + sym_super, + ACTIONS(6023), 1, + sym_identifier, + STATE(2137), 1, sym_type_arguments, STATE(2857), 2, sym_line_comment, sym_block_comment, - [85511] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [85953] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3448), 1, - anon_sym_SQUOTE, - STATE(3665), 1, - sym_block, - STATE(3714), 1, - sym_label, + ACTIONS(4684), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(6138), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(2858), 2, sym_line_comment, sym_block_comment, - [85534] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [85972] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3084), 1, + ACTIONS(348), 1, + anon_sym_LBRACE, + ACTIONS(3474), 1, anon_sym_SQUOTE, - ACTIONS(5914), 1, - sym_identifier, - ACTIONS(6152), 1, - anon_sym_GT, - STATE(3383), 1, - sym_lifetime, + STATE(3585), 1, + sym_block, + STATE(3750), 1, + sym_label, STATE(2859), 2, sym_line_comment, sym_block_comment, - [85557] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [85995] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(4704), 1, + anon_sym_LPAREN, + ACTIONS(5102), 1, + anon_sym_LT, + STATE(2316), 1, + sym_parameters, + STATE(3397), 1, + sym_type_parameters, STATE(2860), 2, sym_line_comment, sym_block_comment, - ACTIONS(4436), 4, + [86018] = 7, + ACTIONS(19), 1, anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_AMP_AMP, - anon_sym_SQUOTE, - [85574] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3084), 1, + ACTIONS(3474), 1, anon_sym_SQUOTE, - ACTIONS(5914), 1, - sym_identifier, - ACTIONS(6154), 1, - anon_sym_GT, - STATE(3383), 1, - sym_lifetime, + STATE(418), 1, + sym_block, + STATE(3785), 1, + sym_label, STATE(2861), 2, sym_line_comment, sym_block_comment, - [85597] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [86041] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3084), 1, + ACTIONS(3110), 1, anon_sym_SQUOTE, - ACTIONS(5914), 1, + ACTIONS(5837), 1, sym_identifier, - ACTIONS(6156), 1, + ACTIONS(6140), 1, anon_sym_GT, - STATE(3383), 1, + STATE(3384), 1, sym_lifetime, STATE(2862), 2, sym_line_comment, sym_block_comment, - [85620] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [86064] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3084), 1, + ACTIONS(348), 1, + anon_sym_LBRACE, + ACTIONS(3474), 1, anon_sym_SQUOTE, - ACTIONS(5914), 1, - sym_identifier, - ACTIONS(6158), 1, - anon_sym_GT, - STATE(3383), 1, - sym_lifetime, + STATE(3582), 1, + sym_block, + STATE(3750), 1, + sym_label, STATE(2863), 2, sym_line_comment, sym_block_comment, - [85643] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [86087] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3084), 1, + ACTIONS(348), 1, + anon_sym_LBRACE, + ACTIONS(3474), 1, anon_sym_SQUOTE, - ACTIONS(5914), 1, - sym_identifier, - ACTIONS(6160), 1, - anon_sym_GT, - STATE(3383), 1, - sym_lifetime, + STATE(3584), 1, + sym_block, + STATE(3750), 1, + sym_label, STATE(2864), 2, sym_line_comment, sym_block_comment, - [85666] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [86110] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4672), 1, - anon_sym_LT2, - STATE(3553), 1, - sym_type_arguments, - ACTIONS(5831), 2, + ACTIONS(3110), 1, + anon_sym_SQUOTE, + ACTIONS(5837), 1, sym_identifier, - sym_super, + ACTIONS(6142), 1, + anon_sym_GT, + STATE(3384), 1, + sym_lifetime, STATE(2865), 2, sym_line_comment, sym_block_comment, - [85687] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [86133] = 7, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4672), 1, - anon_sym_LT2, - ACTIONS(5306), 1, - sym_super, - ACTIONS(5807), 1, - sym_identifier, - STATE(3553), 1, - sym_type_arguments, - STATE(2866), 2, - sym_line_comment, - sym_block_comment, - [85710] = 7, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5332), 1, + ACTIONS(6144), 1, anon_sym_LPAREN, - ACTIONS(5334), 1, + ACTIONS(6146), 1, anon_sym_LBRACK, - ACTIONS(5338), 1, + ACTIONS(6148), 1, anon_sym_LBRACE, - STATE(1548), 1, - sym_delim_token_tree, - STATE(2867), 2, + STATE(2837), 1, + sym_token_tree, + STATE(2866), 2, sym_line_comment, sym_block_comment, - [85733] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [86156] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4672), 1, - anon_sym_LT2, - ACTIONS(4674), 1, - anon_sym_LPAREN, - STATE(2026), 1, - sym_type_arguments, - STATE(2101), 1, - sym_parameters, - STATE(2868), 2, + ACTIONS(348), 1, + anon_sym_LBRACE, + ACTIONS(3474), 1, + anon_sym_SQUOTE, + STATE(3671), 1, + sym_block, + STATE(3750), 1, + sym_label, + STATE(2867), 2, sym_line_comment, sym_block_comment, - [85756] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [86179] = 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(3448), 1, + ACTIONS(3474), 1, anon_sym_SQUOTE, - STATE(1546), 1, + STATE(3672), 1, sym_block, - STATE(3714), 1, + STATE(3750), 1, sym_label, - STATE(2869), 2, + STATE(2868), 2, sym_line_comment, sym_block_comment, - [85779] = 7, - ACTIONS(103), 1, + [86202] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6150), 1, + aux_sym_token_repetition_pattern_token1, + STATE(2869), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(6152), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [86221] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5071), 1, - anon_sym_where, - ACTIONS(5093), 1, + ACTIONS(348), 1, anon_sym_LBRACE, - STATE(675), 1, - sym_declaration_list, - STATE(3346), 1, - sym_where_clause, + ACTIONS(3474), 1, + anon_sym_SQUOTE, + STATE(3746), 1, + sym_block, + STATE(3750), 1, + sym_label, STATE(2870), 2, sym_line_comment, sym_block_comment, - [85802] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [86244] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5164), 1, - anon_sym_COLON, - STATE(3376), 1, - sym_trait_bounds, - ACTIONS(5797), 2, - anon_sym_GT, - anon_sym_COMMA, + ACTIONS(348), 1, + anon_sym_LBRACE, + ACTIONS(3474), 1, + anon_sym_SQUOTE, + STATE(3750), 1, + sym_label, + STATE(3787), 1, + sym_block, STATE(2871), 2, sym_line_comment, sym_block_comment, - [85823] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [86267] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3430), 1, - anon_sym_LPAREN, - ACTIONS(4672), 1, + ACTIONS(3464), 1, anon_sym_LT2, - STATE(1336), 1, - sym_parameters, - STATE(2026), 1, + ACTIONS(3710), 1, + anon_sym_COLON_COLON, + ACTIONS(4742), 1, + anon_sym_BANG, + STATE(1427), 1, sym_type_arguments, STATE(2872), 2, sym_line_comment, sym_block_comment, - [85846] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [86290] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, - anon_sym_LBRACE, - ACTIONS(3448), 1, - anon_sym_SQUOTE, - STATE(1813), 1, - sym_block, - STATE(3779), 1, - sym_label, + ACTIONS(4702), 1, + anon_sym_LT2, + ACTIONS(5885), 1, + sym_super, + ACTIONS(6023), 1, + sym_identifier, + STATE(2138), 1, + sym_type_arguments, STATE(2873), 2, sym_line_comment, sym_block_comment, - [85869] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [86313] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, - anon_sym_LBRACE, - ACTIONS(3448), 1, - anon_sym_SQUOTE, - STATE(1815), 1, - sym_block, - STATE(3779), 1, - sym_label, + ACTIONS(4178), 1, + anon_sym_LT2, + ACTIONS(4374), 1, + anon_sym_COLON_COLON, + ACTIONS(4742), 1, + anon_sym_BANG, + STATE(1723), 1, + sym_type_arguments, STATE(2874), 2, sym_line_comment, sym_block_comment, - [85892] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [86336] = 7, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(3474), 1, + anon_sym_SQUOTE, + STATE(270), 1, + sym_block, + STATE(3785), 1, + sym_label, STATE(2875), 2, sym_line_comment, sym_block_comment, - ACTIONS(3390), 4, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_COMMA, - [85909] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [86359] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6162), 1, - anon_sym_DQUOTE, - STATE(2628), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5827), 2, - sym_string_content, - sym_escape_sequence, + ACTIONS(4696), 1, + anon_sym_DOT_DOT, + ACTIONS(5431), 1, + anon_sym_COLON_COLON, + ACTIONS(4698), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, STATE(2876), 2, sym_line_comment, sym_block_comment, - [85930] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [86380] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5071), 1, - anon_sym_where, - ACTIONS(5461), 1, + ACTIONS(6154), 1, anon_sym_LBRACE, - STATE(597), 1, - sym_enum_variant_list, - STATE(3192), 1, - sym_where_clause, + ACTIONS(6156), 1, + anon_sym_for, + ACTIONS(6158), 1, + anon_sym_loop, + ACTIONS(6160), 1, + anon_sym_while, STATE(2877), 2, sym_line_comment, sym_block_comment, - [85953] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [86403] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6164), 1, + ACTIONS(3182), 1, + anon_sym_PLUS, + ACTIONS(6162), 1, + anon_sym_EQ, + ACTIONS(6164), 2, anon_sym_GT, - ACTIONS(6166), 1, anon_sym_COMMA, - STATE(3031), 1, - aux_sym_use_bounds_repeat1, STATE(2878), 2, sym_line_comment, sym_block_comment, - [85973] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [86424] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6168), 1, - anon_sym_RBRACE, - ACTIONS(6170), 1, + ACTIONS(3182), 1, + anon_sym_PLUS, + ACTIONS(5754), 1, + anon_sym_RPAREN, + ACTIONS(5756), 1, anon_sym_COMMA, - STATE(2915), 1, - aux_sym_struct_pattern_repeat1, + STATE(3067), 1, + aux_sym_parameters_repeat1, STATE(2879), 2, sym_line_comment, sym_block_comment, - [85993] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [86447] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6172), 1, - anon_sym_RBRACE, - ACTIONS(6174), 1, - anon_sym_COMMA, - STATE(2917), 1, - aux_sym_struct_pattern_repeat1, + ACTIONS(5104), 1, + anon_sym_where, + ACTIONS(5259), 1, + anon_sym_LBRACE, + STATE(562), 1, + sym_declaration_list, + STATE(3385), 1, + sym_where_clause, STATE(2880), 2, sym_line_comment, sym_block_comment, - [86013] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [86470] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, + ACTIONS(3182), 1, anon_sym_PLUS, - ACTIONS(6176), 2, - anon_sym_RBRACE, + ACTIONS(6166), 1, + anon_sym_RPAREN, + ACTIONS(6168), 1, anon_sym_COMMA, + STATE(3142), 1, + aux_sym_tuple_type_repeat1, STATE(2881), 2, sym_line_comment, sym_block_comment, - [86031] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [86493] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3254), 1, - anon_sym_RPAREN, - ACTIONS(6178), 1, - anon_sym_COMMA, - STATE(2990), 1, - aux_sym_tuple_type_repeat1, + ACTIONS(4696), 1, + anon_sym_DOT_DOT, + ACTIONS(5449), 1, + anon_sym_COLON_COLON, + ACTIONS(4698), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, STATE(2882), 2, sym_line_comment, sym_block_comment, - [86051] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [86514] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(6170), 1, + anon_sym_LBRACE, + ACTIONS(6172), 1, + anon_sym_for, + ACTIONS(6174), 1, + anon_sym_loop, + ACTIONS(6176), 1, + anon_sym_while, STATE(2883), 2, sym_line_comment, sym_block_comment, - ACTIONS(4654), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [86067] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [86537] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5696), 1, - anon_sym_RPAREN, - ACTIONS(5698), 1, - anon_sym_COMMA, - STATE(2919), 1, - aux_sym_parameters_repeat1, + ACTIONS(6178), 1, + sym_identifier, STATE(2884), 2, sym_line_comment, sym_block_comment, - [86087] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(6180), 3, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + [86556] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6180), 1, - anon_sym_GT, - ACTIONS(6182), 1, - anon_sym_COMMA, - STATE(2922), 1, - aux_sym_use_bounds_repeat1, + ACTIONS(348), 1, + anon_sym_LBRACE, + ACTIONS(3474), 1, + anon_sym_SQUOTE, + STATE(3750), 1, + sym_label, + STATE(3836), 1, + sym_block, STATE(2885), 2, sym_line_comment, sym_block_comment, - [86107] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [86579] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6184), 1, - anon_sym_GT, - ACTIONS(6186), 1, - anon_sym_COMMA, - STATE(2923), 1, - aux_sym_use_bounds_repeat1, + ACTIONS(348), 1, + anon_sym_LBRACE, + ACTIONS(3474), 1, + anon_sym_SQUOTE, + STATE(3567), 1, + sym_block, + STATE(3750), 1, + sym_label, STATE(2886), 2, sym_line_comment, sym_block_comment, - [86127] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [86602] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, - anon_sym_PLUS, - ACTIONS(6188), 1, - anon_sym_SEMI, - ACTIONS(6190), 1, - anon_sym_EQ, + ACTIONS(5100), 1, + anon_sym_LBRACE, + ACTIONS(5104), 1, + anon_sym_where, + STATE(569), 1, + sym_field_declaration_list, + STATE(3398), 1, + sym_where_clause, STATE(2887), 2, sym_line_comment, sym_block_comment, - [86147] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [86625] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5093), 1, + ACTIONS(5138), 1, + anon_sym_fn, + ACTIONS(5259), 1, anon_sym_LBRACE, - ACTIONS(6192), 1, + ACTIONS(6062), 1, anon_sym_SEMI, - STATE(701), 1, + STATE(715), 1, sym_declaration_list, STATE(2888), 2, sym_line_comment, sym_block_comment, - [86167] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [86648] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5071), 1, - anon_sym_where, - ACTIONS(6194), 1, - anon_sym_SEMI, - STATE(3539), 1, - sym_where_clause, + ACTIONS(4702), 1, + anon_sym_LT2, + ACTIONS(4965), 1, + anon_sym_for, + ACTIONS(5935), 1, + anon_sym_COLON_COLON, + STATE(2039), 1, + sym_type_arguments, STATE(2889), 2, sym_line_comment, sym_block_comment, - [86187] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [86671] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6196), 1, - anon_sym_RBRACE, - ACTIONS(6198), 1, - anon_sym_COMMA, - STATE(2924), 1, - aux_sym_enum_variant_list_repeat2, + ACTIONS(5722), 1, + anon_sym_PIPE, STATE(2890), 2, sym_line_comment, sym_block_comment, - [86207] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(931), 1, + ACTIONS(6182), 3, anon_sym_RPAREN, - ACTIONS(4344), 1, + anon_sym_RBRACK, anon_sym_COMMA, - STATE(2759), 1, - aux_sym_arguments_repeat1, + [86690] = 7, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(3182), 1, + anon_sym_PLUS, + ACTIONS(5104), 1, + anon_sym_where, + ACTIONS(6184), 1, + anon_sym_SEMI, + STATE(3595), 1, + sym_where_clause, STATE(2891), 2, sym_line_comment, sym_block_comment, - [86227] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [86713] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(4702), 1, + anon_sym_LT2, + ACTIONS(5935), 1, + anon_sym_COLON_COLON, + ACTIONS(6186), 1, + anon_sym_for, + STATE(2039), 1, + sym_type_arguments, STATE(2892), 2, sym_line_comment, sym_block_comment, - ACTIONS(6200), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [86243] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [86736] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4839), 1, - anon_sym_GT, - ACTIONS(6202), 1, - anon_sym_COMMA, - STATE(3082), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(4702), 1, + anon_sym_LT2, + ACTIONS(5935), 1, + anon_sym_COLON_COLON, + ACTIONS(6188), 1, + anon_sym_for, + STATE(2039), 1, + sym_type_arguments, STATE(2893), 2, sym_line_comment, sym_block_comment, - [86263] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [86759] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4839), 1, - anon_sym_GT, - ACTIONS(6202), 1, + ACTIONS(6190), 1, anon_sym_COMMA, - STATE(2928), 1, - aux_sym_type_parameters_repeat1, - STATE(2894), 2, + ACTIONS(6182), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + STATE(2894), 3, sym_line_comment, sym_block_comment, - [86283] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + aux_sym_slice_pattern_repeat1, + [86778] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5059), 1, - anon_sym_LBRACE, - ACTIONS(6204), 1, - anon_sym_SEMI, - STATE(1163), 1, - sym_declaration_list, STATE(2895), 2, sym_line_comment, sym_block_comment, - [86303] = 6, - ACTIONS(27), 1, - anon_sym_PIPE, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3416), 4, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_COMMA, + [86795] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5079), 1, - anon_sym_move, - STATE(233), 1, - sym_closure_parameters, + ACTIONS(4702), 1, + anon_sym_LT2, + ACTIONS(5935), 1, + anon_sym_COLON_COLON, + ACTIONS(6193), 1, + anon_sym_for, + STATE(2039), 1, + sym_type_arguments, STATE(2896), 2, sym_line_comment, sym_block_comment, - [86323] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [86818] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, - anon_sym_PLUS, - ACTIONS(6206), 1, + ACTIONS(5138), 1, + anon_sym_fn, + ACTIONS(5259), 1, + anon_sym_LBRACE, + ACTIONS(6195), 1, anon_sym_SEMI, - ACTIONS(6208), 1, - anon_sym_EQ, + STATE(648), 1, + sym_declaration_list, STATE(2897), 2, sym_line_comment, sym_block_comment, - [86343] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [86841] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6210), 1, - anon_sym_RBRACE, - ACTIONS(6212), 1, - anon_sym_COMMA, - STATE(2936), 1, - aux_sym_field_declaration_list_repeat1, + ACTIONS(348), 1, + anon_sym_LBRACE, + ACTIONS(3474), 1, + anon_sym_SQUOTE, + STATE(3602), 1, + sym_block, + STATE(3750), 1, + sym_label, STATE(2898), 2, sym_line_comment, sym_block_comment, - [86363] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [86864] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5071), 1, - anon_sym_where, - ACTIONS(6214), 1, - anon_sym_SEMI, - STATE(3502), 1, - sym_where_clause, + ACTIONS(4702), 1, + anon_sym_LT2, + ACTIONS(4704), 1, + anon_sym_LPAREN, + STATE(2043), 1, + sym_type_arguments, + STATE(2108), 1, + sym_parameters, STATE(2899), 2, sym_line_comment, sym_block_comment, - [86383] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [86887] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5071), 1, - anon_sym_where, - ACTIONS(6216), 1, - anon_sym_SEMI, - STATE(3624), 1, - sym_where_clause, + ACTIONS(3182), 1, + anon_sym_PLUS, STATE(2900), 2, sym_line_comment, sym_block_comment, - [86403] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(6197), 3, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_COMMA, + [86906] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6104), 1, + ACTIONS(3182), 1, + anon_sym_PLUS, + ACTIONS(6199), 1, anon_sym_RPAREN, - ACTIONS(6106), 1, + ACTIONS(6201), 1, anon_sym_COMMA, - STATE(3023), 1, - aux_sym_tuple_pattern_repeat1, + STATE(3098), 1, + aux_sym_ordered_field_declaration_list_repeat1, STATE(2901), 2, sym_line_comment, sym_block_comment, - [86423] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [86929] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5059), 1, - anon_sym_LBRACE, - ACTIONS(6218), 1, - anon_sym_SEMI, - STATE(1191), 1, - sym_declaration_list, + ACTIONS(1262), 1, + anon_sym_RPAREN, + ACTIONS(3182), 1, + anon_sym_PLUS, + ACTIONS(5635), 1, + anon_sym_COMMA, + STATE(3063), 1, + aux_sym_parameters_repeat1, STATE(2902), 2, sym_line_comment, sym_block_comment, - [86443] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [86952] = 6, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5009), 1, - anon_sym_RBRACE, - ACTIONS(6220), 1, - anon_sym_COMMA, - STATE(2906), 1, - aux_sym_field_initializer_list_repeat1, + ACTIONS(6203), 1, + anon_sym_move, + STATE(229), 1, + sym_closure_parameters, STATE(2903), 2, sym_line_comment, sym_block_comment, - [86463] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [86972] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6222), 1, - sym_identifier, - ACTIONS(6224), 1, - anon_sym_await, - ACTIONS(6226), 1, - sym_integer_literal, STATE(2904), 2, sym_line_comment, sym_block_comment, - [86483] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(6205), 3, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_fn, + [86988] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5071), 1, - anon_sym_where, - ACTIONS(6228), 1, - anon_sym_SEMI, - STATE(3782), 1, - sym_where_clause, + ACTIONS(6207), 1, + anon_sym_RBRACE, + ACTIONS(6209), 1, + anon_sym_COMMA, + STATE(2943), 1, + aux_sym_struct_pattern_repeat1, STATE(2905), 2, sym_line_comment, sym_block_comment, - [86503] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [87008] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6230), 1, + ACTIONS(6211), 1, anon_sym_RBRACE, - ACTIONS(6232), 1, + ACTIONS(6213), 1, anon_sym_COMMA, - STATE(2906), 3, + STATE(2946), 1, + aux_sym_struct_pattern_repeat1, + STATE(2906), 2, sym_line_comment, sym_block_comment, - aux_sym_field_initializer_list_repeat1, - [86521] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [87028] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(965), 1, + ACTIONS(3312), 1, anon_sym_RPAREN, - ACTIONS(4308), 1, + ACTIONS(6215), 1, anon_sym_COMMA, - STATE(2759), 1, - aux_sym_arguments_repeat1, + STATE(3026), 1, + aux_sym_tuple_type_repeat1, STATE(2907), 2, sym_line_comment, sym_block_comment, - [86541] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [87048] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5093), 1, + ACTIONS(5259), 1, anon_sym_LBRACE, - ACTIONS(6235), 1, + ACTIONS(6217), 1, anon_sym_SEMI, - STATE(703), 1, + STATE(735), 1, sym_declaration_list, STATE(2908), 2, sym_line_comment, sym_block_comment, - [86561] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [87068] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6237), 1, - anon_sym_EQ_GT, - ACTIONS(6239), 1, - anon_sym_PIPE, - ACTIONS(6241), 1, - anon_sym_if, + ACTIONS(5259), 1, + anon_sym_LBRACE, + ACTIONS(6219), 1, + anon_sym_SEMI, + STATE(779), 1, + sym_declaration_list, STATE(2909), 2, sym_line_comment, sym_block_comment, - [86581] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [87088] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, - anon_sym_PLUS, - ACTIONS(6243), 2, - anon_sym_GT, + ACTIONS(5661), 1, + anon_sym_RPAREN, + ACTIONS(5663), 1, anon_sym_COMMA, + STATE(2948), 1, + aux_sym_parameters_repeat1, STATE(2910), 2, sym_line_comment, sym_block_comment, - [86599] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [87108] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(969), 1, - anon_sym_RBRACK, - ACTIONS(6245), 1, + ACTIONS(3148), 1, + anon_sym_RPAREN, + ACTIONS(6221), 1, anon_sym_COMMA, - STATE(2759), 1, - aux_sym_arguments_repeat1, + STATE(2894), 1, + aux_sym_slice_pattern_repeat1, STATE(2911), 2, sym_line_comment, sym_block_comment, - [86619] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [87128] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1661), 1, + ACTIONS(6223), 1, anon_sym_GT, - ACTIONS(6247), 1, + ACTIONS(6225), 1, anon_sym_COMMA, STATE(2951), 1, - aux_sym_type_arguments_repeat1, + aux_sym_use_bounds_repeat1, STATE(2912), 2, sym_line_comment, sym_block_comment, - [86639] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [87148] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1661), 1, + ACTIONS(6227), 1, anon_sym_GT, - ACTIONS(6247), 1, + ACTIONS(6229), 1, anon_sym_COMMA, - STATE(3065), 1, - aux_sym_type_arguments_repeat1, + STATE(2952), 1, + aux_sym_use_bounds_repeat1, STATE(2913), 2, sym_line_comment, sym_block_comment, - [86659] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [87168] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3126), 1, - anon_sym_RPAREN, - ACTIONS(6249), 1, - anon_sym_COMMA, - STATE(2742), 1, - aux_sym_slice_pattern_repeat1, + ACTIONS(3182), 1, + anon_sym_PLUS, + ACTIONS(6231), 1, + anon_sym_SEMI, + ACTIONS(6233), 1, + anon_sym_EQ, STATE(2914), 2, sym_line_comment, sym_block_comment, - [86679] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [87188] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5400), 1, - anon_sym_RBRACE, - ACTIONS(6251), 1, - anon_sym_COMMA, - STATE(3074), 1, - aux_sym_struct_pattern_repeat1, + ACTIONS(3182), 1, + anon_sym_PLUS, + ACTIONS(6235), 1, + anon_sym_SEMI, + ACTIONS(6237), 1, + anon_sym_EQ, STATE(2915), 2, sym_line_comment, sym_block_comment, - [86699] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [87208] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3128), 1, - anon_sym_RPAREN, - ACTIONS(6253), 1, + ACTIONS(5839), 1, + anon_sym_GT, + ACTIONS(6239), 1, anon_sym_COMMA, - STATE(2742), 1, - aux_sym_slice_pattern_repeat1, + STATE(3146), 1, + aux_sym_use_bounds_repeat1, STATE(2916), 2, sym_line_comment, sym_block_comment, - [86719] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [87228] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5404), 1, + ACTIONS(6241), 1, anon_sym_RBRACE, - ACTIONS(6255), 1, + ACTIONS(6243), 1, anon_sym_COMMA, - STATE(3074), 1, - aux_sym_struct_pattern_repeat1, + STATE(2990), 1, + aux_sym_use_list_repeat1, STATE(2917), 2, sym_line_comment, sym_block_comment, - [86739] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [87248] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5093), 1, - anon_sym_LBRACE, - ACTIONS(6257), 1, - anon_sym_SEMI, - STATE(709), 1, - sym_declaration_list, + ACTIONS(6245), 1, + anon_sym_RBRACE, + ACTIONS(6247), 1, + anon_sym_COMMA, + STATE(2953), 1, + aux_sym_enum_variant_list_repeat2, STATE(2918), 2, sym_line_comment, sym_block_comment, - [86759] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [87268] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1365), 1, - anon_sym_RPAREN, - ACTIONS(5745), 1, + ACTIONS(5841), 1, + anon_sym_GT, + ACTIONS(6249), 1, anon_sym_COMMA, - STATE(3098), 1, - aux_sym_parameters_repeat1, + STATE(3146), 1, + aux_sym_use_bounds_repeat1, STATE(2919), 2, sym_line_comment, sym_block_comment, - [86779] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [87288] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1365), 1, - anon_sym_RPAREN, - ACTIONS(5745), 1, + ACTIONS(4897), 1, + anon_sym_GT, + ACTIONS(6251), 1, anon_sym_COMMA, - STATE(2955), 1, - aux_sym_parameters_repeat1, + STATE(3175), 1, + aux_sym_type_parameters_repeat1, STATE(2920), 2, sym_line_comment, sym_block_comment, - [86799] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [87308] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, - anon_sym_PLUS, - ACTIONS(6259), 1, - anon_sym_SEMI, - ACTIONS(6261), 1, - anon_sym_EQ, + ACTIONS(4897), 1, + anon_sym_GT, + ACTIONS(6251), 1, + anon_sym_COMMA, + STATE(2957), 1, + aux_sym_type_parameters_repeat1, STATE(2921), 2, sym_line_comment, sym_block_comment, - [86819] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [87328] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6060), 1, - anon_sym_GT, - ACTIONS(6263), 1, - anon_sym_COMMA, - STATE(3140), 1, - aux_sym_use_bounds_repeat1, + ACTIONS(5224), 1, + anon_sym_LBRACE, + ACTIONS(6253), 1, + anon_sym_SEMI, + STATE(1386), 1, + sym_declaration_list, STATE(2922), 2, sym_line_comment, sym_block_comment, - [86839] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [87348] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6062), 1, - anon_sym_GT, - ACTIONS(6265), 1, - anon_sym_COMMA, - STATE(3140), 1, - aux_sym_use_bounds_repeat1, + ACTIONS(3182), 1, + anon_sym_PLUS, + ACTIONS(6255), 1, + anon_sym_SEMI, + ACTIONS(6257), 1, + anon_sym_EQ, STATE(2923), 2, sym_line_comment, sym_block_comment, - [86859] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [87368] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5095), 1, + ACTIONS(6259), 1, anon_sym_RBRACE, - ACTIONS(6267), 1, + ACTIONS(6261), 1, anon_sym_COMMA, - STATE(3175), 1, - aux_sym_enum_variant_list_repeat2, + STATE(2963), 1, + aux_sym_field_declaration_list_repeat1, STATE(2924), 2, sym_line_comment, sym_block_comment, - [86879] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [87388] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5095), 1, - anon_sym_RBRACE, - ACTIONS(6267), 1, - anon_sym_COMMA, - STATE(2957), 1, - aux_sym_enum_variant_list_repeat2, + ACTIONS(5104), 1, + anon_sym_where, + ACTIONS(6263), 1, + anon_sym_SEMI, + STATE(3605), 1, + sym_where_clause, STATE(2925), 2, sym_line_comment, sym_block_comment, - [86899] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [87408] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3210), 1, - anon_sym_PLUS, - ACTIONS(6269), 1, - anon_sym_GT, - ACTIONS(6271), 1, - anon_sym_as, + ACTIONS(4702), 1, + anon_sym_LT2, + ACTIONS(5067), 1, + anon_sym_LBRACE, + STATE(2043), 1, + sym_type_arguments, STATE(2926), 2, sym_line_comment, sym_block_comment, - [86919] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [87428] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(5104), 1, + anon_sym_where, + ACTIONS(6265), 1, + anon_sym_SEMI, + STATE(3620), 1, + sym_where_clause, STATE(2927), 2, sym_line_comment, sym_block_comment, - ACTIONS(4971), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [86935] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [87448] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4859), 1, - anon_sym_GT, - ACTIONS(6273), 1, - anon_sym_COMMA, - STATE(3082), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(5224), 1, + anon_sym_LBRACE, + ACTIONS(6267), 1, + anon_sym_SEMI, + STATE(1129), 1, + sym_declaration_list, STATE(2928), 2, sym_line_comment, sym_block_comment, - [86955] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [87468] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5059), 1, - anon_sym_LBRACE, - ACTIONS(6275), 1, - anon_sym_SEMI, - STATE(1226), 1, - sym_declaration_list, + ACTIONS(6271), 1, + anon_sym_COLON, + ACTIONS(6269), 2, + anon_sym_RBRACE, + anon_sym_COMMA, STATE(2929), 2, sym_line_comment, sym_block_comment, - [86975] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [87486] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(5104), 1, + anon_sym_where, + ACTIONS(6273), 1, + anon_sym_SEMI, + STATE(3649), 1, + sym_where_clause, STATE(2930), 2, sym_line_comment, sym_block_comment, - ACTIONS(4973), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [86991] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [87506] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5059), 1, - anon_sym_LBRACE, - ACTIONS(6277), 1, - anon_sym_SEMI, - STATE(1232), 1, - sym_declaration_list, + ACTIONS(5073), 1, + anon_sym_RBRACE, + ACTIONS(6275), 1, + anon_sym_COMMA, + STATE(3077), 1, + aux_sym_field_initializer_list_repeat1, STATE(2931), 2, sym_line_comment, sym_block_comment, - [87011] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [87526] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6281), 1, - anon_sym_COLON, - ACTIONS(6279), 2, - anon_sym_RBRACE, - anon_sym_COMMA, + ACTIONS(5104), 1, + anon_sym_where, + ACTIONS(6277), 1, + anon_sym_SEMI, + STATE(3650), 1, + sym_where_clause, STATE(2932), 2, sym_line_comment, sym_block_comment, - [87029] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [87546] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(5259), 1, + anon_sym_LBRACE, + ACTIONS(6279), 1, + anon_sym_SEMI, + STATE(677), 1, + sym_declaration_list, STATE(2933), 2, sym_line_comment, sym_block_comment, - ACTIONS(4977), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [87045] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [87566] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, - anon_sym_PLUS, - ACTIONS(6283), 1, - anon_sym_SEMI, - ACTIONS(6285), 1, - anon_sym_EQ, + ACTIONS(1042), 1, + anon_sym_RPAREN, + ACTIONS(4332), 1, + anon_sym_COMMA, + STATE(2803), 1, + aux_sym_arguments_repeat1, STATE(2934), 2, sym_line_comment, sym_block_comment, - [87065] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [87586] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(924), 1, + anon_sym_RBRACK, + ACTIONS(6281), 1, + anon_sym_COMMA, + STATE(2803), 1, + aux_sym_arguments_repeat1, STATE(2935), 2, sym_line_comment, sym_block_comment, - ACTIONS(4981), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [87081] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [87606] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5097), 1, - anon_sym_RBRACE, - ACTIONS(6287), 1, - anon_sym_COMMA, - STATE(3042), 1, - aux_sym_field_declaration_list_repeat1, STATE(2936), 2, sym_line_comment, sym_block_comment, - [87101] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5021), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [87622] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5097), 1, - anon_sym_RBRACE, - ACTIONS(6287), 1, - anon_sym_COMMA, - STATE(2965), 1, - aux_sym_field_declaration_list_repeat1, + ACTIONS(4702), 1, + anon_sym_LT2, + ACTIONS(6283), 1, + anon_sym_for, + STATE(2043), 1, + sym_type_arguments, STATE(2937), 2, sym_line_comment, sym_block_comment, - [87121] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [87642] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(1654), 1, + anon_sym_GT, + ACTIONS(6285), 1, + anon_sym_COMMA, + STATE(2975), 1, + aux_sym_type_arguments_repeat1, STATE(2938), 2, sym_line_comment, sym_block_comment, - ACTIONS(4983), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [87137] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [87662] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(1654), 1, + anon_sym_GT, + ACTIONS(6285), 1, + anon_sym_COMMA, + STATE(3126), 1, + aux_sym_type_arguments_repeat1, STATE(2939), 2, sym_line_comment, sym_block_comment, - ACTIONS(4987), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [87153] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [87682] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5059), 1, - anon_sym_LBRACE, - ACTIONS(6289), 1, + ACTIONS(3182), 1, + anon_sym_PLUS, + ACTIONS(6287), 1, anon_sym_SEMI, - STATE(1248), 1, - sym_declaration_list, + ACTIONS(6289), 1, + anon_sym_EQ, STATE(2940), 2, sym_line_comment, sym_block_comment, - [87173] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [87702] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(3160), 1, + anon_sym_RPAREN, ACTIONS(6291), 1, - anon_sym_RBRACE, - ACTIONS(6293), 1, anon_sym_COMMA, - STATE(2974), 1, - aux_sym_struct_pattern_repeat1, + STATE(2894), 1, + aux_sym_slice_pattern_repeat1, STATE(2941), 2, sym_line_comment, sym_block_comment, - [87193] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [87722] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, - anon_sym_PLUS, - ACTIONS(6295), 1, - anon_sym_SEMI, - ACTIONS(6297), 1, - anon_sym_EQ, + ACTIONS(4702), 1, + anon_sym_LT2, + ACTIONS(5142), 1, + anon_sym_for, + STATE(2043), 1, + sym_type_arguments, STATE(2942), 2, sym_line_comment, sym_block_comment, - [87213] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [87742] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5071), 1, - anon_sym_where, - ACTIONS(6299), 1, - anon_sym_SEMI, - STATE(3710), 1, - sym_where_clause, + ACTIONS(5369), 1, + anon_sym_RBRACE, + ACTIONS(6293), 1, + anon_sym_COMMA, + STATE(3132), 1, + aux_sym_struct_pattern_repeat1, STATE(2943), 2, sym_line_comment, sym_block_comment, - [87233] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [87762] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5093), 1, - anon_sym_LBRACE, - ACTIONS(6301), 1, - anon_sym_SEMI, - STATE(768), 1, - sym_declaration_list, STATE(2944), 2, sym_line_comment, sym_block_comment, - [87253] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5055), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [87778] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, - anon_sym_PLUS, - ACTIONS(6303), 1, - anon_sym_SEMI, - ACTIONS(6305), 1, - anon_sym_EQ, + ACTIONS(3162), 1, + anon_sym_RPAREN, + ACTIONS(6295), 1, + anon_sym_COMMA, + STATE(2894), 1, + aux_sym_slice_pattern_repeat1, STATE(2945), 2, sym_line_comment, sym_block_comment, - [87273] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [87798] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(971), 1, - anon_sym_RPAREN, - ACTIONS(6307), 1, + ACTIONS(5371), 1, + anon_sym_RBRACE, + ACTIONS(6297), 1, anon_sym_COMMA, - STATE(2759), 1, - aux_sym_arguments_repeat1, + STATE(3132), 1, + aux_sym_struct_pattern_repeat1, STATE(2946), 2, sym_line_comment, sym_block_comment, - [87293] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [87818] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5093), 1, - anon_sym_LBRACE, - ACTIONS(6309), 1, - anon_sym_SEMI, - STATE(711), 1, - sym_declaration_list, + ACTIONS(6299), 1, + sym_identifier, + ACTIONS(6301), 1, + anon_sym_ref, + ACTIONS(6303), 1, + sym_mutable_specifier, STATE(2947), 2, sym_line_comment, sym_block_comment, - [87313] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [87838] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(967), 1, - anon_sym_RBRACK, - ACTIONS(6311), 1, + ACTIONS(1242), 1, + anon_sym_RPAREN, + ACTIONS(5633), 1, anon_sym_COMMA, - STATE(2759), 1, - aux_sym_arguments_repeat1, + STATE(3139), 1, + aux_sym_parameters_repeat1, STATE(2948), 2, sym_line_comment, sym_block_comment, - [87333] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [87858] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5071), 1, - anon_sym_where, - ACTIONS(6313), 1, - anon_sym_SEMI, - STATE(3725), 1, - sym_where_clause, STATE(2949), 2, sym_line_comment, sym_block_comment, - [87353] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(6305), 3, + sym_string_content, + anon_sym_DQUOTE, + sym_escape_sequence, + [87874] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(1242), 1, + anon_sym_RPAREN, + ACTIONS(5633), 1, + anon_sym_COMMA, + STATE(2980), 1, + aux_sym_parameters_repeat1, STATE(2950), 2, sym_line_comment, sym_block_comment, - ACTIONS(6315), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [87369] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [87894] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1669), 1, + ACTIONS(5949), 1, anon_sym_GT, - ACTIONS(6317), 1, + ACTIONS(6307), 1, anon_sym_COMMA, - STATE(3065), 1, - aux_sym_type_arguments_repeat1, + STATE(3146), 1, + aux_sym_use_bounds_repeat1, STATE(2951), 2, sym_line_comment, sym_block_comment, - [87389] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [87914] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5737), 1, - anon_sym_PIPE, - ACTIONS(6319), 2, - anon_sym_RPAREN, + ACTIONS(5951), 1, + anon_sym_GT, + ACTIONS(6309), 1, anon_sym_COMMA, + STATE(3146), 1, + aux_sym_use_bounds_repeat1, STATE(2952), 2, sym_line_comment, sym_block_comment, - [87407] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [87934] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4672), 1, - anon_sym_LT2, - ACTIONS(5099), 1, - anon_sym_for, - STATE(2026), 1, - sym_type_arguments, + ACTIONS(5156), 1, + anon_sym_RBRACE, + ACTIONS(6311), 1, + anon_sym_COMMA, + STATE(3159), 1, + aux_sym_enum_variant_list_repeat2, STATE(2953), 2, sym_line_comment, sym_block_comment, - [87427] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [87954] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6321), 1, + ACTIONS(5156), 1, anon_sym_RBRACE, - ACTIONS(6323), 1, + ACTIONS(6311), 1, anon_sym_COMMA, - STATE(3120), 1, - aux_sym_use_list_repeat1, + STATE(2985), 1, + aux_sym_enum_variant_list_repeat2, STATE(2954), 2, sym_line_comment, sym_block_comment, - [87447] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [87974] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1379), 1, - anon_sym_RPAREN, - ACTIONS(6325), 1, - anon_sym_COMMA, - STATE(3098), 1, - aux_sym_parameters_repeat1, + ACTIONS(4702), 1, + anon_sym_LT2, + ACTIONS(5075), 1, + anon_sym_COLON_COLON, + STATE(2038), 1, + sym_type_arguments, STATE(2955), 2, sym_line_comment, sym_block_comment, - [87467] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [87994] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6319), 1, + ACTIONS(6313), 1, anon_sym_RPAREN, - ACTIONS(6327), 1, + ACTIONS(6315), 1, anon_sym_COMMA, - STATE(2956), 3, + STATE(3215), 1, + aux_sym_ordered_field_declaration_list_repeat1, + STATE(2956), 2, sym_line_comment, sym_block_comment, - aux_sym_tuple_pattern_repeat1, - [87485] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [88014] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5101), 1, - anon_sym_RBRACE, - ACTIONS(6330), 1, + ACTIONS(4875), 1, + anon_sym_GT, + ACTIONS(6317), 1, anon_sym_COMMA, STATE(3175), 1, - aux_sym_enum_variant_list_repeat2, + aux_sym_type_parameters_repeat1, STATE(2957), 2, sym_line_comment, sym_block_comment, - [87505] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [88034] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6332), 1, - sym_identifier, - ACTIONS(6334), 1, - anon_sym_ref, - ACTIONS(6336), 1, - sym_mutable_specifier, + ACTIONS(5224), 1, + anon_sym_LBRACE, + ACTIONS(6319), 1, + anon_sym_SEMI, + STATE(1156), 1, + sym_declaration_list, STATE(2958), 2, sym_line_comment, sym_block_comment, - [87525] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [88054] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5059), 1, - anon_sym_LBRACE, - ACTIONS(6338), 1, - anon_sym_SEMI, - STATE(1300), 1, - sym_declaration_list, + ACTIONS(6321), 1, + sym_identifier, + ACTIONS(6323), 1, + anon_sym_ref, + ACTIONS(6325), 1, + sym_mutable_specifier, STATE(2959), 2, sym_line_comment, sym_block_comment, - [87545] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [88074] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5059), 1, + ACTIONS(5259), 1, anon_sym_LBRACE, - ACTIONS(6340), 1, + ACTIONS(6327), 1, anon_sym_SEMI, - STATE(1305), 1, + STATE(673), 1, sym_declaration_list, STATE(2960), 2, sym_line_comment, sym_block_comment, - [87565] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [88094] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, - anon_sym_PLUS, - ACTIONS(6342), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(5224), 1, + anon_sym_LBRACE, + ACTIONS(6329), 1, + anon_sym_SEMI, + STATE(1162), 1, + sym_declaration_list, STATE(2961), 2, sym_line_comment, sym_block_comment, - [87583] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [88114] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5059), 1, - anon_sym_LBRACE, - ACTIONS(6344), 1, + ACTIONS(3182), 1, + anon_sym_PLUS, + ACTIONS(6331), 1, anon_sym_SEMI, - STATE(1330), 1, - sym_declaration_list, + ACTIONS(6333), 1, + anon_sym_EQ, STATE(2962), 2, sym_line_comment, sym_block_comment, - [87603] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [88134] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5059), 1, - anon_sym_LBRACE, - ACTIONS(6346), 1, - anon_sym_SEMI, - STATE(1332), 1, - sym_declaration_list, + ACTIONS(5158), 1, + anon_sym_RBRACE, + ACTIONS(6335), 1, + anon_sym_COMMA, + STATE(3112), 1, + aux_sym_field_declaration_list_repeat1, STATE(2963), 2, sym_line_comment, sym_block_comment, - [87623] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [88154] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, - anon_sym_PLUS, - ACTIONS(6348), 1, - anon_sym_SEMI, - ACTIONS(6350), 1, - anon_sym_EQ, + ACTIONS(5158), 1, + anon_sym_RBRACE, + ACTIONS(6335), 1, + anon_sym_COMMA, + STATE(2998), 1, + aux_sym_field_declaration_list_repeat1, STATE(2964), 2, sym_line_comment, sym_block_comment, - [87643] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [88174] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5103), 1, - anon_sym_RBRACE, - ACTIONS(6352), 1, - anon_sym_COMMA, - STATE(3042), 1, - aux_sym_field_declaration_list_repeat1, + ACTIONS(5224), 1, + anon_sym_LBRACE, + ACTIONS(6337), 1, + anon_sym_SEMI, + STATE(1175), 1, + sym_declaration_list, STATE(2965), 2, sym_line_comment, sym_block_comment, - [87663] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [88194] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1667), 1, + ACTIONS(5521), 1, anon_sym_GT, - ACTIONS(6354), 1, + ACTIONS(5523), 1, anon_sym_COMMA, - STATE(3062), 1, - aux_sym_type_arguments_repeat1, + STATE(3047), 1, + aux_sym_type_parameters_repeat1, STATE(2966), 2, sym_line_comment, sym_block_comment, - [87683] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [88214] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1667), 1, - anon_sym_GT, - ACTIONS(6354), 1, - anon_sym_COMMA, - STATE(3065), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(3182), 1, + anon_sym_PLUS, + ACTIONS(6339), 1, + anon_sym_SEMI, + ACTIONS(6341), 1, + anon_sym_EQ, STATE(2967), 2, sym_line_comment, sym_block_comment, - [87703] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [88234] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5093), 1, - anon_sym_LBRACE, - ACTIONS(6356), 1, + ACTIONS(5104), 1, + anon_sym_where, + ACTIONS(6343), 1, anon_sym_SEMI, - STATE(770), 1, - sym_declaration_list, + STATE(3611), 1, + sym_where_clause, STATE(2968), 2, sym_line_comment, sym_block_comment, - [87723] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [88254] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3148), 1, - anon_sym_RPAREN, - ACTIONS(6358), 1, - anon_sym_COMMA, - STATE(2742), 1, - aux_sym_slice_pattern_repeat1, + ACTIONS(4230), 1, + anon_sym_LBRACE, + ACTIONS(6345), 1, + anon_sym_COLON_COLON, + STATE(1810), 1, + sym_field_initializer_list, STATE(2969), 2, sym_line_comment, sym_block_comment, - [87743] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [88274] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6362), 1, - anon_sym_COLON, - ACTIONS(6360), 2, - anon_sym_RBRACE, - anon_sym_COMMA, STATE(2970), 2, sym_line_comment, sym_block_comment, - [87761] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(6347), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [88290] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5577), 1, - anon_sym_GT, - ACTIONS(5579), 1, + ACTIONS(926), 1, + anon_sym_RPAREN, + ACTIONS(6349), 1, anon_sym_COMMA, - STATE(3148), 1, - aux_sym_type_parameters_repeat1, + STATE(2803), 1, + aux_sym_arguments_repeat1, STATE(2971), 2, sym_line_comment, sym_block_comment, - [87781] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [88310] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(5160), 1, + anon_sym_RBRACE, + ACTIONS(6351), 1, + anon_sym_COMMA, + STATE(3112), 1, + aux_sym_field_declaration_list_repeat1, STATE(2972), 2, sym_line_comment, sym_block_comment, - ACTIONS(4991), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [87797] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [88330] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(5160), 1, + anon_sym_RBRACE, + ACTIONS(6351), 1, + anon_sym_COMMA, + STATE(3201), 1, + aux_sym_field_declaration_list_repeat1, STATE(2973), 2, sym_line_comment, sym_block_comment, - ACTIONS(5013), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [87813] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [88350] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5370), 1, - anon_sym_RBRACE, - ACTIONS(6364), 1, - anon_sym_COMMA, - STATE(3074), 1, - aux_sym_struct_pattern_repeat1, STATE(2974), 2, sym_line_comment, sym_block_comment, - [87833] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4999), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [88366] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5059), 1, - anon_sym_LBRACE, - ACTIONS(6366), 1, - anon_sym_SEMI, - STATE(1385), 1, - sym_declaration_list, + ACTIONS(1658), 1, + anon_sym_GT, + ACTIONS(6353), 1, + anon_sym_COMMA, + STATE(3126), 1, + aux_sym_type_arguments_repeat1, STATE(2975), 2, sym_line_comment, sym_block_comment, - [87853] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [88386] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5059), 1, - anon_sym_LBRACE, - ACTIONS(6368), 1, - anon_sym_SEMI, - STATE(1387), 1, - sym_declaration_list, STATE(2976), 2, sym_line_comment, sym_block_comment, - [87873] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5049), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [88402] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6370), 1, - anon_sym_RPAREN, - ACTIONS(6372), 1, + ACTIONS(5333), 1, + anon_sym_RBRACE, + ACTIONS(6355), 1, anon_sym_COMMA, - STATE(3033), 1, - aux_sym_ordered_field_declaration_list_repeat1, + STATE(3132), 1, + aux_sym_struct_pattern_repeat1, STATE(2977), 2, sym_line_comment, sym_block_comment, - [87893] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [88422] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3150), 1, - anon_sym_RPAREN, - ACTIONS(6374), 1, - anon_sym_COMMA, - STATE(2742), 1, - aux_sym_slice_pattern_repeat1, STATE(2978), 2, sym_line_comment, sym_block_comment, - [87913] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(6357), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [88438] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5059), 1, - anon_sym_LBRACE, - ACTIONS(6376), 1, - anon_sym_SEMI, - STATE(1395), 1, - sym_declaration_list, + ACTIONS(3172), 1, + anon_sym_RPAREN, + ACTIONS(6359), 1, + anon_sym_COMMA, + STATE(2894), 1, + aux_sym_slice_pattern_repeat1, STATE(2979), 2, sym_line_comment, sym_block_comment, - [87933] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [88458] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5059), 1, - anon_sym_LBRACE, - ACTIONS(6378), 1, - anon_sym_SEMI, - STATE(1397), 1, - sym_declaration_list, + ACTIONS(1254), 1, + anon_sym_RPAREN, + ACTIONS(6361), 1, + anon_sym_COMMA, + STATE(3139), 1, + aux_sym_parameters_repeat1, STATE(2980), 2, sym_line_comment, sym_block_comment, - [87953] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [88478] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, - anon_sym_PLUS, - ACTIONS(6380), 1, - anon_sym_SEMI, - ACTIONS(6382), 1, - anon_sym_EQ, + ACTIONS(4921), 1, + anon_sym_COLON_COLON, + ACTIONS(5001), 1, + anon_sym_BANG, + ACTIONS(6363), 1, + sym_identifier, STATE(2981), 2, sym_line_comment, sym_block_comment, - [87973] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [88498] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, STATE(2982), 2, sym_line_comment, sym_block_comment, - ACTIONS(6384), 3, - sym_string_content, - anon_sym_DQUOTE, - sym_escape_sequence, - [87989] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5031), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [88514] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5059), 1, - anon_sym_LBRACE, - ACTIONS(6386), 1, - anon_sym_SEMI, - STATE(1426), 1, - sym_declaration_list, STATE(2983), 2, sym_line_comment, sym_block_comment, - [88009] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5051), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [88530] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5059), 1, - anon_sym_LBRACE, - ACTIONS(6388), 1, - anon_sym_SEMI, - STATE(1260), 1, - sym_declaration_list, STATE(2984), 2, sym_line_comment, sym_block_comment, - [88029] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(6365), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [88546] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5424), 1, + ACTIONS(5162), 1, anon_sym_RBRACE, - ACTIONS(6390), 1, + ACTIONS(6367), 1, anon_sym_COMMA, - STATE(3074), 1, - aux_sym_struct_pattern_repeat1, + STATE(3159), 1, + aux_sym_enum_variant_list_repeat2, STATE(2985), 2, sym_line_comment, sym_block_comment, - [88049] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [88566] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(997), 1, - anon_sym_RPAREN, - ACTIONS(6392), 1, + ACTIONS(5722), 1, + anon_sym_PIPE, + ACTIONS(6369), 2, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(2759), 1, - aux_sym_arguments_repeat1, STATE(2986), 2, sym_line_comment, sym_block_comment, - [88069] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [88584] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(5224), 1, + anon_sym_LBRACE, + ACTIONS(6371), 1, + anon_sym_SEMI, + STATE(1205), 1, + sym_declaration_list, STATE(2987), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4919), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [88085] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + sym_line_comment, + sym_block_comment, + [88604] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, - anon_sym_PLUS, - ACTIONS(6394), 1, + ACTIONS(5224), 1, + anon_sym_LBRACE, + ACTIONS(6373), 1, anon_sym_SEMI, - ACTIONS(6396), 1, - anon_sym_EQ, + STATE(1207), 1, + sym_declaration_list, STATE(2988), 2, sym_line_comment, sym_block_comment, - [88105] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [88624] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, - anon_sym_PLUS, - ACTIONS(6398), 2, - anon_sym_RPAREN, - anon_sym_COMMA, STATE(2989), 2, sym_line_comment, sym_block_comment, - [88123] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4935), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [88640] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6398), 1, - anon_sym_RPAREN, - ACTIONS(6400), 1, + ACTIONS(4552), 1, + anon_sym_RBRACE, + ACTIONS(6375), 1, anon_sym_COMMA, - STATE(2990), 3, + STATE(3069), 1, + aux_sym_use_list_repeat1, + STATE(2990), 2, sym_line_comment, sym_block_comment, - aux_sym_tuple_type_repeat1, - [88141] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [88660] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, STATE(2991), 2, sym_line_comment, sym_block_comment, - ACTIONS(5007), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [88157] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(6377), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [88676] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5059), 1, + ACTIONS(5224), 1, anon_sym_LBRACE, - ACTIONS(6403), 1, + ACTIONS(6379), 1, anon_sym_SEMI, - STATE(1131), 1, + STATE(1213), 1, sym_declaration_list, STATE(2992), 2, sym_line_comment, sym_block_comment, - [88177] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [88696] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5059), 1, + ACTIONS(5224), 1, anon_sym_LBRACE, - ACTIONS(6405), 1, + ACTIONS(6381), 1, anon_sym_SEMI, - STATE(1133), 1, + STATE(1215), 1, sym_declaration_list, STATE(2993), 2, sym_line_comment, sym_block_comment, - [88197] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [88716] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5759), 1, - anon_sym_RPAREN, - ACTIONS(5761), 1, - anon_sym_COMMA, - STATE(3005), 1, - aux_sym_parameters_repeat1, STATE(2994), 2, sym_line_comment, sym_block_comment, - [88217] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(6383), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [88732] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(3182), 1, + anon_sym_PLUS, + ACTIONS(6385), 1, + anon_sym_SEMI, + ACTIONS(6387), 1, + anon_sym_EQ, STATE(2995), 2, sym_line_comment, sym_block_comment, - ACTIONS(6407), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [88233] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [88752] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, STATE(2996), 2, sym_line_comment, @@ -188336,15863 +190268,16419 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [88249] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [88768] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, STATE(2997), 2, sym_line_comment, sym_block_comment, - ACTIONS(4979), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [88265] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(6389), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [88784] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(5164), 1, + anon_sym_RBRACE, + ACTIONS(6391), 1, + anon_sym_COMMA, + STATE(3112), 1, + aux_sym_field_declaration_list_repeat1, STATE(2998), 2, sym_line_comment, sym_block_comment, - ACTIONS(6409), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [88281] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [88804] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, STATE(2999), 2, sym_line_comment, sym_block_comment, - ACTIONS(6411), 3, + ACTIONS(6393), 3, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COMMA, - [88297] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [88820] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, STATE(3000), 2, sym_line_comment, sym_block_comment, - ACTIONS(4985), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [88313] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(6395), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [88836] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5093), 1, - anon_sym_LBRACE, - ACTIONS(6413), 1, - anon_sym_SEMI, - STATE(680), 1, - sym_declaration_list, STATE(3001), 2, sym_line_comment, sym_block_comment, - [88333] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(6397), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [88852] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5715), 1, - anon_sym_COMMA, - ACTIONS(6415), 1, - anon_sym_PIPE, - STATE(3047), 1, - aux_sym_closure_parameters_repeat1, STATE(3002), 2, sym_line_comment, sym_block_comment, - [88353] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(6417), 1, + ACTIONS(6399), 3, + anon_sym_SEMI, anon_sym_RBRACE, - ACTIONS(6419), 1, anon_sym_COMMA, - STATE(3057), 1, - aux_sym_enum_variant_list_repeat2, + [88868] = 4, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, STATE(3003), 2, sym_line_comment, sym_block_comment, - [88373] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4979), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [88884] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, - anon_sym_PLUS, - ACTIONS(6421), 1, - anon_sym_SEMI, - ACTIONS(6423), 1, - anon_sym_EQ, STATE(3004), 2, sym_line_comment, sym_block_comment, - [88393] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4997), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [88900] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1371), 1, - anon_sym_RPAREN, - ACTIONS(5686), 1, - anon_sym_COMMA, - STATE(3098), 1, - aux_sym_parameters_repeat1, STATE(3005), 2, sym_line_comment, sym_block_comment, - [88413] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5047), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [88916] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(5335), 1, + anon_sym_RBRACE, + ACTIONS(6401), 1, + anon_sym_COMMA, + STATE(3132), 1, + aux_sym_struct_pattern_repeat1, STATE(3006), 2, sym_line_comment, sym_block_comment, - ACTIONS(6425), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [88429] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [88936] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(5224), 1, + anon_sym_LBRACE, + ACTIONS(6403), 1, + anon_sym_SEMI, + STATE(1253), 1, + sym_declaration_list, STATE(3007), 2, sym_line_comment, sym_block_comment, - ACTIONS(4861), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [88445] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [88956] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, - anon_sym_PLUS, - ACTIONS(6427), 1, - sym_mutable_specifier, - ACTIONS(6429), 1, - sym_self, + ACTIONS(5224), 1, + anon_sym_LBRACE, + ACTIONS(6405), 1, + anon_sym_SEMI, + STATE(1255), 1, + sym_declaration_list, STATE(3008), 2, sym_line_comment, sym_block_comment, - [88465] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [88976] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1371), 1, + ACTIONS(3182), 1, + anon_sym_PLUS, + ACTIONS(6407), 2, anon_sym_RPAREN, - ACTIONS(5686), 1, anon_sym_COMMA, - STATE(3113), 1, - aux_sym_parameters_repeat1, STATE(3009), 2, sym_line_comment, sym_block_comment, - [88485] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [88994] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(5224), 1, + anon_sym_LBRACE, + ACTIONS(6409), 1, + anon_sym_SEMI, + STATE(1263), 1, + sym_declaration_list, STATE(3010), 2, sym_line_comment, sym_block_comment, - ACTIONS(5021), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [88501] = 6, - ACTIONS(27), 1, - anon_sym_PIPE, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [89014] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6431), 1, - anon_sym_move, - STATE(234), 1, - sym_closure_parameters, + ACTIONS(5224), 1, + anon_sym_LBRACE, + ACTIONS(6411), 1, + anon_sym_SEMI, + STATE(1265), 1, + sym_declaration_list, STATE(3011), 2, sym_line_comment, sym_block_comment, - [88521] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [89034] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4831), 1, - anon_sym_COLON, - ACTIONS(5061), 1, - anon_sym_COLON_COLON, - STATE(2550), 1, - sym_trait_bounds, STATE(3012), 2, sym_line_comment, sym_block_comment, - [88541] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4947), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [89050] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(5224), 1, + anon_sym_LBRACE, + ACTIONS(6413), 1, + anon_sym_SEMI, + STATE(1271), 1, + sym_declaration_list, STATE(3013), 2, sym_line_comment, sym_block_comment, - ACTIONS(5023), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [88557] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [89070] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(5224), 1, + anon_sym_LBRACE, + ACTIONS(6415), 1, + anon_sym_SEMI, + STATE(1273), 1, + sym_declaration_list, STATE(3014), 2, sym_line_comment, sym_block_comment, - ACTIONS(5027), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [88573] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [89090] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(3182), 1, + anon_sym_PLUS, + ACTIONS(6417), 1, + anon_sym_SEMI, + ACTIONS(6419), 1, + anon_sym_EQ, STATE(3015), 2, sym_line_comment, sym_block_comment, - ACTIONS(5033), 3, - anon_sym_EQ_GT, + [89110] = 6, + ACTIONS(27), 1, anon_sym_PIPE, - anon_sym_if, - [88589] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(6421), 1, + anon_sym_move, + STATE(256), 1, + sym_closure_parameters, STATE(3016), 2, sym_line_comment, sym_block_comment, - ACTIONS(5035), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [88605] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [89130] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(5009), 1, + anon_sym_RBRACE, + ACTIONS(6423), 1, + anon_sym_COMMA, + STATE(3077), 1, + aux_sym_field_initializer_list_repeat1, STATE(3017), 2, sym_line_comment, sym_block_comment, - ACTIONS(5037), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [88621] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [89150] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, - anon_sym_PLUS, - ACTIONS(6433), 1, - anon_sym_SEMI, - ACTIONS(6435), 1, - anon_sym_RBRACK, STATE(3018), 2, sym_line_comment, sym_block_comment, - [88641] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4927), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [89166] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(5224), 1, + anon_sym_LBRACE, + ACTIONS(6425), 1, + anon_sym_SEMI, + STATE(1291), 1, + sym_declaration_list, STATE(3019), 2, sym_line_comment, sym_block_comment, - ACTIONS(5039), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [88657] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [89186] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3084), 1, - anon_sym_SQUOTE, - ACTIONS(6437), 1, - anon_sym_GT, - STATE(3351), 1, - sym_lifetime, + ACTIONS(5224), 1, + anon_sym_LBRACE, + ACTIONS(6427), 1, + anon_sym_SEMI, + STATE(1293), 1, + sym_declaration_list, STATE(3020), 2, sym_line_comment, sym_block_comment, - [88677] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [89206] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6437), 1, - anon_sym_GT, - ACTIONS(6439), 1, + ACTIONS(6431), 1, + anon_sym_COLON, + ACTIONS(6429), 2, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(3116), 1, - aux_sym_for_lifetimes_repeat1, STATE(3021), 2, sym_line_comment, sym_block_comment, - [88697] = 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(3438), 1, - anon_sym_LT2, - ACTIONS(5077), 1, - anon_sym_COLON_COLON, - STATE(1284), 1, - sym_type_arguments, + ACTIONS(3182), 1, + anon_sym_PLUS, + ACTIONS(6433), 1, + anon_sym_SEMI, + ACTIONS(6435), 1, + anon_sym_EQ, STATE(3022), 2, sym_line_comment, sym_block_comment, - [88717] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [89244] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1832), 1, + ACTIONS(3182), 1, + anon_sym_PLUS, + ACTIONS(6437), 2, anon_sym_RPAREN, - ACTIONS(6441), 1, anon_sym_COMMA, - STATE(2956), 1, - aux_sym_tuple_pattern_repeat1, STATE(3023), 2, sym_line_comment, sym_block_comment, - [88737] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [89262] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, - anon_sym_PLUS, - ACTIONS(6443), 1, - anon_sym_SEMI, - ACTIONS(6445), 1, - anon_sym_EQ, STATE(3024), 2, sym_line_comment, sym_block_comment, - [88757] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5037), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [89278] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6447), 1, - anon_sym_RPAREN, - ACTIONS(6449), 1, - anon_sym_COMMA, - STATE(3033), 1, - aux_sym_ordered_field_declaration_list_repeat1, STATE(3025), 2, sym_line_comment, sym_block_comment, - [88777] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5063), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [89294] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, - anon_sym_PLUS, - ACTIONS(6451), 2, + ACTIONS(6407), 1, anon_sym_RPAREN, + ACTIONS(6439), 1, anon_sym_COMMA, - STATE(3026), 2, + STATE(3026), 3, sym_line_comment, sym_block_comment, - [88795] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + aux_sym_tuple_type_repeat1, + [89312] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6453), 1, - anon_sym_GT, - ACTIONS(6455), 1, - anon_sym_COMMA, - STATE(3021), 1, - aux_sym_for_lifetimes_repeat1, + ACTIONS(6442), 1, + anon_sym_EQ_GT, + ACTIONS(6444), 1, + anon_sym_PIPE, + ACTIONS(6446), 1, + anon_sym_if, STATE(3027), 2, sym_line_comment, sym_block_comment, - [88815] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [89332] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, STATE(3028), 2, sym_line_comment, sym_block_comment, - ACTIONS(6457), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [88831] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5061), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [89348] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6148), 1, - anon_sym_GT, - ACTIONS(6459), 1, - anon_sym_COMMA, - STATE(3140), 1, - aux_sym_use_bounds_repeat1, STATE(3029), 2, sym_line_comment, sym_block_comment, - [88851] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4981), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [89364] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3274), 1, - anon_sym_RPAREN, - ACTIONS(6461), 1, - anon_sym_COMMA, - STATE(2990), 1, - aux_sym_tuple_type_repeat1, + ACTIONS(5259), 1, + anon_sym_LBRACE, + ACTIONS(6448), 1, + anon_sym_SEMI, + STATE(549), 1, + sym_declaration_list, STATE(3030), 2, sym_line_comment, sym_block_comment, - [88871] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [89384] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6160), 1, - anon_sym_GT, - ACTIONS(6463), 1, - anon_sym_COMMA, - STATE(3140), 1, - aux_sym_use_bounds_repeat1, + ACTIONS(3644), 1, + anon_sym_LBRACE, + ACTIONS(6450), 1, + anon_sym_COLON_COLON, + STATE(1559), 1, + sym_field_initializer_list, STATE(3031), 2, sym_line_comment, sym_block_comment, - [88891] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [89404] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5636), 1, - anon_sym_RPAREN, - ACTIONS(5638), 1, - anon_sym_COMMA, - STATE(3043), 1, - aux_sym_parameters_repeat1, STATE(3032), 2, sym_line_comment, sym_block_comment, - [88911] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5728), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [89420] = 6, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6465), 1, - anon_sym_RPAREN, - ACTIONS(6467), 1, - anon_sym_COMMA, - STATE(3033), 3, + ACTIONS(6452), 1, + anon_sym_move, + STATE(265), 1, + sym_closure_parameters, + STATE(3033), 2, sym_line_comment, sym_block_comment, - aux_sym_ordered_field_declaration_list_repeat1, - [88929] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [89440] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6470), 1, - anon_sym_GT, - ACTIONS(6472), 1, - anon_sym_COMMA, - STATE(3188), 1, - aux_sym_use_bounds_repeat1, + ACTIONS(5224), 1, + anon_sym_LBRACE, + ACTIONS(6454), 1, + anon_sym_SEMI, + STATE(1320), 1, + sym_declaration_list, STATE(3034), 2, sym_line_comment, sym_block_comment, - [88949] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [89460] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6474), 1, - anon_sym_GT, - ACTIONS(6476), 1, + ACTIONS(6458), 1, + anon_sym_EQ, + ACTIONS(6456), 2, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(3048), 1, - aux_sym_use_bounds_repeat1, STATE(3035), 2, sym_line_comment, sym_block_comment, - [88969] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [89478] = 6, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4746), 1, - anon_sym_COLON_COLON, - ACTIONS(4831), 1, - anon_sym_COLON, - STATE(2550), 1, - sym_trait_bounds, + ACTIONS(6460), 1, + anon_sym_move, + STATE(252), 1, + sym_closure_parameters, STATE(3036), 2, sym_line_comment, sym_block_comment, - [88989] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [89498] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, - anon_sym_PLUS, - ACTIONS(6478), 2, - anon_sym_RBRACE, + ACTIONS(6462), 1, + anon_sym_EQ, + ACTIONS(6464), 2, + anon_sym_GT, anon_sym_COMMA, STATE(3037), 2, sym_line_comment, sym_block_comment, - [89007] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [89516] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3576), 1, - anon_sym_LBRACE, - ACTIONS(6480), 1, - anon_sym_COLON_COLON, - STATE(1535), 1, - sym_field_initializer_list, + ACTIONS(6466), 1, + anon_sym_RBRACE, + ACTIONS(6468), 1, + anon_sym_COMMA, + STATE(2972), 1, + aux_sym_field_declaration_list_repeat1, STATE(3038), 2, sym_line_comment, sym_block_comment, - [89027] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [89536] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(3182), 1, + anon_sym_PLUS, + ACTIONS(6470), 1, + anon_sym_SEMI, + ACTIONS(6472), 1, + anon_sym_RBRACK, STATE(3039), 2, sym_line_comment, sym_block_comment, - ACTIONS(1023), 3, - anon_sym_COLON, - anon_sym_GT, - anon_sym_COMMA, - [89043] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [89556] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1665), 1, - anon_sym_GT, - ACTIONS(6482), 1, - anon_sym_COMMA, - STATE(3051), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(5259), 1, + anon_sym_LBRACE, + ACTIONS(6474), 1, + anon_sym_SEMI, + STATE(514), 1, + sym_declaration_list, STATE(3040), 2, sym_line_comment, sym_block_comment, - [89063] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [89576] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1665), 1, - anon_sym_GT, - ACTIONS(6482), 1, - anon_sym_COMMA, - STATE(3065), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(3464), 1, + anon_sym_LT2, + ACTIONS(5057), 1, + anon_sym_COLON_COLON, + STATE(1427), 1, + sym_type_arguments, STATE(3041), 2, sym_line_comment, sym_block_comment, - [89083] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [89596] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6484), 1, - anon_sym_RBRACE, - ACTIONS(6486), 1, - anon_sym_COMMA, - STATE(3042), 3, + STATE(3042), 2, sym_line_comment, sym_block_comment, - aux_sym_field_declaration_list_repeat1, - [89101] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(6476), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [89612] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1377), 1, - anon_sym_RPAREN, - ACTIONS(5646), 1, - anon_sym_COMMA, - STATE(3098), 1, - aux_sym_parameters_repeat1, + ACTIONS(5259), 1, + anon_sym_LBRACE, + ACTIONS(6478), 1, + anon_sym_SEMI, + STATE(516), 1, + sym_declaration_list, STATE(3043), 2, sym_line_comment, sym_block_comment, - [89121] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [89632] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6489), 1, - anon_sym_RBRACE, - ACTIONS(6491), 1, - anon_sym_COMMA, - STATE(3121), 1, - aux_sym_field_declaration_list_repeat1, + ACTIONS(5104), 1, + anon_sym_where, + ACTIONS(6480), 1, + anon_sym_SEMI, + STATE(3617), 1, + sym_where_clause, STATE(3044), 2, sym_line_comment, sym_block_comment, - [89141] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [89652] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1377), 1, + ACTIONS(3294), 1, anon_sym_RPAREN, - ACTIONS(5646), 1, + ACTIONS(6482), 1, anon_sym_COMMA, - STATE(3052), 1, - aux_sym_parameters_repeat1, + STATE(3026), 1, + aux_sym_tuple_type_repeat1, STATE(3045), 2, sym_line_comment, sym_block_comment, - [89161] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [89672] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6493), 1, + ACTIONS(5148), 1, anon_sym_RBRACE, - ACTIONS(6495), 1, + ACTIONS(6484), 1, anon_sym_COMMA, - STATE(3046), 3, + STATE(3159), 1, + aux_sym_enum_variant_list_repeat2, + STATE(3046), 2, sym_line_comment, sym_block_comment, - aux_sym_use_list_repeat1, - [89179] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [89692] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5715), 1, + ACTIONS(4889), 1, + anon_sym_GT, + ACTIONS(6486), 1, anon_sym_COMMA, - ACTIONS(6498), 1, - anon_sym_PIPE, - STATE(3087), 1, - aux_sym_closure_parameters_repeat1, + STATE(3175), 1, + aux_sym_type_parameters_repeat1, STATE(3047), 2, sym_line_comment, sym_block_comment, - [89199] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [89712] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6146), 1, - anon_sym_GT, - ACTIONS(6500), 1, + ACTIONS(5627), 1, + anon_sym_RPAREN, + ACTIONS(5629), 1, anon_sym_COMMA, - STATE(3140), 1, - aux_sym_use_bounds_repeat1, + STATE(3057), 1, + aux_sym_parameters_repeat1, STATE(3048), 2, sym_line_comment, sym_block_comment, - [89219] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [89732] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5093), 1, - anon_sym_LBRACE, - ACTIONS(6502), 1, - anon_sym_SEMI, - STATE(515), 1, - sym_declaration_list, + ACTIONS(6488), 1, + anon_sym_GT, + ACTIONS(6490), 1, + anon_sym_COMMA, + STATE(3059), 1, + aux_sym_use_bounds_repeat1, STATE(3049), 2, sym_line_comment, sym_block_comment, - [89239] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [89752] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5114), 1, - anon_sym_RBRACE, - ACTIONS(6504), 1, + ACTIONS(6492), 1, + anon_sym_GT, + ACTIONS(6494), 1, anon_sym_COMMA, - STATE(3042), 1, - aux_sym_field_declaration_list_repeat1, + STATE(3060), 1, + aux_sym_use_bounds_repeat1, STATE(3050), 2, sym_line_comment, sym_block_comment, - [89259] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [89772] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1663), 1, - anon_sym_GT, - ACTIONS(6506), 1, - anon_sym_COMMA, - STATE(3065), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(4702), 1, + anon_sym_LT2, + ACTIONS(6496), 1, + anon_sym_for, + STATE(2043), 1, + sym_type_arguments, STATE(3051), 2, sym_line_comment, sym_block_comment, - [89279] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [89792] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1369), 1, - anon_sym_RPAREN, - ACTIONS(6508), 1, - anon_sym_COMMA, - STATE(3098), 1, - aux_sym_parameters_repeat1, + ACTIONS(5259), 1, + anon_sym_LBRACE, + ACTIONS(6498), 1, + anon_sym_SEMI, + STATE(753), 1, + sym_declaration_list, STATE(3052), 2, sym_line_comment, sym_block_comment, - [89299] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [89812] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5711), 1, - anon_sym_COLON, - ACTIONS(6510), 2, - anon_sym_PIPE, + ACTIONS(962), 1, + anon_sym_RBRACK, + ACTIONS(4262), 1, anon_sym_COMMA, + STATE(2803), 1, + aux_sym_arguments_repeat1, STATE(3053), 2, sym_line_comment, sym_block_comment, - [89317] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [89832] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(1660), 1, + anon_sym_GT, + ACTIONS(6500), 1, + anon_sym_COMMA, + STATE(3062), 1, + aux_sym_type_arguments_repeat1, STATE(3054), 2, sym_line_comment, sym_block_comment, - ACTIONS(5043), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [89333] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [89852] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4672), 1, - anon_sym_LT2, - ACTIONS(4969), 1, - anon_sym_LBRACE, - STATE(2026), 1, - sym_type_arguments, + ACTIONS(1660), 1, + anon_sym_GT, + ACTIONS(6500), 1, + anon_sym_COMMA, + STATE(3126), 1, + aux_sym_type_arguments_repeat1, STATE(3055), 2, sym_line_comment, sym_block_comment, - [89353] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [89872] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6514), 1, - anon_sym_EQ, - ACTIONS(6512), 2, - anon_sym_RBRACE, - anon_sym_COMMA, + ACTIONS(3192), 1, + anon_sym_PLUS, + ACTIONS(6502), 1, + anon_sym_GT, + ACTIONS(6504), 1, + anon_sym_as, STATE(3056), 2, sym_line_comment, sym_block_comment, - [89371] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [89892] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5135), 1, - anon_sym_RBRACE, - ACTIONS(6516), 1, + ACTIONS(1262), 1, + anon_sym_RPAREN, + ACTIONS(5635), 1, anon_sym_COMMA, - STATE(3175), 1, - aux_sym_enum_variant_list_repeat2, + STATE(3139), 1, + aux_sym_parameters_repeat1, STATE(3057), 2, sym_line_comment, sym_block_comment, - [89391] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [89912] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(1262), 1, + anon_sym_RPAREN, + ACTIONS(5635), 1, + anon_sym_COMMA, + STATE(3063), 1, + aux_sym_parameters_repeat1, STATE(3058), 2, sym_line_comment, sym_block_comment, - ACTIONS(5045), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [89407] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [89932] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5135), 1, - anon_sym_RBRACE, - ACTIONS(6516), 1, + ACTIONS(6035), 1, + anon_sym_GT, + ACTIONS(6506), 1, anon_sym_COMMA, - STATE(3179), 1, - aux_sym_enum_variant_list_repeat2, + STATE(3146), 1, + aux_sym_use_bounds_repeat1, STATE(3059), 2, sym_line_comment, sym_block_comment, - [89427] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [89952] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6518), 1, + ACTIONS(6037), 1, anon_sym_GT, - ACTIONS(6520), 1, + ACTIONS(6508), 1, anon_sym_COMMA, - STATE(3029), 1, + STATE(3146), 1, aux_sym_use_bounds_repeat1, STATE(3060), 2, sym_line_comment, sym_block_comment, - [89447] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [89972] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5071), 1, + ACTIONS(5104), 1, anon_sym_where, - ACTIONS(6522), 1, - anon_sym_SEMI, - STATE(3538), 1, + ACTIONS(6510), 1, + anon_sym_EQ, + STATE(3648), 1, sym_where_clause, STATE(3061), 2, sym_line_comment, sym_block_comment, - [89467] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [89992] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1655), 1, + ACTIONS(1668), 1, anon_sym_GT, - ACTIONS(6524), 1, + ACTIONS(6512), 1, anon_sym_COMMA, - STATE(3065), 1, + STATE(3126), 1, aux_sym_type_arguments_repeat1, STATE(3062), 2, sym_line_comment, sym_block_comment, - [89487] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [90012] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, - anon_sym_PLUS, - ACTIONS(6526), 2, + ACTIONS(1264), 1, anon_sym_RPAREN, + ACTIONS(6514), 1, anon_sym_COMMA, + STATE(3139), 1, + aux_sym_parameters_repeat1, STATE(3063), 2, sym_line_comment, sym_block_comment, - [89505] = 6, - ACTIONS(27), 1, - anon_sym_PIPE, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [90032] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6528), 1, - anon_sym_move, - STATE(248), 1, - sym_closure_parameters, + ACTIONS(5148), 1, + anon_sym_RBRACE, + ACTIONS(6484), 1, + anon_sym_COMMA, + STATE(3162), 1, + aux_sym_enum_variant_list_repeat2, STATE(3064), 2, sym_line_comment, sym_block_comment, - [89525] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [90052] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5797), 1, - anon_sym_GT, - ACTIONS(6530), 1, - anon_sym_COMMA, - STATE(3065), 3, + STATE(3065), 2, sym_line_comment, sym_block_comment, - aux_sym_type_arguments_repeat1, - [89543] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(6516), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [90068] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, - anon_sym_PLUS, - ACTIONS(6533), 1, - anon_sym_SEMI, - ACTIONS(6535), 1, - anon_sym_RBRACK, + ACTIONS(6518), 1, + sym_identifier, + ACTIONS(6520), 1, + anon_sym_await, + ACTIONS(6522), 1, + sym_integer_literal, STATE(3066), 2, sym_line_comment, sym_block_comment, - [89563] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [90088] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(1384), 1, + anon_sym_RPAREN, + ACTIONS(5631), 1, + anon_sym_COMMA, + STATE(3139), 1, + aux_sym_parameters_repeat1, STATE(3067), 2, sym_line_comment, sym_block_comment, - ACTIONS(5615), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [89579] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [90108] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(6524), 1, + anon_sym_LPAREN, + ACTIONS(6526), 1, + anon_sym_LBRACK, + ACTIONS(6528), 1, + anon_sym_LBRACE, STATE(3068), 2, sym_line_comment, sym_block_comment, - ACTIONS(5047), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [89595] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [90128] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4184), 1, - anon_sym_LT2, - ACTIONS(5112), 1, - anon_sym_COLON_COLON, - STATE(1659), 1, - sym_type_arguments, - STATE(3069), 2, + ACTIONS(6530), 1, + anon_sym_RBRACE, + ACTIONS(6532), 1, + anon_sym_COMMA, + STATE(3069), 3, sym_line_comment, sym_block_comment, - [89615] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + aux_sym_use_list_repeat1, + [90146] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6539), 1, + ACTIONS(4784), 1, + anon_sym_COLON_COLON, + ACTIONS(4853), 1, anon_sym_COLON, - ACTIONS(6537), 2, - anon_sym_RBRACE, - anon_sym_COMMA, + STATE(2599), 1, + sym_trait_bounds, STATE(3070), 2, sym_line_comment, sym_block_comment, - [89633] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [90166] = 6, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5737), 1, - anon_sym_PIPE, - ACTIONS(6541), 2, - anon_sym_RBRACE, - anon_sym_COMMA, + ACTIONS(6535), 1, + anon_sym_move, + STATE(223), 1, + sym_closure_parameters, STATE(3071), 2, sym_line_comment, sym_block_comment, - [89651] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [90186] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(996), 1, + anon_sym_RBRACK, + ACTIONS(4294), 1, + anon_sym_COMMA, + STATE(2803), 1, + aux_sym_arguments_repeat1, STATE(3072), 2, sym_line_comment, sym_block_comment, - ACTIONS(5049), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [89667] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [90206] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, - anon_sym_PLUS, - ACTIONS(6543), 2, - anon_sym_GT, - anon_sym_COMMA, + ACTIONS(6537), 1, + anon_sym_LPAREN, + ACTIONS(6539), 1, + anon_sym_LBRACK, + ACTIONS(6541), 1, + anon_sym_LBRACE, STATE(3073), 2, sym_line_comment, sym_block_comment, - [89685] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [90226] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6545), 1, - anon_sym_RBRACE, - ACTIONS(6547), 1, - anon_sym_COMMA, - STATE(3074), 3, + ACTIONS(4178), 1, + anon_sym_LT2, + ACTIONS(5077), 1, + anon_sym_COLON_COLON, + STATE(1723), 1, + sym_type_arguments, + STATE(3074), 2, sym_line_comment, sym_block_comment, - aux_sym_struct_pattern_repeat1, - [89703] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [90246] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1649), 1, - anon_sym_GT, - ACTIONS(6550), 1, + ACTIONS(6543), 1, + anon_sym_RBRACE, + ACTIONS(6545), 1, anon_sym_COMMA, - STATE(3079), 1, - aux_sym_type_arguments_repeat1, + STATE(3017), 1, + aux_sym_field_initializer_list_repeat1, STATE(3075), 2, sym_line_comment, sym_block_comment, - [89723] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [90266] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1649), 1, - anon_sym_GT, - ACTIONS(6550), 1, + ACTIONS(1044), 1, + anon_sym_RBRACK, + ACTIONS(4322), 1, anon_sym_COMMA, - STATE(3065), 1, - aux_sym_type_arguments_repeat1, + STATE(2803), 1, + aux_sym_arguments_repeat1, STATE(3076), 2, sym_line_comment, sym_block_comment, - [89743] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [90286] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5093), 1, - anon_sym_LBRACE, - ACTIONS(6552), 1, - anon_sym_SEMI, - STATE(517), 1, - sym_declaration_list, - STATE(3077), 2, + ACTIONS(6547), 1, + anon_sym_RBRACE, + ACTIONS(6549), 1, + anon_sym_COMMA, + STATE(3077), 3, sym_line_comment, sym_block_comment, - [89763] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + aux_sym_field_initializer_list_repeat1, + [90304] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6556), 1, - anon_sym_COLON, - ACTIONS(6554), 2, - anon_sym_RBRACE, + ACTIONS(4889), 1, + anon_sym_GT, + ACTIONS(6486), 1, anon_sym_COMMA, + STATE(3180), 1, + aux_sym_type_parameters_repeat1, STATE(3078), 2, sym_line_comment, sym_block_comment, - [89781] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [90324] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1653), 1, - anon_sym_GT, - ACTIONS(6558), 1, - anon_sym_COMMA, - STATE(3065), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(5259), 1, + anon_sym_LBRACE, + ACTIONS(6552), 1, + anon_sym_SEMI, + STATE(583), 1, + sym_declaration_list, STATE(3079), 2, sym_line_comment, sym_block_comment, - [89801] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [90344] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6560), 1, - anon_sym_RBRACE, - ACTIONS(6562), 1, + ACTIONS(3182), 1, + anon_sym_PLUS, + ACTIONS(6554), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(3149), 1, - aux_sym_field_initializer_list_repeat1, STATE(3080), 2, sym_line_comment, sym_block_comment, - [89821] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [90362] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(1666), 1, + anon_sym_GT, + ACTIONS(6556), 1, + anon_sym_COMMA, + STATE(3085), 1, + aux_sym_type_arguments_repeat1, STATE(3081), 2, sym_line_comment, sym_block_comment, - ACTIONS(1501), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [89837] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [90382] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6564), 1, + ACTIONS(1666), 1, anon_sym_GT, - ACTIONS(6566), 1, + ACTIONS(6556), 1, anon_sym_COMMA, - STATE(3082), 3, + STATE(3126), 1, + aux_sym_type_arguments_repeat1, + STATE(3082), 2, sym_line_comment, sym_block_comment, - aux_sym_type_parameters_repeat1, - [89855] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [90402] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4853), 1, - anon_sym_GT, - ACTIONS(6569), 1, - anon_sym_COMMA, - STATE(3082), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(3182), 1, + anon_sym_PLUS, + ACTIONS(6558), 1, + anon_sym_SEMI, + ACTIONS(6560), 1, + anon_sym_EQ, STATE(3083), 2, sym_line_comment, sym_block_comment, - [89875] = 6, + [90422] = 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, - ACTIONS(6571), 1, + ACTIONS(5065), 1, anon_sym_move, - STATE(256), 1, + STATE(222), 1, sym_closure_parameters, STATE(3084), 2, sym_line_comment, sym_block_comment, - [89895] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [90442] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5093), 1, - anon_sym_LBRACE, - ACTIONS(6573), 1, - anon_sym_SEMI, - STATE(632), 1, - sym_declaration_list, + ACTIONS(1672), 1, + anon_sym_GT, + ACTIONS(6562), 1, + anon_sym_COMMA, + STATE(3126), 1, + aux_sym_type_arguments_repeat1, STATE(3085), 2, sym_line_comment, sym_block_comment, - [89915] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [90462] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5071), 1, - anon_sym_where, - ACTIONS(6575), 1, - anon_sym_SEMI, - STATE(3614), 1, - sym_where_clause, + ACTIONS(2139), 1, + anon_sym_RPAREN, + ACTIONS(6564), 1, + anon_sym_COMMA, + STATE(3189), 1, + aux_sym_tuple_pattern_repeat1, STATE(3086), 2, sym_line_comment, sym_block_comment, - [89935] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [90482] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6510), 1, - anon_sym_PIPE, - ACTIONS(6577), 1, + ACTIONS(6070), 1, + anon_sym_RPAREN, + ACTIONS(6072), 1, anon_sym_COMMA, - STATE(3087), 3, + STATE(3086), 1, + aux_sym_tuple_pattern_repeat1, + STATE(3087), 2, sym_line_comment, sym_block_comment, - aux_sym_closure_parameters_repeat1, - [89953] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [90502] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, STATE(3088), 2, sym_line_comment, sym_block_comment, - ACTIONS(6580), 3, + ACTIONS(6566), 3, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COMMA, - [89969] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [90518] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5093), 1, - anon_sym_LBRACE, - ACTIONS(6582), 1, + ACTIONS(3182), 1, + anon_sym_PLUS, + ACTIONS(6568), 1, anon_sym_SEMI, - STATE(638), 1, - sym_declaration_list, + ACTIONS(6570), 1, + anon_sym_EQ, STATE(3089), 2, sym_line_comment, sym_block_comment, - [89989] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [90538] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, STATE(3090), 2, sym_line_comment, sym_block_comment, - ACTIONS(4871), 3, + ACTIONS(1490), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [90005] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [90554] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6584), 1, - anon_sym_AMP_AMP, - ACTIONS(4502), 2, + ACTIONS(5259), 1, anon_sym_LBRACE, - anon_sym_SQUOTE, + ACTIONS(6572), 1, + anon_sym_SEMI, + STATE(695), 1, + sym_declaration_list, STATE(3091), 2, sym_line_comment, sym_block_comment, - [90023] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [90574] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4769), 1, - anon_sym_COLON_COLON, - ACTIONS(5524), 2, - anon_sym_RPAREN, - anon_sym_COMMA, STATE(3092), 2, sym_line_comment, sym_block_comment, - [90041] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4684), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [90590] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4672), 1, - anon_sym_LT2, - ACTIONS(5061), 1, - anon_sym_COLON_COLON, - STATE(2024), 1, - sym_type_arguments, + ACTIONS(3176), 1, + anon_sym_RBRACK, + ACTIONS(6574), 1, + anon_sym_COMMA, + STATE(2894), 1, + aux_sym_slice_pattern_repeat1, STATE(3093), 2, sym_line_comment, sym_block_comment, - [90061] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [90610] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4672), 1, - anon_sym_LT2, - ACTIONS(6586), 1, - anon_sym_for, - STATE(2026), 1, - sym_type_arguments, + ACTIONS(3182), 1, + anon_sym_PLUS, + ACTIONS(6576), 1, + anon_sym_SEMI, + ACTIONS(6578), 1, + anon_sym_RBRACK, STATE(3094), 2, sym_line_comment, sym_block_comment, - [90081] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [90630] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5093), 1, - anon_sym_LBRACE, - ACTIONS(6588), 1, + ACTIONS(5104), 1, + anon_sym_where, + ACTIONS(6580), 1, anon_sym_SEMI, - STATE(776), 1, - sym_declaration_list, + STATE(3577), 1, + sym_where_clause, STATE(3095), 2, sym_line_comment, sym_block_comment, - [90101] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [90650] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(4853), 1, + anon_sym_COLON, + ACTIONS(5075), 1, + anon_sym_COLON_COLON, + STATE(2599), 1, + sym_trait_bounds, STATE(3096), 2, sym_line_comment, sym_block_comment, - ACTIONS(4961), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [90117] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [90670] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, - anon_sym_PLUS, - ACTIONS(6011), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(5104), 1, + anon_sym_where, + ACTIONS(6582), 1, + anon_sym_SEMI, + STATE(3701), 1, + sym_where_clause, STATE(3097), 2, sym_line_comment, sym_block_comment, - [90135] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [90690] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6011), 1, + ACTIONS(6584), 1, anon_sym_RPAREN, - ACTIONS(6590), 1, + ACTIONS(6586), 1, anon_sym_COMMA, - STATE(3098), 3, + STATE(3215), 1, + aux_sym_ordered_field_declaration_list_repeat1, + STATE(3098), 2, sym_line_comment, sym_block_comment, - aux_sym_parameters_repeat1, - [90153] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [90710] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6593), 1, + ACTIONS(6588), 1, sym_identifier, - ACTIONS(6595), 1, + ACTIONS(6590), 1, anon_sym_ref, - ACTIONS(6597), 1, + ACTIONS(6592), 1, sym_mutable_specifier, STATE(3099), 2, sym_line_comment, sym_block_comment, - [90173] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [90730] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4883), 1, + ACTIONS(4702), 1, + anon_sym_LT2, + ACTIONS(6594), 1, anon_sym_COLON_COLON, - ACTIONS(4993), 1, - anon_sym_BANG, - ACTIONS(6599), 1, - sym_identifier, + STATE(2038), 1, + sym_type_arguments, STATE(3100), 2, sym_line_comment, sym_block_comment, - [90193] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [90750] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5737), 1, - anon_sym_PIPE, - ACTIONS(6601), 2, - anon_sym_RBRACE, - anon_sym_COMMA, STATE(3101), 2, sym_line_comment, sym_block_comment, - [90211] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5041), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [90766] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, STATE(3102), 2, sym_line_comment, sym_block_comment, - ACTIONS(6603), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [90227] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4977), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [90782] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6584), 1, - anon_sym_AMP_AMP, - ACTIONS(6605), 2, - anon_sym_LBRACE, - anon_sym_SQUOTE, STATE(3103), 2, sym_line_comment, sym_block_comment, - [90245] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4987), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [90798] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4206), 1, - anon_sym_LBRACE, - ACTIONS(6607), 1, - anon_sym_COLON_COLON, - STATE(1752), 1, - sym_field_initializer_list, STATE(3104), 2, sym_line_comment, sym_block_comment, - [90265] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5027), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [90814] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3576), 1, - anon_sym_LBRACE, - ACTIONS(6609), 1, - anon_sym_COLON_COLON, - STATE(1535), 1, - sym_field_initializer_list, STATE(3105), 2, sym_line_comment, sym_block_comment, - [90285] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5079), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [90830] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6611), 1, - anon_sym_LPAREN, - ACTIONS(6613), 1, - anon_sym_LBRACK, - ACTIONS(6615), 1, - anon_sym_LBRACE, STATE(3106), 2, sym_line_comment, sym_block_comment, - [90305] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5059), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [90846] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6617), 1, - anon_sym_LPAREN, - ACTIONS(6619), 1, - anon_sym_LBRACK, - ACTIONS(6621), 1, - anon_sym_LBRACE, + ACTIONS(4702), 1, + anon_sym_LT2, + ACTIONS(6596), 1, + anon_sym_for, + STATE(2043), 1, + sym_type_arguments, STATE(3107), 2, sym_line_comment, sym_block_comment, - [90325] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [90866] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5093), 1, - anon_sym_LBRACE, - ACTIONS(6623), 1, - anon_sym_SEMI, - STATE(589), 1, - sym_declaration_list, + ACTIONS(1384), 1, + anon_sym_RPAREN, + ACTIONS(5631), 1, + anon_sym_COMMA, + STATE(3141), 1, + aux_sym_parameters_repeat1, STATE(3108), 2, sym_line_comment, sym_block_comment, - [90345] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [90886] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, - anon_sym_PLUS, - ACTIONS(6625), 1, - anon_sym_SEMI, - ACTIONS(6627), 1, - anon_sym_EQ, + ACTIONS(994), 1, + anon_sym_RPAREN, + ACTIONS(6598), 1, + anon_sym_COMMA, + STATE(2803), 1, + aux_sym_arguments_repeat1, STATE(3109), 2, sym_line_comment, sym_block_comment, - [90365] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [90906] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4672), 1, - anon_sym_LT2, - ACTIONS(6629), 1, - anon_sym_LBRACE, - STATE(2026), 1, - sym_type_arguments, + ACTIONS(5722), 1, + anon_sym_PIPE, + ACTIONS(6600), 2, + anon_sym_RBRACE, + anon_sym_COMMA, STATE(3110), 2, sym_line_comment, sym_block_comment, - [90385] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [90924] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3152), 1, - anon_sym_RBRACK, - ACTIONS(6631), 1, + ACTIONS(918), 1, + anon_sym_RPAREN, + ACTIONS(4324), 1, anon_sym_COMMA, - STATE(2742), 1, - aux_sym_slice_pattern_repeat1, + STATE(2803), 1, + aux_sym_arguments_repeat1, STATE(3111), 2, sym_line_comment, sym_block_comment, - [90405] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [90944] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5093), 1, - anon_sym_LBRACE, - ACTIONS(6633), 1, - anon_sym_SEMI, - STATE(534), 1, - sym_declaration_list, - STATE(3112), 2, + ACTIONS(6602), 1, + anon_sym_RBRACE, + ACTIONS(6604), 1, + anon_sym_COMMA, + STATE(3112), 3, sym_line_comment, sym_block_comment, - [90425] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + aux_sym_field_declaration_list_repeat1, + [90962] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1361), 1, - anon_sym_RPAREN, - ACTIONS(6635), 1, - anon_sym_COMMA, - STATE(3098), 1, - aux_sym_parameters_repeat1, STATE(3113), 2, sym_line_comment, sym_block_comment, - [90445] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(6607), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [90978] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6637), 1, - anon_sym_RPAREN, - ACTIONS(6639), 1, - anon_sym_COMMA, - STATE(3033), 1, - aux_sym_ordered_field_declaration_list_repeat1, + ACTIONS(3644), 1, + anon_sym_LBRACE, + ACTIONS(6609), 1, + anon_sym_COLON_COLON, + STATE(1559), 1, + sym_field_initializer_list, STATE(3114), 2, sym_line_comment, sym_block_comment, - [90465] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [90998] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3084), 1, - anon_sym_SQUOTE, - ACTIONS(6641), 1, - anon_sym_GT, - STATE(3351), 1, - sym_lifetime, + ACTIONS(6611), 1, + anon_sym_LPAREN, + ACTIONS(6613), 1, + anon_sym_LBRACK, + ACTIONS(6615), 1, + anon_sym_LBRACE, STATE(3115), 2, sym_line_comment, sym_block_comment, - [90485] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [91018] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6643), 1, - anon_sym_GT, - ACTIONS(6645), 1, - anon_sym_COMMA, - STATE(3116), 3, + ACTIONS(6617), 1, + anon_sym_LPAREN, + ACTIONS(6619), 1, + anon_sym_LBRACK, + ACTIONS(6621), 1, + anon_sym_LBRACE, + STATE(3116), 2, sym_line_comment, sym_block_comment, - aux_sym_for_lifetimes_repeat1, - [90503] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [91038] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6648), 1, - anon_sym_RBRACE, - ACTIONS(6650), 1, + ACTIONS(3182), 1, + anon_sym_PLUS, + ACTIONS(6623), 2, + anon_sym_GT, anon_sym_COMMA, - STATE(2985), 1, - aux_sym_struct_pattern_repeat1, STATE(3117), 2, sym_line_comment, sym_block_comment, - [90523] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [91056] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(4702), 1, + anon_sym_LT2, + ACTIONS(6625), 1, + anon_sym_LBRACE, + STATE(2043), 1, + sym_type_arguments, STATE(3118), 2, sym_line_comment, sym_block_comment, - ACTIONS(6652), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [90539] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [91076] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6654), 1, - anon_sym_LPAREN, - ACTIONS(6656), 1, - anon_sym_LBRACK, - ACTIONS(6658), 1, + ACTIONS(5259), 1, anon_sym_LBRACE, + ACTIONS(6627), 1, + anon_sym_SEMI, + STATE(699), 1, + sym_declaration_list, STATE(3119), 2, sym_line_comment, sym_block_comment, - [90559] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [91096] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4516), 1, + ACTIONS(6631), 1, + anon_sym_COLON, + ACTIONS(6629), 2, anon_sym_RBRACE, - ACTIONS(6660), 1, anon_sym_COMMA, - STATE(3046), 1, - aux_sym_use_list_repeat1, STATE(3120), 2, sym_line_comment, sym_block_comment, - [90579] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [91114] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5085), 1, + ACTIONS(6633), 1, anon_sym_RBRACE, - ACTIONS(6662), 1, + ACTIONS(6635), 1, anon_sym_COMMA, - STATE(3042), 1, - aux_sym_field_declaration_list_repeat1, + STATE(2977), 1, + aux_sym_struct_pattern_repeat1, STATE(3121), 2, sym_line_comment, sym_block_comment, - [90599] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [91134] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5085), 1, + ACTIONS(3182), 1, + anon_sym_PLUS, + ACTIONS(6637), 2, anon_sym_RBRACE, - ACTIONS(6662), 1, anon_sym_COMMA, - STATE(3050), 1, - aux_sym_field_declaration_list_repeat1, STATE(3122), 2, sym_line_comment, sym_block_comment, - [90619] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [91152] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(6639), 1, + anon_sym_GT, + ACTIONS(6641), 1, + anon_sym_COMMA, + STATE(2920), 1, + aux_sym_type_parameters_repeat1, STATE(3123), 2, sym_line_comment, sym_block_comment, - ACTIONS(6664), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [90635] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [91172] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6666), 1, - anon_sym_LPAREN, - ACTIONS(6668), 1, - anon_sym_LBRACK, - ACTIONS(6670), 1, + ACTIONS(5224), 1, anon_sym_LBRACE, + ACTIONS(6643), 1, + anon_sym_SEMI, + STATE(1343), 1, + sym_declaration_list, STATE(3124), 2, sym_line_comment, sym_block_comment, - [90655] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [91192] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5059), 1, - anon_sym_LBRACE, - ACTIONS(6672), 1, - anon_sym_SEMI, - STATE(1312), 1, - sym_declaration_list, + ACTIONS(1662), 1, + anon_sym_GT, + ACTIONS(6645), 1, + anon_sym_COMMA, + STATE(3126), 1, + aux_sym_type_arguments_repeat1, STATE(3125), 2, sym_line_comment, sym_block_comment, - [90675] = 6, - ACTIONS(27), 1, - anon_sym_PIPE, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [91212] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6674), 1, - anon_sym_move, - STATE(219), 1, - sym_closure_parameters, - STATE(3126), 2, + ACTIONS(5706), 1, + anon_sym_GT, + ACTIONS(6647), 1, + anon_sym_COMMA, + STATE(3126), 3, sym_line_comment, sym_block_comment, - [90695] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + aux_sym_type_arguments_repeat1, + [91230] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(5649), 1, + anon_sym_COLON, + ACTIONS(6650), 2, + anon_sym_PIPE, + anon_sym_COMMA, STATE(3127), 2, sym_line_comment, sym_block_comment, - ACTIONS(4955), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [90711] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [91248] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(6654), 1, + anon_sym_COLON, + ACTIONS(6652), 2, + anon_sym_RBRACE, + anon_sym_COMMA, STATE(3128), 2, sym_line_comment, sym_block_comment, - ACTIONS(4957), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [90727] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [91266] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(5722), 1, + anon_sym_PIPE, + ACTIONS(6656), 2, + anon_sym_RBRACE, + anon_sym_COMMA, STATE(3129), 2, sym_line_comment, sym_block_comment, - ACTIONS(6676), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [90743] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [91284] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(3130), 2, + ACTIONS(6650), 1, + anon_sym_PIPE, + ACTIONS(6658), 1, + anon_sym_COMMA, + STATE(3130), 3, sym_line_comment, sym_block_comment, - ACTIONS(4959), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [90759] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + aux_sym_closure_parameters_repeat1, + [91302] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(5104), 1, + anon_sym_where, + ACTIONS(6661), 1, + anon_sym_SEMI, + STATE(3703), 1, + sym_where_clause, STATE(3131), 2, sym_line_comment, sym_block_comment, - ACTIONS(4963), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [90775] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [91322] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(3132), 2, + ACTIONS(6663), 1, + anon_sym_RBRACE, + ACTIONS(6665), 1, + anon_sym_COMMA, + STATE(3132), 3, sym_line_comment, sym_block_comment, - ACTIONS(4965), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [90791] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + aux_sym_struct_pattern_repeat1, + [91340] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(5104), 1, + anon_sym_where, + ACTIONS(6668), 1, + anon_sym_SEMI, + STATE(3820), 1, + sym_where_clause, STATE(3133), 2, sym_line_comment, sym_block_comment, - ACTIONS(4967), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [90807] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [91360] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(5653), 1, + anon_sym_COMMA, + ACTIONS(6670), 1, + anon_sym_PIPE, + STATE(3147), 1, + aux_sym_closure_parameters_repeat1, STATE(3134), 2, sym_line_comment, sym_block_comment, - ACTIONS(6678), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [90823] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [91380] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5737), 1, - anon_sym_PIPE, - ACTIONS(6680), 2, - anon_sym_RBRACE, + ACTIONS(4797), 1, + anon_sym_COLON_COLON, + ACTIONS(6672), 2, + anon_sym_RPAREN, anon_sym_COMMA, STATE(3135), 2, sym_line_comment, sym_block_comment, - [90841] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [91398] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6682), 1, - sym_identifier, - ACTIONS(6684), 1, - anon_sym_await, - ACTIONS(6686), 1, - sym_integer_literal, + ACTIONS(4797), 1, + anon_sym_COLON_COLON, + ACTIONS(5573), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(3136), 2, sym_line_comment, sym_block_comment, - [90861] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [91416] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(6674), 1, + anon_sym_RBRACE, + ACTIONS(6676), 1, + anon_sym_COMMA, + STATE(3006), 1, + aux_sym_struct_pattern_repeat1, STATE(3137), 2, sym_line_comment, sym_block_comment, - ACTIONS(6688), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [90877] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [91436] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4769), 1, - anon_sym_COLON_COLON, - ACTIONS(6690), 2, + ACTIONS(3182), 1, + anon_sym_PLUS, + ACTIONS(6136), 2, anon_sym_RPAREN, anon_sym_COMMA, STATE(3138), 2, sym_line_comment, sym_block_comment, - [90895] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [91454] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(3139), 2, + ACTIONS(6136), 1, + anon_sym_RPAREN, + ACTIONS(6678), 1, + anon_sym_COMMA, + STATE(3139), 3, sym_line_comment, sym_block_comment, - ACTIONS(6692), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [90911] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + aux_sym_parameters_repeat1, + [91472] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6694), 1, - anon_sym_GT, - ACTIONS(6696), 1, - anon_sym_COMMA, - STATE(3140), 3, + ACTIONS(5104), 1, + anon_sym_where, + ACTIONS(6681), 1, + anon_sym_SEMI, + STATE(3589), 1, + sym_where_clause, + STATE(3140), 2, sym_line_comment, sym_block_comment, - aux_sym_use_bounds_repeat1, - [90929] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [91492] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, - anon_sym_PLUS, - ACTIONS(6040), 2, + ACTIONS(1212), 1, anon_sym_RPAREN, + ACTIONS(6683), 1, anon_sym_COMMA, + STATE(3139), 1, + aux_sym_parameters_repeat1, STATE(3141), 2, sym_line_comment, sym_block_comment, - [90947] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [91512] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(3328), 1, + anon_sym_RPAREN, + ACTIONS(6685), 1, + anon_sym_COMMA, + STATE(3026), 1, + aux_sym_tuple_type_repeat1, STATE(3142), 2, sym_line_comment, sym_block_comment, - ACTIONS(6699), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [90963] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [91532] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(941), 1, - anon_sym_RBRACK, - ACTIONS(4240), 1, - anon_sym_COMMA, - STATE(2759), 1, - aux_sym_arguments_repeat1, STATE(3143), 2, sym_line_comment, sym_block_comment, - [90983] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(6687), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [91548] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6701), 1, - anon_sym_EQ, - ACTIONS(6703), 2, + ACTIONS(3110), 1, + anon_sym_SQUOTE, + ACTIONS(6689), 1, anon_sym_GT, - anon_sym_COMMA, + STATE(3374), 1, + sym_lifetime, STATE(3144), 2, sym_line_comment, sym_block_comment, - [91001] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [91568] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5870), 1, - anon_sym_RPAREN, - ACTIONS(5872), 1, + ACTIONS(6691), 1, + anon_sym_GT, + ACTIONS(6693), 1, anon_sym_COMMA, - STATE(3185), 1, - aux_sym_tuple_pattern_repeat1, - STATE(3145), 2, + STATE(3145), 3, sym_line_comment, sym_block_comment, - [91021] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + aux_sym_for_lifetimes_repeat1, + [91586] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3084), 1, - anon_sym_SQUOTE, - ACTIONS(5914), 1, - sym_identifier, - STATE(3383), 1, - sym_lifetime, - STATE(3146), 2, + ACTIONS(6696), 1, + anon_sym_GT, + ACTIONS(6698), 1, + anon_sym_COMMA, + STATE(3146), 3, sym_line_comment, sym_block_comment, - [91041] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + aux_sym_use_bounds_repeat1, + [91604] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1035), 1, - anon_sym_RBRACK, - ACTIONS(4338), 1, + ACTIONS(5653), 1, anon_sym_COMMA, - STATE(2759), 1, - aux_sym_arguments_repeat1, + ACTIONS(6701), 1, + anon_sym_PIPE, + STATE(3130), 1, + aux_sym_closure_parameters_repeat1, STATE(3147), 2, sym_line_comment, sym_block_comment, - [91061] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [91624] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4851), 1, - anon_sym_GT, - ACTIONS(6705), 1, - anon_sym_COMMA, - STATE(3082), 1, - aux_sym_type_parameters_repeat1, STATE(3148), 2, sym_line_comment, sym_block_comment, - [91081] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5087), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [91640] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5031), 1, - anon_sym_RBRACE, - ACTIONS(6707), 1, - anon_sym_COMMA, - STATE(2906), 1, - aux_sym_field_initializer_list_repeat1, STATE(3149), 2, sym_line_comment, sym_block_comment, - [91101] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5035), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [91656] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, - anon_sym_PLUS, - ACTIONS(6709), 1, - anon_sym_SEMI, - ACTIONS(6711), 1, - anon_sym_RBRACK, + ACTIONS(6703), 1, + anon_sym_AMP_AMP, + ACTIONS(4440), 2, + anon_sym_LBRACE, + anon_sym_SQUOTE, STATE(3150), 2, sym_line_comment, sym_block_comment, - [91121] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [91674] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5093), 1, - anon_sym_LBRACE, - ACTIONS(6713), 1, - anon_sym_SEMI, - STATE(683), 1, - sym_declaration_list, STATE(3151), 2, sym_line_comment, sym_block_comment, - [91141] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5045), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [91690] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5071), 1, - anon_sym_where, - ACTIONS(6715), 1, - anon_sym_SEMI, - STATE(3608), 1, - sym_where_clause, STATE(3152), 2, sym_line_comment, sym_block_comment, - [91161] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5017), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [91706] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6719), 1, - anon_sym_COLON, - ACTIONS(6717), 2, - anon_sym_RBRACE, - anon_sym_COMMA, STATE(3153), 2, sym_line_comment, sym_block_comment, - [91179] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5019), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [91722] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4672), 1, - anon_sym_LT2, - ACTIONS(6721), 1, - anon_sym_COLON_COLON, - STATE(2024), 1, - sym_type_arguments, + ACTIONS(3182), 1, + anon_sym_PLUS, + ACTIONS(6138), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(3154), 2, sym_line_comment, sym_block_comment, - [91199] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [91740] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4672), 1, - anon_sym_LT2, - ACTIONS(6723), 1, - anon_sym_for, - STATE(2026), 1, - sym_type_arguments, STATE(3155), 2, sym_line_comment, sym_block_comment, - [91219] = 6, - ACTIONS(27), 1, + ACTIONS(5023), 3, + anon_sym_EQ_GT, anon_sym_PIPE, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_if, + [91756] = 6, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(6725), 1, - anon_sym_move, - STATE(232), 1, - sym_closure_parameters, - STATE(3156), 2, - sym_line_comment, - sym_block_comment, - [91239] = 6, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4851), 1, - anon_sym_GT, ACTIONS(6705), 1, + anon_sym_RBRACE, + ACTIONS(6707), 1, anon_sym_COMMA, - STATE(3083), 1, - aux_sym_type_parameters_repeat1, - STATE(3157), 2, + STATE(2931), 1, + aux_sym_field_initializer_list_repeat1, + STATE(3156), 2, sym_line_comment, sym_block_comment, - [91259] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [91776] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5093), 1, + ACTIONS(5259), 1, anon_sym_LBRACE, - ACTIONS(6727), 1, + ACTIONS(6709), 1, anon_sym_SEMI, - STATE(757), 1, + STATE(720), 1, sym_declaration_list, - STATE(3158), 2, + STATE(3157), 2, sym_line_comment, sym_block_comment, - [91279] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [91796] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5093), 1, + ACTIONS(5259), 1, anon_sym_LBRACE, - ACTIONS(6729), 1, + ACTIONS(6711), 1, anon_sym_SEMI, - STATE(657), 1, + STATE(644), 1, sym_declaration_list, - STATE(3159), 2, + STATE(3158), 2, sym_line_comment, sym_block_comment, - [91299] = 6, - ACTIONS(103), 1, + [91816] = 5, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(6713), 1, + anon_sym_RBRACE, + ACTIONS(6715), 1, + anon_sym_COMMA, + STATE(3159), 3, + sym_line_comment, + sym_block_comment, + aux_sym_enum_variant_list_repeat2, + [91834] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5093), 1, + ACTIONS(5224), 1, anon_sym_LBRACE, - ACTIONS(6731), 1, + ACTIONS(6718), 1, anon_sym_SEMI, - STATE(759), 1, + STATE(1366), 1, sym_declaration_list, STATE(3160), 2, sym_line_comment, sym_block_comment, - [91319] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [91854] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6733), 1, - anon_sym_GT, - ACTIONS(6735), 1, + ACTIONS(6722), 1, + anon_sym_EQ, + ACTIONS(6720), 2, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(2893), 1, - aux_sym_type_parameters_repeat1, STATE(3161), 2, sym_line_comment, sym_block_comment, - [91339] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [91872] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5059), 1, - anon_sym_LBRACE, - ACTIONS(6737), 1, - anon_sym_SEMI, - STATE(1381), 1, - sym_declaration_list, + ACTIONS(5172), 1, + anon_sym_RBRACE, + ACTIONS(6724), 1, + anon_sym_COMMA, + STATE(3159), 1, + aux_sym_enum_variant_list_repeat2, STATE(3162), 2, sym_line_comment, sym_block_comment, - [91359] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [91892] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1011), 1, - anon_sym_RBRACK, - ACTIONS(4278), 1, - anon_sym_COMMA, - STATE(2759), 1, - aux_sym_arguments_repeat1, + ACTIONS(3110), 1, + anon_sym_SQUOTE, + ACTIONS(6726), 1, + anon_sym_GT, + STATE(3374), 1, + sym_lifetime, STATE(3163), 2, sym_line_comment, sym_block_comment, - [91379] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [91912] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5071), 1, - anon_sym_where, - ACTIONS(6739), 1, - anon_sym_SEMI, - STATE(3596), 1, - sym_where_clause, + ACTIONS(6726), 1, + anon_sym_GT, + ACTIONS(6728), 1, + anon_sym_COMMA, + STATE(3145), 1, + aux_sym_for_lifetimes_repeat1, STATE(3164), 2, sym_line_comment, sym_block_comment, - [91399] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [91932] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4672), 1, - anon_sym_LT2, - ACTIONS(6741), 1, - anon_sym_for, - STATE(2026), 1, - sym_type_arguments, + ACTIONS(6703), 1, + anon_sym_AMP_AMP, + ACTIONS(6730), 2, + anon_sym_LBRACE, + anon_sym_SQUOTE, STATE(3165), 2, sym_line_comment, sym_block_comment, - [91419] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [91950] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3288), 1, - anon_sym_RPAREN, - ACTIONS(6743), 1, - anon_sym_COMMA, - STATE(2990), 1, - aux_sym_tuple_type_repeat1, STATE(3166), 2, sym_line_comment, sym_block_comment, - [91439] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(6732), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [91966] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5071), 1, - anon_sym_where, - ACTIONS(6745), 1, + ACTIONS(5259), 1, + anon_sym_LBRACE, + ACTIONS(6734), 1, anon_sym_SEMI, - STATE(3592), 1, - sym_where_clause, + STATE(536), 1, + sym_declaration_list, STATE(3167), 2, sym_line_comment, sym_block_comment, - [91459] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [91986] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4672), 1, - anon_sym_LT2, - ACTIONS(5158), 1, - anon_sym_for, - STATE(2026), 1, - sym_type_arguments, + ACTIONS(5754), 1, + anon_sym_RPAREN, + ACTIONS(5756), 1, + anon_sym_COMMA, + STATE(3067), 1, + aux_sym_parameters_repeat1, STATE(3168), 2, sym_line_comment, sym_block_comment, - [91479] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [92006] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6747), 1, - anon_sym_RBRACE, - ACTIONS(6749), 1, - anon_sym_COMMA, - STATE(2903), 1, - aux_sym_field_initializer_list_repeat1, + ACTIONS(5259), 1, + anon_sym_LBRACE, + ACTIONS(6736), 1, + anon_sym_SEMI, + STATE(539), 1, + sym_declaration_list, STATE(3169), 2, sym_line_comment, sym_block_comment, - [91499] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [92026] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5071), 1, - anon_sym_where, - ACTIONS(6751), 1, + ACTIONS(5259), 1, + anon_sym_LBRACE, + ACTIONS(6738), 1, anon_sym_SEMI, - STATE(3520), 1, - sym_where_clause, + STATE(727), 1, + sym_declaration_list, STATE(3170), 2, sym_line_comment, sym_block_comment, - [91519] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [92046] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5059), 1, - anon_sym_LBRACE, - ACTIONS(6753), 1, - anon_sym_SEMI, - STATE(1421), 1, - sym_declaration_list, + ACTIONS(3182), 1, + anon_sym_PLUS, + ACTIONS(6740), 2, + anon_sym_GT, + anon_sym_COMMA, STATE(3171), 2, sym_line_comment, sym_block_comment, - [91539] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [92064] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4672), 1, - anon_sym_LT2, - ACTIONS(6755), 1, - anon_sym_for, - STATE(2026), 1, - sym_type_arguments, STATE(3172), 2, sym_line_comment, sym_block_comment, - [91559] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5033), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [92080] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(3182), 1, + anon_sym_PLUS, + ACTIONS(6742), 1, + sym_mutable_specifier, + ACTIONS(6744), 1, + sym_self, STATE(3173), 2, sym_line_comment, sym_block_comment, - ACTIONS(6757), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [91575] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [92100] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4672), 1, - anon_sym_LT2, - ACTIONS(6759), 1, - anon_sym_for, - STATE(2026), 1, - sym_type_arguments, STATE(3174), 2, sym_line_comment, sym_block_comment, - [91595] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(1032), 3, + anon_sym_COLON, + anon_sym_GT, + anon_sym_COMMA, + [92116] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6761), 1, - anon_sym_RBRACE, - ACTIONS(6763), 1, + ACTIONS(6746), 1, + anon_sym_GT, + ACTIONS(6748), 1, anon_sym_COMMA, STATE(3175), 3, sym_line_comment, sym_block_comment, - aux_sym_enum_variant_list_repeat2, - [91613] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + aux_sym_type_parameters_repeat1, + [92134] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5071), 1, - anon_sym_where, - ACTIONS(6766), 1, - anon_sym_EQ, - STATE(3765), 1, - sym_where_clause, + ACTIONS(3182), 1, + anon_sym_PLUS, + ACTIONS(6751), 1, + anon_sym_SEMI, + ACTIONS(6753), 1, + anon_sym_RBRACK, STATE(3176), 2, sym_line_comment, sym_block_comment, - [91633] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [92154] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6770), 1, - anon_sym_EQ, - ACTIONS(6768), 2, - anon_sym_RBRACE, + ACTIONS(6755), 1, + anon_sym_GT, + ACTIONS(6757), 1, anon_sym_COMMA, + STATE(3164), 1, + aux_sym_for_lifetimes_repeat1, STATE(3177), 2, sym_line_comment, sym_block_comment, - [91651] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [92174] = 6, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4672), 1, - anon_sym_LT2, - ACTIONS(6772), 1, - anon_sym_for, - STATE(2026), 1, - sym_type_arguments, - STATE(3178), 2, - sym_line_comment, - sym_block_comment, - [91671] = 6, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5081), 1, + ACTIONS(6759), 1, anon_sym_RBRACE, - ACTIONS(6774), 1, + ACTIONS(6761), 1, anon_sym_COMMA, - STATE(3175), 1, + STATE(3046), 1, aux_sym_enum_variant_list_repeat2, - STATE(3179), 2, + STATE(3178), 2, sym_line_comment, sym_block_comment, - [91691] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [92194] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5093), 1, + ACTIONS(5259), 1, anon_sym_LBRACE, - ACTIONS(6776), 1, + ACTIONS(6763), 1, anon_sym_SEMI, - STATE(778), 1, + STATE(560), 1, sym_declaration_list, - STATE(3180), 2, + STATE(3179), 2, sym_line_comment, sym_block_comment, - [91711] = 6, - ACTIONS(103), 1, + [92214] = 6, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(4881), 1, + anon_sym_GT, + ACTIONS(6765), 1, + anon_sym_COMMA, + STATE(3175), 1, + aux_sym_type_parameters_repeat1, + STATE(3180), 2, + sym_line_comment, + sym_block_comment, + [92234] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6778), 1, - sym_identifier, - ACTIONS(6780), 1, - anon_sym_ref, - ACTIONS(6782), 1, - sym_mutable_specifier, + ACTIONS(5259), 1, + anon_sym_LBRACE, + ACTIONS(6767), 1, + anon_sym_SEMI, + STATE(564), 1, + sym_declaration_list, STATE(3181), 2, sym_line_comment, sym_block_comment, - [91731] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [92254] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5071), 1, - anon_sym_where, - ACTIONS(6784), 1, - anon_sym_EQ, - STATE(3577), 1, - sym_where_clause, + ACTIONS(6769), 1, + anon_sym_GT, + ACTIONS(6771), 1, + anon_sym_COMMA, + STATE(2916), 1, + aux_sym_use_bounds_repeat1, STATE(3182), 2, sym_line_comment, sym_block_comment, - [91751] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [92274] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(6773), 1, + anon_sym_GT, + ACTIONS(6775), 1, + anon_sym_COMMA, + STATE(2919), 1, + aux_sym_use_bounds_repeat1, STATE(3183), 2, sym_line_comment, sym_block_comment, - ACTIONS(5029), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [91767] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [92294] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(959), 1, - anon_sym_RBRACK, - ACTIONS(4304), 1, - anon_sym_COMMA, - STATE(2759), 1, - aux_sym_arguments_repeat1, + ACTIONS(6777), 1, + sym_identifier, + ACTIONS(6779), 1, + anon_sym_await, + ACTIONS(6781), 1, + sym_integer_literal, STATE(3184), 2, sym_line_comment, sym_block_comment, - [91787] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [92314] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1836), 1, - anon_sym_RPAREN, - ACTIONS(6786), 1, - anon_sym_COMMA, - STATE(2956), 1, - aux_sym_tuple_pattern_repeat1, + ACTIONS(5104), 1, + anon_sym_where, + ACTIONS(6783), 1, + anon_sym_SEMI, + STATE(3662), 1, + sym_where_clause, STATE(3185), 2, sym_line_comment, sym_block_comment, - [91807] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [92334] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3154), 1, + ACTIONS(972), 1, anon_sym_RBRACK, - ACTIONS(6788), 1, + ACTIONS(6785), 1, anon_sym_COMMA, - STATE(2742), 1, - aux_sym_slice_pattern_repeat1, + STATE(2803), 1, + aux_sym_arguments_repeat1, STATE(3186), 2, sym_line_comment, sym_block_comment, - [91827] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [92354] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5093), 1, - anon_sym_LBRACE, - ACTIONS(6790), 1, - anon_sym_SEMI, - STATE(566), 1, - sym_declaration_list, + ACTIONS(4702), 1, + anon_sym_LT2, + ACTIONS(5186), 1, + anon_sym_for, + STATE(2043), 1, + sym_type_arguments, STATE(3187), 2, sym_line_comment, sym_block_comment, - [91847] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [92374] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6144), 1, - anon_sym_GT, - ACTIONS(6792), 1, + ACTIONS(5722), 1, + anon_sym_PIPE, + ACTIONS(6787), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(3140), 1, - aux_sym_use_bounds_repeat1, STATE(3188), 2, sym_line_comment, sym_block_comment, - [91867] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [92392] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6794), 1, - anon_sym_SEMI, - ACTIONS(6796), 1, - anon_sym_EQ, - STATE(3189), 2, + ACTIONS(6787), 1, + anon_sym_RPAREN, + ACTIONS(6789), 1, + anon_sym_COMMA, + STATE(3189), 3, sym_line_comment, sym_block_comment, - [91884] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + aux_sym_tuple_pattern_repeat1, + [92410] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6798), 1, - anon_sym_RPAREN, - ACTIONS(6800), 1, - anon_sym_COLON_COLON, + ACTIONS(3110), 1, + anon_sym_SQUOTE, + ACTIONS(5837), 1, + sym_identifier, + STATE(3384), 1, + sym_lifetime, STATE(3190), 2, sym_line_comment, sym_block_comment, - [91901] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [92430] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6802), 1, - anon_sym_RPAREN, - ACTIONS(6804), 1, - anon_sym_COLON_COLON, + ACTIONS(5259), 1, + anon_sym_LBRACE, + ACTIONS(6792), 1, + anon_sym_SEMI, + STATE(729), 1, + sym_declaration_list, STATE(3191), 2, sym_line_comment, sym_block_comment, - [91918] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [92450] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5461), 1, - anon_sym_LBRACE, - STATE(668), 1, - sym_enum_variant_list, + ACTIONS(4702), 1, + anon_sym_LT2, + ACTIONS(6794), 1, + anon_sym_for, + STATE(2043), 1, + sym_type_arguments, STATE(3192), 2, sym_line_comment, sym_block_comment, - [91935] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [92470] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(234), 1, - sym_closure_parameters, + ACTIONS(4702), 1, + anon_sym_LT2, + ACTIONS(6796), 1, + anon_sym_for, + STATE(2043), 1, + sym_type_arguments, STATE(3193), 2, sym_line_comment, sym_block_comment, - [91952] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [92490] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5414), 2, - anon_sym_RPAREN, + ACTIONS(1024), 1, + anon_sym_RBRACK, + ACTIONS(4330), 1, anon_sym_COMMA, + STATE(2803), 1, + aux_sym_arguments_repeat1, STATE(3194), 2, sym_line_comment, sym_block_comment, - [91967] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [92510] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6802), 1, - anon_sym_RPAREN, - ACTIONS(6806), 1, - anon_sym_COLON_COLON, + ACTIONS(5104), 1, + anon_sym_where, + ACTIONS(6798), 1, + anon_sym_EQ, + STATE(3799), 1, + sym_where_clause, STATE(3195), 2, sym_line_comment, sym_block_comment, - [91984] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [92530] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5069), 1, - anon_sym_LT, - STATE(970), 1, - sym_type_parameters, + ACTIONS(3182), 1, + anon_sym_PLUS, + ACTIONS(6800), 1, + anon_sym_SEMI, + ACTIONS(6802), 1, + anon_sym_EQ, STATE(3196), 2, sym_line_comment, sym_block_comment, - [92001] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [92550] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6802), 1, - anon_sym_RPAREN, - ACTIONS(6808), 1, - anon_sym_COLON_COLON, + ACTIONS(3182), 1, + anon_sym_PLUS, + ACTIONS(6804), 1, + anon_sym_SEMI, + ACTIONS(6806), 1, + anon_sym_EQ, STATE(3197), 2, sym_line_comment, sym_block_comment, - [92018] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [92570] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5968), 1, - sym_identifier, - ACTIONS(5970), 1, - sym_super, + ACTIONS(3182), 1, + anon_sym_PLUS, + ACTIONS(6808), 1, + anon_sym_SEMI, + ACTIONS(6810), 1, + anon_sym_EQ, STATE(3198), 2, sym_line_comment, sym_block_comment, - [92035] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [92590] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5930), 2, - sym_identifier, - sym_super, + ACTIONS(4702), 1, + anon_sym_LT2, + ACTIONS(6812), 1, + anon_sym_for, + STATE(2043), 1, + sym_type_arguments, STATE(3199), 2, sym_line_comment, sym_block_comment, - [92050] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [92610] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6810), 1, - sym_identifier, - ACTIONS(6812), 1, - sym_super, + ACTIONS(6816), 1, + anon_sym_COLON, + ACTIONS(6814), 2, + anon_sym_RBRACE, + anon_sym_COMMA, STATE(3200), 2, sym_line_comment, sym_block_comment, - [92067] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [92628] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6814), 1, - sym_identifier, - ACTIONS(6816), 1, - sym_super, + ACTIONS(5146), 1, + anon_sym_RBRACE, + ACTIONS(6818), 1, + anon_sym_COMMA, + STATE(3112), 1, + aux_sym_field_declaration_list_repeat1, STATE(3201), 2, sym_line_comment, sym_block_comment, - [92084] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [92648] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3210), 1, - anon_sym_PLUS, - ACTIONS(4106), 1, - anon_sym_COLON, + ACTIONS(2626), 1, + anon_sym_RPAREN, + ACTIONS(6820), 1, + anon_sym_COMMA, + STATE(3189), 1, + aux_sym_tuple_pattern_repeat1, STATE(3202), 2, sym_line_comment, sym_block_comment, - [92101] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [92668] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5306), 1, - sym_super, - ACTIONS(5807), 1, - sym_identifier, + ACTIONS(6822), 1, + anon_sym_RPAREN, + ACTIONS(6824), 1, + anon_sym_COMMA, + STATE(3215), 1, + aux_sym_ordered_field_declaration_list_repeat1, STATE(3203), 2, sym_line_comment, sym_block_comment, - [92118] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [92688] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6818), 1, + ACTIONS(6826), 1, sym_identifier, - ACTIONS(6820), 1, - sym_super, + ACTIONS(6828), 1, + anon_sym_ref, + ACTIONS(6830), 1, + sym_mutable_specifier, STATE(3204), 2, sym_line_comment, sym_block_comment, - [92135] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [92708] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6822), 1, - anon_sym_LT, - STATE(915), 1, - sym_type_parameters, + ACTIONS(3182), 1, + anon_sym_PLUS, + ACTIONS(6832), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(3205), 2, sym_line_comment, sym_block_comment, - [92152] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [92726] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5067), 1, - anon_sym_LBRACE, - STATE(1174), 1, - sym_field_declaration_list, STATE(3206), 2, sym_line_comment, sym_block_comment, - [92169] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5043), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [92742] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5059), 1, - anon_sym_LBRACE, - STATE(1175), 1, - sym_declaration_list, + ACTIONS(1632), 1, + anon_sym_GT, + ACTIONS(6834), 1, + anon_sym_COMMA, + STATE(3125), 1, + aux_sym_type_arguments_repeat1, STATE(3207), 2, sym_line_comment, sym_block_comment, - [92186] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [92762] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4178), 1, - anon_sym_LPAREN, - STATE(1702), 1, - sym_parameters, + ACTIONS(5259), 1, + anon_sym_LBRACE, + ACTIONS(6836), 1, + anon_sym_SEMI, + STATE(765), 1, + sym_declaration_list, STATE(3208), 2, sym_line_comment, sym_block_comment, - [92203] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [92782] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5059), 1, - anon_sym_LBRACE, - STATE(1176), 1, - sym_declaration_list, STATE(3209), 2, sym_line_comment, sym_block_comment, - [92220] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5053), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [92798] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5737), 1, - anon_sym_PIPE, - ACTIONS(5755), 1, - anon_sym_COLON, STATE(3210), 2, sym_line_comment, sym_block_comment, - [92237] = 5, - ACTIONS(27), 1, + ACTIONS(5081), 3, + anon_sym_EQ_GT, anon_sym_PIPE, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_if, + [92814] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(236), 1, - sym_closure_parameters, + ACTIONS(6838), 1, + sym_identifier, + ACTIONS(6840), 1, + anon_sym_ref, + ACTIONS(6842), 1, + sym_mutable_specifier, STATE(3211), 2, sym_line_comment, sym_block_comment, - [92254] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [92834] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6824), 2, - sym_identifier, - sym_super, STATE(3212), 2, sym_line_comment, sym_block_comment, - [92269] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4983), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [92850] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6820), 2, - sym_identifier, - sym_super, + ACTIONS(1632), 1, + anon_sym_GT, + ACTIONS(6834), 1, + anon_sym_COMMA, + STATE(3126), 1, + aux_sym_type_arguments_repeat1, STATE(3213), 2, sym_line_comment, sym_block_comment, - [92284] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [92870] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5059), 1, - anon_sym_LBRACE, - STATE(1241), 1, - sym_declaration_list, + ACTIONS(3174), 1, + anon_sym_RBRACK, + ACTIONS(6844), 1, + anon_sym_COMMA, + STATE(2894), 1, + aux_sym_slice_pattern_repeat1, STATE(3214), 2, sym_line_comment, sym_block_comment, - [92301] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [92890] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5164), 1, - anon_sym_COLON, - STATE(2550), 1, - sym_trait_bounds, - STATE(3215), 2, + ACTIONS(6846), 1, + anon_sym_RPAREN, + ACTIONS(6848), 1, + anon_sym_COMMA, + STATE(3215), 3, sym_line_comment, sym_block_comment, - [92318] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + aux_sym_ordered_field_declaration_list_repeat1, + [92908] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3418), 2, - anon_sym_RBRACE, - anon_sym_COMMA, STATE(3216), 2, sym_line_comment, sym_block_comment, - [92333] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(6851), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [92924] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6510), 2, - anon_sym_PIPE, + ACTIONS(3182), 1, + anon_sym_PLUS, + ACTIONS(6853), 2, + anon_sym_RBRACE, anon_sym_COMMA, STATE(3217), 2, sym_line_comment, sym_block_comment, - [92348] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [92942] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5059), 1, - anon_sym_LBRACE, - STATE(1249), 1, - sym_declaration_list, + ACTIONS(5875), 1, + anon_sym_RPAREN, + ACTIONS(5877), 1, + anon_sym_COMMA, + STATE(3202), 1, + aux_sym_tuple_pattern_repeat1, STATE(3218), 2, sym_line_comment, sym_block_comment, - [92365] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [92962] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5059), 1, - anon_sym_LBRACE, - STATE(1250), 1, - sym_declaration_list, + ACTIONS(5722), 1, + anon_sym_PIPE, + ACTIONS(6855), 1, + anon_sym_in, STATE(3219), 2, sym_line_comment, sym_block_comment, - [92382] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [92979] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6826), 2, + ACTIONS(6857), 1, sym_identifier, - sym_super, + ACTIONS(6859), 1, + sym_mutable_specifier, STATE(3220), 2, sym_line_comment, sym_block_comment, - [92397] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [92996] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4178), 1, - anon_sym_LPAREN, - STATE(1658), 1, - sym_parameters, + ACTIONS(5154), 1, + anon_sym_LBRACE, + STATE(1190), 1, + sym_field_declaration_list, STATE(3221), 2, sym_line_comment, sym_block_comment, - [92414] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [93013] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3576), 1, - anon_sym_LBRACE, - STATE(1535), 1, - sym_field_initializer_list, + ACTIONS(6861), 2, + sym_identifier, + sym_super, STATE(3222), 2, sym_line_comment, sym_block_comment, - [92431] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [93028] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(224), 1, - sym_closure_parameters, + ACTIONS(5224), 1, + anon_sym_LBRACE, + STATE(1191), 1, + sym_declaration_list, STATE(3223), 2, sym_line_comment, sym_block_comment, - [92448] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [93045] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5831), 1, - sym_super, - ACTIONS(5898), 1, - sym_identifier, + ACTIONS(6863), 1, + anon_sym_SEMI, + ACTIONS(6865), 1, + anon_sym_as, STATE(3224), 2, sym_line_comment, sym_block_comment, - [92465] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [93062] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6484), 2, - anon_sym_RBRACE, - anon_sym_COMMA, + ACTIONS(3456), 1, + anon_sym_LPAREN, + STATE(1434), 1, + sym_parameters, STATE(3225), 2, sym_line_comment, sym_block_comment, - [92480] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [93079] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5067), 1, + ACTIONS(5224), 1, anon_sym_LBRACE, - STATE(1184), 1, - sym_field_declaration_list, + STATE(1283), 1, + sym_declaration_list, STATE(3226), 2, sym_line_comment, sym_block_comment, - [92497] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [93096] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5469), 1, + ACTIONS(4230), 1, anon_sym_LBRACE, - STATE(1261), 1, - sym_enum_variant_list, + STATE(1810), 1, + sym_field_initializer_list, STATE(3227), 2, sym_line_comment, sym_block_comment, - [92514] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [93113] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3430), 1, - anon_sym_LPAREN, - STATE(1392), 1, - sym_parameters, + ACTIONS(5154), 1, + anon_sym_LBRACE, + STATE(1117), 1, + sym_field_declaration_list, STATE(3228), 2, sym_line_comment, sym_block_comment, - [92531] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [93130] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6828), 1, - anon_sym_SEMI, - ACTIONS(6830), 1, - anon_sym_as, + ACTIONS(5224), 1, + anon_sym_LBRACE, + STATE(1118), 1, + sym_declaration_list, STATE(3229), 2, sym_line_comment, sym_block_comment, - [92548] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [93147] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5067), 1, + ACTIONS(5224), 1, anon_sym_LBRACE, - STATE(1268), 1, - sym_field_declaration_list, + STATE(1119), 1, + sym_declaration_list, STATE(3230), 2, sym_line_comment, sym_block_comment, - [92565] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [93164] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6832), 1, - anon_sym_LPAREN, - ACTIONS(6834), 1, - anon_sym_COLON_COLON, + ACTIONS(3464), 1, + anon_sym_LT2, + STATE(1560), 1, + sym_type_arguments, STATE(3231), 2, sym_line_comment, sym_block_comment, - [92582] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [93181] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5067), 1, + ACTIONS(5455), 1, anon_sym_LBRACE, - STATE(1270), 1, - sym_field_declaration_list, + STATE(766), 1, + sym_enum_variant_list, STATE(3232), 2, sym_line_comment, sym_block_comment, - [92599] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [93198] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5059), 1, - anon_sym_LBRACE, - STATE(1273), 1, - sym_declaration_list, + ACTIONS(6867), 1, + anon_sym_STAR_SLASH, + ACTIONS(6869), 1, + sym__block_comment_content, STATE(3233), 2, sym_line_comment, sym_block_comment, - [92616] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [93215] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5059), 1, - anon_sym_LBRACE, - STATE(1192), 1, - sym_declaration_list, + STATE(227), 1, + sym_closure_parameters, STATE(3234), 2, sym_line_comment, sym_block_comment, - [92633] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [93232] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5589), 1, - sym_super, - ACTIONS(6836), 1, - sym_identifier, + ACTIONS(6871), 1, + anon_sym_SEMI, + ACTIONS(6873), 1, + anon_sym_EQ, STATE(3235), 2, sym_line_comment, sym_block_comment, - [92650] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [93249] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6838), 1, - sym_identifier, - ACTIONS(6840), 1, - sym_super, + ACTIONS(5381), 1, + anon_sym_RPAREN, + ACTIONS(6875), 1, + anon_sym_SEMI, STATE(3236), 2, sym_line_comment, sym_block_comment, - [92667] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [93266] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6842), 2, - anon_sym_RBRACE, - anon_sym_COMMA, + ACTIONS(5885), 1, + sym_super, + ACTIONS(5895), 1, + sym_identifier, STATE(3237), 2, sym_line_comment, sym_block_comment, - [92682] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [93283] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5589), 1, - sym_super, - ACTIONS(6844), 1, + ACTIONS(6877), 1, sym_identifier, + ACTIONS(6879), 1, + sym_super, STATE(3238), 2, sym_line_comment, sym_block_comment, - [92699] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [93300] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4746), 1, - anon_sym_COLON_COLON, - ACTIONS(5099), 1, - anon_sym_for, + ACTIONS(6881), 1, + sym_identifier, + ACTIONS(6883), 1, + sym_super, STATE(3239), 2, sym_line_comment, sym_block_comment, - [92716] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [93317] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(233), 1, - sym_closure_parameters, + ACTIONS(5758), 1, + sym_super, + ACTIONS(6885), 1, + sym_identifier, STATE(3240), 2, sym_line_comment, sym_block_comment, - [92733] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [93334] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6826), 1, - sym_super, - ACTIONS(6846), 1, - sym_identifier, + ACTIONS(6602), 2, + anon_sym_RBRACE, + anon_sym_COMMA, STATE(3241), 2, sym_line_comment, sym_block_comment, - [92750] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [93349] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3438), 1, - anon_sym_LT2, - STATE(1518), 1, - sym_type_arguments, + STATE(229), 1, + sym_closure_parameters, STATE(3242), 2, sym_line_comment, sym_block_comment, - [92767] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [93366] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6848), 2, - anon_sym_const, - sym_mutable_specifier, + ACTIONS(6887), 2, + sym__block_comment_content, + anon_sym_STAR_SLASH, STATE(3243), 2, sym_line_comment, sym_block_comment, - [92782] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [93381] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5676), 1, - sym_super, - ACTIONS(6846), 1, - sym_identifier, + ACTIONS(4704), 1, + anon_sym_LPAREN, + STATE(2332), 1, + sym_parameters, STATE(3244), 2, sym_line_comment, sym_block_comment, - [92799] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [93398] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5131), 1, - anon_sym_LBRACE, - STATE(671), 1, - sym_field_declaration_list, + ACTIONS(6889), 1, + sym_identifier, + ACTIONS(6891), 1, + sym_super, STATE(3245), 2, sym_line_comment, sym_block_comment, - [92816] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [93415] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5469), 1, - anon_sym_LBRACE, - STATE(1197), 1, - sym_enum_variant_list, + ACTIONS(6893), 1, + sym_identifier, + ACTIONS(6895), 1, + sym_super, STATE(3246), 2, sym_line_comment, sym_block_comment, - [92833] = 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(5131), 1, - anon_sym_LBRACE, - STATE(577), 1, - sym_field_declaration_list, + ACTIONS(4863), 1, + anon_sym_BANG, + ACTIONS(4931), 1, + anon_sym_COLON_COLON, STATE(3247), 2, sym_line_comment, sym_block_comment, - [92850] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [93449] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6850), 1, - anon_sym_STAR_SLASH, - ACTIONS(6852), 1, - sym__block_comment_content, + ACTIONS(5885), 1, + sym_super, + ACTIONS(6057), 1, + sym_identifier, STATE(3248), 2, sym_line_comment, sym_block_comment, - [92867] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [93466] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6319), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(6883), 1, + sym_super, + ACTIONS(6897), 1, + sym_identifier, STATE(3249), 2, sym_line_comment, sym_block_comment, - [92882] = 5, + [93483] = 5, 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(248), 1, + STATE(263), 1, sym_closure_parameters, STATE(3250), 2, sym_line_comment, sym_block_comment, - [92899] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [93500] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5589), 1, - sym_super, - ACTIONS(6854), 1, - sym_identifier, + ACTIONS(4921), 1, + anon_sym_COLON_COLON, + ACTIONS(5001), 1, + anon_sym_BANG, STATE(3251), 2, sym_line_comment, sym_block_comment, - [92916] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [93517] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5970), 2, - sym_identifier, - sym_super, + ACTIONS(3192), 1, + anon_sym_PLUS, + ACTIONS(4006), 1, + anon_sym_COLON, STATE(3252), 2, sym_line_comment, sym_block_comment, - [92931] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [93534] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6856), 1, - anon_sym_SEMI, - ACTIONS(6858), 1, - anon_sym_EQ, + ACTIONS(5154), 1, + anon_sym_LBRACE, + STATE(1125), 1, + sym_field_declaration_list, STATE(3253), 2, sym_line_comment, sym_block_comment, - [92948] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [93551] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6816), 1, - sym_super, - ACTIONS(6860), 1, - sym_identifier, + ACTIONS(5100), 1, + anon_sym_LBRACE, + STATE(769), 1, + sym_field_declaration_list, STATE(3254), 2, sym_line_comment, sym_block_comment, - [92965] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [93568] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5306), 1, - sym_super, - ACTIONS(5898), 1, - sym_identifier, + STATE(230), 1, + sym_closure_parameters, STATE(3255), 2, sym_line_comment, sym_block_comment, - [92982] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [93585] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6820), 1, - sym_super, - ACTIONS(6838), 1, - sym_identifier, + ACTIONS(5100), 1, + anon_sym_LBRACE, + STATE(658), 1, + sym_field_declaration_list, STATE(3256), 2, sym_line_comment, sym_block_comment, - [92999] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [93602] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5067), 1, - anon_sym_LBRACE, - STATE(1200), 1, - sym_field_declaration_list, + ACTIONS(6899), 2, + anon_sym_const, + sym_mutable_specifier, STATE(3257), 2, sym_line_comment, sym_block_comment, - [93016] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [93617] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5093), 1, - anon_sym_LBRACE, - STATE(578), 1, - sym_declaration_list, + ACTIONS(6321), 1, + sym_identifier, + ACTIONS(6325), 1, + sym_mutable_specifier, STATE(3258), 2, sym_line_comment, sym_block_comment, - [93033] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [93634] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5676), 1, - sym_super, - ACTIONS(6862), 1, - sym_identifier, + ACTIONS(5259), 1, + anon_sym_LBRACE, + STATE(506), 1, + sym_declaration_list, STATE(3259), 2, sym_line_comment, sym_block_comment, - [93050] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [93651] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5737), 1, - anon_sym_PIPE, - ACTIONS(6864), 1, - anon_sym_in, + ACTIONS(5100), 1, + anon_sym_LBRACE, + STATE(771), 1, + sym_field_declaration_list, STATE(3260), 2, sym_line_comment, sym_block_comment, - [93067] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [93668] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(249), 1, - sym_closure_parameters, + ACTIONS(6901), 1, + sym_identifier, + ACTIONS(6903), 1, + sym_super, STATE(3261), 2, sym_line_comment, sym_block_comment, - [93084] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [93685] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6866), 1, - anon_sym_LBRACK, - ACTIONS(6868), 1, - anon_sym_BANG, + ACTIONS(5259), 1, + anon_sym_LBRACE, + STATE(772), 1, + sym_declaration_list, STATE(3262), 2, sym_line_comment, sym_block_comment, - [93101] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [93702] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5093), 1, - anon_sym_LBRACE, - STATE(579), 1, - sym_declaration_list, + ACTIONS(6879), 1, + sym_super, + ACTIONS(6905), 1, + sym_identifier, STATE(3263), 2, sym_line_comment, sym_block_comment, - [93118] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [93719] = 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(6879), 1, + sym_super, + ACTIONS(6907), 1, + sym_identifier, STATE(3264), 2, sym_line_comment, sym_block_comment, - [93133] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [93736] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6872), 2, - anon_sym_const, - sym_mutable_specifier, + ACTIONS(6909), 1, + anon_sym_LT, + STATE(918), 1, + sym_type_parameters, STATE(3265), 2, sym_line_comment, sym_block_comment, - [93148] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [93753] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6545), 2, - anon_sym_RBRACE, - anon_sym_COMMA, + ACTIONS(6903), 1, + sym_super, + ACTIONS(6911), 1, + sym_identifier, STATE(3266), 2, sym_line_comment, sym_block_comment, - [93163] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [93770] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5067), 1, - anon_sym_LBRACE, - STATE(1203), 1, - sym_field_declaration_list, + ACTIONS(5883), 1, + sym_identifier, + ACTIONS(5885), 1, + sym_super, STATE(3267), 2, sym_line_comment, sym_block_comment, - [93180] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [93787] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6874), 1, - anon_sym_SEMI, - ACTIONS(6876), 1, - anon_sym_as, + ACTIONS(6883), 1, + sym_super, + ACTIONS(6913), 1, + sym_identifier, STATE(3268), 2, sym_line_comment, sym_block_comment, - [93197] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [93804] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6816), 1, - sym_super, - ACTIONS(6878), 1, - sym_identifier, + ACTIONS(4704), 1, + anon_sym_LPAREN, + STATE(2520), 1, + sym_parameters, STATE(3269), 2, sym_line_comment, sym_block_comment, - [93214] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [93821] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5676), 2, - sym_identifier, - sym_super, + ACTIONS(3456), 1, + anon_sym_LPAREN, + STATE(1413), 1, + sym_parameters, STATE(3270), 2, sym_line_comment, sym_block_comment, - [93229] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [93838] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(220), 1, - sym_closure_parameters, + ACTIONS(4704), 1, + anon_sym_LPAREN, + STATE(2511), 1, + sym_parameters, STATE(3271), 2, sym_line_comment, sym_block_comment, - [93246] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [93855] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3084), 1, - anon_sym_SQUOTE, - STATE(3027), 1, - sym_lifetime, + ACTIONS(6915), 1, + sym_identifier, + ACTIONS(6917), 1, + sym_super, STATE(3272), 2, sym_line_comment, sym_block_comment, - [93263] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [93872] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6564), 2, - anon_sym_GT, - anon_sym_COMMA, + ACTIONS(4704), 1, + anon_sym_LPAREN, + STATE(2303), 1, + sym_parameters, STATE(3273), 2, sym_line_comment, sym_block_comment, - [93278] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [93889] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(247), 1, - sym_closure_parameters, + ACTIONS(6919), 2, + anon_sym_const, + sym_mutable_specifier, STATE(3274), 2, sym_line_comment, sym_block_comment, - [93295] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [93904] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6826), 1, + ACTIONS(5700), 1, sym_super, - ACTIONS(6880), 1, + ACTIONS(6921), 1, sym_identifier, STATE(3275), 2, sym_line_comment, sym_block_comment, - [93312] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [93921] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6822), 1, - anon_sym_LT, - STATE(949), 1, - sym_type_parameters, + ACTIONS(6923), 2, + anon_sym_const, + sym_mutable_specifier, STATE(3276), 2, sym_line_comment, sym_block_comment, - [93329] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [93936] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(256), 1, - sym_closure_parameters, + ACTIONS(5381), 1, + anon_sym_RBRACK, + ACTIONS(6875), 1, + anon_sym_SEMI, STATE(3277), 2, sym_line_comment, sym_block_comment, - [93346] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [93953] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6882), 1, - sym_identifier, - ACTIONS(6884), 1, - sym_super, + ACTIONS(4784), 1, + anon_sym_COLON_COLON, + ACTIONS(6596), 1, + anon_sym_for, STATE(3278), 2, sym_line_comment, sym_block_comment, - [93363] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [93970] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6886), 2, - anon_sym_const, - sym_mutable_specifier, + ACTIONS(6903), 2, + sym_identifier, + sym_super, STATE(3279), 2, sym_line_comment, sym_block_comment, - [93378] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [93985] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5831), 1, - sym_super, - ACTIONS(5833), 1, - sym_identifier, + ACTIONS(3644), 1, + anon_sym_LBRACE, + STATE(1559), 1, + sym_field_initializer_list, STATE(3280), 2, sym_line_comment, sym_block_comment, - [93395] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [94002] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6840), 1, + ACTIONS(6861), 1, sym_super, - ACTIONS(6888), 1, + ACTIONS(6925), 1, sym_identifier, STATE(3281), 2, sym_line_comment, sym_block_comment, - [93412] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [94019] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6890), 1, - anon_sym_SEMI, - ACTIONS(6892), 1, - anon_sym_EQ, + ACTIONS(6903), 1, + sym_super, + ACTIONS(6927), 1, + sym_identifier, STATE(3282), 2, sym_line_comment, sym_block_comment, - [93429] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [94036] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(243), 1, - sym_closure_parameters, + ACTIONS(5903), 1, + sym_super, + ACTIONS(6013), 1, + sym_identifier, STATE(3283), 2, sym_line_comment, sym_block_comment, - [93446] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [94053] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5093), 1, - anon_sym_LBRACE, - STATE(732), 1, - sym_declaration_list, + ACTIONS(6929), 1, + sym_identifier, + ACTIONS(6931), 1, + sym_super, STATE(3284), 2, sym_line_comment, sym_block_comment, - [93463] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [94070] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5131), 1, - anon_sym_LBRACE, - STATE(585), 1, - sym_field_declaration_list, + ACTIONS(6933), 2, + anon_sym_RBRACE, + anon_sym_COMMA, STATE(3285), 2, sym_line_comment, sym_block_comment, - [93480] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [94085] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6804), 1, - anon_sym_COLON_COLON, - ACTIONS(6894), 1, - anon_sym_RPAREN, + ACTIONS(4174), 1, + anon_sym_LPAREN, + STATE(1709), 1, + sym_parameters, STATE(3286), 2, sym_line_comment, sym_block_comment, - [93497] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [94102] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6826), 1, - sym_super, - ACTIONS(6896), 1, + ACTIONS(6935), 1, sym_identifier, + ACTIONS(6937), 1, + sym_super, STATE(3287), 2, sym_line_comment, sym_block_comment, - [93514] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [94119] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6822), 1, - anon_sym_LT, - STATE(950), 1, - sym_type_parameters, + ACTIONS(6939), 2, + anon_sym_const, + sym_mutable_specifier, STATE(3288), 2, sym_line_comment, sym_block_comment, - [93531] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [94134] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4746), 1, - anon_sym_COLON_COLON, - ACTIONS(6586), 1, - anon_sym_for, + ACTIONS(5700), 1, + sym_super, + ACTIONS(6877), 1, + sym_identifier, STATE(3289), 2, sym_line_comment, sym_block_comment, - [93548] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [94151] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6816), 1, + ACTIONS(6903), 1, sym_super, - ACTIONS(6898), 1, + ACTIONS(6941), 1, sym_identifier, STATE(3290), 2, sym_line_comment, sym_block_comment, - [93565] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [94168] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5831), 1, + ACTIONS(5337), 1, sym_super, - ACTIONS(5918), 1, + ACTIONS(6057), 1, sym_identifier, STATE(3291), 2, sym_line_comment, sym_block_comment, - [93582] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [94185] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6840), 1, - sym_super, - ACTIONS(6900), 1, + ACTIONS(6897), 1, sym_identifier, + ACTIONS(6937), 1, + sym_super, STATE(3292), 2, sym_line_comment, sym_block_comment, - [93599] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [94202] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6806), 1, - anon_sym_COLON_COLON, - ACTIONS(6894), 1, - anon_sym_RPAREN, + ACTIONS(6879), 1, + sym_super, + ACTIONS(6943), 1, + sym_identifier, STATE(3293), 2, sym_line_comment, sym_block_comment, - [93616] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [94219] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5461), 1, - anon_sym_LBRACE, - STATE(557), 1, - sym_enum_variant_list, + ACTIONS(5885), 1, + sym_super, + ACTIONS(6055), 1, + sym_identifier, STATE(3294), 2, sym_line_comment, sym_block_comment, - [93633] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [94236] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6902), 1, - anon_sym_SEMI, - ACTIONS(6904), 1, - anon_sym_RPAREN, + ACTIONS(6883), 1, + sym_super, + ACTIONS(6945), 1, + sym_identifier, STATE(3295), 2, sym_line_comment, sym_block_comment, - [93650] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [94253] = 5, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(6011), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(6879), 1, + sym_super, + ACTIONS(6947), 1, + sym_identifier, STATE(3296), 2, sym_line_comment, sym_block_comment, - [93665] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [94270] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5469), 1, - anon_sym_LBRACE, - STATE(1152), 1, - sym_enum_variant_list, + ACTIONS(5885), 1, + sym_super, + ACTIONS(6082), 1, + sym_identifier, STATE(3297), 2, sym_line_comment, sym_block_comment, - [93682] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [94287] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4883), 1, - anon_sym_COLON_COLON, - ACTIONS(4993), 1, - anon_sym_BANG, + ACTIONS(6883), 1, + sym_super, + ACTIONS(6949), 1, + sym_identifier, STATE(3298), 2, sym_line_comment, sym_block_comment, - [93699] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [94304] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6906), 2, - anon_sym_GT, - anon_sym_COMMA, + ACTIONS(6879), 1, + sym_super, + ACTIONS(6951), 1, + sym_identifier, STATE(3299), 2, sym_line_comment, sym_block_comment, - [93714] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [94321] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6908), 1, - sym_identifier, - ACTIONS(6910), 1, + ACTIONS(5885), 1, sym_super, + ACTIONS(6094), 1, + sym_identifier, STATE(3300), 2, sym_line_comment, sym_block_comment, - [93731] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [94338] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5676), 1, + ACTIONS(6883), 1, sym_super, - ACTIONS(6912), 1, + ACTIONS(6953), 1, sym_identifier, STATE(3301), 2, sym_line_comment, sym_block_comment, - [93748] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [94355] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6816), 1, + ACTIONS(5700), 1, sym_super, - ACTIONS(6914), 1, + ACTIONS(6951), 1, sym_identifier, STATE(3302), 2, sym_line_comment, sym_block_comment, - [93765] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [94372] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5930), 1, + ACTIONS(5337), 1, sym_super, - ACTIONS(5980), 1, + ACTIONS(6094), 1, sym_identifier, STATE(3303), 2, sym_line_comment, sym_block_comment, - [93782] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [94389] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6824), 1, + ACTIONS(6937), 1, sym_super, - ACTIONS(6916), 1, + ACTIONS(6953), 1, sym_identifier, STATE(3304), 2, sym_line_comment, sym_block_comment, - [93799] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [94406] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5059), 1, + ACTIONS(5259), 1, anon_sym_LBRACE, - STATE(1357), 1, + STATE(747), 1, sym_declaration_list, STATE(3305), 2, sym_line_comment, sym_block_comment, - [93816] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [94423] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6808), 1, - anon_sym_COLON_COLON, - ACTIONS(6894), 1, - anon_sym_RPAREN, + ACTIONS(5393), 1, + anon_sym_RBRACE, + ACTIONS(6875), 1, + anon_sym_SEMI, STATE(3306), 2, sym_line_comment, sym_block_comment, - [93833] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [94440] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(255), 1, - sym_closure_parameters, + ACTIONS(5224), 1, + anon_sym_LBRACE, + STATE(1130), 1, + sym_declaration_list, STATE(3307), 2, sym_line_comment, sym_block_comment, - [93850] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [94457] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5676), 1, - sym_super, - ACTIONS(6880), 1, - sym_identifier, + ACTIONS(3192), 1, + anon_sym_PLUS, + ACTIONS(4024), 1, + anon_sym_COLON, STATE(3308), 2, sym_line_comment, sym_block_comment, - [93867] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [94474] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6816), 1, - sym_super, - ACTIONS(6844), 1, - sym_identifier, + ACTIONS(5455), 1, + anon_sym_LBRACE, + STATE(681), 1, + sym_enum_variant_list, STATE(3309), 2, sym_line_comment, sym_block_comment, - [93884] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [94491] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5306), 1, - sym_super, - ACTIONS(5833), 1, - sym_identifier, + ACTIONS(3432), 2, + anon_sym_RBRACE, + anon_sym_COMMA, STATE(3310), 2, sym_line_comment, sym_block_comment, - [93901] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [94506] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6820), 1, - sym_super, - ACTIONS(6888), 1, - sym_identifier, + ACTIONS(4440), 1, + anon_sym_EQ_GT, + ACTIONS(6955), 1, + anon_sym_AMP_AMP, STATE(3311), 2, sym_line_comment, sym_block_comment, - [93918] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [94523] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6826), 1, - sym_super, - ACTIONS(6918), 1, - sym_identifier, + ACTIONS(6730), 1, + anon_sym_EQ_GT, + ACTIONS(6955), 1, + anon_sym_AMP_AMP, STATE(3312), 2, sym_line_comment, sym_block_comment, - [93935] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [94540] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5829), 1, - sym_identifier, - ACTIONS(5831), 1, - sym_super, + ACTIONS(6909), 1, + anon_sym_LT, + STATE(977), 1, + sym_type_parameters, STATE(3313), 2, sym_line_comment, sym_block_comment, - [93952] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [94557] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6840), 1, - sym_super, - ACTIONS(6920), 1, + ACTIONS(6957), 2, sym_identifier, + sym_metavariable, STATE(3314), 2, sym_line_comment, sym_block_comment, - [93969] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [94572] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6826), 1, - sym_super, - ACTIONS(6922), 1, - sym_identifier, + ACTIONS(5469), 1, + anon_sym_LBRACE, + STATE(1335), 1, + sym_enum_variant_list, STATE(3315), 2, sym_line_comment, sym_block_comment, - [93986] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [94589] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5831), 1, - sym_super, - ACTIONS(5886), 1, - sym_identifier, + ACTIONS(6959), 1, + anon_sym_LPAREN, + ACTIONS(6961), 1, + anon_sym_COLON_COLON, STATE(3316), 2, sym_line_comment, sym_block_comment, - [94003] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [94606] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6840), 1, - sym_super, - ACTIONS(6924), 1, - sym_identifier, + ACTIONS(5469), 1, + anon_sym_LBRACE, + STATE(1378), 1, + sym_enum_variant_list, STATE(3317), 2, sym_line_comment, sym_block_comment, - [94020] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [94623] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6826), 1, - sym_super, - ACTIONS(6926), 1, - sym_identifier, + ACTIONS(6963), 2, + anon_sym_const, + sym_mutable_specifier, STATE(3318), 2, sym_line_comment, sym_block_comment, - [94037] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [94638] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5831), 1, - sym_super, - ACTIONS(5904), 1, - sym_identifier, + ACTIONS(3594), 1, + anon_sym_PLUS, + ACTIONS(3710), 1, + anon_sym_COLON_COLON, STATE(3319), 2, sym_line_comment, sym_block_comment, - [94054] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [94655] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6840), 1, - sym_super, - ACTIONS(6928), 1, - sym_identifier, + ACTIONS(3594), 1, + anon_sym_PLUS, + ACTIONS(3714), 1, + anon_sym_COLON_COLON, STATE(3320), 2, sym_line_comment, sym_block_comment, - [94071] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [94672] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5676), 1, - sym_super, - ACTIONS(6926), 1, - sym_identifier, + ACTIONS(6965), 1, + anon_sym_BANG, + ACTIONS(6967), 1, + anon_sym_COLON_COLON, STATE(3321), 2, sym_line_comment, sym_block_comment, - [94088] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [94689] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5306), 1, - sym_super, - ACTIONS(5904), 1, + ACTIONS(6969), 1, sym_identifier, + ACTIONS(6971), 1, + sym_mutable_specifier, STATE(3322), 2, sym_line_comment, sym_block_comment, - [94105] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [94706] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6820), 1, - sym_super, - ACTIONS(6928), 1, - sym_identifier, + STATE(265), 1, + sym_closure_parameters, STATE(3323), 2, sym_line_comment, sym_block_comment, - [94122] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [94723] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5306), 2, - sym_identifier, - sym_super, + ACTIONS(4863), 1, + anon_sym_BANG, + ACTIONS(4939), 1, + anon_sym_COLON_COLON, STATE(3324), 2, sym_line_comment, sym_block_comment, - [94137] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [94740] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4819), 1, - anon_sym_BANG, - ACTIONS(4875), 1, - anon_sym_COLON_COLON, + ACTIONS(5700), 1, + sym_super, + ACTIONS(6973), 1, + sym_identifier, STATE(3325), 2, sym_line_comment, sym_block_comment, - [94154] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [94757] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4819), 1, - anon_sym_BANG, - ACTIONS(4865), 1, - anon_sym_COLON_COLON, + STATE(256), 1, + sym_closure_parameters, STATE(3326), 2, sym_line_comment, sym_block_comment, - [94171] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [94774] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4206), 1, - anon_sym_LBRACE, - STATE(1752), 1, - sym_field_initializer_list, + ACTIONS(6879), 2, + sym_identifier, + sym_super, STATE(3327), 2, sym_line_comment, sym_block_comment, - [94188] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [94789] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4674), 1, - anon_sym_LPAREN, - STATE(2456), 1, - sym_parameters, + ACTIONS(5722), 1, + anon_sym_PIPE, + ACTIONS(6975), 1, + anon_sym_EQ, STATE(3328), 2, sym_line_comment, sym_block_comment, - [94205] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [94806] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5428), 1, - anon_sym_RBRACE, - ACTIONS(6902), 1, - anon_sym_SEMI, + ACTIONS(6977), 2, + sym__block_comment_content, + anon_sym_STAR_SLASH, STATE(3329), 2, sym_line_comment, sym_block_comment, - [94222] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [94821] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5059), 1, - anon_sym_LBRACE, - STATE(1366), 1, - sym_declaration_list, + ACTIONS(6009), 1, + sym_identifier, + ACTIONS(6011), 1, + sym_super, STATE(3330), 2, sym_line_comment, sym_block_comment, - [94239] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [94838] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5059), 1, - anon_sym_LBRACE, - STATE(1367), 1, - sym_declaration_list, + STATE(266), 1, + sym_closure_parameters, STATE(3331), 2, sym_line_comment, sym_block_comment, - [94256] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [94855] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6820), 1, - sym_super, - ACTIONS(6930), 1, - sym_identifier, + ACTIONS(5455), 1, + anon_sym_LBRACE, + STATE(627), 1, + sym_enum_variant_list, STATE(3332), 2, sym_line_comment, sym_block_comment, - [94273] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [94872] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6832), 1, - anon_sym_LPAREN, - ACTIONS(6932), 1, - anon_sym_COLON_COLON, + ACTIONS(6979), 2, + sym_identifier, + sym_metavariable, STATE(3333), 2, sym_line_comment, sym_block_comment, - [94290] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [94887] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6902), 1, - anon_sym_SEMI, - ACTIONS(6934), 1, - anon_sym_RBRACE, + ACTIONS(5722), 1, + anon_sym_PIPE, + ACTIONS(6981), 1, + anon_sym_in, STATE(3334), 2, sym_line_comment, sym_block_comment, - [94307] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [94904] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6936), 2, - anon_sym_const, - sym_mutable_specifier, + ACTIONS(6909), 1, + anon_sym_LT, + STATE(965), 1, + sym_type_parameters, STATE(3335), 2, sym_line_comment, sym_block_comment, - [94322] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [94921] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3475), 1, - anon_sym_PLUS, - ACTIONS(3674), 1, - anon_sym_COLON_COLON, + STATE(255), 1, + sym_closure_parameters, STATE(3336), 2, sym_line_comment, sym_block_comment, - [94339] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [94938] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3475), 1, - anon_sym_PLUS, - ACTIONS(3676), 1, - anon_sym_COLON_COLON, + ACTIONS(5903), 2, + sym_identifier, + sym_super, STATE(3337), 2, sym_line_comment, sym_block_comment, - [94356] = 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(5093), 1, - anon_sym_LBRACE, - STATE(590), 1, - sym_declaration_list, + ACTIONS(6983), 1, + sym_identifier, + ACTIONS(6985), 1, + sym_super, STATE(3338), 2, sym_line_comment, sym_block_comment, - [94373] = 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(6938), 1, - anon_sym_BANG, - ACTIONS(6940), 1, - anon_sym_COLON_COLON, + ACTIONS(4704), 1, + anon_sym_LPAREN, + STATE(2308), 1, + sym_parameters, STATE(3339), 2, sym_line_comment, sym_block_comment, - [94390] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [94987] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5131), 1, - anon_sym_LBRACE, - STATE(673), 1, - sym_field_declaration_list, + ACTIONS(6650), 2, + anon_sym_PIPE, + anon_sym_COMMA, STATE(3340), 2, sym_line_comment, sym_block_comment, - [94407] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [95002] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5589), 1, - sym_super, - ACTIONS(6942), 1, - sym_identifier, + STATE(252), 1, + sym_closure_parameters, STATE(3341), 2, sym_line_comment, sym_block_comment, - [94424] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [95019] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6944), 2, - anon_sym_const, - sym_mutable_specifier, + ACTIONS(5758), 1, + sym_super, + ACTIONS(6987), 1, + sym_identifier, STATE(3342), 2, sym_line_comment, sym_block_comment, - [94439] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [95036] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6946), 1, + ACTIONS(6885), 1, sym_identifier, - ACTIONS(6948), 1, - sym_mutable_specifier, + ACTIONS(6903), 1, + sym_super, STATE(3343), 2, sym_line_comment, sym_block_comment, - [94456] = 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(5093), 1, - anon_sym_LBRACE, - STATE(674), 1, - sym_declaration_list, + ACTIONS(5337), 1, + sym_super, + ACTIONS(5895), 1, + sym_identifier, STATE(3344), 2, sym_line_comment, sym_block_comment, - [94473] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [95070] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5524), 2, + ACTIONS(5341), 2, anon_sym_RPAREN, anon_sym_COMMA, STATE(3345), 2, sym_line_comment, sym_block_comment, - [94488] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [95085] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5093), 1, - anon_sym_LBRACE, - STATE(741), 1, - sym_declaration_list, + ACTIONS(6663), 2, + anon_sym_RBRACE, + anon_sym_COMMA, STATE(3346), 2, sym_line_comment, sym_block_comment, - [94505] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [95100] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6950), 2, - sym_float_literal, - sym_integer_literal, + ACTIONS(6881), 1, + sym_identifier, + ACTIONS(6937), 1, + sym_super, STATE(3347), 2, sym_line_comment, sym_block_comment, - [94520] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [95117] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6826), 1, - sym_super, - ACTIONS(6952), 1, - sym_identifier, + ACTIONS(6989), 1, + anon_sym_SEMI, + ACTIONS(6991), 1, + anon_sym_EQ, STATE(3348), 2, sym_line_comment, sym_block_comment, - [94537] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [95134] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6954), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(5154), 1, + anon_sym_LBRACE, + STATE(1347), 1, + sym_field_declaration_list, STATE(3349), 2, sym_line_comment, sym_block_comment, - [94552] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [95151] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6956), 2, - anon_sym_const, - sym_mutable_specifier, + ACTIONS(5421), 1, + anon_sym_RPAREN, + ACTIONS(6875), 1, + anon_sym_SEMI, STATE(3350), 2, sym_line_comment, sym_block_comment, - [94567] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [95168] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6643), 2, - anon_sym_GT, - anon_sym_COMMA, + ACTIONS(5421), 1, + anon_sym_RBRACK, + ACTIONS(6875), 1, + anon_sym_SEMI, STATE(3351), 2, sym_line_comment, sym_block_comment, - [94582] = 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(5093), 1, - anon_sym_LBRACE, - STATE(742), 1, - sym_declaration_list, + ACTIONS(5423), 1, + anon_sym_RPAREN, + ACTIONS(6875), 1, + anon_sym_SEMI, STATE(3352), 2, sym_line_comment, sym_block_comment, - [94599] = 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(3430), 1, - anon_sym_LPAREN, - STATE(1294), 1, - sym_parameters, + ACTIONS(5423), 1, + anon_sym_RBRACK, + ACTIONS(6875), 1, + anon_sym_SEMI, STATE(3353), 2, sym_line_comment, sym_block_comment, - [94616] = 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(6822), 1, - anon_sym_LT, - STATE(969), 1, - sym_type_parameters, + ACTIONS(3192), 1, + anon_sym_PLUS, + ACTIONS(4088), 1, + anon_sym_COLON, STATE(3354), 2, sym_line_comment, sym_block_comment, - [94633] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [95236] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6902), 1, - anon_sym_SEMI, - ACTIONS(6958), 1, - anon_sym_RBRACE, + ACTIONS(5224), 1, + anon_sym_LBRACE, + STATE(1351), 1, + sym_declaration_list, STATE(3355), 2, sym_line_comment, sym_block_comment, - [94650] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [95253] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4674), 1, - anon_sym_LPAREN, - STATE(2306), 1, - sym_parameters, + ACTIONS(5259), 1, + anon_sym_LBRACE, + STATE(604), 1, + sym_declaration_list, STATE(3356), 2, sym_line_comment, sym_block_comment, - [94667] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [95270] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6884), 2, - sym_identifier, - sym_super, + ACTIONS(5100), 1, + anon_sym_LBRACE, + STATE(556), 1, + sym_field_declaration_list, STATE(3357), 2, sym_line_comment, sym_block_comment, - [94682] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [95287] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3210), 1, + ACTIONS(3192), 1, anon_sym_PLUS, - ACTIONS(3810), 1, + ACTIONS(4092), 1, anon_sym_COLON, STATE(3358), 2, sym_line_comment, sym_block_comment, - [94699] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [95304] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3210), 1, - anon_sym_PLUS, - ACTIONS(3814), 1, - anon_sym_COLON, + ACTIONS(6909), 1, + anon_sym_LT, + STATE(942), 1, + sym_type_parameters, STATE(3359), 2, sym_line_comment, sym_block_comment, - [94716] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [95321] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4674), 1, - anon_sym_LPAREN, - STATE(2314), 1, - sym_parameters, + ACTIONS(5469), 1, + anon_sym_LBRACE, + STATE(1135), 1, + sym_enum_variant_list, STATE(3360), 2, sym_line_comment, sym_block_comment, - [94733] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [95338] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4502), 1, - anon_sym_EQ_GT, - ACTIONS(6960), 1, - anon_sym_AMP_AMP, + ACTIONS(5259), 1, + anon_sym_LBRACE, + STATE(634), 1, + sym_declaration_list, STATE(3361), 2, sym_line_comment, sym_block_comment, - [94750] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [95355] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6605), 1, - anon_sym_EQ_GT, - ACTIONS(6960), 1, - anon_sym_AMP_AMP, + ACTIONS(6136), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(3362), 2, sym_line_comment, sym_block_comment, - [94767] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [95370] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6902), 1, - anon_sym_SEMI, - ACTIONS(6904), 1, - anon_sym_RBRACK, + ACTIONS(4174), 1, + anon_sym_LPAREN, + STATE(1688), 1, + sym_parameters, STATE(3363), 2, sym_line_comment, sym_block_comment, - [94784] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [95387] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5342), 1, - anon_sym_RPAREN, - ACTIONS(6902), 1, - anon_sym_SEMI, + ACTIONS(5722), 1, + anon_sym_PIPE, + ACTIONS(6993), 1, + anon_sym_in, STATE(3364), 2, sym_line_comment, sym_block_comment, - [94801] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [95404] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6816), 2, - sym_identifier, - sym_super, + STATE(251), 1, + sym_closure_parameters, STATE(3365), 2, sym_line_comment, sym_block_comment, - [94816] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [95421] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5342), 1, - anon_sym_RBRACK, - ACTIONS(6902), 1, + ACTIONS(6995), 1, anon_sym_SEMI, + ACTIONS(6997), 1, + anon_sym_EQ, STATE(3366), 2, sym_line_comment, sym_block_comment, - [94833] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [95438] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5344), 1, - anon_sym_RPAREN, - ACTIONS(6902), 1, - anon_sym_SEMI, + ACTIONS(6937), 2, + sym_identifier, + sym_super, STATE(3367), 2, sym_line_comment, sym_block_comment, - [94850] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [95453] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5344), 1, - anon_sym_RBRACK, - ACTIONS(6902), 1, - anon_sym_SEMI, + ACTIONS(6138), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(3368), 2, sym_line_comment, sym_block_comment, - [94867] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [95468] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6962), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(5226), 1, + anon_sym_COLON, + STATE(2599), 1, + sym_trait_bounds, STATE(3369), 2, sym_line_comment, sym_block_comment, - [94882] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [95485] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(219), 1, - sym_closure_parameters, + ACTIONS(5573), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(3370), 2, sym_line_comment, sym_block_comment, - [94899] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [95500] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6902), 1, - anon_sym_SEMI, - ACTIONS(6964), 1, - anon_sym_RBRACE, + ACTIONS(6999), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(3371), 2, sym_line_comment, sym_block_comment, - [94916] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [95515] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5131), 1, - anon_sym_LBRACE, - STATE(751), 1, - sym_field_declaration_list, + ACTIONS(4704), 1, + anon_sym_LPAREN, + STATE(2315), 1, + sym_parameters, STATE(3372), 2, sym_line_comment, sym_block_comment, - [94933] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [95532] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6966), 2, - sym__block_comment_content, - anon_sym_STAR_SLASH, + ACTIONS(5395), 1, + anon_sym_RPAREN, + ACTIONS(6875), 1, + anon_sym_SEMI, STATE(3373), 2, sym_line_comment, sym_block_comment, - [94948] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [95549] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5093), 1, - anon_sym_LBRACE, - STATE(650), 1, - sym_declaration_list, + ACTIONS(6691), 2, + anon_sym_GT, + anon_sym_COMMA, STATE(3374), 2, sym_line_comment, sym_block_comment, - [94965] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [95564] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6968), 1, - sym_identifier, - ACTIONS(6970), 1, - sym_mutable_specifier, + ACTIONS(5154), 1, + anon_sym_LBRACE, + STATE(1357), 1, + sym_field_declaration_list, STATE(3375), 2, sym_line_comment, sym_block_comment, - [94982] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [95581] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6972), 2, - anon_sym_GT, - anon_sym_COMMA, + ACTIONS(6875), 1, + anon_sym_SEMI, + ACTIONS(7001), 1, + anon_sym_RPAREN, STATE(3376), 2, sym_line_comment, sym_block_comment, - [94997] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [95598] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5306), 1, - sym_super, - ACTIONS(5811), 1, - sym_identifier, + ACTIONS(6875), 1, + anon_sym_SEMI, + ACTIONS(7001), 1, + anon_sym_RBRACK, STATE(3377), 2, sym_line_comment, sym_block_comment, - [95014] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [95615] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5831), 2, - sym_identifier, - sym_super, + ACTIONS(6875), 1, + anon_sym_SEMI, + ACTIONS(7003), 1, + anon_sym_RPAREN, STATE(3378), 2, sym_line_comment, sym_block_comment, - [95029] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [95632] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6820), 1, - sym_super, - ACTIONS(6974), 1, - sym_identifier, + ACTIONS(6875), 1, + anon_sym_SEMI, + ACTIONS(7003), 1, + anon_sym_RBRACK, STATE(3379), 2, sym_line_comment, sym_block_comment, - [95046] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [95649] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6976), 2, - anon_sym_GT, - anon_sym_COMMA, + ACTIONS(5337), 1, + sym_super, + ACTIONS(5901), 1, + sym_identifier, STATE(3380), 2, sym_line_comment, sym_block_comment, - [95061] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [95666] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4674), 1, - anon_sym_LPAREN, - STATE(2328), 1, - sym_parameters, + ACTIONS(5395), 1, + anon_sym_RBRACK, + ACTIONS(6875), 1, + anon_sym_SEMI, STATE(3381), 2, sym_line_comment, sym_block_comment, - [95078] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [95683] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6902), 1, - anon_sym_SEMI, - ACTIONS(6978), 1, - anon_sym_RPAREN, + STATE(242), 1, + sym_closure_parameters, STATE(3382), 2, sym_line_comment, sym_block_comment, - [95095] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [95700] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6694), 2, + ACTIONS(7005), 2, anon_sym_GT, anon_sym_COMMA, STATE(3383), 2, sym_line_comment, sym_block_comment, - [95110] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [95715] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6980), 2, - sym__block_comment_content, - anon_sym_STAR_SLASH, + ACTIONS(6696), 2, + anon_sym_GT, + anon_sym_COMMA, STATE(3384), 2, sym_line_comment, sym_block_comment, - [95125] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [95730] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4184), 1, - anon_sym_LT2, - STATE(1875), 1, - sym_type_arguments, + ACTIONS(5259), 1, + anon_sym_LBRACE, + STATE(659), 1, + sym_declaration_list, STATE(3385), 2, sym_line_comment, sym_block_comment, - [95142] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [95747] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4674), 1, - anon_sym_LPAREN, - STATE(2332), 1, - sym_parameters, + ACTIONS(6931), 2, + sym_identifier, + sym_super, STATE(3386), 2, sym_line_comment, sym_block_comment, - [95159] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [95762] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6902), 1, - anon_sym_SEMI, - ACTIONS(6978), 1, - anon_sym_RBRACK, + ACTIONS(5722), 1, + anon_sym_PIPE, + ACTIONS(7007), 1, + anon_sym_EQ, STATE(3387), 2, sym_line_comment, sym_block_comment, - [95176] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [95779] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6902), 1, - anon_sym_SEMI, - ACTIONS(6982), 1, - anon_sym_RPAREN, + ACTIONS(6883), 2, + sym_identifier, + sym_super, STATE(3388), 2, sym_line_comment, sym_block_comment, - [95193] = 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(6902), 1, + ACTIONS(7009), 1, anon_sym_SEMI, - ACTIONS(6982), 1, - anon_sym_RBRACK, + ACTIONS(7011), 1, + anon_sym_as, STATE(3389), 2, sym_line_comment, sym_block_comment, - [95210] = 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(6902), 1, - anon_sym_SEMI, - ACTIONS(6984), 1, - anon_sym_RPAREN, + ACTIONS(5885), 1, + sym_super, + ACTIONS(6023), 1, + sym_identifier, STATE(3390), 2, sym_line_comment, sym_block_comment, - [95227] = 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(6902), 1, - anon_sym_SEMI, - ACTIONS(6984), 1, - anon_sym_RBRACK, + ACTIONS(5154), 1, + anon_sym_LBRACE, + STATE(1138), 1, + sym_field_declaration_list, STATE(3391), 2, sym_line_comment, sym_block_comment, - [95244] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [95845] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6040), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(7013), 2, + sym_identifier, + sym_metavariable, STATE(3392), 2, sym_line_comment, sym_block_comment, - [95259] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [95860] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5059), 1, - anon_sym_LBRACE, - STATE(1123), 1, - sym_declaration_list, + ACTIONS(4784), 1, + anon_sym_COLON_COLON, + ACTIONS(5142), 1, + anon_sym_for, STATE(3393), 2, sym_line_comment, sym_block_comment, - [95276] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [95877] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6986), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(5100), 1, + anon_sym_LBRACE, + STATE(687), 1, + sym_field_declaration_list, STATE(3394), 2, sym_line_comment, sym_block_comment, - [95291] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [95894] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3084), 1, - anon_sym_SQUOTE, - STATE(3351), 1, - sym_lifetime, + ACTIONS(5154), 1, + anon_sym_LBRACE, + STATE(1141), 1, + sym_field_declaration_list, STATE(3395), 2, sym_line_comment, sym_block_comment, - [95308] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [95911] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, - anon_sym_PLUS, - ACTIONS(6988), 1, - anon_sym_GT, + ACTIONS(7015), 1, + anon_sym_RPAREN, + ACTIONS(7017), 1, + anon_sym_COLON_COLON, STATE(3396), 2, sym_line_comment, sym_block_comment, - [95325] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [95928] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6816), 1, - sym_super, - ACTIONS(6854), 1, - sym_identifier, + ACTIONS(4704), 1, + anon_sym_LPAREN, + STATE(2322), 1, + sym_parameters, STATE(3397), 2, sym_line_comment, sym_block_comment, - [95342] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [95945] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6910), 2, - sym_identifier, - sym_super, + ACTIONS(5100), 1, + anon_sym_LBRACE, + STATE(668), 1, + sym_field_declaration_list, STATE(3398), 2, sym_line_comment, sym_block_comment, - [95357] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [95962] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6990), 2, - anon_sym_RBRACE, - anon_sym_COMMA, + ACTIONS(7019), 1, + anon_sym_SEMI, + ACTIONS(7021), 1, + anon_sym_as, STATE(3399), 2, sym_line_comment, sym_block_comment, - [95372] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [95979] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6902), 1, - anon_sym_SEMI, - ACTIONS(6992), 1, - anon_sym_RBRACE, + ACTIONS(7017), 1, + anon_sym_COLON_COLON, + ACTIONS(7023), 1, + anon_sym_RPAREN, STATE(3400), 2, sym_line_comment, sym_block_comment, - [95389] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [95996] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4674), 1, - anon_sym_LPAREN, - STATE(2290), 1, - sym_parameters, + ACTIONS(4784), 1, + anon_sym_COLON_COLON, + ACTIONS(6496), 1, + anon_sym_for, STATE(3401), 2, sym_line_comment, sym_block_comment, - [95406] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [96013] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6994), 2, + ACTIONS(6746), 2, anon_sym_GT, anon_sym_COMMA, STATE(3402), 2, sym_line_comment, sym_block_comment, - [95421] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [96028] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5807), 1, - sym_identifier, - ACTIONS(5831), 1, + ACTIONS(6883), 1, sym_super, + ACTIONS(7025), 1, + sym_identifier, STATE(3403), 2, sym_line_comment, sym_block_comment, - [95438] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [96045] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6818), 1, - sym_identifier, - ACTIONS(6840), 1, - sym_super, + ACTIONS(7027), 1, + anon_sym_RPAREN, + ACTIONS(7029), 1, + anon_sym_COLON_COLON, STATE(3404), 2, sym_line_comment, sym_block_comment, - [95455] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [96062] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3210), 1, - anon_sym_PLUS, - ACTIONS(4074), 1, - anon_sym_COLON, + ACTIONS(6713), 2, + anon_sym_RBRACE, + anon_sym_COMMA, STATE(3405), 2, sym_line_comment, sym_block_comment, - [95472] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [96077] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4674), 1, - anon_sym_LPAREN, - STATE(2494), 1, - sym_parameters, + ACTIONS(6875), 1, + anon_sym_SEMI, + ACTIONS(7031), 1, + anon_sym_RPAREN, STATE(3406), 2, sym_line_comment, sym_block_comment, - [95489] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [96094] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5589), 2, - sym_identifier, - sym_super, + STATE(245), 1, + sym_closure_parameters, STATE(3407), 2, sym_line_comment, sym_block_comment, - [95504] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [96111] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6230), 2, - anon_sym_RBRACE, - anon_sym_COMMA, + ACTIONS(6875), 1, + anon_sym_SEMI, + ACTIONS(7031), 1, + anon_sym_RBRACK, STATE(3408), 2, sym_line_comment, sym_block_comment, - [95519] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [96128] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4674), 1, + ACTIONS(4174), 1, anon_sym_LPAREN, - STATE(2319), 1, + STATE(1703), 1, sym_parameters, STATE(3409), 2, sym_line_comment, sym_block_comment, - [95536] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [96145] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4746), 1, - anon_sym_COLON_COLON, - ACTIONS(6723), 1, - anon_sym_for, + ACTIONS(7033), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(3410), 2, sym_line_comment, sym_block_comment, - [95553] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [96160] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6822), 1, - anon_sym_LT, - STATE(995), 1, - sym_type_parameters, + ACTIONS(7035), 2, + anon_sym_GT, + anon_sym_COMMA, STATE(3411), 2, sym_line_comment, sym_block_comment, - [95570] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [96175] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5306), 1, - sym_super, - ACTIONS(5996), 1, - sym_identifier, + ACTIONS(5397), 1, + anon_sym_RBRACE, + ACTIONS(6875), 1, + anon_sym_SEMI, STATE(3412), 2, sym_line_comment, sym_block_comment, - [95587] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [96192] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6332), 1, - sym_identifier, - ACTIONS(6336), 1, - sym_mutable_specifier, + ACTIONS(7037), 2, + anon_sym_GT, + anon_sym_COMMA, STATE(3413), 2, sym_line_comment, sym_block_comment, - [95604] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [96207] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3430), 1, - anon_sym_LPAREN, - STATE(1333), 1, - sym_parameters, + ACTIONS(6875), 1, + anon_sym_SEMI, + ACTIONS(7039), 1, + anon_sym_RBRACE, STATE(3414), 2, sym_line_comment, sym_block_comment, - [95621] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [96224] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5589), 1, - sym_super, - ACTIONS(6814), 1, - sym_identifier, + ACTIONS(5259), 1, + anon_sym_LBRACE, + STATE(660), 1, + sym_declaration_list, STATE(3415), 2, sym_line_comment, sym_block_comment, - [95638] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [96241] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6996), 1, - anon_sym_LPAREN, - ACTIONS(6998), 1, - anon_sym_COLON_COLON, + ACTIONS(5259), 1, + anon_sym_LBRACE, + STATE(559), 1, + sym_declaration_list, STATE(3416), 2, sym_line_comment, sym_block_comment, - [95655] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [96258] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7000), 2, - anon_sym_GT, - anon_sym_COMMA, + ACTIONS(3192), 1, + anon_sym_PLUS, + ACTIONS(4036), 1, + anon_sym_COLON, STATE(3417), 2, sym_line_comment, sym_block_comment, - [95670] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [96275] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3475), 1, - anon_sym_PLUS, - ACTIONS(4298), 1, - anon_sym_COLON_COLON, + ACTIONS(5224), 1, + anon_sym_LBRACE, + STATE(1233), 1, + sym_declaration_list, STATE(3418), 2, sym_line_comment, sym_block_comment, - [95687] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [96292] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3475), 1, - anon_sym_PLUS, - ACTIONS(4352), 1, - anon_sym_COLON_COLON, + ACTIONS(6875), 1, + anon_sym_SEMI, + ACTIONS(7041), 1, + anon_sym_RPAREN, STATE(3419), 2, sym_line_comment, sym_block_comment, - [95704] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [96309] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4662), 1, - anon_sym_BANG, - ACTIONS(6940), 1, + ACTIONS(7029), 1, anon_sym_COLON_COLON, + ACTIONS(7043), 1, + anon_sym_RPAREN, STATE(3420), 2, sym_line_comment, sym_block_comment, - [95721] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [96326] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5131), 1, - anon_sym_LBRACE, - STATE(690), 1, - sym_field_declaration_list, + ACTIONS(6875), 1, + anon_sym_SEMI, + ACTIONS(7045), 1, + anon_sym_RBRACE, STATE(3421), 2, sym_line_comment, sym_block_comment, - [95738] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [96343] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6822), 1, - anon_sym_LT, - STATE(989), 1, - sym_type_parameters, + ACTIONS(6875), 1, + anon_sym_SEMI, + ACTIONS(7041), 1, + anon_sym_RBRACK, STATE(3422), 2, sym_line_comment, sym_block_comment, - [95755] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [96360] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5737), 1, - anon_sym_PIPE, - ACTIONS(7002), 1, - anon_sym_in, + ACTIONS(7047), 1, + anon_sym_LPAREN, + ACTIONS(7049), 1, + anon_sym_COLON_COLON, STATE(3423), 2, sym_line_comment, sym_block_comment, - [95772] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [96377] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(232), 1, - sym_closure_parameters, + ACTIONS(7051), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(3424), 2, sym_line_comment, sym_block_comment, - [95789] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [96392] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6761), 2, + ACTIONS(6875), 1, + anon_sym_SEMI, + ACTIONS(7053), 1, anon_sym_RBRACE, - anon_sym_COMMA, STATE(3425), 2, sym_line_comment, sym_block_comment, - [95804] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [96409] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7004), 2, - sym_float_literal, - sym_integer_literal, + ACTIONS(3594), 1, + anon_sym_PLUS, + ACTIONS(4374), 1, + anon_sym_COLON_COLON, STATE(3426), 2, sym_line_comment, sym_block_comment, - [95819] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [96426] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5396), 1, - anon_sym_RPAREN, - ACTIONS(6902), 1, - anon_sym_SEMI, + ACTIONS(3594), 1, + anon_sym_PLUS, + ACTIONS(4376), 1, + anon_sym_COLON_COLON, STATE(3427), 2, sym_line_comment, sym_block_comment, - [95836] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [96443] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5469), 1, - anon_sym_LBRACE, - STATE(1348), 1, - sym_enum_variant_list, + ACTIONS(6875), 1, + anon_sym_SEMI, + ACTIONS(7055), 1, + anon_sym_RBRACE, STATE(3428), 2, sym_line_comment, sym_block_comment, - [95853] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [96460] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4746), 1, + ACTIONS(4692), 1, + anon_sym_BANG, + ACTIONS(6967), 1, anon_sym_COLON_COLON, - ACTIONS(6741), 1, - anon_sym_for, STATE(3429), 2, sym_line_comment, sym_block_comment, - [95870] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [96477] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5737), 1, - anon_sym_PIPE, - ACTIONS(7006), 1, - anon_sym_EQ, + ACTIONS(5758), 1, + sym_super, + ACTIONS(7057), 1, + sym_identifier, STATE(3430), 2, sym_line_comment, sym_block_comment, - [95887] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [96494] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6832), 1, - anon_sym_LPAREN, - ACTIONS(7008), 1, - anon_sym_COLON_COLON, + ACTIONS(7059), 2, + anon_sym_const, + sym_mutable_specifier, STATE(3431), 2, sym_line_comment, sym_block_comment, - [95904] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [96509] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7010), 1, - sym_identifier, - ACTIONS(7012), 1, - sym_super, + ACTIONS(6909), 1, + anon_sym_LT, + STATE(985), 1, + sym_type_parameters, STATE(3432), 2, sym_line_comment, sym_block_comment, - [95921] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [96526] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7014), 1, - anon_sym_BANG, - ACTIONS(7016), 1, - anon_sym_COLON_COLON, + ACTIONS(5337), 1, + sym_super, + ACTIONS(5869), 1, + sym_identifier, STATE(3433), 2, sym_line_comment, sym_block_comment, - [95938] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [96543] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5461), 1, + ACTIONS(5224), 1, anon_sym_LBRACE, - STATE(620), 1, - sym_enum_variant_list, + STATE(1242), 1, + sym_declaration_list, STATE(3434), 2, sym_line_comment, sym_block_comment, - [95955] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [96560] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6800), 1, - anon_sym_COLON_COLON, - ACTIONS(7018), 1, - anon_sym_RPAREN, + ACTIONS(7061), 2, + anon_sym_GT, + anon_sym_COMMA, STATE(3435), 2, sym_line_comment, sym_block_comment, - [95972] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [96575] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5396), 1, - anon_sym_RBRACK, - ACTIONS(6902), 1, + ACTIONS(7063), 1, anon_sym_SEMI, + ACTIONS(7065), 1, + anon_sym_as, STATE(3436), 2, sym_line_comment, sym_block_comment, - [95989] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [96592] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5093), 1, + ACTIONS(5455), 1, anon_sym_LBRACE, - STATE(658), 1, - sym_declaration_list, + STATE(540), 1, + sym_enum_variant_list, STATE(3437), 2, sym_line_comment, sym_block_comment, - [96006] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [96609] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5402), 1, - anon_sym_RBRACE, - ACTIONS(6902), 1, - anon_sym_SEMI, + ACTIONS(5224), 1, + anon_sym_LBRACE, + STATE(1243), 1, + sym_declaration_list, STATE(3438), 2, sym_line_comment, sym_block_comment, - [96023] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [96626] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6832), 1, - anon_sym_LPAREN, - ACTIONS(7020), 1, - anon_sym_COLON_COLON, + ACTIONS(5102), 1, + anon_sym_LT, + STATE(966), 1, + sym_type_parameters, STATE(3439), 2, sym_line_comment, sym_block_comment, - [96040] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [96643] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4662), 1, - anon_sym_BANG, - ACTIONS(7016), 1, + ACTIONS(7043), 1, + anon_sym_RPAREN, + ACTIONS(7067), 1, anon_sym_COLON_COLON, STATE(3440), 2, sym_line_comment, sym_block_comment, - [96057] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [96660] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(244), 1, - sym_closure_parameters, + ACTIONS(5722), 1, + anon_sym_PIPE, + ACTIONS(5746), 1, + anon_sym_COLON, STATE(3441), 2, sym_line_comment, sym_block_comment, - [96074] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [96677] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5461), 1, - anon_sym_LBRACE, - STATE(596), 1, - sym_enum_variant_list, + ACTIONS(5700), 2, + sym_identifier, + sym_super, STATE(3442), 2, sym_line_comment, sym_block_comment, - [96091] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [96692] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7022), 1, - anon_sym_LBRACK, - ACTIONS(7024), 1, - anon_sym_BANG, + ACTIONS(5259), 1, + anon_sym_LBRACE, + STATE(754), 1, + sym_declaration_list, STATE(3443), 2, sym_line_comment, sym_block_comment, - [96108] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [96709] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7026), 2, - sym_identifier, - sym_metavariable, + ACTIONS(6959), 1, + anon_sym_LPAREN, + ACTIONS(7069), 1, + anon_sym_COLON_COLON, STATE(3444), 2, sym_line_comment, sym_block_comment, - [96123] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [96726] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5067), 1, - anon_sym_LBRACE, - STATE(1402), 1, - sym_field_declaration_list, + ACTIONS(7071), 1, + anon_sym_LBRACK, + ACTIONS(7073), 1, + anon_sym_BANG, STATE(3445), 2, sym_line_comment, sym_block_comment, - [96140] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [96743] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7028), 2, - anon_sym_const, - sym_mutable_specifier, + ACTIONS(7075), 1, + anon_sym_BANG, + ACTIONS(7077), 1, + anon_sym_COLON_COLON, STATE(3446), 2, sym_line_comment, sym_block_comment, - [96155] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [96760] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(215), 1, - sym_closure_parameters, + ACTIONS(5758), 2, + sym_identifier, + sym_super, STATE(3447), 2, sym_line_comment, sym_block_comment, - [96172] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [96775] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5059), 1, - anon_sym_LBRACE, - STATE(1406), 1, - sym_declaration_list, + ACTIONS(7079), 2, + sym_float_literal, + sym_integer_literal, STATE(3448), 2, sym_line_comment, sym_block_comment, - [96189] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [96790] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5737), 1, - anon_sym_PIPE, - ACTIONS(7030), 1, - anon_sym_in, + ACTIONS(7081), 1, + anon_sym_SEMI, + ACTIONS(7083), 1, + anon_sym_EQ, STATE(3449), 2, sym_line_comment, sym_block_comment, - [96206] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [96807] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7032), 1, - anon_sym_SEMI, - ACTIONS(7034), 1, - anon_sym_EQ, + ACTIONS(5885), 2, + sym_identifier, + sym_super, STATE(3450), 2, sym_line_comment, sym_block_comment, - [96223] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [96822] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7036), 2, + ACTIONS(5758), 1, + sym_super, + ACTIONS(7085), 1, sym_identifier, - sym_metavariable, STATE(3451), 2, sym_line_comment, sym_block_comment, - [96238] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [96839] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5589), 1, - sym_super, - ACTIONS(6878), 1, - sym_identifier, + ACTIONS(6959), 1, + anon_sym_LPAREN, + ACTIONS(7087), 1, + anon_sym_COLON_COLON, STATE(3452), 2, sym_line_comment, sym_block_comment, - [96255] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [96856] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5067), 1, - anon_sym_LBRACE, - STATE(1412), 1, - sym_field_declaration_list, + ACTIONS(4692), 1, + anon_sym_BANG, + ACTIONS(7077), 1, + anon_sym_COLON_COLON, STATE(3453), 2, sym_line_comment, sym_block_comment, - [96272] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [96873] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6822), 1, - anon_sym_LT, - STATE(1015), 1, - sym_type_parameters, + ACTIONS(6937), 1, + sym_super, + ACTIONS(7089), 1, + sym_identifier, STATE(3454), 2, sym_line_comment, sym_block_comment, - [96289] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [96890] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6822), 1, - anon_sym_LT, - STATE(1016), 1, - sym_type_parameters, + ACTIONS(5259), 1, + anon_sym_LBRACE, + STATE(756), 1, + sym_declaration_list, STATE(3455), 2, sym_line_comment, sym_block_comment, - [96306] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [96907] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5093), 1, - anon_sym_LBRACE, - STATE(659), 1, - sym_declaration_list, + ACTIONS(4784), 1, + anon_sym_COLON_COLON, + ACTIONS(6283), 1, + anon_sym_for, STATE(3456), 2, sym_line_comment, sym_block_comment, - [96323] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [96924] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7038), 2, - sym_identifier, - sym_metavariable, + ACTIONS(7091), 1, + anon_sym_LBRACK, + ACTIONS(7093), 1, + anon_sym_BANG, STATE(3457), 2, sym_line_comment, sym_block_comment, - [96338] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [96941] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4746), 1, - anon_sym_COLON_COLON, - ACTIONS(5158), 1, - anon_sym_for, + ACTIONS(7095), 2, + sym_identifier, + sym_metavariable, STATE(3458), 2, sym_line_comment, sym_block_comment, - [96355] = 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(6840), 2, - sym_identifier, - sym_super, + ACTIONS(5224), 1, + anon_sym_LBRACE, + STATE(1169), 1, + sym_declaration_list, STATE(3459), 2, sym_line_comment, sym_block_comment, - [96370] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [96973] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7040), 1, + ACTIONS(5359), 1, + anon_sym_RBRACE, + ACTIONS(6875), 1, anon_sym_SEMI, - ACTIONS(7042), 1, - anon_sym_as, STATE(3460), 2, sym_line_comment, sym_block_comment, - [96387] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [96990] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4662), 1, - anon_sym_BANG, - ACTIONS(7044), 1, - anon_sym_COLON_COLON, + ACTIONS(7097), 2, + anon_sym_const, + sym_mutable_specifier, STATE(3461), 2, sym_line_comment, sym_block_comment, - [96404] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [97005] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7046), 2, - sym_identifier, - sym_metavariable, + ACTIONS(3110), 1, + anon_sym_SQUOTE, + STATE(3374), 1, + sym_lifetime, STATE(3462), 2, sym_line_comment, sym_block_comment, - [96419] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [97022] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5131), 1, - anon_sym_LBRACE, - STATE(599), 1, - sym_field_declaration_list, + ACTIONS(5722), 1, + anon_sym_PIPE, + ACTIONS(7099), 1, + anon_sym_in, STATE(3463), 2, sym_line_comment, sym_block_comment, - [96436] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [97039] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4746), 1, - anon_sym_COLON_COLON, - ACTIONS(6755), 1, - anon_sym_for, + ACTIONS(5100), 1, + anon_sym_LBRACE, + STATE(568), 1, + sym_field_declaration_list, STATE(3464), 2, sym_line_comment, sym_block_comment, - [96453] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [97056] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7048), 2, + ACTIONS(7101), 2, sym_identifier, sym_metavariable, STATE(3465), 2, sym_line_comment, sym_block_comment, - [96468] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [97071] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4746), 1, - anon_sym_COLON_COLON, - ACTIONS(6759), 1, - anon_sym_for, + ACTIONS(5758), 1, + sym_super, + ACTIONS(6941), 1, + sym_identifier, STATE(3466), 2, sym_line_comment, sym_block_comment, - [96485] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [97088] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3210), 1, - anon_sym_PLUS, - ACTIONS(4016), 1, - anon_sym_COLON, + ACTIONS(6909), 1, + anon_sym_LT, + STATE(1013), 1, + sym_type_parameters, STATE(3467), 2, sym_line_comment, sym_block_comment, - [96502] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [97105] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6493), 2, - anon_sym_RBRACE, - anon_sym_COMMA, + ACTIONS(6909), 1, + anon_sym_LT, + STATE(1014), 1, + sym_type_parameters, STATE(3468), 2, sym_line_comment, sym_block_comment, - [96517] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [97122] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7050), 1, - sym_identifier, - ACTIONS(7052), 1, - sym_super, + ACTIONS(5361), 1, + anon_sym_RBRACE, + ACTIONS(6875), 1, + anon_sym_SEMI, STATE(3469), 2, sym_line_comment, sym_block_comment, - [96534] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [97139] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7054), 2, - anon_sym_const, - sym_mutable_specifier, + ACTIONS(5259), 1, + anon_sym_LBRACE, + STATE(635), 1, + sym_declaration_list, STATE(3470), 2, sym_line_comment, sym_block_comment, - [96549] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [97156] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5737), 1, - anon_sym_PIPE, - ACTIONS(7056), 1, - anon_sym_in, + ACTIONS(4784), 1, + anon_sym_COLON_COLON, + ACTIONS(5186), 1, + anon_sym_for, STATE(3471), 2, sym_line_comment, sym_block_comment, - [96566] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [97173] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4674), 1, - anon_sym_LPAREN, - STATE(2404), 1, - sym_parameters, + ACTIONS(6530), 2, + anon_sym_RBRACE, + anon_sym_COMMA, STATE(3472), 2, sym_line_comment, sym_block_comment, - [96583] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [97188] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5676), 1, - sym_super, - ACTIONS(6952), 1, - sym_identifier, + ACTIONS(6787), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(3473), 2, sym_line_comment, sym_block_comment, - [96600] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [97203] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4746), 1, + ACTIONS(7027), 1, + anon_sym_RPAREN, + ACTIONS(7067), 1, anon_sym_COLON_COLON, - ACTIONS(6772), 1, - anon_sym_for, STATE(3474), 2, sym_line_comment, sym_block_comment, - [96617] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [97220] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7058), 1, - anon_sym_LBRACK, - ACTIONS(7060), 1, - anon_sym_BANG, + ACTIONS(5337), 2, + sym_identifier, + sym_super, STATE(3475), 2, sym_line_comment, sym_block_comment, - [96634] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [97235] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5737), 1, - anon_sym_PIPE, - ACTIONS(7062), 1, - anon_sym_in, + STATE(222), 1, + sym_closure_parameters, STATE(3476), 2, sym_line_comment, sym_block_comment, - [96651] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [97252] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5737), 1, - anon_sym_PIPE, - ACTIONS(7064), 1, - anon_sym_in, + ACTIONS(7103), 2, + anon_sym_GT, + anon_sym_COMMA, STATE(3477), 2, sym_line_comment, sym_block_comment, - [96668] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [97267] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5737), 1, - anon_sym_PIPE, - ACTIONS(7066), 1, - anon_sym_in, + ACTIONS(7105), 2, + sym_identifier, + sym_metavariable, STATE(3478), 2, sym_line_comment, sym_block_comment, - [96685] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [97282] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5737), 1, - anon_sym_PIPE, - ACTIONS(7068), 1, - anon_sym_in, + ACTIONS(3182), 1, + anon_sym_PLUS, + ACTIONS(7107), 1, + anon_sym_GT, STATE(3479), 2, sym_line_comment, sym_block_comment, - [96702] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [97299] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5430), 1, - anon_sym_RPAREN, - ACTIONS(6902), 1, - anon_sym_SEMI, + ACTIONS(4178), 1, + anon_sym_LT2, + STATE(1905), 1, + sym_type_arguments, STATE(3480), 2, sym_line_comment, sym_block_comment, - [96719] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [97316] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4674), 1, - anon_sym_LPAREN, - STATE(2096), 1, - sym_parameters, + ACTIONS(4784), 1, + anon_sym_COLON_COLON, + ACTIONS(6794), 1, + anon_sym_for, STATE(3481), 2, sym_line_comment, sym_block_comment, - [96736] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [97333] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7070), 2, - anon_sym_const, - sym_mutable_specifier, + ACTIONS(6879), 1, + sym_super, + ACTIONS(6921), 1, + sym_identifier, STATE(3482), 2, sym_line_comment, sym_block_comment, - [96751] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [97350] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5408), 1, - anon_sym_RBRACE, - ACTIONS(6902), 1, - anon_sym_SEMI, + ACTIONS(4784), 1, + anon_sym_COLON_COLON, + ACTIONS(6796), 1, + anon_sym_for, STATE(3483), 2, sym_line_comment, sym_block_comment, - [96768] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [97367] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6778), 1, - sym_identifier, - ACTIONS(6782), 1, - sym_mutable_specifier, + ACTIONS(5224), 1, + anon_sym_LBRACE, + STATE(1176), 1, + sym_declaration_list, STATE(3484), 2, sym_line_comment, sym_block_comment, - [96785] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [97384] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5310), 1, - anon_sym_RBRACE, - ACTIONS(6902), 1, - anon_sym_SEMI, + ACTIONS(4704), 1, + anon_sym_LPAREN, + STATE(2485), 1, + sym_parameters, STATE(3485), 2, sym_line_comment, sym_block_comment, - [96802] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [97401] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5131), 1, - anon_sym_LBRACE, - STATE(603), 1, - sym_field_declaration_list, + ACTIONS(6909), 1, + anon_sym_LT, + STATE(976), 1, + sym_type_parameters, STATE(3486), 2, sym_line_comment, sym_block_comment, - [96819] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [97418] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4674), 1, - anon_sym_LPAREN, - STATE(2099), 1, - sym_parameters, + ACTIONS(5224), 1, + anon_sym_LBRACE, + STATE(1177), 1, + sym_declaration_list, STATE(3487), 2, sym_line_comment, sym_block_comment, - [96836] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [97435] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4178), 1, - anon_sym_LPAREN, - STATE(1665), 1, - sym_parameters, + ACTIONS(7109), 2, + anon_sym_const, + sym_mutable_specifier, STATE(3488), 2, sym_line_comment, sym_block_comment, - [96853] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [97450] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5093), 1, - anon_sym_LBRACE, - STATE(505), 1, - sym_declaration_list, + ACTIONS(5700), 1, + sym_super, + ACTIONS(6907), 1, + sym_identifier, STATE(3489), 2, sym_line_comment, sym_block_comment, - [96870] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [97467] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5737), 1, - anon_sym_PIPE, - ACTIONS(7072), 1, - anon_sym_EQ, + ACTIONS(5758), 1, + sym_super, + ACTIONS(6901), 1, + sym_identifier, STATE(3490), 2, sym_line_comment, sym_block_comment, - [96887] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [97484] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7074), 1, - sym_identifier, - ACTIONS(7076), 1, - sym_mutable_specifier, + ACTIONS(7027), 1, + anon_sym_RPAREN, + ACTIONS(7111), 1, + anon_sym_COLON_COLON, STATE(3491), 2, sym_line_comment, sym_block_comment, - [96904] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [97501] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7078), 1, - anon_sym_SEMI, - ACTIONS(7080), 1, - anon_sym_as, + ACTIONS(4784), 1, + anon_sym_COLON_COLON, + ACTIONS(6812), 1, + anon_sym_for, STATE(3492), 2, sym_line_comment, sym_block_comment, - [96921] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [97518] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4674), 1, - anon_sym_LPAREN, - STATE(2102), 1, - sym_parameters, + ACTIONS(7113), 2, + anon_sym_const, + sym_mutable_specifier, STATE(3493), 2, sym_line_comment, sym_block_comment, - [96938] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [97533] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5430), 1, - anon_sym_RBRACK, - ACTIONS(6902), 1, - anon_sym_SEMI, + ACTIONS(7115), 1, + anon_sym_LBRACK, + ACTIONS(7117), 1, + anon_sym_BANG, STATE(3494), 2, sym_line_comment, sym_block_comment, - [96955] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [97550] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5093), 1, - anon_sym_LBRACE, - STATE(695), 1, - sym_declaration_list, + ACTIONS(5722), 1, + anon_sym_PIPE, + ACTIONS(7119), 1, + anon_sym_in, STATE(3495), 2, sym_line_comment, sym_block_comment, - [96972] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [97567] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7082), 2, - sym_identifier, - sym_metavariable, + ACTIONS(5722), 1, + anon_sym_PIPE, + ACTIONS(7121), 1, + anon_sym_in, STATE(3496), 2, sym_line_comment, sym_block_comment, - [96987] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [97584] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7084), 1, - sym_identifier, + ACTIONS(5722), 1, + anon_sym_PIPE, + ACTIONS(7123), 1, + anon_sym_in, STATE(3497), 2, sym_line_comment, sym_block_comment, - [97001] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [97601] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7086), 1, - anon_sym_RBRACE, + ACTIONS(5722), 1, + anon_sym_PIPE, + ACTIONS(7125), 1, + anon_sym_in, STATE(3498), 2, sym_line_comment, sym_block_comment, - [97015] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [97618] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7088), 1, - sym_identifier, + STATE(223), 1, + sym_closure_parameters, STATE(3499), 2, sym_line_comment, sym_block_comment, - [97029] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [97635] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7090), 1, - sym_identifier, + ACTIONS(4704), 1, + anon_sym_LPAREN, + STATE(2118), 1, + sym_parameters, STATE(3500), 2, sym_line_comment, sym_block_comment, - [97043] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [97652] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7092), 1, - anon_sym_SEMI, + ACTIONS(5259), 1, + anon_sym_LBRACE, + STATE(674), 1, + sym_declaration_list, STATE(3501), 2, sym_line_comment, sym_block_comment, - [97057] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [97669] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7094), 1, - anon_sym_SEMI, + ACTIONS(6011), 2, + sym_identifier, + sym_super, STATE(3502), 2, sym_line_comment, sym_block_comment, - [97071] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [97684] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7096), 1, - sym__line_doc_content, + ACTIONS(3456), 1, + anon_sym_LPAREN, + STATE(1439), 1, + sym_parameters, STATE(3503), 2, sym_line_comment, sym_block_comment, - [97085] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [97701] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6648), 1, - anon_sym_RBRACE, + ACTIONS(6588), 1, + sym_identifier, + ACTIONS(6592), 1, + sym_mutable_specifier, STATE(3504), 2, sym_line_comment, sym_block_comment, - [97099] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [97718] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7098), 1, + ACTIONS(6826), 1, sym_identifier, + ACTIONS(6830), 1, + sym_mutable_specifier, STATE(3505), 2, sym_line_comment, sym_block_comment, - [97113] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [97735] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7100), 1, + ACTIONS(6903), 1, + sym_super, + ACTIONS(7127), 1, sym_identifier, STATE(3506), 2, sym_line_comment, sym_block_comment, - [97127] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [97752] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7102), 1, - sym_identifier, + ACTIONS(7129), 2, + anon_sym_RBRACE, + anon_sym_COMMA, STATE(3507), 2, sym_line_comment, sym_block_comment, - [97141] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [97767] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7104), 1, - anon_sym_SEMI, + ACTIONS(4704), 1, + anon_sym_LPAREN, + STATE(2300), 1, + sym_parameters, STATE(3508), 2, sym_line_comment, sym_block_comment, - [97155] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [97784] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7106), 1, - anon_sym_fn, + ACTIONS(3110), 1, + anon_sym_SQUOTE, + STATE(3177), 1, + sym_lifetime, STATE(3509), 2, sym_line_comment, sym_block_comment, - [97169] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [97801] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7108), 1, + ACTIONS(5337), 1, + sym_super, + ACTIONS(6023), 1, sym_identifier, STATE(3510), 2, sym_line_comment, sym_block_comment, - [97183] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [97818] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7110), 1, - sym__raw_string_literal_end, + ACTIONS(4704), 1, + anon_sym_LPAREN, + STATE(2106), 1, + sym_parameters, STATE(3511), 2, sym_line_comment, sym_block_comment, - [97197] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [97835] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5077), 1, - anon_sym_COLON_COLON, + ACTIONS(6937), 1, + sym_super, + ACTIONS(7025), 1, + sym_identifier, STATE(3512), 2, sym_line_comment, sym_block_comment, - [97211] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [97852] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7112), 1, - anon_sym_COLON_COLON, + ACTIONS(5469), 1, + anon_sym_LBRACE, + STATE(1185), 1, + sym_enum_variant_list, STATE(3513), 2, sym_line_comment, sym_block_comment, - [97225] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [97869] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7114), 1, - anon_sym_fn, + ACTIONS(6959), 1, + anon_sym_LPAREN, + ACTIONS(7131), 1, + anon_sym_COLON_COLON, STATE(3514), 2, sym_line_comment, sym_block_comment, - [97239] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [97886] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7116), 1, - sym_identifier, + ACTIONS(7133), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(3515), 2, sym_line_comment, sym_block_comment, - [97253] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [97901] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7118), 1, + ACTIONS(6838), 1, sym_identifier, + ACTIONS(6842), 1, + sym_mutable_specifier, STATE(3516), 2, sym_line_comment, sym_block_comment, - [97267] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [97918] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5950), 1, - anon_sym_LBRACE, + ACTIONS(6547), 2, + anon_sym_RBRACE, + anon_sym_COMMA, STATE(3517), 2, sym_line_comment, sym_block_comment, - [97281] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [97933] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7120), 1, - anon_sym_SEMI, + ACTIONS(5154), 1, + anon_sym_LBRACE, + STATE(1188), 1, + sym_field_declaration_list, STATE(3518), 2, sym_line_comment, sym_block_comment, - [97295] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [97950] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7122), 1, - anon_sym_SEMI, + ACTIONS(4704), 1, + anon_sym_LPAREN, + STATE(2112), 1, + sym_parameters, STATE(3519), 2, sym_line_comment, sym_block_comment, - [97309] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [97967] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7124), 1, - anon_sym_SEMI, + STATE(224), 1, + sym_closure_parameters, STATE(3520), 2, sym_line_comment, sym_block_comment, - [97323] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [97984] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7126), 1, - anon_sym_SEMI, + ACTIONS(7135), 1, + sym_identifier, + ACTIONS(7137), 1, + sym_mutable_specifier, STATE(3521), 2, sym_line_comment, sym_block_comment, - [97337] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [98001] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3178), 1, - anon_sym_PLUS, + ACTIONS(7139), 2, + sym_float_literal, + sym_integer_literal, STATE(3522), 2, sym_line_comment, sym_block_comment, - [97351] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [98016] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7128), 1, - sym_identifier, + ACTIONS(7043), 1, + anon_sym_RPAREN, + ACTIONS(7111), 1, + anon_sym_COLON_COLON, STATE(3523), 2, sym_line_comment, sym_block_comment, - [97365] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [98033] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7130), 1, - anon_sym_STAR_SLASH, + ACTIONS(6895), 2, + sym_identifier, + sym_super, STATE(3524), 2, sym_line_comment, sym_block_comment, - [97379] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [98048] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6168), 1, - anon_sym_RBRACE, + ACTIONS(5100), 1, + anon_sym_LBRACE, + STATE(690), 1, + sym_field_declaration_list, STATE(3525), 2, sym_line_comment, sym_block_comment, - [97393] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [98065] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7132), 1, - anon_sym_EQ_GT, + ACTIONS(6903), 1, + sym_super, + ACTIONS(6987), 1, + sym_identifier, STATE(3526), 2, sym_line_comment, sym_block_comment, - [97407] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [98082] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7134), 1, - sym_identifier, + ACTIONS(4692), 1, + anon_sym_BANG, + ACTIONS(7141), 1, + anon_sym_COLON_COLON, STATE(3527), 2, sym_line_comment, sym_block_comment, - [97421] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [98099] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7136), 1, - anon_sym_RBRACE, + ACTIONS(5700), 1, + sym_super, + ACTIONS(7143), 1, + sym_identifier, STATE(3528), 2, sym_line_comment, sym_block_comment, - [97435] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [98116] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7138), 1, + ACTIONS(7145), 1, anon_sym_COLON, STATE(3529), 2, sym_line_comment, sym_block_comment, - [97449] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [98130] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7140), 1, - anon_sym_SEMI, + ACTIONS(7147), 1, + sym_identifier, STATE(3530), 2, sym_line_comment, sym_block_comment, - [97463] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [98144] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3210), 1, - anon_sym_PLUS, + ACTIONS(7149), 1, + anon_sym_STAR_SLASH, STATE(3531), 2, sym_line_comment, sym_block_comment, - [97477] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [98158] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7142), 1, + ACTIONS(7151), 1, sym_identifier, STATE(3532), 2, sym_line_comment, sym_block_comment, - [97491] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [98172] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7144), 1, - sym_identifier, + ACTIONS(7153), 1, + anon_sym_COLON, STATE(3533), 2, sym_line_comment, sym_block_comment, - [97505] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [98186] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7146), 1, - anon_sym_RBRACK, + ACTIONS(7155), 1, + sym_identifier, STATE(3534), 2, sym_line_comment, sym_block_comment, - [97519] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [98200] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6964), 1, - anon_sym_SEMI, + ACTIONS(7157), 1, + anon_sym_COLON, STATE(3535), 2, sym_line_comment, sym_block_comment, - [97533] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [98214] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7148), 1, - anon_sym_RBRACK, + ACTIONS(7159), 1, + sym_raw_string_literal_content, STATE(3536), 2, sym_line_comment, sym_block_comment, - [97547] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [98228] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7150), 1, - sym_identifier, + ACTIONS(7161), 1, + anon_sym_EQ_GT, STATE(3537), 2, sym_line_comment, sym_block_comment, - [97561] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [98242] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7152), 1, - anon_sym_SEMI, + ACTIONS(6759), 1, + anon_sym_RBRACE, STATE(3538), 2, sym_line_comment, sym_block_comment, - [97575] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [98256] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7154), 1, - anon_sym_SEMI, + ACTIONS(7163), 1, + sym_identifier, STATE(3539), 2, sym_line_comment, sym_block_comment, - [97589] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [98270] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7156), 1, - anon_sym_SEMI, + ACTIONS(7165), 1, + sym__line_doc_content, STATE(3540), 2, sym_line_comment, sym_block_comment, - [97603] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [98284] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6210), 1, - anon_sym_RBRACE, + ACTIONS(7167), 1, + anon_sym_SEMI, STATE(3541), 2, sym_line_comment, sym_block_comment, - [97617] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [98298] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7158), 1, - sym_identifier, + ACTIONS(7169), 1, + anon_sym_SEMI, STATE(3542), 2, sym_line_comment, sym_block_comment, - [97631] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [98312] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7160), 1, - anon_sym_LPAREN, + ACTIONS(5057), 1, + anon_sym_COLON_COLON, STATE(3543), 2, sym_line_comment, sym_block_comment, - [97645] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [98326] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7162), 1, - anon_sym_SEMI, + ACTIONS(7171), 1, + anon_sym_COLON_COLON, STATE(3544), 2, sym_line_comment, sym_block_comment, - [97659] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [98340] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4332), 1, - anon_sym_RPAREN, + ACTIONS(7173), 1, + anon_sym_fn, STATE(3545), 2, sym_line_comment, sym_block_comment, - [97673] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [98354] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7164), 1, + ACTIONS(7175), 1, anon_sym_RPAREN, STATE(3546), 2, sym_line_comment, sym_block_comment, - [97687] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [98368] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7166), 1, - anon_sym_RBRACK, + ACTIONS(6118), 1, + anon_sym_LBRACE, STATE(3547), 2, sym_line_comment, sym_block_comment, - [97701] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [98382] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7168), 1, - anon_sym_COLON, + ACTIONS(5873), 1, + anon_sym_fn, STATE(3548), 2, sym_line_comment, sym_block_comment, - [97715] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [98396] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7170), 1, - anon_sym_SEMI, + ACTIONS(7177), 1, + sym_identifier, STATE(3549), 2, sym_line_comment, sym_block_comment, - [97729] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [98410] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(887), 1, + ACTIONS(996), 1, anon_sym_RBRACK, STATE(3550), 2, sym_line_comment, sym_block_comment, - [97743] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [98424] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7172), 1, - anon_sym_SEMI, + ACTIONS(7179), 1, + anon_sym_COLON, STATE(3551), 2, sym_line_comment, sym_block_comment, - [97757] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [98438] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7174), 1, - anon_sym_SEMI, + ACTIONS(7181), 1, + anon_sym_COLON_COLON, STATE(3552), 2, sym_line_comment, sym_block_comment, - [97771] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [98452] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4028), 1, - anon_sym_COLON_COLON, + ACTIONS(7045), 1, + anon_sym_SEMI, STATE(3553), 2, sym_line_comment, sym_block_comment, - [97785] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [98466] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7176), 1, + ACTIONS(7183), 1, sym_identifier, STATE(3554), 2, sym_line_comment, sym_block_comment, - [97799] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [98480] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7178), 1, - sym_identifier, + ACTIONS(5661), 1, + anon_sym_RPAREN, STATE(3555), 2, sym_line_comment, sym_block_comment, - [97813] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [98494] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7180), 1, + ACTIONS(7185), 1, anon_sym_SEMI, STATE(3556), 2, sym_line_comment, sym_block_comment, - [97827] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [98508] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7182), 1, - anon_sym_RBRACK, + ACTIONS(7053), 1, + anon_sym_SEMI, STATE(3557), 2, sym_line_comment, sym_block_comment, - [97841] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [98522] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7184), 1, - anon_sym_SEMI, + ACTIONS(7187), 1, + anon_sym_RPAREN, STATE(3558), 2, sym_line_comment, sym_block_comment, - [97855] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [98536] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4724), 1, - anon_sym_fn, + ACTIONS(5875), 1, + anon_sym_RPAREN, STATE(3559), 2, sym_line_comment, sym_block_comment, - [97869] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [98550] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7186), 1, + ACTIONS(7189), 1, sym_identifier, STATE(3560), 2, sym_line_comment, sym_block_comment, - [97883] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [98564] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6992), 1, - anon_sym_SEMI, + ACTIONS(1016), 1, + anon_sym_EQ_GT, STATE(3561), 2, sym_line_comment, sym_block_comment, - [97897] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [98578] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7188), 1, - anon_sym_COLON, + ACTIONS(7191), 1, + anon_sym_LT2, STATE(3562), 2, sym_line_comment, sym_block_comment, - [97911] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [98592] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6291), 1, - anon_sym_RBRACE, + ACTIONS(7193), 1, + sym_identifier, STATE(3563), 2, sym_line_comment, sym_block_comment, - [97925] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [98606] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5061), 1, - anon_sym_COLON_COLON, + ACTIONS(7195), 1, + sym_identifier, STATE(3564), 2, sym_line_comment, sym_block_comment, - [97939] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [98620] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7190), 1, - sym_identifier, + ACTIONS(7197), 1, + anon_sym_COLON_COLON, STATE(3565), 2, sym_line_comment, sym_block_comment, - [97953] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [98634] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7192), 1, - anon_sym_SEMI, + ACTIONS(6132), 1, + anon_sym_RPAREN, STATE(3566), 2, sym_line_comment, sym_block_comment, - [97967] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [98648] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7194), 1, - sym__line_doc_content, + ACTIONS(7199), 1, + anon_sym_SEMI, STATE(3567), 2, sym_line_comment, sym_block_comment, - [97981] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [98662] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6196), 1, - anon_sym_RBRACE, + ACTIONS(7201), 1, + anon_sym_LPAREN, STATE(3568), 2, sym_line_comment, sym_block_comment, - [97995] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [98676] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7196), 1, - anon_sym_COLON, + ACTIONS(7203), 1, + anon_sym_RBRACK, STATE(3569), 2, sym_line_comment, sym_block_comment, - [98009] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [98690] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7198), 1, + ACTIONS(7205), 1, sym_identifier, STATE(3570), 2, sym_line_comment, sym_block_comment, - [98023] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [98704] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7200), 1, - anon_sym_SEMI, + ACTIONS(5879), 1, + anon_sym_RBRACK, STATE(3571), 2, sym_line_comment, sym_block_comment, - [98037] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [98718] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7202), 1, - anon_sym_SEMI, + ACTIONS(7207), 1, + sym_identifier, STATE(3572), 2, sym_line_comment, sym_block_comment, - [98051] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [98732] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6164), 1, - anon_sym_GT, + ACTIONS(7209), 1, + anon_sym_COLON_COLON, STATE(3573), 2, sym_line_comment, sym_block_comment, - [98065] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [98746] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7204), 1, - anon_sym_LBRACK, + ACTIONS(7211), 1, + sym_identifier, STATE(3574), 2, sym_line_comment, sym_block_comment, - [98079] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [98760] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7206), 1, + ACTIONS(7213), 1, anon_sym_SEMI, STATE(3575), 2, sym_line_comment, sym_block_comment, - [98093] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [98774] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7208), 1, - sym__raw_string_literal_end, + ACTIONS(7215), 1, + anon_sym_fn, STATE(3576), 2, sym_line_comment, sym_block_comment, - [98107] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [98788] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7210), 1, - anon_sym_EQ, + ACTIONS(7217), 1, + anon_sym_SEMI, STATE(3577), 2, sym_line_comment, sym_block_comment, - [98121] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [98802] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7212), 1, - anon_sym_SEMI, + ACTIONS(3250), 1, + anon_sym_PLUS, STATE(3578), 2, sym_line_comment, sym_block_comment, - [98135] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [98816] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5696), 1, - anon_sym_RPAREN, + ACTIONS(7219), 1, + anon_sym_RBRACK, STATE(3579), 2, sym_line_comment, sym_block_comment, - [98149] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [98830] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7214), 1, - anon_sym_SEMI, + ACTIONS(7221), 1, + anon_sym_RBRACK, STATE(3580), 2, sym_line_comment, sym_block_comment, - [98163] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [98844] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7216), 1, - anon_sym_LPAREN, + ACTIONS(4164), 1, + anon_sym_COLON_COLON, STATE(3581), 2, sym_line_comment, sym_block_comment, - [98177] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [98858] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7218), 1, + ACTIONS(7223), 1, anon_sym_SEMI, STATE(3582), 2, sym_line_comment, sym_block_comment, - [98191] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [98872] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7220), 1, - anon_sym_fn, + ACTIONS(6674), 1, + anon_sym_RBRACE, STATE(3583), 2, sym_line_comment, sym_block_comment, - [98205] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [98886] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7222), 1, - sym_identifier, + ACTIONS(7225), 1, + anon_sym_SEMI, STATE(3584), 2, sym_line_comment, sym_block_comment, - [98219] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [98900] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7224), 1, - sym_identifier, + ACTIONS(7227), 1, + anon_sym_SEMI, STATE(3585), 2, sym_line_comment, sym_block_comment, - [98233] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [98914] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(941), 1, + ACTIONS(906), 1, anon_sym_RBRACK, STATE(3586), 2, sym_line_comment, sym_block_comment, - [98247] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [98928] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6417), 1, - anon_sym_RBRACE, + ACTIONS(7229), 1, + anon_sym_COLON, STATE(3587), 2, sym_line_comment, sym_block_comment, - [98261] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [98942] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7226), 1, - sym_identifier, + ACTIONS(7231), 1, + anon_sym_RBRACE, STATE(3588), 2, sym_line_comment, sym_block_comment, - [98275] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [98956] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5870), 1, - anon_sym_RPAREN, + ACTIONS(7233), 1, + anon_sym_SEMI, STATE(3589), 2, sym_line_comment, sym_block_comment, - [98289] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [98970] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5938), 1, - anon_sym_RPAREN, + ACTIONS(7235), 1, + anon_sym_SEMI, STATE(3590), 2, sym_line_comment, sym_block_comment, - [98303] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [98984] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3984), 1, - anon_sym_COLON_COLON, + ACTIONS(7237), 1, + sym_identifier, STATE(3591), 2, sym_line_comment, sym_block_comment, - [98317] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [98998] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7228), 1, - anon_sym_SEMI, + ACTIONS(7239), 1, + anon_sym_RBRACE, STATE(3592), 2, sym_line_comment, sym_block_comment, - [98331] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [99012] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7230), 1, + ACTIONS(7241), 1, anon_sym_SEMI, STATE(3593), 2, sym_line_comment, sym_block_comment, - [98345] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [99026] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5890), 1, - anon_sym_RBRACK, + ACTIONS(7243), 1, + anon_sym_RPAREN, STATE(3594), 2, sym_line_comment, sym_block_comment, - [98359] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [99040] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7232), 1, - anon_sym_RBRACK, + ACTIONS(7245), 1, + anon_sym_SEMI, STATE(3595), 2, sym_line_comment, sym_block_comment, - [98373] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [99054] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7234), 1, + ACTIONS(7247), 1, anon_sym_SEMI, STATE(3596), 2, sym_line_comment, sym_block_comment, - [98387] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [99068] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6114), 1, - anon_sym_RBRACK, + ACTIONS(7249), 1, + anon_sym_SEMI, STATE(3597), 2, sym_line_comment, sym_block_comment, - [98401] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [99082] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7236), 1, + ACTIONS(7039), 1, anon_sym_SEMI, STATE(3598), 2, sym_line_comment, sym_block_comment, - [98415] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [99096] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7238), 1, - anon_sym_SEMI, + ACTIONS(6070), 1, + anon_sym_RPAREN, STATE(3599), 2, sym_line_comment, sym_block_comment, - [98429] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [99110] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7240), 1, - sym_identifier, + ACTIONS(6466), 1, + anon_sym_RBRACE, STATE(3600), 2, sym_line_comment, sym_block_comment, - [98443] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [99124] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7242), 1, + ACTIONS(7251), 1, sym_identifier, STATE(3601), 2, sym_line_comment, sym_block_comment, - [98457] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [99138] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7244), 1, - anon_sym_RBRACK, + ACTIONS(7253), 1, + anon_sym_SEMI, STATE(3602), 2, sym_line_comment, sym_block_comment, - [98471] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [99152] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7246), 1, - anon_sym_LBRACK, + ACTIONS(7255), 1, + anon_sym_RBRACE, STATE(3603), 2, sym_line_comment, sym_block_comment, - [98485] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [99166] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7248), 1, - sym__raw_string_literal_end, + ACTIONS(7257), 1, + anon_sym_SEMI, STATE(3604), 2, sym_line_comment, sym_block_comment, - [98499] = 4, - ACTIONS(3), 1, + [99180] = 4, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7250), 1, - aux_sym_line_comment_token2, + ACTIONS(7259), 1, + anon_sym_SEMI, STATE(3605), 2, sym_line_comment, sym_block_comment, - [98513] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [99194] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7252), 1, + ACTIONS(7261), 1, sym_identifier, STATE(3606), 2, sym_line_comment, sym_block_comment, - [98527] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [99208] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7254), 1, - ts_builtin_sym_end, + ACTIONS(7067), 1, + anon_sym_COLON_COLON, STATE(3607), 2, sym_line_comment, sym_block_comment, - [98541] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [99222] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7256), 1, + ACTIONS(7263), 1, anon_sym_SEMI, STATE(3608), 2, sym_line_comment, sym_block_comment, - [98555] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [99236] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4883), 1, - anon_sym_COLON_COLON, + ACTIONS(5919), 1, + anon_sym_LBRACE, STATE(3609), 2, sym_line_comment, sym_block_comment, - [98569] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [99250] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7258), 1, - anon_sym_COLON_COLON, + ACTIONS(7265), 1, + sym_identifier, STATE(3610), 2, sym_line_comment, sym_block_comment, - [98583] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [99264] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5840), 1, - anon_sym_LBRACE, + ACTIONS(7267), 1, + anon_sym_SEMI, STATE(3611), 2, sym_line_comment, sym_block_comment, - [98597] = 4, - ACTIONS(103), 1, + [99278] = 4, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(7269), 1, + sym__raw_string_literal_end, + STATE(3612), 2, + sym_line_comment, + sym_block_comment, + [99292] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7260), 1, + ACTIONS(6543), 1, anon_sym_RBRACE, - STATE(3612), 2, + STATE(3613), 2, + sym_line_comment, + sym_block_comment, + [99306] = 4, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(7271), 1, + anon_sym_SEMI, + STATE(3614), 2, + sym_line_comment, + sym_block_comment, + [99320] = 4, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(7273), 1, + anon_sym_EQ_GT, + STATE(3615), 2, sym_line_comment, sym_block_comment, - [98611] = 4, - ACTIONS(103), 1, + [99334] = 4, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(7275), 1, + sym_identifier, + STATE(3616), 2, + sym_line_comment, + sym_block_comment, + [99348] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7262), 1, + ACTIONS(7277), 1, anon_sym_SEMI, - STATE(3613), 2, + STATE(3617), 2, + sym_line_comment, + sym_block_comment, + [99362] = 4, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(7279), 1, + anon_sym_SEMI, + STATE(3618), 2, sym_line_comment, sym_block_comment, - [98625] = 4, - ACTIONS(103), 1, + [99376] = 4, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(7281), 1, + anon_sym_COLON, + STATE(3619), 2, + sym_line_comment, + sym_block_comment, + [99390] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7264), 1, + ACTIONS(7283), 1, anon_sym_SEMI, - STATE(3614), 2, + STATE(3620), 2, + sym_line_comment, + sym_block_comment, + [99404] = 4, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(7285), 1, + sym_identifier, + STATE(3621), 2, + sym_line_comment, + sym_block_comment, + [99418] = 4, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(4784), 1, + anon_sym_COLON_COLON, + STATE(3622), 2, + sym_line_comment, + sym_block_comment, + [99432] = 4, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(7287), 1, + ts_builtin_sym_end, + STATE(3623), 2, sym_line_comment, sym_block_comment, - [98639] = 4, - ACTIONS(103), 1, + [99446] = 4, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(7289), 1, + sym_identifier, + STATE(3624), 2, + sym_line_comment, + sym_block_comment, + [99460] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7266), 1, + ACTIONS(7291), 1, anon_sym_COLON, - STATE(3615), 2, + STATE(3625), 2, + sym_line_comment, + sym_block_comment, + [99474] = 4, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(7293), 1, + sym_identifier, + STATE(3626), 2, sym_line_comment, sym_block_comment, - [98653] = 4, - ACTIONS(103), 1, + [99488] = 4, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(7295), 1, + anon_sym_SEMI, + STATE(3627), 2, + sym_line_comment, + sym_block_comment, + [99502] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7268), 1, - anon_sym_LT, - STATE(3616), 2, + ACTIONS(7297), 1, + sym_identifier, + STATE(3628), 2, + sym_line_comment, + sym_block_comment, + [99516] = 4, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(7299), 1, + sym_identifier, + STATE(3629), 2, sym_line_comment, sym_block_comment, - [98667] = 4, - ACTIONS(103), 1, + [99530] = 4, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(7301), 1, + anon_sym_SEMI, + STATE(3630), 2, + sym_line_comment, + sym_block_comment, + [99544] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6104), 1, - anon_sym_RPAREN, - STATE(3617), 2, + ACTIONS(7303), 1, + sym_identifier, + STATE(3631), 2, + sym_line_comment, + sym_block_comment, + [99558] = 4, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(7305), 1, + sym_identifier, + STATE(3632), 2, sym_line_comment, sym_block_comment, - [98681] = 4, - ACTIONS(103), 1, + [99572] = 4, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(5397), 1, + anon_sym_SEMI, + STATE(3633), 2, + sym_line_comment, + sym_block_comment, + [99586] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7270), 1, + ACTIONS(7307), 1, anon_sym_SEMI, - STATE(3618), 2, + STATE(3634), 2, sym_line_comment, sym_block_comment, - [98695] = 4, - ACTIONS(103), 1, + [99600] = 4, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(7309), 1, + sym_identifier, + STATE(3635), 2, + sym_line_comment, + sym_block_comment, + [99614] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7272), 1, + ACTIONS(7311), 1, anon_sym_SEMI, - STATE(3619), 2, + STATE(3636), 2, + sym_line_comment, + sym_block_comment, + [99628] = 4, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(6705), 1, + anon_sym_RBRACE, + STATE(3637), 2, sym_line_comment, sym_block_comment, - [98709] = 4, - ACTIONS(103), 1, + [99642] = 4, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(7313), 1, + anon_sym_STAR_SLASH, + STATE(3638), 2, + sym_line_comment, + sym_block_comment, + [99656] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6721), 1, - anon_sym_COLON_COLON, - STATE(3620), 2, + ACTIONS(7315), 1, + anon_sym_RBRACE, + STATE(3639), 2, + sym_line_comment, + sym_block_comment, + [99670] = 4, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(7317), 1, + anon_sym_RBRACK, + STATE(3640), 2, sym_line_comment, sym_block_comment, - [98723] = 4, - ACTIONS(103), 1, + [99684] = 4, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(7319), 1, + anon_sym_LBRACK, + STATE(3641), 2, + sym_line_comment, + sym_block_comment, + [99698] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7274), 1, - anon_sym_COLON, - STATE(3621), 2, + ACTIONS(7321), 1, + anon_sym_SEMI, + STATE(3642), 2, + sym_line_comment, + sym_block_comment, + [99712] = 4, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(7323), 1, + anon_sym_RBRACE, + STATE(3643), 2, + sym_line_comment, + sym_block_comment, + [99726] = 4, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(7325), 1, + anon_sym_RBRACK, + STATE(3644), 2, + sym_line_comment, + sym_block_comment, + [99740] = 4, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(6245), 1, + anon_sym_RBRACE, + STATE(3645), 2, + sym_line_comment, + sym_block_comment, + [99754] = 4, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(6086), 1, + anon_sym_RBRACK, + STATE(3646), 2, + sym_line_comment, + sym_block_comment, + [99768] = 4, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(6207), 1, + anon_sym_RBRACE, + STATE(3647), 2, + sym_line_comment, + sym_block_comment, + [99782] = 4, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(7327), 1, + anon_sym_EQ, + STATE(3648), 2, + sym_line_comment, + sym_block_comment, + [99796] = 4, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(7329), 1, + anon_sym_SEMI, + STATE(3649), 2, + sym_line_comment, + sym_block_comment, + [99810] = 4, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(7331), 1, + anon_sym_SEMI, + STATE(3650), 2, sym_line_comment, sym_block_comment, - [98737] = 4, - ACTIONS(103), 1, + [99824] = 4, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(6227), 1, + anon_sym_GT, + STATE(3651), 2, + sym_line_comment, + sym_block_comment, + [99838] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7276), 1, + ACTIONS(7333), 1, sym_identifier, - STATE(3622), 2, + STATE(3652), 2, + sym_line_comment, + sym_block_comment, + [99852] = 4, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(5754), 1, + anon_sym_RPAREN, + STATE(3653), 2, sym_line_comment, sym_block_comment, - [98751] = 4, - ACTIONS(103), 1, + [99866] = 4, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(6594), 1, + anon_sym_COLON_COLON, + STATE(3654), 2, + sym_line_comment, + sym_block_comment, + [99880] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7278), 1, + ACTIONS(7055), 1, anon_sym_SEMI, - STATE(3623), 2, + STATE(3655), 2, sym_line_comment, sym_block_comment, - [98765] = 4, - ACTIONS(103), 1, + [99894] = 4, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(7335), 1, + sym__raw_string_literal_end, + STATE(3656), 2, + sym_line_comment, + sym_block_comment, + [99908] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7280), 1, + ACTIONS(7337), 1, anon_sym_SEMI, - STATE(3624), 2, + STATE(3657), 2, + sym_line_comment, + sym_block_comment, + [99922] = 4, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(7339), 1, + anon_sym_EQ_GT, + STATE(3658), 2, sym_line_comment, sym_block_comment, - [98779] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [99936] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7282), 1, + ACTIONS(7341), 1, sym_raw_string_literal_content, - STATE(3625), 2, + STATE(3659), 2, sym_line_comment, sym_block_comment, - [98793] = 4, - ACTIONS(103), 1, + [99950] = 4, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7284), 1, - anon_sym_RBRACK, - STATE(3626), 2, + ACTIONS(7343), 1, + aux_sym_line_comment_token2, + STATE(3660), 2, sym_line_comment, sym_block_comment, - [98807] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [99964] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5821), 1, - anon_sym_RPAREN, - STATE(3627), 2, + ACTIONS(7345), 1, + sym_identifier, + STATE(3661), 2, sym_line_comment, sym_block_comment, - [98821] = 4, - ACTIONS(103), 1, + [99978] = 4, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(7347), 1, + anon_sym_SEMI, + STATE(3662), 2, + sym_line_comment, + sym_block_comment, + [99992] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4340), 1, + ACTIONS(4378), 1, anon_sym_COLON_COLON, - STATE(3628), 2, + STATE(3663), 2, sym_line_comment, sym_block_comment, - [98835] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [100006] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6080), 1, + ACTIONS(5859), 1, anon_sym_COLON_COLON, - STATE(3629), 2, + STATE(3664), 2, sym_line_comment, sym_block_comment, - [98849] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [100020] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5636), 1, + ACTIONS(4326), 1, anon_sym_RPAREN, - STATE(3630), 2, + STATE(3665), 2, sym_line_comment, sym_block_comment, - [98863] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [100034] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6172), 1, - anon_sym_RBRACE, - STATE(3631), 2, + ACTIONS(7349), 1, + sym_identifier, + STATE(3666), 2, sym_line_comment, sym_block_comment, - [98877] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [100048] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7286), 1, - anon_sym_LT2, - STATE(3632), 2, + ACTIONS(7351), 1, + sym__line_doc_content, + STATE(3667), 2, sym_line_comment, sym_block_comment, - [98891] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [100062] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7288), 1, + ACTIONS(7353), 1, anon_sym_COLON_COLON, - STATE(3633), 2, + STATE(3668), 2, sym_line_comment, sym_block_comment, - [98905] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [100076] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7290), 1, - anon_sym_SEMI, - STATE(3634), 2, + ACTIONS(4921), 1, + anon_sym_COLON_COLON, + STATE(3669), 2, sym_line_comment, sym_block_comment, - [98919] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [100090] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7292), 1, - sym_identifier, - STATE(3635), 2, + ACTIONS(7355), 1, + anon_sym_SEMI, + STATE(3670), 2, sym_line_comment, sym_block_comment, - [98933] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [100104] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7294), 1, - sym_identifier, - STATE(3636), 2, + ACTIONS(7357), 1, + anon_sym_SEMI, + STATE(3671), 2, sym_line_comment, sym_block_comment, - [98947] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [100118] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7296), 1, - sym_identifier, - STATE(3637), 2, + ACTIONS(7359), 1, + anon_sym_SEMI, + STATE(3672), 2, sym_line_comment, sym_block_comment, - [98961] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [100132] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7298), 1, - anon_sym_COLON, - STATE(3638), 2, + ACTIONS(7361), 1, + anon_sym_SEMI, + STATE(3673), 2, sym_line_comment, sym_block_comment, - [98975] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [100146] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7300), 1, + ACTIONS(7363), 1, anon_sym_LT2, - STATE(3639), 2, + STATE(3674), 2, sym_line_comment, sym_block_comment, - [98989] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [100160] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5934), 1, - anon_sym_RPAREN, - STATE(3640), 2, + ACTIONS(7365), 1, + sym_identifier, + STATE(3675), 2, sym_line_comment, sym_block_comment, - [99003] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [100174] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7302), 1, + ACTIONS(7367), 1, anon_sym_fn, - STATE(3641), 2, + STATE(3676), 2, sym_line_comment, sym_block_comment, - [99017] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [100188] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7304), 1, - anon_sym_EQ_GT, - STATE(3642), 2, + ACTIONS(7369), 1, + anon_sym_COLON, + STATE(3677), 2, sym_line_comment, sym_block_comment, - [99031] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [100202] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7306), 1, + ACTIONS(7371), 1, anon_sym_COLON_COLON, - STATE(3643), 2, + STATE(3678), 2, sym_line_comment, sym_block_comment, - [99045] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [100216] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7308), 1, - sym_identifier, - STATE(3644), 2, + ACTIONS(7373), 1, + anon_sym_RBRACK, + STATE(3679), 2, sym_line_comment, sym_block_comment, - [99059] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [100230] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7310), 1, - anon_sym_RBRACK, - STATE(3645), 2, + ACTIONS(5627), 1, + anon_sym_RPAREN, + STATE(3680), 2, sym_line_comment, sym_block_comment, - [99073] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [100244] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7312), 1, + ACTIONS(7375), 1, anon_sym_COLON_COLON, - STATE(3646), 2, + STATE(3681), 2, sym_line_comment, sym_block_comment, - [99087] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [100258] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7314), 1, - anon_sym_EQ_GT, - STATE(3647), 2, + ACTIONS(7377), 1, + sym__line_doc_content, + STATE(3682), 2, sym_line_comment, sym_block_comment, - [99101] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [100272] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5402), 1, - anon_sym_SEMI, - STATE(3648), 2, + ACTIONS(7379), 1, + anon_sym_LBRACK, + STATE(3683), 2, sym_line_comment, sym_block_comment, - [99115] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [100286] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6474), 1, - anon_sym_GT, - STATE(3649), 2, + ACTIONS(7381), 1, + sym_identifier, + STATE(3684), 2, sym_line_comment, sym_block_comment, - [99129] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [100300] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5112), 1, + ACTIONS(5077), 1, anon_sym_COLON_COLON, - STATE(3650), 2, + STATE(3685), 2, sym_line_comment, sym_block_comment, - [99143] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [100314] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7316), 1, + ACTIONS(7383), 1, anon_sym_COLON_COLON, - STATE(3651), 2, + STATE(3686), 2, sym_line_comment, sym_block_comment, - [99157] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [100328] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7318), 1, + ACTIONS(7385), 1, anon_sym_fn, - STATE(3652), 2, + STATE(3687), 2, sym_line_comment, sym_block_comment, - [99171] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [100342] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7320), 1, - anon_sym_COLON_COLON, - STATE(3653), 2, + ACTIONS(7387), 1, + anon_sym_SEMI, + STATE(3688), 2, sym_line_comment, sym_block_comment, - [99185] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [100356] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7322), 1, + ACTIONS(7389), 1, anon_sym_LBRACE, - STATE(3654), 2, + STATE(3689), 2, sym_line_comment, sym_block_comment, - [99199] = 4, - ACTIONS(103), 1, + [100370] = 4, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(5905), 1, + anon_sym_RPAREN, + STATE(3690), 2, + sym_line_comment, + sym_block_comment, + [100384] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7324), 1, + ACTIONS(6259), 1, anon_sym_RBRACE, - STATE(3655), 2, + STATE(3691), 2, sym_line_comment, sym_block_comment, - [99213] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [100398] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7326), 1, - anon_sym_COLON, - STATE(3656), 2, + ACTIONS(6492), 1, + anon_sym_GT, + STATE(3692), 2, sym_line_comment, sym_block_comment, - [99227] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [100412] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7328), 1, - anon_sym_COLON, - STATE(3657), 2, + ACTIONS(7391), 1, + sym__raw_string_literal_end, + STATE(3693), 2, sym_line_comment, sym_block_comment, - [99241] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [100426] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7330), 1, + ACTIONS(7393), 1, anon_sym_SEMI, - STATE(3658), 2, + STATE(3694), 2, sym_line_comment, sym_block_comment, - [99255] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [100440] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6184), 1, - anon_sym_GT, - STATE(3659), 2, + ACTIONS(5393), 1, + anon_sym_SEMI, + STATE(3695), 2, sym_line_comment, sym_block_comment, - [99269] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [100454] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7332), 1, + ACTIONS(7395), 1, anon_sym_RBRACK, - STATE(3660), 2, + STATE(3696), 2, sym_line_comment, sym_block_comment, - [99283] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [100468] = 4, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(7334), 1, - anon_sym_EQ_GT, - STATE(3661), 2, - sym_line_comment, - sym_block_comment, - [99297] = 4, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6321), 1, - anon_sym_RBRACE, - STATE(3662), 2, + ACTIONS(5909), 1, + anon_sym_RPAREN, + STATE(3697), 2, sym_line_comment, sym_block_comment, - [99311] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [100482] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7336), 1, + ACTIONS(7397), 1, sym_raw_string_literal_content, - STATE(3663), 2, + STATE(3698), 2, sym_line_comment, sym_block_comment, - [99325] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [100496] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7338), 1, - anon_sym_SEMI, - STATE(3664), 2, + ACTIONS(4142), 1, + sym_identifier, + STATE(3699), 2, sym_line_comment, sym_block_comment, - [99339] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [100510] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7340), 1, - anon_sym_SEMI, - STATE(3665), 2, + ACTIONS(7399), 1, + anon_sym_COLON, + STATE(3700), 2, sym_line_comment, sym_block_comment, - [99353] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [100524] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6806), 1, - anon_sym_COLON_COLON, - STATE(3666), 2, + ACTIONS(7401), 1, + anon_sym_SEMI, + STATE(3701), 2, sym_line_comment, sym_block_comment, - [99367] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [100538] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7342), 1, + ACTIONS(7403), 1, anon_sym_COLON_COLON, - STATE(3667), 2, + STATE(3702), 2, sym_line_comment, sym_block_comment, - [99381] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [100552] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7344), 1, - anon_sym_RBRACE, - STATE(3668), 2, + ACTIONS(7405), 1, + anon_sym_SEMI, + STATE(3703), 2, sym_line_comment, sym_block_comment, - [99395] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [100566] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7346), 1, + ACTIONS(5359), 1, anon_sym_SEMI, - STATE(3669), 2, + STATE(3704), 2, sym_line_comment, sym_block_comment, - [99409] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [100580] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7348), 1, + ACTIONS(7407), 1, anon_sym_COLON_COLON, - STATE(3670), 2, + STATE(3705), 2, sym_line_comment, sym_block_comment, - [99423] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [100594] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7350), 1, - sym__line_doc_content, - STATE(3671), 2, + ACTIONS(7409), 1, + anon_sym_SEMI, + STATE(3706), 2, sym_line_comment, sym_block_comment, - [99437] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [100608] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7352), 1, - anon_sym_RBRACE, - STATE(3672), 2, + ACTIONS(7411), 1, + sym__raw_string_literal_end, + STATE(3707), 2, sym_line_comment, sym_block_comment, - [99451] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [100622] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7354), 1, + ACTIONS(7413), 1, anon_sym_COLON_COLON, - STATE(3673), 2, + STATE(3708), 2, sym_line_comment, sym_block_comment, - [99465] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [100636] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5418), 1, - anon_sym_COLON_COLON, - STATE(3674), 2, + ACTIONS(7415), 1, + anon_sym_EQ, + STATE(3709), 2, sym_line_comment, sym_block_comment, - [99479] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [100650] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7356), 1, - anon_sym_fn, - STATE(3675), 2, + ACTIONS(7417), 1, + anon_sym_RBRACE, + STATE(3710), 2, sym_line_comment, sym_block_comment, - [99493] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [100664] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7358), 1, - sym_identifier, - STATE(3676), 2, + ACTIONS(7419), 1, + sym_self, + STATE(3711), 2, sym_line_comment, sym_block_comment, - [99507] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [100678] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7360), 1, - sym__line_doc_content, - STATE(3677), 2, + ACTIONS(4754), 1, + anon_sym_fn, + STATE(3712), 2, sym_line_comment, sym_block_comment, - [99521] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [100692] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7362), 1, + ACTIONS(7421), 1, anon_sym_COLON_COLON, - STATE(3678), 2, + STATE(3713), 2, sym_line_comment, sym_block_comment, - [99535] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [100706] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7364), 1, + ACTIONS(7423), 1, anon_sym_LBRACE, - STATE(3679), 2, + STATE(3714), 2, sym_line_comment, sym_block_comment, - [99549] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [100720] = 4, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(7366), 1, - anon_sym_RBRACE, - STATE(3680), 2, - sym_line_comment, - sym_block_comment, - [99563] = 4, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7368), 1, - sym_identifier, - STATE(3681), 2, + ACTIONS(7425), 1, + anon_sym_SEMI, + STATE(3715), 2, sym_line_comment, sym_block_comment, - [99577] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [100734] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7370), 1, - anon_sym_RPAREN, - STATE(3682), 2, + ACTIONS(962), 1, + anon_sym_RBRACK, + STATE(3716), 2, sym_line_comment, sym_block_comment, - [99591] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [100748] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7372), 1, - anon_sym_RPAREN, - STATE(3683), 2, + ACTIONS(6773), 1, + anon_sym_GT, + STATE(3717), 2, sym_line_comment, sym_block_comment, - [99605] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [100762] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7374), 1, + ACTIONS(7427), 1, sym_raw_string_literal_content, - STATE(3684), 2, + STATE(3718), 2, sym_line_comment, sym_block_comment, - [99619] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [100776] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3676), 1, + ACTIONS(3714), 1, anon_sym_COLON_COLON, - STATE(3685), 2, + STATE(3719), 2, sym_line_comment, sym_block_comment, - [99633] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [100790] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7376), 1, - anon_sym_COLON_COLON, - STATE(3686), 2, + ACTIONS(7429), 1, + sym_identifier, + STATE(3720), 2, sym_line_comment, sym_block_comment, - [99647] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [100804] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7378), 1, - sym_self, - STATE(3687), 2, + ACTIONS(7431), 1, + anon_sym_COLON_COLON, + STATE(3721), 2, sym_line_comment, sym_block_comment, - [99661] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [100818] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7380), 1, + ACTIONS(7433), 1, anon_sym_RBRACK, - STATE(3688), 2, + STATE(3722), 2, sym_line_comment, sym_block_comment, - [99675] = 4, - ACTIONS(103), 1, + [100832] = 4, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(7435), 1, + anon_sym_SEMI, + STATE(3723), 2, + sym_line_comment, + sym_block_comment, + [100846] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7382), 1, + ACTIONS(7437), 1, anon_sym_LBRACE, - STATE(3689), 2, + STATE(3724), 2, sym_line_comment, sym_block_comment, - [99689] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [100860] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7384), 1, + ACTIONS(7439), 1, sym_raw_string_literal_content, - STATE(3690), 2, + STATE(3725), 2, sym_line_comment, sym_block_comment, - [99703] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [100874] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5350), 1, + ACTIONS(5437), 1, anon_sym_COLON_COLON, - STATE(3691), 2, + STATE(3726), 2, sym_line_comment, sym_block_comment, - [99717] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [100888] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7386), 1, + ACTIONS(7441), 1, anon_sym_COLON_COLON, - STATE(3692), 2, + STATE(3727), 2, sym_line_comment, sym_block_comment, - [99731] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [100902] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7388), 1, - sym_raw_string_literal_content, - STATE(3693), 2, + ACTIONS(7443), 1, + anon_sym_COLON, + STATE(3728), 2, sym_line_comment, sym_block_comment, - [99745] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [100916] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6072), 1, + ACTIONS(6154), 1, anon_sym_LBRACE, - STATE(3694), 2, + STATE(3729), 2, sym_line_comment, sym_block_comment, - [99759] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [100930] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6118), 1, + ACTIONS(5857), 1, anon_sym_COLON_COLON, - STATE(3695), 2, + STATE(3730), 2, sym_line_comment, sym_block_comment, - [99773] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [100944] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7390), 1, + ACTIONS(7445), 1, anon_sym_COLON_COLON, - STATE(3696), 2, + STATE(3731), 2, sym_line_comment, sym_block_comment, - [99787] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [100958] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6090), 1, + ACTIONS(6170), 1, anon_sym_LBRACE, - STATE(3697), 2, + STATE(3732), 2, sym_line_comment, sym_block_comment, - [99801] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [100972] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7392), 1, + ACTIONS(7447), 1, anon_sym_COLON_COLON, - STATE(3698), 2, + STATE(3733), 2, sym_line_comment, sym_block_comment, - [99815] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [100986] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5352), 1, + ACTIONS(5431), 1, anon_sym_COLON_COLON, - STATE(3699), 2, + STATE(3734), 2, sym_line_comment, sym_block_comment, - [99829] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [101000] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5394), 1, + ACTIONS(5449), 1, anon_sym_COLON_COLON, - STATE(3700), 2, + STATE(3735), 2, sym_line_comment, sym_block_comment, - [99843] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [101014] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4352), 1, + ACTIONS(4376), 1, anon_sym_COLON_COLON, - STATE(3701), 2, + STATE(3736), 2, sym_line_comment, sym_block_comment, - [99857] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [101028] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7394), 1, + ACTIONS(7449), 1, anon_sym_COLON_COLON, - STATE(3702), 2, + STATE(3737), 2, sym_line_comment, sym_block_comment, - [99871] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [101042] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1001), 1, - anon_sym_EQ_GT, - STATE(3703), 2, + ACTIONS(5138), 1, + anon_sym_fn, + STATE(3738), 2, sym_line_comment, sym_block_comment, - [99885] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [101056] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6269), 1, - anon_sym_GT, - STATE(3704), 2, + ACTIONS(7451), 1, + anon_sym_COLON, + STATE(3739), 2, sym_line_comment, sym_block_comment, - [99899] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [101070] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7396), 1, - sym_identifier, - STATE(3705), 2, + ACTIONS(7453), 1, + anon_sym_LT, + STATE(3740), 2, sym_line_comment, sym_block_comment, - [99913] = 4, - ACTIONS(103), 1, + [101084] = 4, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(7455), 1, + anon_sym_SEMI, + STATE(3741), 2, + sym_line_comment, + sym_block_comment, + [101098] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7398), 1, + ACTIONS(7457), 1, anon_sym_COLON, - STATE(3706), 2, + STATE(3742), 2, sym_line_comment, sym_block_comment, - [99927] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [101112] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7400), 1, + ACTIONS(7459), 1, anon_sym_LBRACK, - STATE(3707), 2, + STATE(3743), 2, sym_line_comment, sym_block_comment, - [99941] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [101126] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7402), 1, - anon_sym_EQ_GT, - STATE(3708), 2, + ACTIONS(6502), 1, + anon_sym_GT, + STATE(3744), 2, sym_line_comment, sym_block_comment, - [99955] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [101140] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6934), 1, - anon_sym_SEMI, - STATE(3709), 2, + ACTIONS(7461), 1, + anon_sym_COLON, + STATE(3745), 2, sym_line_comment, sym_block_comment, - [99969] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [101154] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7404), 1, + ACTIONS(7463), 1, anon_sym_SEMI, - STATE(3710), 2, + STATE(3746), 2, sym_line_comment, sym_block_comment, - [99983] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [101168] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4746), 1, + ACTIONS(5075), 1, anon_sym_COLON_COLON, - STATE(3711), 2, + STATE(3747), 2, sym_line_comment, sym_block_comment, - [99997] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [101182] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5428), 1, - anon_sym_SEMI, - STATE(3712), 2, + ACTIONS(3944), 1, + anon_sym_COLON_COLON, + STATE(3748), 2, sym_line_comment, sym_block_comment, - [100011] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [101196] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7406), 1, + ACTIONS(7465), 1, anon_sym_LBRACK, - STATE(3713), 2, + STATE(3749), 2, sym_line_comment, sym_block_comment, - [100025] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [101210] = 4, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(7408), 1, - anon_sym_COLON, - STATE(3714), 2, - sym_line_comment, - sym_block_comment, - [100039] = 4, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7410), 1, + ACTIONS(7467), 1, anon_sym_COLON, - STATE(3715), 2, + STATE(3750), 2, sym_line_comment, sym_block_comment, - [100053] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [101224] = 4, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(7412), 1, - sym_identifier, - STATE(3716), 2, - sym_line_comment, - sym_block_comment, - [100067] = 4, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1011), 1, - anon_sym_RBRACK, - STATE(3717), 2, + ACTIONS(7469), 1, + anon_sym_COLON, + STATE(3751), 2, sym_line_comment, sym_block_comment, - [100081] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [101238] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7414), 1, - anon_sym_COLON, - STATE(3718), 2, + ACTIONS(7471), 1, + anon_sym_SEMI, + STATE(3752), 2, sym_line_comment, sym_block_comment, - [100095] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [101252] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7416), 1, - sym_identifier, - STATE(3719), 2, + ACTIONS(7473), 1, + anon_sym_fn, + STATE(3753), 2, sym_line_comment, sym_block_comment, - [100109] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [101266] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7418), 1, - anon_sym_COLON, - STATE(3720), 2, + ACTIONS(5361), 1, + anon_sym_SEMI, + STATE(3754), 2, sym_line_comment, sym_block_comment, - [100123] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [101280] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7420), 1, - sym_identifier, - STATE(3721), 2, + ACTIONS(7475), 1, + anon_sym_COLON, + STATE(3755), 2, sym_line_comment, sym_block_comment, - [100137] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [101294] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4156), 1, - sym_identifier, - STATE(3722), 2, + ACTIONS(5345), 1, + anon_sym_COLON_COLON, + STATE(3756), 2, sym_line_comment, sym_block_comment, - [100151] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [101308] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7422), 1, + ACTIONS(7477), 1, sym_identifier, - STATE(3723), 2, + STATE(3757), 2, sym_line_comment, sym_block_comment, - [100165] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [101322] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7424), 1, - anon_sym_SEMI, - STATE(3724), 2, + ACTIONS(7479), 1, + anon_sym_RBRACK, + STATE(3758), 2, sym_line_comment, sym_block_comment, - [100179] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [101336] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7426), 1, + ACTIONS(7481), 1, anon_sym_SEMI, - STATE(3725), 2, + STATE(3759), 2, sym_line_comment, sym_block_comment, - [100193] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [101350] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7428), 1, + ACTIONS(7483), 1, anon_sym_SEMI, - STATE(3726), 2, + STATE(3760), 2, sym_line_comment, sym_block_comment, - [100207] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [101364] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7430), 1, - sym__raw_string_literal_end, - STATE(3727), 2, + ACTIONS(7485), 1, + anon_sym_RBRACE, + STATE(3761), 2, sym_line_comment, sym_block_comment, - [100221] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [101378] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7432), 1, - sym_identifier, - STATE(3728), 2, + ACTIONS(7487), 1, + anon_sym_SEMI, + STATE(3762), 2, sym_line_comment, sym_block_comment, - [100235] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [101392] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4270), 1, - anon_sym_COLON_COLON, - STATE(3729), 2, + ACTIONS(7489), 1, + sym_raw_string_literal_content, + STATE(3763), 2, sym_line_comment, sym_block_comment, - [100249] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [101406] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7434), 1, - anon_sym_RPAREN, - STATE(3730), 2, + ACTIONS(7491), 1, + anon_sym_LPAREN, + STATE(3764), 2, sym_line_comment, sym_block_comment, - [100263] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [101420] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7436), 1, - sym__raw_string_literal_end, - STATE(3731), 2, + ACTIONS(7493), 1, + sym_identifier, + STATE(3765), 2, sym_line_comment, sym_block_comment, - [100277] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [101434] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4779), 1, + ACTIONS(7495), 1, anon_sym_COLON_COLON, - STATE(3732), 2, + STATE(3766), 2, sym_line_comment, sym_block_comment, - [100291] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [101448] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6560), 1, - anon_sym_RBRACE, - STATE(3733), 2, + ACTIONS(7497), 1, + sym_identifier, + STATE(3767), 2, sym_line_comment, sym_block_comment, - [100305] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [101462] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6747), 1, - anon_sym_RBRACE, - STATE(3734), 2, + ACTIONS(1040), 1, + anon_sym_EQ_GT, + STATE(3768), 2, sym_line_comment, sym_block_comment, - [100319] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [101476] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7438), 1, + ACTIONS(7499), 1, anon_sym_COLON, - STATE(3735), 2, + STATE(3769), 2, sym_line_comment, sym_block_comment, - [100333] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [101490] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7440), 1, - anon_sym_COLON_COLON, - STATE(3736), 2, + ACTIONS(7501), 1, + anon_sym_EQ_GT, + STATE(3770), 2, sym_line_comment, sym_block_comment, - [100347] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [101504] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7442), 1, - sym_raw_string_literal_content, - STATE(3737), 2, + ACTIONS(3192), 1, + anon_sym_PLUS, + STATE(3771), 2, sym_line_comment, sym_block_comment, - [100361] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [101518] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7444), 1, - anon_sym_SEMI, - STATE(3738), 2, + ACTIONS(7503), 1, + sym_identifier, + STATE(3772), 2, sym_line_comment, sym_block_comment, - [100375] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [101532] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7446), 1, + ACTIONS(7505), 1, anon_sym_COLON, - STATE(3739), 2, + STATE(3773), 2, sym_line_comment, sym_block_comment, - [100389] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [101546] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7448), 1, - anon_sym_COLON, - STATE(3740), 2, + ACTIONS(4348), 1, + anon_sym_RPAREN, + STATE(3774), 2, sym_line_comment, sym_block_comment, - [100403] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [101560] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7450), 1, + ACTIONS(7507), 1, sym_identifier, - STATE(3741), 2, + STATE(3775), 2, sym_line_comment, sym_block_comment, - [100417] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [101574] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7452), 1, - anon_sym_RBRACK, - STATE(3742), 2, + ACTIONS(7509), 1, + sym_identifier, + STATE(3776), 2, sym_line_comment, sym_block_comment, - [100431] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [101588] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7454), 1, - anon_sym_SEMI, - STATE(3743), 2, + ACTIONS(7511), 1, + anon_sym_EQ_GT, + STATE(3777), 2, sym_line_comment, sym_block_comment, - [100445] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [101602] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7456), 1, - anon_sym_SEMI, - STATE(3744), 2, + ACTIONS(7513), 1, + sym_identifier, + STATE(3778), 2, sym_line_comment, sym_block_comment, - [100459] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [101616] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4300), 1, - anon_sym_RPAREN, - STATE(3745), 2, + ACTIONS(7515), 1, + sym__line_doc_content, + STATE(3779), 2, sym_line_comment, sym_block_comment, - [100473] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [101630] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7458), 1, - anon_sym_EQ_GT, - STATE(3746), 2, + ACTIONS(7517), 1, + anon_sym_RPAREN, + STATE(3780), 2, sym_line_comment, sym_block_comment, - [100487] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [101644] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6489), 1, - anon_sym_RBRACE, - STATE(3747), 2, + ACTIONS(5744), 1, + anon_sym_RPAREN, + STATE(3781), 2, sym_line_comment, sym_block_comment, - [100501] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [101658] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7460), 1, + ACTIONS(7519), 1, anon_sym_COLON, - STATE(3748), 2, + STATE(3782), 2, sym_line_comment, sym_block_comment, - [100515] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [101672] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7462), 1, - anon_sym_SEMI, - STATE(3749), 2, + ACTIONS(7521), 1, + sym_identifier, + STATE(3783), 2, sym_line_comment, sym_block_comment, - [100529] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [101686] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7464), 1, - anon_sym_COLON_COLON, - STATE(3750), 2, + ACTIONS(7523), 1, + sym_identifier, + STATE(3784), 2, sym_line_comment, sym_block_comment, - [100543] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [101700] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7466), 1, - anon_sym_SEMI, - STATE(3751), 2, + ACTIONS(7525), 1, + anon_sym_COLON, + STATE(3785), 2, sym_line_comment, sym_block_comment, - [100557] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [101714] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4769), 1, + ACTIONS(4296), 1, anon_sym_COLON_COLON, - STATE(3752), 2, + STATE(3786), 2, sym_line_comment, sym_block_comment, - [100571] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [101728] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7468), 1, + ACTIONS(7527), 1, anon_sym_SEMI, - STATE(3753), 2, + STATE(3787), 2, sym_line_comment, sym_block_comment, - [100585] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [101742] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7470), 1, - anon_sym_RPAREN, - STATE(3754), 2, + ACTIONS(6211), 1, + anon_sym_RBRACE, + STATE(3788), 2, sym_line_comment, sym_block_comment, - [100599] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [101756] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7472), 1, + ACTIONS(7529), 1, anon_sym_EQ, - STATE(3755), 2, + STATE(3789), 2, sym_line_comment, sym_block_comment, - [100613] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [101770] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7474), 1, - anon_sym_SEMI, - STATE(3756), 2, + ACTIONS(4809), 1, + anon_sym_COLON_COLON, + STATE(3790), 2, sym_line_comment, sym_block_comment, - [100627] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [101784] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7476), 1, - anon_sym_SEMI, - STATE(3757), 2, + ACTIONS(7531), 1, + anon_sym_fn, + STATE(3791), 2, sym_line_comment, sym_block_comment, - [100641] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [101798] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5753), 1, - anon_sym_RPAREN, - STATE(3758), 2, + ACTIONS(7533), 1, + sym_identifier, + STATE(3792), 2, sym_line_comment, sym_block_comment, - [100655] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [101812] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(871), 1, - anon_sym_RBRACK, - STATE(3759), 2, + ACTIONS(7535), 1, + sym_identifier, + STATE(3793), 2, sym_line_comment, sym_block_comment, - [100669] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [101826] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5408), 1, - anon_sym_SEMI, - STATE(3760), 2, + ACTIONS(4118), 1, + anon_sym_COLON_COLON, + STATE(3794), 2, sym_line_comment, sym_block_comment, - [100683] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [101840] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7478), 1, - anon_sym_COLON, - STATE(3761), 2, + ACTIONS(7537), 1, + sym_identifier, + STATE(3795), 2, sym_line_comment, sym_block_comment, - [100697] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [101854] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7480), 1, - anon_sym_COLON, - STATE(3762), 2, + ACTIONS(7539), 1, + sym_identifier, + STATE(3796), 2, sym_line_comment, sym_block_comment, - [100711] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [101868] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7482), 1, - anon_sym_STAR_SLASH, - STATE(3763), 2, + ACTIONS(7541), 1, + anon_sym_SEMI, + STATE(3797), 2, sym_line_comment, sym_block_comment, - [100725] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [101882] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7484), 1, + ACTIONS(7543), 1, anon_sym_COLON, - STATE(3764), 2, + STATE(3798), 2, sym_line_comment, sym_block_comment, - [100739] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [101896] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7486), 1, + ACTIONS(7545), 1, anon_sym_EQ, - STATE(3765), 2, + STATE(3799), 2, sym_line_comment, sym_block_comment, - [100753] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [101910] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7488), 1, - anon_sym_LT2, - STATE(3766), 2, + ACTIONS(7547), 1, + anon_sym_COLON, + STATE(3800), 2, sym_line_comment, sym_block_comment, - [100767] = 4, - ACTIONS(103), 1, + [101924] = 4, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(7549), 1, + anon_sym_EQ_GT, + STATE(3801), 2, + sym_line_comment, + sym_block_comment, + [101938] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7490), 1, + ACTIONS(7551), 1, anon_sym_COLON, - STATE(3767), 2, + STATE(3802), 2, sym_line_comment, sym_block_comment, - [100781] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [101952] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7492), 1, + ACTIONS(7553), 1, anon_sym_LBRACK, - STATE(3768), 2, + STATE(3803), 2, sym_line_comment, sym_block_comment, - [100795] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [101966] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7494), 1, + ACTIONS(7555), 1, anon_sym_LBRACK, - STATE(3769), 2, + STATE(3804), 2, sym_line_comment, sym_block_comment, - [100809] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [101980] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7496), 1, + ACTIONS(7557), 1, anon_sym_COLON, - STATE(3770), 2, + STATE(3805), 2, sym_line_comment, sym_block_comment, - [100823] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [101994] = 4, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5759), 1, - anon_sym_RPAREN, - STATE(3771), 2, - sym_line_comment, - sym_block_comment, - [100837] = 4, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7498), 1, - anon_sym_fn, - STATE(3772), 2, + ACTIONS(4797), 1, + anon_sym_COLON_COLON, + STATE(3806), 2, sym_line_comment, sym_block_comment, - [100851] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [102008] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7500), 1, + ACTIONS(7559), 1, anon_sym_COLON, - STATE(3773), 2, + STATE(3807), 2, sym_line_comment, sym_block_comment, - [100865] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [102022] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7502), 1, + ACTIONS(7561), 1, anon_sym_COLON, - STATE(3774), 2, + STATE(3808), 2, sym_line_comment, sym_block_comment, - [100879] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [102036] = 4, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3166), 1, - anon_sym_PLUS, - STATE(3775), 2, - sym_line_comment, - sym_block_comment, - [100893] = 4, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7504), 1, - anon_sym_RBRACE, - STATE(3776), 2, + ACTIONS(7563), 1, + anon_sym_RPAREN, + STATE(3809), 2, sym_line_comment, sym_block_comment, - [100907] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [102050] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7506), 1, + ACTIONS(7565), 1, anon_sym_COLON, - STATE(3777), 2, + STATE(3810), 2, sym_line_comment, sym_block_comment, - [100921] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [102064] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7508), 1, + ACTIONS(7567), 1, anon_sym_COLON, - STATE(3778), 2, + STATE(3811), 2, sym_line_comment, sym_block_comment, - [100935] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [102078] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7510), 1, + ACTIONS(7569), 1, anon_sym_COLON, - STATE(3779), 2, + STATE(3812), 2, sym_line_comment, sym_block_comment, - [100949] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [102092] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7512), 1, - anon_sym_COLON_COLON, - STATE(3780), 2, + ACTIONS(7571), 1, + sym_identifier, + STATE(3813), 2, sym_line_comment, sym_block_comment, - [100963] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [102106] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4688), 1, + ACTIONS(4716), 1, anon_sym_fn, - STATE(3781), 2, + STATE(3814), 2, sym_line_comment, sym_block_comment, - [100977] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [102120] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7514), 1, + ACTIONS(6875), 1, anon_sym_SEMI, - STATE(3782), 2, + STATE(3815), 2, sym_line_comment, sym_block_comment, - [100991] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [102134] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7516), 1, - anon_sym_RPAREN, - STATE(3783), 2, + ACTIONS(6633), 1, + anon_sym_RBRACE, + STATE(3816), 2, sym_line_comment, sym_block_comment, - [101005] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [102148] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(987), 1, - anon_sym_EQ_GT, - STATE(3784), 2, + ACTIONS(767), 1, + anon_sym_RBRACK, + STATE(3817), 2, sym_line_comment, sym_block_comment, - [101019] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [102162] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6902), 1, - anon_sym_SEMI, - STATE(3785), 2, + ACTIONS(7573), 1, + sym_identifier, + STATE(3818), 2, sym_line_comment, sym_block_comment, - [101033] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [102176] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5310), 1, - anon_sym_SEMI, - STATE(3786), 2, + ACTIONS(7575), 1, + anon_sym_LT2, + STATE(3819), 2, sym_line_comment, sym_block_comment, - [101047] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [102190] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7518), 1, - sym__raw_string_literal_end, - STATE(3787), 2, + ACTIONS(7577), 1, + anon_sym_SEMI, + STATE(3820), 2, sym_line_comment, sym_block_comment, - [101061] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [102204] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7520), 1, + ACTIONS(7579), 1, sym_identifier, - STATE(3788), 2, + STATE(3821), 2, sym_line_comment, sym_block_comment, - [101075] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [102218] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7522), 1, - sym__line_doc_content, - STATE(3789), 2, + ACTIONS(7581), 1, + anon_sym_fn, + STATE(3822), 2, sym_line_comment, sym_block_comment, - [101089] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [102232] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7524), 1, - sym_identifier, - STATE(3790), 2, + ACTIONS(3182), 1, + anon_sym_PLUS, + STATE(3823), 2, sym_line_comment, sym_block_comment, - [101103] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [102246] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7526), 1, + ACTIONS(7583), 1, sym_identifier, - STATE(3791), 2, + STATE(3824), 2, sym_line_comment, sym_block_comment, - [101117] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [102260] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7528), 1, + ACTIONS(7585), 1, anon_sym_fn, - STATE(3792), 2, + STATE(3825), 2, sym_line_comment, sym_block_comment, - [101131] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [102274] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7530), 1, - anon_sym_EQ, - STATE(3793), 2, + ACTIONS(7587), 1, + anon_sym_RBRACK, + STATE(3826), 2, sym_line_comment, sym_block_comment, - [101145] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [102288] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7532), 1, - sym_identifier, - STATE(3794), 2, + ACTIONS(7589), 1, + anon_sym_SEMI, + STATE(3827), 2, sym_line_comment, sym_block_comment, - [101159] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [102302] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7534), 1, - sym_identifier, - STATE(3795), 2, + ACTIONS(7591), 1, + anon_sym_COLON_COLON, + STATE(3828), 2, sym_line_comment, sym_block_comment, - [101173] = 4, - ACTIONS(103), 1, + [102316] = 4, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(6241), 1, + anon_sym_RBRACE, + STATE(3829), 2, + sym_line_comment, + sym_block_comment, + [102330] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6958), 1, - anon_sym_SEMI, - STATE(3796), 2, + ACTIONS(7593), 1, + sym__raw_string_literal_end, + STATE(3830), 2, sym_line_comment, sym_block_comment, - [101187] = 4, - ACTIONS(103), 1, + [102344] = 4, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(7595), 1, + anon_sym_COLON, + STATE(3831), 2, + sym_line_comment, + sym_block_comment, + [102358] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7536), 1, + ACTIONS(7597), 1, sym_identifier, - STATE(3797), 2, + STATE(3832), 2, sym_line_comment, sym_block_comment, - [101201] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [102372] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7538), 1, - anon_sym_SEMI, - STATE(3798), 2, + ACTIONS(7599), 1, + anon_sym_RPAREN, + STATE(3833), 2, sym_line_comment, sym_block_comment, - [101215] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [102386] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7540), 1, + ACTIONS(7601), 1, sym_identifier, - STATE(3799), 2, + STATE(3834), 2, sym_line_comment, sym_block_comment, - [101229] = 4, - ACTIONS(103), 1, + [102400] = 4, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(7603), 1, + anon_sym_RBRACE, + STATE(3835), 2, + sym_line_comment, + sym_block_comment, + [102414] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7542), 1, - anon_sym_COLON_COLON, - STATE(3800), 2, + ACTIONS(7605), 1, + anon_sym_SEMI, + STATE(3836), 2, sym_line_comment, sym_block_comment, - [101243] = 4, - ACTIONS(103), 1, + [102428] = 4, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(3210), 1, + anon_sym_PLUS, + STATE(3837), 2, + sym_line_comment, + sym_block_comment, + [102442] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7544), 1, + ACTIONS(7607), 1, sym_identifier, - STATE(3801), 2, + STATE(3838), 2, sym_line_comment, sym_block_comment, - [101257] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [102456] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4114), 1, + ACTIONS(7609), 1, anon_sym_COLON_COLON, - STATE(3802), 2, + STATE(3839), 2, sym_line_comment, sym_block_comment, - [101271] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [102470] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7546), 1, + ACTIONS(7611), 1, sym_identifier, - STATE(3803), 2, + STATE(3840), 2, sym_line_comment, sym_block_comment, - [101285] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [102484] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7548), 1, + ACTIONS(7613), 1, sym_identifier, - STATE(3804), 2, + STATE(3841), 2, sym_line_comment, sym_block_comment, - [101299] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [102498] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7550), 1, + ACTIONS(7615), 1, sym_identifier, - STATE(3805), 2, + STATE(3842), 2, sym_line_comment, sym_block_comment, - [101313] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [102512] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7552), 1, + ACTIONS(7617), 1, sym_identifier, - STATE(3806), 2, + STATE(3843), 2, sym_line_comment, sym_block_comment, - [101327] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [102526] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7554), 1, + ACTIONS(7619), 1, sym_identifier, - STATE(3807), 2, + STATE(3844), 2, sym_line_comment, sym_block_comment, - [101341] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [102540] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7556), 1, - sym_identifier, - STATE(3808), 2, + ACTIONS(7621), 1, + anon_sym_RBRACK, + STATE(3845), 2, sym_line_comment, sym_block_comment, - [101355] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [102554] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7558), 1, + ACTIONS(7623), 1, sym_identifier, - STATE(3809), 2, + STATE(3846), 2, sym_line_comment, sym_block_comment, - [101369] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [102568] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7560), 1, - anon_sym_SEMI, - STATE(3810), 2, + ACTIONS(7625), 1, + sym_identifier, + STATE(3847), 2, sym_line_comment, sym_block_comment, - [101383] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [102582] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7562), 1, - sym_identifier, - STATE(3811), 2, + ACTIONS(7627), 1, + sym__raw_string_literal_end, + STATE(3848), 2, sym_line_comment, sym_block_comment, - [101397] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [102596] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7564), 1, + ACTIONS(7629), 1, anon_sym_fn, - STATE(3812), 2, + STATE(3849), 2, sym_line_comment, sym_block_comment, - [101411] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [102610] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3220), 1, - anon_sym_PLUS, - STATE(3813), 2, + ACTIONS(7631), 1, + anon_sym_SEMI, + STATE(3850), 2, sym_line_comment, sym_block_comment, - [101425] = 4, - ACTIONS(103), 1, + [102624] = 4, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(7633), 1, + sym__line_doc_content, + STATE(3851), 2, + sym_line_comment, + sym_block_comment, + [102638] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7566), 1, + ACTIONS(7635), 1, anon_sym_fn, - STATE(3814), 2, + STATE(3852), 2, sym_line_comment, sym_block_comment, - [101439] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [102652] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7568), 1, + ACTIONS(7637), 1, sym_identifier, - STATE(3815), 2, + STATE(3853), 2, sym_line_comment, sym_block_comment, - [101453] = 1, - ACTIONS(7570), 1, + [102666] = 1, + ACTIONS(7639), 1, ts_builtin_sym_end, - [101457] = 1, - ACTIONS(7572), 1, + [102670] = 1, + ACTIONS(7641), 1, ts_builtin_sym_end, - [101461] = 1, - ACTIONS(7574), 1, + [102674] = 1, + ACTIONS(7643), 1, ts_builtin_sym_end, - [101465] = 1, - ACTIONS(7576), 1, + [102678] = 1, + ACTIONS(7645), 1, ts_builtin_sym_end, - [101469] = 1, - ACTIONS(7578), 1, + [102682] = 1, + ACTIONS(7647), 1, ts_builtin_sym_end, - [101473] = 1, - ACTIONS(7580), 1, + [102686] = 1, + ACTIONS(7649), 1, ts_builtin_sym_end, - [101477] = 1, - ACTIONS(7582), 1, + [102690] = 1, + ACTIONS(7651), 1, ts_builtin_sym_end, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(1063)] = 0, - [SMALL_STATE(1064)] = 75, - [SMALL_STATE(1065)] = 148, - [SMALL_STATE(1066)] = 219, - [SMALL_STATE(1067)] = 319, - [SMALL_STATE(1068)] = 419, - [SMALL_STATE(1069)] = 519, - [SMALL_STATE(1070)] = 596, - [SMALL_STATE(1071)] = 675, - [SMALL_STATE(1072)] = 752, - [SMALL_STATE(1073)] = 829, - [SMALL_STATE(1074)] = 893, - [SMALL_STATE(1075)] = 957, - [SMALL_STATE(1076)] = 1021, - [SMALL_STATE(1077)] = 1085, - [SMALL_STATE(1078)] = 1153, - [SMALL_STATE(1079)] = 1217, - [SMALL_STATE(1080)] = 1291, - [SMALL_STATE(1081)] = 1355, - [SMALL_STATE(1082)] = 1419, - [SMALL_STATE(1083)] = 1483, - [SMALL_STATE(1084)] = 1547, - [SMALL_STATE(1085)] = 1618, - [SMALL_STATE(1086)] = 1681, - [SMALL_STATE(1087)] = 1782, - [SMALL_STATE(1088)] = 1845, - [SMALL_STATE(1089)] = 1912, - [SMALL_STATE(1090)] = 1983, - [SMALL_STATE(1091)] = 2046, - [SMALL_STATE(1092)] = 2117, - [SMALL_STATE(1093)] = 2188, - [SMALL_STATE(1094)] = 2255, - [SMALL_STATE(1095)] = 2356, - [SMALL_STATE(1096)] = 2423, - [SMALL_STATE(1097)] = 2486, - [SMALL_STATE(1098)] = 2549, - [SMALL_STATE(1099)] = 2616, - [SMALL_STATE(1100)] = 2683, - [SMALL_STATE(1101)] = 2784, - [SMALL_STATE(1102)] = 2848, - [SMALL_STATE(1103)] = 2912, - [SMALL_STATE(1104)] = 2974, - [SMALL_STATE(1105)] = 3042, - [SMALL_STATE(1106)] = 3104, - [SMALL_STATE(1107)] = 3166, - [SMALL_STATE(1108)] = 3228, - [SMALL_STATE(1109)] = 3298, - [SMALL_STATE(1110)] = 3360, - [SMALL_STATE(1111)] = 3422, - [SMALL_STATE(1112)] = 3484, - [SMALL_STATE(1113)] = 3546, - [SMALL_STATE(1114)] = 3607, - [SMALL_STATE(1115)] = 3668, - [SMALL_STATE(1116)] = 3729, - [SMALL_STATE(1117)] = 3790, - [SMALL_STATE(1118)] = 3851, - [SMALL_STATE(1119)] = 3912, - [SMALL_STATE(1120)] = 3973, - [SMALL_STATE(1121)] = 4034, - [SMALL_STATE(1122)] = 4095, - [SMALL_STATE(1123)] = 4156, - [SMALL_STATE(1124)] = 4217, - [SMALL_STATE(1125)] = 4278, - [SMALL_STATE(1126)] = 4339, - [SMALL_STATE(1127)] = 4400, - [SMALL_STATE(1128)] = 4461, - [SMALL_STATE(1129)] = 4522, - [SMALL_STATE(1130)] = 4583, - [SMALL_STATE(1131)] = 4644, - [SMALL_STATE(1132)] = 4705, - [SMALL_STATE(1133)] = 4766, - [SMALL_STATE(1134)] = 4827, - [SMALL_STATE(1135)] = 4888, - [SMALL_STATE(1136)] = 4949, - [SMALL_STATE(1137)] = 5010, - [SMALL_STATE(1138)] = 5071, - [SMALL_STATE(1139)] = 5132, - [SMALL_STATE(1140)] = 5193, - [SMALL_STATE(1141)] = 5254, - [SMALL_STATE(1142)] = 5315, - [SMALL_STATE(1143)] = 5376, - [SMALL_STATE(1144)] = 5437, - [SMALL_STATE(1145)] = 5498, - [SMALL_STATE(1146)] = 5559, - [SMALL_STATE(1147)] = 5620, - [SMALL_STATE(1148)] = 5681, - [SMALL_STATE(1149)] = 5756, - [SMALL_STATE(1150)] = 5817, - [SMALL_STATE(1151)] = 5880, - [SMALL_STATE(1152)] = 5941, - [SMALL_STATE(1153)] = 6002, - [SMALL_STATE(1154)] = 6063, - [SMALL_STATE(1155)] = 6124, - [SMALL_STATE(1156)] = 6185, - [SMALL_STATE(1157)] = 6248, - [SMALL_STATE(1158)] = 6309, - [SMALL_STATE(1159)] = 6372, - [SMALL_STATE(1160)] = 6433, - [SMALL_STATE(1161)] = 6494, - [SMALL_STATE(1162)] = 6557, - [SMALL_STATE(1163)] = 6618, - [SMALL_STATE(1164)] = 6679, - [SMALL_STATE(1165)] = 6740, - [SMALL_STATE(1166)] = 6801, - [SMALL_STATE(1167)] = 6862, - [SMALL_STATE(1168)] = 6923, - [SMALL_STATE(1169)] = 6984, - [SMALL_STATE(1170)] = 7045, - [SMALL_STATE(1171)] = 7106, - [SMALL_STATE(1172)] = 7167, - [SMALL_STATE(1173)] = 7228, - [SMALL_STATE(1174)] = 7289, - [SMALL_STATE(1175)] = 7350, - [SMALL_STATE(1176)] = 7411, - [SMALL_STATE(1177)] = 7472, - [SMALL_STATE(1178)] = 7533, - [SMALL_STATE(1179)] = 7594, - [SMALL_STATE(1180)] = 7655, - [SMALL_STATE(1181)] = 7716, - [SMALL_STATE(1182)] = 7779, - [SMALL_STATE(1183)] = 7840, - [SMALL_STATE(1184)] = 7901, - [SMALL_STATE(1185)] = 7962, - [SMALL_STATE(1186)] = 8023, - [SMALL_STATE(1187)] = 8084, - [SMALL_STATE(1188)] = 8145, - [SMALL_STATE(1189)] = 8206, - [SMALL_STATE(1190)] = 8267, - [SMALL_STATE(1191)] = 8328, - [SMALL_STATE(1192)] = 8389, - [SMALL_STATE(1193)] = 8450, - [SMALL_STATE(1194)] = 8511, - [SMALL_STATE(1195)] = 8572, - [SMALL_STATE(1196)] = 8633, - [SMALL_STATE(1197)] = 8694, - [SMALL_STATE(1198)] = 8755, - [SMALL_STATE(1199)] = 8816, - [SMALL_STATE(1200)] = 8877, - [SMALL_STATE(1201)] = 8938, - [SMALL_STATE(1202)] = 8999, - [SMALL_STATE(1203)] = 9060, - [SMALL_STATE(1204)] = 9121, - [SMALL_STATE(1205)] = 9182, - [SMALL_STATE(1206)] = 9243, - [SMALL_STATE(1207)] = 9304, - [SMALL_STATE(1208)] = 9365, - [SMALL_STATE(1209)] = 9426, - [SMALL_STATE(1210)] = 9487, - [SMALL_STATE(1211)] = 9548, - [SMALL_STATE(1212)] = 9609, - [SMALL_STATE(1213)] = 9712, - [SMALL_STATE(1214)] = 9775, - [SMALL_STATE(1215)] = 9836, - [SMALL_STATE(1216)] = 9897, - [SMALL_STATE(1217)] = 9958, - [SMALL_STATE(1218)] = 10019, - [SMALL_STATE(1219)] = 10080, - [SMALL_STATE(1220)] = 10141, - [SMALL_STATE(1221)] = 10202, - [SMALL_STATE(1222)] = 10263, - [SMALL_STATE(1223)] = 10324, - [SMALL_STATE(1224)] = 10385, - [SMALL_STATE(1225)] = 10446, - [SMALL_STATE(1226)] = 10507, - [SMALL_STATE(1227)] = 10568, - [SMALL_STATE(1228)] = 10629, - [SMALL_STATE(1229)] = 10690, - [SMALL_STATE(1230)] = 10751, - [SMALL_STATE(1231)] = 10812, - [SMALL_STATE(1232)] = 10873, - [SMALL_STATE(1233)] = 10934, - [SMALL_STATE(1234)] = 10995, - [SMALL_STATE(1235)] = 11056, - [SMALL_STATE(1236)] = 11117, - [SMALL_STATE(1237)] = 11178, - [SMALL_STATE(1238)] = 11281, - [SMALL_STATE(1239)] = 11342, - [SMALL_STATE(1240)] = 11403, - [SMALL_STATE(1241)] = 11464, - [SMALL_STATE(1242)] = 11525, - [SMALL_STATE(1243)] = 11586, - [SMALL_STATE(1244)] = 11647, - [SMALL_STATE(1245)] = 11708, - [SMALL_STATE(1246)] = 11769, - [SMALL_STATE(1247)] = 11830, - [SMALL_STATE(1248)] = 11891, - [SMALL_STATE(1249)] = 11952, - [SMALL_STATE(1250)] = 12013, - [SMALL_STATE(1251)] = 12074, - [SMALL_STATE(1252)] = 12139, - [SMALL_STATE(1253)] = 12200, - [SMALL_STATE(1254)] = 12261, - [SMALL_STATE(1255)] = 12322, - [SMALL_STATE(1256)] = 12383, - [SMALL_STATE(1257)] = 12444, - [SMALL_STATE(1258)] = 12537, - [SMALL_STATE(1259)] = 12598, - [SMALL_STATE(1260)] = 12659, - [SMALL_STATE(1261)] = 12720, - [SMALL_STATE(1262)] = 12781, - [SMALL_STATE(1263)] = 12844, - [SMALL_STATE(1264)] = 12905, - [SMALL_STATE(1265)] = 12968, - [SMALL_STATE(1266)] = 13031, - [SMALL_STATE(1267)] = 13092, - [SMALL_STATE(1268)] = 13157, - [SMALL_STATE(1269)] = 13218, - [SMALL_STATE(1270)] = 13279, - [SMALL_STATE(1271)] = 13340, - [SMALL_STATE(1272)] = 13401, - [SMALL_STATE(1273)] = 13462, - [SMALL_STATE(1274)] = 13523, - [SMALL_STATE(1275)] = 13584, - [SMALL_STATE(1276)] = 13645, - [SMALL_STATE(1277)] = 13706, - [SMALL_STATE(1278)] = 13767, - [SMALL_STATE(1279)] = 13828, - [SMALL_STATE(1280)] = 13889, - [SMALL_STATE(1281)] = 13950, - [SMALL_STATE(1282)] = 14011, - [SMALL_STATE(1283)] = 14104, - [SMALL_STATE(1284)] = 14179, - [SMALL_STATE(1285)] = 14240, - [SMALL_STATE(1286)] = 14343, - [SMALL_STATE(1287)] = 14404, - [SMALL_STATE(1288)] = 14497, - [SMALL_STATE(1289)] = 14558, - [SMALL_STATE(1290)] = 14619, - [SMALL_STATE(1291)] = 14680, - [SMALL_STATE(1292)] = 14741, - [SMALL_STATE(1293)] = 14802, - [SMALL_STATE(1294)] = 14863, - [SMALL_STATE(1295)] = 14926, - [SMALL_STATE(1296)] = 14987, - [SMALL_STATE(1297)] = 15050, - [SMALL_STATE(1298)] = 15111, - [SMALL_STATE(1299)] = 15172, - [SMALL_STATE(1300)] = 15235, - [SMALL_STATE(1301)] = 15296, - [SMALL_STATE(1302)] = 15359, - [SMALL_STATE(1303)] = 15420, - [SMALL_STATE(1304)] = 15483, - [SMALL_STATE(1305)] = 15544, - [SMALL_STATE(1306)] = 15605, - [SMALL_STATE(1307)] = 15666, - [SMALL_STATE(1308)] = 15731, - [SMALL_STATE(1309)] = 15792, - [SMALL_STATE(1310)] = 15853, - [SMALL_STATE(1311)] = 15914, - [SMALL_STATE(1312)] = 15975, - [SMALL_STATE(1313)] = 16036, - [SMALL_STATE(1314)] = 16097, - [SMALL_STATE(1315)] = 16158, - [SMALL_STATE(1316)] = 16219, - [SMALL_STATE(1317)] = 16280, - [SMALL_STATE(1318)] = 16341, - [SMALL_STATE(1319)] = 16402, - [SMALL_STATE(1320)] = 16463, - [SMALL_STATE(1321)] = 16524, - [SMALL_STATE(1322)] = 16585, - [SMALL_STATE(1323)] = 16646, - [SMALL_STATE(1324)] = 16707, - [SMALL_STATE(1325)] = 16768, - [SMALL_STATE(1326)] = 16829, - [SMALL_STATE(1327)] = 16890, - [SMALL_STATE(1328)] = 16951, - [SMALL_STATE(1329)] = 17012, - [SMALL_STATE(1330)] = 17073, - [SMALL_STATE(1331)] = 17134, - [SMALL_STATE(1332)] = 17195, - [SMALL_STATE(1333)] = 17256, - [SMALL_STATE(1334)] = 17319, - [SMALL_STATE(1335)] = 17380, - [SMALL_STATE(1336)] = 17443, - [SMALL_STATE(1337)] = 17506, - [SMALL_STATE(1338)] = 17567, - [SMALL_STATE(1339)] = 17628, - [SMALL_STATE(1340)] = 17689, - [SMALL_STATE(1341)] = 17750, - [SMALL_STATE(1342)] = 17811, - [SMALL_STATE(1343)] = 17872, - [SMALL_STATE(1344)] = 17933, - [SMALL_STATE(1345)] = 17994, - [SMALL_STATE(1346)] = 18055, - [SMALL_STATE(1347)] = 18116, - [SMALL_STATE(1348)] = 18177, - [SMALL_STATE(1349)] = 18238, - [SMALL_STATE(1350)] = 18299, - [SMALL_STATE(1351)] = 18360, - [SMALL_STATE(1352)] = 18421, - [SMALL_STATE(1353)] = 18482, - [SMALL_STATE(1354)] = 18543, - [SMALL_STATE(1355)] = 18604, - [SMALL_STATE(1356)] = 18665, - [SMALL_STATE(1357)] = 18726, - [SMALL_STATE(1358)] = 18787, - [SMALL_STATE(1359)] = 18848, - [SMALL_STATE(1360)] = 18909, - [SMALL_STATE(1361)] = 18970, - [SMALL_STATE(1362)] = 19031, - [SMALL_STATE(1363)] = 19092, - [SMALL_STATE(1364)] = 19153, - [SMALL_STATE(1365)] = 19214, - [SMALL_STATE(1366)] = 19275, - [SMALL_STATE(1367)] = 19336, - [SMALL_STATE(1368)] = 19397, - [SMALL_STATE(1369)] = 19458, - [SMALL_STATE(1370)] = 19519, - [SMALL_STATE(1371)] = 19580, - [SMALL_STATE(1372)] = 19641, - [SMALL_STATE(1373)] = 19702, - [SMALL_STATE(1374)] = 19763, - [SMALL_STATE(1375)] = 19824, - [SMALL_STATE(1376)] = 19885, - [SMALL_STATE(1377)] = 19946, - [SMALL_STATE(1378)] = 20007, - [SMALL_STATE(1379)] = 20068, - [SMALL_STATE(1380)] = 20129, - [SMALL_STATE(1381)] = 20190, - [SMALL_STATE(1382)] = 20251, - [SMALL_STATE(1383)] = 20312, - [SMALL_STATE(1384)] = 20373, - [SMALL_STATE(1385)] = 20434, - [SMALL_STATE(1386)] = 20495, - [SMALL_STATE(1387)] = 20556, - [SMALL_STATE(1388)] = 20617, - [SMALL_STATE(1389)] = 20678, - [SMALL_STATE(1390)] = 20739, - [SMALL_STATE(1391)] = 20800, - [SMALL_STATE(1392)] = 20861, - [SMALL_STATE(1393)] = 20924, - [SMALL_STATE(1394)] = 20985, - [SMALL_STATE(1395)] = 21046, - [SMALL_STATE(1396)] = 21107, - [SMALL_STATE(1397)] = 21168, - [SMALL_STATE(1398)] = 21229, - [SMALL_STATE(1399)] = 21290, - [SMALL_STATE(1400)] = 21351, - [SMALL_STATE(1401)] = 21412, - [SMALL_STATE(1402)] = 21473, - [SMALL_STATE(1403)] = 21534, - [SMALL_STATE(1404)] = 21595, - [SMALL_STATE(1405)] = 21656, - [SMALL_STATE(1406)] = 21717, - [SMALL_STATE(1407)] = 21778, - [SMALL_STATE(1408)] = 21839, - [SMALL_STATE(1409)] = 21900, - [SMALL_STATE(1410)] = 21961, - [SMALL_STATE(1411)] = 22022, - [SMALL_STATE(1412)] = 22083, - [SMALL_STATE(1413)] = 22144, - [SMALL_STATE(1414)] = 22205, - [SMALL_STATE(1415)] = 22266, - [SMALL_STATE(1416)] = 22327, - [SMALL_STATE(1417)] = 22388, - [SMALL_STATE(1418)] = 22449, - [SMALL_STATE(1419)] = 22510, - [SMALL_STATE(1420)] = 22571, - [SMALL_STATE(1421)] = 22632, - [SMALL_STATE(1422)] = 22693, - [SMALL_STATE(1423)] = 22754, - [SMALL_STATE(1424)] = 22815, - [SMALL_STATE(1425)] = 22876, - [SMALL_STATE(1426)] = 22937, - [SMALL_STATE(1427)] = 22998, - [SMALL_STATE(1428)] = 23059, - [SMALL_STATE(1429)] = 23162, - [SMALL_STATE(1430)] = 23223, - [SMALL_STATE(1431)] = 23284, - [SMALL_STATE(1432)] = 23345, - [SMALL_STATE(1433)] = 23406, - [SMALL_STATE(1434)] = 23502, - [SMALL_STATE(1435)] = 23562, - [SMALL_STATE(1436)] = 23622, - [SMALL_STATE(1437)] = 23682, - [SMALL_STATE(1438)] = 23742, - [SMALL_STATE(1439)] = 23802, - [SMALL_STATE(1440)] = 23862, - [SMALL_STATE(1441)] = 23922, - [SMALL_STATE(1442)] = 23982, - [SMALL_STATE(1443)] = 24042, - [SMALL_STATE(1444)] = 24102, - [SMALL_STATE(1445)] = 24162, - [SMALL_STATE(1446)] = 24226, - [SMALL_STATE(1447)] = 24286, - [SMALL_STATE(1448)] = 24346, - [SMALL_STATE(1449)] = 24406, - [SMALL_STATE(1450)] = 24472, - [SMALL_STATE(1451)] = 24532, - [SMALL_STATE(1452)] = 24592, - [SMALL_STATE(1453)] = 24652, - [SMALL_STATE(1454)] = 24712, - [SMALL_STATE(1455)] = 24772, - [SMALL_STATE(1456)] = 24840, - [SMALL_STATE(1457)] = 24900, - [SMALL_STATE(1458)] = 24960, - [SMALL_STATE(1459)] = 25020, - [SMALL_STATE(1460)] = 25080, - [SMALL_STATE(1461)] = 25140, - [SMALL_STATE(1462)] = 25200, - [SMALL_STATE(1463)] = 25260, - [SMALL_STATE(1464)] = 25320, - [SMALL_STATE(1465)] = 25380, - [SMALL_STATE(1466)] = 25440, - [SMALL_STATE(1467)] = 25500, - [SMALL_STATE(1468)] = 25566, - [SMALL_STATE(1469)] = 25626, - [SMALL_STATE(1470)] = 25686, - [SMALL_STATE(1471)] = 25746, - [SMALL_STATE(1472)] = 25806, - [SMALL_STATE(1473)] = 25866, - [SMALL_STATE(1474)] = 25926, - [SMALL_STATE(1475)] = 25986, - [SMALL_STATE(1476)] = 26046, - [SMALL_STATE(1477)] = 26106, - [SMALL_STATE(1478)] = 26172, - [SMALL_STATE(1479)] = 26232, - [SMALL_STATE(1480)] = 26292, - [SMALL_STATE(1481)] = 26352, - [SMALL_STATE(1482)] = 26412, - [SMALL_STATE(1483)] = 26472, - [SMALL_STATE(1484)] = 26532, - [SMALL_STATE(1485)] = 26592, - [SMALL_STATE(1486)] = 26652, - [SMALL_STATE(1487)] = 26712, - [SMALL_STATE(1488)] = 26786, - [SMALL_STATE(1489)] = 26846, - [SMALL_STATE(1490)] = 26906, - [SMALL_STATE(1491)] = 26966, - [SMALL_STATE(1492)] = 27026, - [SMALL_STATE(1493)] = 27086, - [SMALL_STATE(1494)] = 27146, - [SMALL_STATE(1495)] = 27206, - [SMALL_STATE(1496)] = 27266, - [SMALL_STATE(1497)] = 27326, - [SMALL_STATE(1498)] = 27386, - [SMALL_STATE(1499)] = 27448, - [SMALL_STATE(1500)] = 27508, - [SMALL_STATE(1501)] = 27568, - [SMALL_STATE(1502)] = 27632, - [SMALL_STATE(1503)] = 27698, - [SMALL_STATE(1504)] = 27758, - [SMALL_STATE(1505)] = 27818, - [SMALL_STATE(1506)] = 27878, - [SMALL_STATE(1507)] = 27938, - [SMALL_STATE(1508)] = 27998, - [SMALL_STATE(1509)] = 28058, - [SMALL_STATE(1510)] = 28118, - [SMALL_STATE(1511)] = 28178, - [SMALL_STATE(1512)] = 28238, - [SMALL_STATE(1513)] = 28298, - [SMALL_STATE(1514)] = 28358, - [SMALL_STATE(1515)] = 28418, - [SMALL_STATE(1516)] = 28478, - [SMALL_STATE(1517)] = 28540, - [SMALL_STATE(1518)] = 28600, - [SMALL_STATE(1519)] = 28660, - [SMALL_STATE(1520)] = 28720, - [SMALL_STATE(1521)] = 28780, - [SMALL_STATE(1522)] = 28840, - [SMALL_STATE(1523)] = 28900, - [SMALL_STATE(1524)] = 28960, - [SMALL_STATE(1525)] = 29020, - [SMALL_STATE(1526)] = 29080, - [SMALL_STATE(1527)] = 29140, - [SMALL_STATE(1528)] = 29200, - [SMALL_STATE(1529)] = 29260, - [SMALL_STATE(1530)] = 29320, - [SMALL_STATE(1531)] = 29380, - [SMALL_STATE(1532)] = 29440, - [SMALL_STATE(1533)] = 29500, - [SMALL_STATE(1534)] = 29560, - [SMALL_STATE(1535)] = 29620, - [SMALL_STATE(1536)] = 29680, - [SMALL_STATE(1537)] = 29740, - [SMALL_STATE(1538)] = 29800, - [SMALL_STATE(1539)] = 29860, - [SMALL_STATE(1540)] = 29920, - [SMALL_STATE(1541)] = 29980, - [SMALL_STATE(1542)] = 30040, - [SMALL_STATE(1543)] = 30100, - [SMALL_STATE(1544)] = 30160, - [SMALL_STATE(1545)] = 30220, - [SMALL_STATE(1546)] = 30280, - [SMALL_STATE(1547)] = 30340, - [SMALL_STATE(1548)] = 30400, - [SMALL_STATE(1549)] = 30460, - [SMALL_STATE(1550)] = 30520, - [SMALL_STATE(1551)] = 30580, - [SMALL_STATE(1552)] = 30640, - [SMALL_STATE(1553)] = 30700, - [SMALL_STATE(1554)] = 30760, - [SMALL_STATE(1555)] = 30820, - [SMALL_STATE(1556)] = 30880, - [SMALL_STATE(1557)] = 30941, - [SMALL_STATE(1558)] = 31002, - [SMALL_STATE(1559)] = 31073, - [SMALL_STATE(1560)] = 31142, - [SMALL_STATE(1561)] = 31232, - [SMALL_STATE(1562)] = 31322, - [SMALL_STATE(1563)] = 31408, - [SMALL_STATE(1564)] = 31500, - [SMALL_STATE(1565)] = 31586, - [SMALL_STATE(1566)] = 31672, - [SMALL_STATE(1567)] = 31732, - [SMALL_STATE(1568)] = 31824, - [SMALL_STATE(1569)] = 31882, - [SMALL_STATE(1570)] = 31948, - [SMALL_STATE(1571)] = 32006, - [SMALL_STATE(1572)] = 32064, - [SMALL_STATE(1573)] = 32150, - [SMALL_STATE(1574)] = 32236, - [SMALL_STATE(1575)] = 32322, - [SMALL_STATE(1576)] = 32382, - [SMALL_STATE(1577)] = 32452, - [SMALL_STATE(1578)] = 32544, - [SMALL_STATE(1579)] = 32634, - [SMALL_STATE(1580)] = 32704, - [SMALL_STATE(1581)] = 32774, - [SMALL_STATE(1582)] = 32860, - [SMALL_STATE(1583)] = 32950, - [SMALL_STATE(1584)] = 33018, - [SMALL_STATE(1585)] = 33092, - [SMALL_STATE(1586)] = 33164, - [SMALL_STATE(1587)] = 33240, - [SMALL_STATE(1588)] = 33322, - [SMALL_STATE(1589)] = 33406, - [SMALL_STATE(1590)] = 33476, - [SMALL_STATE(1591)] = 33566, - [SMALL_STATE(1592)] = 33656, - [SMALL_STATE(1593)] = 33734, - [SMALL_STATE(1594)] = 33820, - [SMALL_STATE(1595)] = 33912, - [SMALL_STATE(1596)] = 33975, - [SMALL_STATE(1597)] = 34038, - [SMALL_STATE(1598)] = 34103, - [SMALL_STATE(1599)] = 34170, - [SMALL_STATE(1600)] = 34228, - [SMALL_STATE(1601)] = 34288, - [SMALL_STATE(1602)] = 34348, - [SMALL_STATE(1603)] = 34408, - [SMALL_STATE(1604)] = 34464, - [SMALL_STATE(1605)] = 34524, - [SMALL_STATE(1606)] = 34584, - [SMALL_STATE(1607)] = 34640, - [SMALL_STATE(1608)] = 34700, - [SMALL_STATE(1609)] = 34756, - [SMALL_STATE(1610)] = 34820, - [SMALL_STATE(1611)] = 34876, - [SMALL_STATE(1612)] = 34940, - [SMALL_STATE(1613)] = 34998, - [SMALL_STATE(1614)] = 35056, - [SMALL_STATE(1615)] = 35120, - [SMALL_STATE(1616)] = 35184, - [SMALL_STATE(1617)] = 35242, - [SMALL_STATE(1618)] = 35302, - [SMALL_STATE(1619)] = 35359, - [SMALL_STATE(1620)] = 35454, - [SMALL_STATE(1621)] = 35511, - [SMALL_STATE(1622)] = 35566, - [SMALL_STATE(1623)] = 35625, - [SMALL_STATE(1624)] = 35680, - [SMALL_STATE(1625)] = 35735, - [SMALL_STATE(1626)] = 35824, - [SMALL_STATE(1627)] = 35879, - [SMALL_STATE(1628)] = 35936, - [SMALL_STATE(1629)] = 35991, - [SMALL_STATE(1630)] = 36046, - [SMALL_STATE(1631)] = 36101, - [SMALL_STATE(1632)] = 36156, - [SMALL_STATE(1633)] = 36245, - [SMALL_STATE(1634)] = 36304, - [SMALL_STATE(1635)] = 36363, - [SMALL_STATE(1636)] = 36420, - [SMALL_STATE(1637)] = 36515, - [SMALL_STATE(1638)] = 36610, - [SMALL_STATE(1639)] = 36667, - [SMALL_STATE(1640)] = 36762, - [SMALL_STATE(1641)] = 36857, - [SMALL_STATE(1642)] = 36952, - [SMALL_STATE(1643)] = 37047, - [SMALL_STATE(1644)] = 37142, - [SMALL_STATE(1645)] = 37237, - [SMALL_STATE(1646)] = 37294, - [SMALL_STATE(1647)] = 37351, - [SMALL_STATE(1648)] = 37440, - [SMALL_STATE(1649)] = 37535, - [SMALL_STATE(1650)] = 37630, - [SMALL_STATE(1651)] = 37725, - [SMALL_STATE(1652)] = 37784, - [SMALL_STATE(1653)] = 37873, - [SMALL_STATE(1654)] = 37927, - [SMALL_STATE(1655)] = 37981, - [SMALL_STATE(1656)] = 38067, - [SMALL_STATE(1657)] = 38123, - [SMALL_STATE(1658)] = 38197, - [SMALL_STATE(1659)] = 38253, - [SMALL_STATE(1660)] = 38307, - [SMALL_STATE(1661)] = 38361, - [SMALL_STATE(1662)] = 38415, - [SMALL_STATE(1663)] = 38469, - [SMALL_STATE(1664)] = 38523, - [SMALL_STATE(1665)] = 38577, - [SMALL_STATE(1666)] = 38633, - [SMALL_STATE(1667)] = 38701, - [SMALL_STATE(1668)] = 38755, - [SMALL_STATE(1669)] = 38811, - [SMALL_STATE(1670)] = 38865, - [SMALL_STATE(1671)] = 38919, - [SMALL_STATE(1672)] = 38973, - [SMALL_STATE(1673)] = 39027, - [SMALL_STATE(1674)] = 39115, - [SMALL_STATE(1675)] = 39169, - [SMALL_STATE(1676)] = 39251, - [SMALL_STATE(1677)] = 39323, - [SMALL_STATE(1678)] = 39379, - [SMALL_STATE(1679)] = 39457, - [SMALL_STATE(1680)] = 39539, - [SMALL_STATE(1681)] = 39625, - [SMALL_STATE(1682)] = 39681, - [SMALL_STATE(1683)] = 39767, - [SMALL_STATE(1684)] = 39823, - [SMALL_STATE(1685)] = 39915, - [SMALL_STATE(1686)] = 39995, - [SMALL_STATE(1687)] = 40083, - [SMALL_STATE(1688)] = 40175, - [SMALL_STATE(1689)] = 40231, - [SMALL_STATE(1690)] = 40323, - [SMALL_STATE(1691)] = 40379, - [SMALL_STATE(1692)] = 40445, - [SMALL_STATE(1693)] = 40501, - [SMALL_STATE(1694)] = 40557, - [SMALL_STATE(1695)] = 40643, - [SMALL_STATE(1696)] = 40707, - [SMALL_STATE(1697)] = 40777, - [SMALL_STATE(1698)] = 40857, - [SMALL_STATE(1699)] = 40911, - [SMALL_STATE(1700)] = 40965, - [SMALL_STATE(1701)] = 41057, - [SMALL_STATE(1702)] = 41145, - [SMALL_STATE(1703)] = 41201, - [SMALL_STATE(1704)] = 41293, - [SMALL_STATE(1705)] = 41349, - [SMALL_STATE(1706)] = 41437, - [SMALL_STATE(1707)] = 41495, - [SMALL_STATE(1708)] = 41587, - [SMALL_STATE(1709)] = 41643, - [SMALL_STATE(1710)] = 41731, - [SMALL_STATE(1711)] = 41819, - [SMALL_STATE(1712)] = 41905, - [SMALL_STATE(1713)] = 41961, - [SMALL_STATE(1714)] = 42017, - [SMALL_STATE(1715)] = 42103, - [SMALL_STATE(1716)] = 42170, - [SMALL_STATE(1717)] = 42259, - [SMALL_STATE(1718)] = 42348, - [SMALL_STATE(1719)] = 42401, - [SMALL_STATE(1720)] = 42454, - [SMALL_STATE(1721)] = 42507, - [SMALL_STATE(1722)] = 42560, - [SMALL_STATE(1723)] = 42613, - [SMALL_STATE(1724)] = 42702, - [SMALL_STATE(1725)] = 42755, - [SMALL_STATE(1726)] = 42808, - [SMALL_STATE(1727)] = 42861, - [SMALL_STATE(1728)] = 42950, - [SMALL_STATE(1729)] = 43003, - [SMALL_STATE(1730)] = 43056, - [SMALL_STATE(1731)] = 43109, - [SMALL_STATE(1732)] = 43168, - [SMALL_STATE(1733)] = 43221, - [SMALL_STATE(1734)] = 43274, - [SMALL_STATE(1735)] = 43333, - [SMALL_STATE(1736)] = 43386, - [SMALL_STATE(1737)] = 43439, - [SMALL_STATE(1738)] = 43492, - [SMALL_STATE(1739)] = 43545, - [SMALL_STATE(1740)] = 43630, - [SMALL_STATE(1741)] = 43683, - [SMALL_STATE(1742)] = 43772, - [SMALL_STATE(1743)] = 43859, - [SMALL_STATE(1744)] = 43940, - [SMALL_STATE(1745)] = 43993, - [SMALL_STATE(1746)] = 44046, - [SMALL_STATE(1747)] = 44131, - [SMALL_STATE(1748)] = 44184, - [SMALL_STATE(1749)] = 44269, - [SMALL_STATE(1750)] = 44354, - [SMALL_STATE(1751)] = 44441, - [SMALL_STATE(1752)] = 44494, - [SMALL_STATE(1753)] = 44547, - [SMALL_STATE(1754)] = 44600, - [SMALL_STATE(1755)] = 44653, - [SMALL_STATE(1756)] = 44706, - [SMALL_STATE(1757)] = 44759, - [SMALL_STATE(1758)] = 44812, - [SMALL_STATE(1759)] = 44865, - [SMALL_STATE(1760)] = 44918, - [SMALL_STATE(1761)] = 44971, - [SMALL_STATE(1762)] = 45024, - [SMALL_STATE(1763)] = 45077, - [SMALL_STATE(1764)] = 45130, - [SMALL_STATE(1765)] = 45207, - [SMALL_STATE(1766)] = 45266, - [SMALL_STATE(1767)] = 45353, - [SMALL_STATE(1768)] = 45438, - [SMALL_STATE(1769)] = 45525, - [SMALL_STATE(1770)] = 45612, - [SMALL_STATE(1771)] = 45675, - [SMALL_STATE(1772)] = 45744, - [SMALL_STATE(1773)] = 45811, - [SMALL_STATE(1774)] = 45882, - [SMALL_STATE(1775)] = 45959, - [SMALL_STATE(1776)] = 46038, - [SMALL_STATE(1777)] = 46103, - [SMALL_STATE(1778)] = 46188, - [SMALL_STATE(1779)] = 46273, - [SMALL_STATE(1780)] = 46346, - [SMALL_STATE(1781)] = 46427, - [SMALL_STATE(1782)] = 46512, - [SMALL_STATE(1783)] = 46565, - [SMALL_STATE(1784)] = 46618, - [SMALL_STATE(1785)] = 46671, - [SMALL_STATE(1786)] = 46724, - [SMALL_STATE(1787)] = 46777, - [SMALL_STATE(1788)] = 46830, - [SMALL_STATE(1789)] = 46917, - [SMALL_STATE(1790)] = 47006, - [SMALL_STATE(1791)] = 47059, - [SMALL_STATE(1792)] = 47112, - [SMALL_STATE(1793)] = 47165, - [SMALL_STATE(1794)] = 47254, - [SMALL_STATE(1795)] = 47307, - [SMALL_STATE(1796)] = 47360, - [SMALL_STATE(1797)] = 47413, - [SMALL_STATE(1798)] = 47466, - [SMALL_STATE(1799)] = 47553, - [SMALL_STATE(1800)] = 47606, - [SMALL_STATE(1801)] = 47659, - [SMALL_STATE(1802)] = 47712, - [SMALL_STATE(1803)] = 47765, - [SMALL_STATE(1804)] = 47818, - [SMALL_STATE(1805)] = 47871, - [SMALL_STATE(1806)] = 47924, - [SMALL_STATE(1807)] = 47977, - [SMALL_STATE(1808)] = 48030, - [SMALL_STATE(1809)] = 48083, - [SMALL_STATE(1810)] = 48136, - [SMALL_STATE(1811)] = 48189, - [SMALL_STATE(1812)] = 48242, - [SMALL_STATE(1813)] = 48295, - [SMALL_STATE(1814)] = 48348, - [SMALL_STATE(1815)] = 48401, - [SMALL_STATE(1816)] = 48454, - [SMALL_STATE(1817)] = 48543, - [SMALL_STATE(1818)] = 48630, - [SMALL_STATE(1819)] = 48683, - [SMALL_STATE(1820)] = 48736, - [SMALL_STATE(1821)] = 48823, - [SMALL_STATE(1822)] = 48908, - [SMALL_STATE(1823)] = 48961, - [SMALL_STATE(1824)] = 49014, - [SMALL_STATE(1825)] = 49067, - [SMALL_STATE(1826)] = 49156, - [SMALL_STATE(1827)] = 49209, - [SMALL_STATE(1828)] = 49272, - [SMALL_STATE(1829)] = 49341, - [SMALL_STATE(1830)] = 49412, - [SMALL_STATE(1831)] = 49489, - [SMALL_STATE(1832)] = 49568, - [SMALL_STATE(1833)] = 49633, - [SMALL_STATE(1834)] = 49718, - [SMALL_STATE(1835)] = 49803, - [SMALL_STATE(1836)] = 49876, - [SMALL_STATE(1837)] = 49957, - [SMALL_STATE(1838)] = 50010, - [SMALL_STATE(1839)] = 50063, - [SMALL_STATE(1840)] = 50150, - [SMALL_STATE(1841)] = 50203, - [SMALL_STATE(1842)] = 50256, - [SMALL_STATE(1843)] = 50309, - [SMALL_STATE(1844)] = 50362, - [SMALL_STATE(1845)] = 50415, - [SMALL_STATE(1846)] = 50468, - [SMALL_STATE(1847)] = 50521, - [SMALL_STATE(1848)] = 50574, - [SMALL_STATE(1849)] = 50661, - [SMALL_STATE(1850)] = 50714, - [SMALL_STATE(1851)] = 50767, - [SMALL_STATE(1852)] = 50820, - [SMALL_STATE(1853)] = 50873, - [SMALL_STATE(1854)] = 50926, - [SMALL_STATE(1855)] = 50979, - [SMALL_STATE(1856)] = 51032, - [SMALL_STATE(1857)] = 51119, - [SMALL_STATE(1858)] = 51172, - [SMALL_STATE(1859)] = 51259, - [SMALL_STATE(1860)] = 51312, - [SMALL_STATE(1861)] = 51365, - [SMALL_STATE(1862)] = 51418, - [SMALL_STATE(1863)] = 51505, - [SMALL_STATE(1864)] = 51592, - [SMALL_STATE(1865)] = 51653, - [SMALL_STATE(1866)] = 51706, - [SMALL_STATE(1867)] = 51759, - [SMALL_STATE(1868)] = 51848, - [SMALL_STATE(1869)] = 51937, - [SMALL_STATE(1870)] = 52026, - [SMALL_STATE(1871)] = 52079, - [SMALL_STATE(1872)] = 52168, - [SMALL_STATE(1873)] = 52221, - [SMALL_STATE(1874)] = 52310, - [SMALL_STATE(1875)] = 52397, - [SMALL_STATE(1876)] = 52450, - [SMALL_STATE(1877)] = 52539, - [SMALL_STATE(1878)] = 52592, - [SMALL_STATE(1879)] = 52645, - [SMALL_STATE(1880)] = 52704, - [SMALL_STATE(1881)] = 52793, - [SMALL_STATE(1882)] = 52882, - [SMALL_STATE(1883)] = 52971, - [SMALL_STATE(1884)] = 53060, - [SMALL_STATE(1885)] = 53149, - [SMALL_STATE(1886)] = 53238, - [SMALL_STATE(1887)] = 53327, - [SMALL_STATE(1888)] = 53416, - [SMALL_STATE(1889)] = 53505, - [SMALL_STATE(1890)] = 53594, - [SMALL_STATE(1891)] = 53683, - [SMALL_STATE(1892)] = 53764, - [SMALL_STATE(1893)] = 53849, - [SMALL_STATE(1894)] = 53938, - [SMALL_STATE(1895)] = 54023, - [SMALL_STATE(1896)] = 54108, - [SMALL_STATE(1897)] = 54197, - [SMALL_STATE(1898)] = 54286, - [SMALL_STATE(1899)] = 54375, - [SMALL_STATE(1900)] = 54464, - [SMALL_STATE(1901)] = 54553, - [SMALL_STATE(1902)] = 54642, - [SMALL_STATE(1903)] = 54731, - [SMALL_STATE(1904)] = 54820, - [SMALL_STATE(1905)] = 54909, - [SMALL_STATE(1906)] = 54998, - [SMALL_STATE(1907)] = 55087, - [SMALL_STATE(1908)] = 55174, - [SMALL_STATE(1909)] = 55263, - [SMALL_STATE(1910)] = 55352, - [SMALL_STATE(1911)] = 55441, - [SMALL_STATE(1912)] = 55530, - [SMALL_STATE(1913)] = 55617, - [SMALL_STATE(1914)] = 55704, - [SMALL_STATE(1915)] = 55793, - [SMALL_STATE(1916)] = 55882, - [SMALL_STATE(1917)] = 55971, - [SMALL_STATE(1918)] = 56060, - [SMALL_STATE(1919)] = 56149, - [SMALL_STATE(1920)] = 56238, - [SMALL_STATE(1921)] = 56291, - [SMALL_STATE(1922)] = 56344, - [SMALL_STATE(1923)] = 56397, - [SMALL_STATE(1924)] = 56450, - [SMALL_STATE(1925)] = 56503, - [SMALL_STATE(1926)] = 56556, - [SMALL_STATE(1927)] = 56609, - [SMALL_STATE(1928)] = 56686, - [SMALL_STATE(1929)] = 56739, - [SMALL_STATE(1930)] = 56826, - [SMALL_STATE(1931)] = 56879, - [SMALL_STATE(1932)] = 56966, - [SMALL_STATE(1933)] = 57019, - [SMALL_STATE(1934)] = 57108, - [SMALL_STATE(1935)] = 57195, - [SMALL_STATE(1936)] = 57284, - [SMALL_STATE(1937)] = 57337, - [SMALL_STATE(1938)] = 57411, - [SMALL_STATE(1939)] = 57497, - [SMALL_STATE(1940)] = 57583, - [SMALL_STATE(1941)] = 57669, - [SMALL_STATE(1942)] = 57755, - [SMALL_STATE(1943)] = 57841, - [SMALL_STATE(1944)] = 57927, - [SMALL_STATE(1945)] = 58013, - [SMALL_STATE(1946)] = 58087, - [SMALL_STATE(1947)] = 58173, - [SMALL_STATE(1948)] = 58259, - [SMALL_STATE(1949)] = 58345, - [SMALL_STATE(1950)] = 58419, - [SMALL_STATE(1951)] = 58505, - [SMALL_STATE(1952)] = 58591, - [SMALL_STATE(1953)] = 58675, - [SMALL_STATE(1954)] = 58749, - [SMALL_STATE(1955)] = 58835, - [SMALL_STATE(1956)] = 58919, - [SMALL_STATE(1957)] = 59005, - [SMALL_STATE(1958)] = 59091, - [SMALL_STATE(1959)] = 59177, - [SMALL_STATE(1960)] = 59263, - [SMALL_STATE(1961)] = 59349, - [SMALL_STATE(1962)] = 59423, - [SMALL_STATE(1963)] = 59509, - [SMALL_STATE(1964)] = 59595, - [SMALL_STATE(1965)] = 59681, - [SMALL_STATE(1966)] = 59767, - [SMALL_STATE(1967)] = 59853, - [SMALL_STATE(1968)] = 59939, - [SMALL_STATE(1969)] = 60025, - [SMALL_STATE(1970)] = 60111, - [SMALL_STATE(1971)] = 60197, - [SMALL_STATE(1972)] = 60283, - [SMALL_STATE(1973)] = 60369, - [SMALL_STATE(1974)] = 60455, - [SMALL_STATE(1975)] = 60530, - [SMALL_STATE(1976)] = 60605, - [SMALL_STATE(1977)] = 60680, - [SMALL_STATE(1978)] = 60755, - [SMALL_STATE(1979)] = 60830, - [SMALL_STATE(1980)] = 60905, - [SMALL_STATE(1981)] = 60980, - [SMALL_STATE(1982)] = 61055, - [SMALL_STATE(1983)] = 61102, - [SMALL_STATE(1984)] = 61149, - [SMALL_STATE(1985)] = 61196, - [SMALL_STATE(1986)] = 61258, - [SMALL_STATE(1987)] = 61320, - [SMALL_STATE(1988)] = 61382, - [SMALL_STATE(1989)] = 61444, - [SMALL_STATE(1990)] = 61506, - [SMALL_STATE(1991)] = 61568, - [SMALL_STATE(1992)] = 61630, - [SMALL_STATE(1993)] = 61692, - [SMALL_STATE(1994)] = 61754, - [SMALL_STATE(1995)] = 61813, - [SMALL_STATE(1996)] = 61872, - [SMALL_STATE(1997)] = 61908, - [SMALL_STATE(1998)] = 61944, - [SMALL_STATE(1999)] = 61981, - [SMALL_STATE(2000)] = 62018, - [SMALL_STATE(2001)] = 62071, - [SMALL_STATE(2002)] = 62108, - [SMALL_STATE(2003)] = 62145, - [SMALL_STATE(2004)] = 62189, - [SMALL_STATE(2005)] = 62225, - [SMALL_STATE(2006)] = 62259, - [SMALL_STATE(2007)] = 62293, - [SMALL_STATE(2008)] = 62329, - [SMALL_STATE(2009)] = 62365, - [SMALL_STATE(2010)] = 62401, - [SMALL_STATE(2011)] = 62435, - [SMALL_STATE(2012)] = 62479, - [SMALL_STATE(2013)] = 62523, - [SMALL_STATE(2014)] = 62557, - [SMALL_STATE(2015)] = 62590, - [SMALL_STATE(2016)] = 62621, - [SMALL_STATE(2017)] = 62654, - [SMALL_STATE(2018)] = 62695, - [SMALL_STATE(2019)] = 62746, - [SMALL_STATE(2020)] = 62779, - [SMALL_STATE(2021)] = 62812, - [SMALL_STATE(2022)] = 62872, - [SMALL_STATE(2023)] = 62916, - [SMALL_STATE(2024)] = 62976, - [SMALL_STATE(2025)] = 63008, - [SMALL_STATE(2026)] = 63054, - [SMALL_STATE(2027)] = 63086, - [SMALL_STATE(2028)] = 63118, - [SMALL_STATE(2029)] = 63156, - [SMALL_STATE(2030)] = 63194, - [SMALL_STATE(2031)] = 63232, - [SMALL_STATE(2032)] = 63270, - [SMALL_STATE(2033)] = 63303, - [SMALL_STATE(2034)] = 63332, - [SMALL_STATE(2035)] = 63363, - [SMALL_STATE(2036)] = 63404, - [SMALL_STATE(2037)] = 63447, - [SMALL_STATE(2038)] = 63500, - [SMALL_STATE(2039)] = 63529, - [SMALL_STATE(2040)] = 63562, - [SMALL_STATE(2041)] = 63595, - [SMALL_STATE(2042)] = 63624, - [SMALL_STATE(2043)] = 63657, - [SMALL_STATE(2044)] = 63710, - [SMALL_STATE(2045)] = 63739, - [SMALL_STATE(2046)] = 63768, - [SMALL_STATE(2047)] = 63797, - [SMALL_STATE(2048)] = 63830, - [SMALL_STATE(2049)] = 63859, - [SMALL_STATE(2050)] = 63888, - [SMALL_STATE(2051)] = 63921, - [SMALL_STATE(2052)] = 63976, - [SMALL_STATE(2053)] = 64005, - [SMALL_STATE(2054)] = 64038, - [SMALL_STATE(2055)] = 64082, - [SMALL_STATE(2056)] = 64110, - [SMALL_STATE(2057)] = 64138, - [SMALL_STATE(2058)] = 64166, - [SMALL_STATE(2059)] = 64194, - [SMALL_STATE(2060)] = 64222, - [SMALL_STATE(2061)] = 64250, - [SMALL_STATE(2062)] = 64278, - [SMALL_STATE(2063)] = 64306, - [SMALL_STATE(2064)] = 64334, - [SMALL_STATE(2065)] = 64362, - [SMALL_STATE(2066)] = 64390, - [SMALL_STATE(2067)] = 64418, - [SMALL_STATE(2068)] = 64446, - [SMALL_STATE(2069)] = 64474, - [SMALL_STATE(2070)] = 64502, - [SMALL_STATE(2071)] = 64532, - [SMALL_STATE(2072)] = 64560, - [SMALL_STATE(2073)] = 64588, - [SMALL_STATE(2074)] = 64616, - [SMALL_STATE(2075)] = 64644, - [SMALL_STATE(2076)] = 64672, - [SMALL_STATE(2077)] = 64700, - [SMALL_STATE(2078)] = 64728, - [SMALL_STATE(2079)] = 64756, - [SMALL_STATE(2080)] = 64784, - [SMALL_STATE(2081)] = 64812, - [SMALL_STATE(2082)] = 64840, - [SMALL_STATE(2083)] = 64868, - [SMALL_STATE(2084)] = 64896, - [SMALL_STATE(2085)] = 64924, - [SMALL_STATE(2086)] = 64952, - [SMALL_STATE(2087)] = 64980, - [SMALL_STATE(2088)] = 65008, - [SMALL_STATE(2089)] = 65036, - [SMALL_STATE(2090)] = 65066, - [SMALL_STATE(2091)] = 65094, - [SMALL_STATE(2092)] = 65122, - [SMALL_STATE(2093)] = 65151, - [SMALL_STATE(2094)] = 65180, - [SMALL_STATE(2095)] = 65209, - [SMALL_STATE(2096)] = 65244, - [SMALL_STATE(2097)] = 65273, - [SMALL_STATE(2098)] = 65302, - [SMALL_STATE(2099)] = 65331, - [SMALL_STATE(2100)] = 65360, - [SMALL_STATE(2101)] = 65389, - [SMALL_STATE(2102)] = 65418, - [SMALL_STATE(2103)] = 65447, - [SMALL_STATE(2104)] = 65479, - [SMALL_STATE(2105)] = 65511, - [SMALL_STATE(2106)] = 65543, - [SMALL_STATE(2107)] = 65575, - [SMALL_STATE(2108)] = 65607, - [SMALL_STATE(2109)] = 65637, - [SMALL_STATE(2110)] = 65669, - [SMALL_STATE(2111)] = 65697, - [SMALL_STATE(2112)] = 65729, - [SMALL_STATE(2113)] = 65761, - [SMALL_STATE(2114)] = 65793, - [SMALL_STATE(2115)] = 65825, - [SMALL_STATE(2116)] = 65857, - [SMALL_STATE(2117)] = 65901, - [SMALL_STATE(2118)] = 65941, - [SMALL_STATE(2119)] = 65973, - [SMALL_STATE(2120)] = 66019, - [SMALL_STATE(2121)] = 66062, - [SMALL_STATE(2122)] = 66091, - [SMALL_STATE(2123)] = 66134, - [SMALL_STATE(2124)] = 66177, - [SMALL_STATE(2125)] = 66220, - [SMALL_STATE(2126)] = 66257, - [SMALL_STATE(2127)] = 66300, - [SMALL_STATE(2128)] = 66343, - [SMALL_STATE(2129)] = 66372, - [SMALL_STATE(2130)] = 66400, - [SMALL_STATE(2131)] = 66428, - [SMALL_STATE(2132)] = 66452, - [SMALL_STATE(2133)] = 66492, - [SMALL_STATE(2134)] = 66532, - [SMALL_STATE(2135)] = 66560, - [SMALL_STATE(2136)] = 66600, - [SMALL_STATE(2137)] = 66628, - [SMALL_STATE(2138)] = 66668, - [SMALL_STATE(2139)] = 66708, - [SMALL_STATE(2140)] = 66736, - [SMALL_STATE(2141)] = 66774, - [SMALL_STATE(2142)] = 66802, - [SMALL_STATE(2143)] = 66840, - [SMALL_STATE(2144)] = 66870, - [SMALL_STATE(2145)] = 66894, - [SMALL_STATE(2146)] = 66922, - [SMALL_STATE(2147)] = 66962, - [SMALL_STATE(2148)] = 66990, - [SMALL_STATE(2149)] = 67030, - [SMALL_STATE(2150)] = 67054, - [SMALL_STATE(2151)] = 67082, - [SMALL_STATE(2152)] = 67120, - [SMALL_STATE(2153)] = 67150, - [SMALL_STATE(2154)] = 67178, - [SMALL_STATE(2155)] = 67206, - [SMALL_STATE(2156)] = 67244, - [SMALL_STATE(2157)] = 67282, - [SMALL_STATE(2158)] = 67320, - [SMALL_STATE(2159)] = 67358, - [SMALL_STATE(2160)] = 67386, - [SMALL_STATE(2161)] = 67424, - [SMALL_STATE(2162)] = 67462, - [SMALL_STATE(2163)] = 67500, - [SMALL_STATE(2164)] = 67528, - [SMALL_STATE(2165)] = 67568, - [SMALL_STATE(2166)] = 67606, - [SMALL_STATE(2167)] = 67634, - [SMALL_STATE(2168)] = 67662, - [SMALL_STATE(2169)] = 67690, - [SMALL_STATE(2170)] = 67730, - [SMALL_STATE(2171)] = 67754, - [SMALL_STATE(2172)] = 67784, - [SMALL_STATE(2173)] = 67808, - [SMALL_STATE(2174)] = 67846, - [SMALL_STATE(2175)] = 67880, - [SMALL_STATE(2176)] = 67920, - [SMALL_STATE(2177)] = 67950, - [SMALL_STATE(2178)] = 67991, - [SMALL_STATE(2179)] = 68014, - [SMALL_STATE(2180)] = 68037, - [SMALL_STATE(2181)] = 68060, - [SMALL_STATE(2182)] = 68083, - [SMALL_STATE(2183)] = 68106, - [SMALL_STATE(2184)] = 68129, - [SMALL_STATE(2185)] = 68152, - [SMALL_STATE(2186)] = 68175, - [SMALL_STATE(2187)] = 68208, - [SMALL_STATE(2188)] = 68231, - [SMALL_STATE(2189)] = 68254, - [SMALL_STATE(2190)] = 68277, - [SMALL_STATE(2191)] = 68300, - [SMALL_STATE(2192)] = 68323, - [SMALL_STATE(2193)] = 68346, - [SMALL_STATE(2194)] = 68369, - [SMALL_STATE(2195)] = 68392, - [SMALL_STATE(2196)] = 68415, - [SMALL_STATE(2197)] = 68446, - [SMALL_STATE(2198)] = 68481, - [SMALL_STATE(2199)] = 68504, - [SMALL_STATE(2200)] = 68539, - [SMALL_STATE(2201)] = 68580, - [SMALL_STATE(2202)] = 68603, - [SMALL_STATE(2203)] = 68640, - [SMALL_STATE(2204)] = 68677, - [SMALL_STATE(2205)] = 68700, - [SMALL_STATE(2206)] = 68723, - [SMALL_STATE(2207)] = 68754, - [SMALL_STATE(2208)] = 68777, - [SMALL_STATE(2209)] = 68808, - [SMALL_STATE(2210)] = 68849, - [SMALL_STATE(2211)] = 68872, - [SMALL_STATE(2212)] = 68895, - [SMALL_STATE(2213)] = 68932, - [SMALL_STATE(2214)] = 68955, - [SMALL_STATE(2215)] = 68978, - [SMALL_STATE(2216)] = 69015, - [SMALL_STATE(2217)] = 69038, - [SMALL_STATE(2218)] = 69061, - [SMALL_STATE(2219)] = 69084, - [SMALL_STATE(2220)] = 69107, - [SMALL_STATE(2221)] = 69130, - [SMALL_STATE(2222)] = 69153, - [SMALL_STATE(2223)] = 69184, - [SMALL_STATE(2224)] = 69215, - [SMALL_STATE(2225)] = 69250, - [SMALL_STATE(2226)] = 69273, - [SMALL_STATE(2227)] = 69308, - [SMALL_STATE(2228)] = 69331, - [SMALL_STATE(2229)] = 69362, - [SMALL_STATE(2230)] = 69385, - [SMALL_STATE(2231)] = 69408, - [SMALL_STATE(2232)] = 69449, - [SMALL_STATE(2233)] = 69473, - [SMALL_STATE(2234)] = 69505, - [SMALL_STATE(2235)] = 69535, - [SMALL_STATE(2236)] = 69563, - [SMALL_STATE(2237)] = 69591, - [SMALL_STATE(2238)] = 69615, - [SMALL_STATE(2239)] = 69653, - [SMALL_STATE(2240)] = 69683, - [SMALL_STATE(2241)] = 69711, - [SMALL_STATE(2242)] = 69743, - [SMALL_STATE(2243)] = 69771, - [SMALL_STATE(2244)] = 69799, - [SMALL_STATE(2245)] = 69837, - [SMALL_STATE(2246)] = 69875, - [SMALL_STATE(2247)] = 69913, - [SMALL_STATE(2248)] = 69939, - [SMALL_STATE(2249)] = 69967, - [SMALL_STATE(2250)] = 70005, - [SMALL_STATE(2251)] = 70043, - [SMALL_STATE(2252)] = 70067, - [SMALL_STATE(2253)] = 70099, - [SMALL_STATE(2254)] = 70137, - [SMALL_STATE(2255)] = 70175, - [SMALL_STATE(2256)] = 70205, - [SMALL_STATE(2257)] = 70243, - [SMALL_STATE(2258)] = 70281, - [SMALL_STATE(2259)] = 70311, - [SMALL_STATE(2260)] = 70345, - [SMALL_STATE(2261)] = 70373, - [SMALL_STATE(2262)] = 70411, - [SMALL_STATE(2263)] = 70435, - [SMALL_STATE(2264)] = 70461, - [SMALL_STATE(2265)] = 70487, - [SMALL_STATE(2266)] = 70521, - [SMALL_STATE(2267)] = 70559, - [SMALL_STATE(2268)] = 70591, - [SMALL_STATE(2269)] = 70627, - [SMALL_STATE(2270)] = 70665, - [SMALL_STATE(2271)] = 70697, - [SMALL_STATE(2272)] = 70729, - [SMALL_STATE(2273)] = 70767, - [SMALL_STATE(2274)] = 70805, - [SMALL_STATE(2275)] = 70837, - [SMALL_STATE(2276)] = 70869, - [SMALL_STATE(2277)] = 70907, - [SMALL_STATE(2278)] = 70939, - [SMALL_STATE(2279)] = 70971, - [SMALL_STATE(2280)] = 71003, - [SMALL_STATE(2281)] = 71035, - [SMALL_STATE(2282)] = 71063, - [SMALL_STATE(2283)] = 71095, - [SMALL_STATE(2284)] = 71119, - [SMALL_STATE(2285)] = 71144, - [SMALL_STATE(2286)] = 71179, - [SMALL_STATE(2287)] = 71214, - [SMALL_STATE(2288)] = 71249, - [SMALL_STATE(2289)] = 71284, - [SMALL_STATE(2290)] = 71319, - [SMALL_STATE(2291)] = 71354, - [SMALL_STATE(2292)] = 71389, - [SMALL_STATE(2293)] = 71424, - [SMALL_STATE(2294)] = 71459, - [SMALL_STATE(2295)] = 71494, - [SMALL_STATE(2296)] = 71529, - [SMALL_STATE(2297)] = 71554, - [SMALL_STATE(2298)] = 71589, - [SMALL_STATE(2299)] = 71622, - [SMALL_STATE(2300)] = 71657, - [SMALL_STATE(2301)] = 71692, - [SMALL_STATE(2302)] = 71713, - [SMALL_STATE(2303)] = 71734, - [SMALL_STATE(2304)] = 71755, - [SMALL_STATE(2305)] = 71782, - [SMALL_STATE(2306)] = 71817, - [SMALL_STATE(2307)] = 71852, - [SMALL_STATE(2308)] = 71885, - [SMALL_STATE(2309)] = 71920, - [SMALL_STATE(2310)] = 71955, - [SMALL_STATE(2311)] = 71980, - [SMALL_STATE(2312)] = 72013, - [SMALL_STATE(2313)] = 72048, - [SMALL_STATE(2314)] = 72083, - [SMALL_STATE(2315)] = 72118, - [SMALL_STATE(2316)] = 72153, - [SMALL_STATE(2317)] = 72188, - [SMALL_STATE(2318)] = 72217, - [SMALL_STATE(2319)] = 72252, - [SMALL_STATE(2320)] = 72287, - [SMALL_STATE(2321)] = 72322, - [SMALL_STATE(2322)] = 72357, - [SMALL_STATE(2323)] = 72390, - [SMALL_STATE(2324)] = 72425, - [SMALL_STATE(2325)] = 72460, - [SMALL_STATE(2326)] = 72495, - [SMALL_STATE(2327)] = 72530, - [SMALL_STATE(2328)] = 72551, - [SMALL_STATE(2329)] = 72586, - [SMALL_STATE(2330)] = 72621, - [SMALL_STATE(2331)] = 72656, - [SMALL_STATE(2332)] = 72689, - [SMALL_STATE(2333)] = 72724, - [SMALL_STATE(2334)] = 72759, - [SMALL_STATE(2335)] = 72794, - [SMALL_STATE(2336)] = 72829, - [SMALL_STATE(2337)] = 72864, - [SMALL_STATE(2338)] = 72899, - [SMALL_STATE(2339)] = 72931, - [SMALL_STATE(2340)] = 72959, - [SMALL_STATE(2341)] = 72989, - [SMALL_STATE(2342)] = 73021, - [SMALL_STATE(2343)] = 73053, - [SMALL_STATE(2344)] = 73079, - [SMALL_STATE(2345)] = 73111, - [SMALL_STATE(2346)] = 73143, - [SMALL_STATE(2347)] = 73175, - [SMALL_STATE(2348)] = 73207, - [SMALL_STATE(2349)] = 73237, - [SMALL_STATE(2350)] = 73269, - [SMALL_STATE(2351)] = 73299, - [SMALL_STATE(2352)] = 73331, - [SMALL_STATE(2353)] = 73363, - [SMALL_STATE(2354)] = 73395, - [SMALL_STATE(2355)] = 73427, - [SMALL_STATE(2356)] = 73459, - [SMALL_STATE(2357)] = 73487, - [SMALL_STATE(2358)] = 73515, - [SMALL_STATE(2359)] = 73541, - [SMALL_STATE(2360)] = 73567, - [SMALL_STATE(2361)] = 73599, - [SMALL_STATE(2362)] = 73631, - [SMALL_STATE(2363)] = 73663, - [SMALL_STATE(2364)] = 73695, - [SMALL_STATE(2365)] = 73727, - [SMALL_STATE(2366)] = 73759, - [SMALL_STATE(2367)] = 73791, - [SMALL_STATE(2368)] = 73821, - [SMALL_STATE(2369)] = 73849, - [SMALL_STATE(2370)] = 73879, - [SMALL_STATE(2371)] = 73911, - [SMALL_STATE(2372)] = 73941, - [SMALL_STATE(2373)] = 73963, - [SMALL_STATE(2374)] = 73985, - [SMALL_STATE(2375)] = 74017, - [SMALL_STATE(2376)] = 74047, - [SMALL_STATE(2377)] = 74079, - [SMALL_STATE(2378)] = 74105, - [SMALL_STATE(2379)] = 74137, - [SMALL_STATE(2380)] = 74169, - [SMALL_STATE(2381)] = 74201, - [SMALL_STATE(2382)] = 74231, - [SMALL_STATE(2383)] = 74263, - [SMALL_STATE(2384)] = 74293, - [SMALL_STATE(2385)] = 74315, - [SMALL_STATE(2386)] = 74347, - [SMALL_STATE(2387)] = 74369, - [SMALL_STATE(2388)] = 74401, - [SMALL_STATE(2389)] = 74433, - [SMALL_STATE(2390)] = 74461, - [SMALL_STATE(2391)] = 74493, - [SMALL_STATE(2392)] = 74515, - [SMALL_STATE(2393)] = 74545, - [SMALL_STATE(2394)] = 74577, - [SMALL_STATE(2395)] = 74609, - [SMALL_STATE(2396)] = 74641, - [SMALL_STATE(2397)] = 74673, - [SMALL_STATE(2398)] = 74695, - [SMALL_STATE(2399)] = 74727, - [SMALL_STATE(2400)] = 74759, - [SMALL_STATE(2401)] = 74791, - [SMALL_STATE(2402)] = 74823, - [SMALL_STATE(2403)] = 74844, - [SMALL_STATE(2404)] = 74867, - [SMALL_STATE(2405)] = 74888, - [SMALL_STATE(2406)] = 74909, - [SMALL_STATE(2407)] = 74938, - [SMALL_STATE(2408)] = 74959, - [SMALL_STATE(2409)] = 74980, - [SMALL_STATE(2410)] = 75001, - [SMALL_STATE(2411)] = 75030, - [SMALL_STATE(2412)] = 75059, - [SMALL_STATE(2413)] = 75088, - [SMALL_STATE(2414)] = 75117, - [SMALL_STATE(2415)] = 75146, - [SMALL_STATE(2416)] = 75175, - [SMALL_STATE(2417)] = 75204, - [SMALL_STATE(2418)] = 75233, - [SMALL_STATE(2419)] = 75262, - [SMALL_STATE(2420)] = 75291, - [SMALL_STATE(2421)] = 75320, - [SMALL_STATE(2422)] = 75349, - [SMALL_STATE(2423)] = 75376, - [SMALL_STATE(2424)] = 75405, - [SMALL_STATE(2425)] = 75434, - [SMALL_STATE(2426)] = 75457, - [SMALL_STATE(2427)] = 75480, - [SMALL_STATE(2428)] = 75509, - [SMALL_STATE(2429)] = 75538, - [SMALL_STATE(2430)] = 75567, - [SMALL_STATE(2431)] = 75596, - [SMALL_STATE(2432)] = 75625, - [SMALL_STATE(2433)] = 75654, - [SMALL_STATE(2434)] = 75683, - [SMALL_STATE(2435)] = 75712, - [SMALL_STATE(2436)] = 75735, - [SMALL_STATE(2437)] = 75764, - [SMALL_STATE(2438)] = 75793, - [SMALL_STATE(2439)] = 75822, - [SMALL_STATE(2440)] = 75845, - [SMALL_STATE(2441)] = 75874, - [SMALL_STATE(2442)] = 75903, - [SMALL_STATE(2443)] = 75932, - [SMALL_STATE(2444)] = 75961, - [SMALL_STATE(2445)] = 75990, - [SMALL_STATE(2446)] = 76019, - [SMALL_STATE(2447)] = 76048, - [SMALL_STATE(2448)] = 76077, - [SMALL_STATE(2449)] = 76104, - [SMALL_STATE(2450)] = 76127, - [SMALL_STATE(2451)] = 76154, - [SMALL_STATE(2452)] = 76179, - [SMALL_STATE(2453)] = 76204, - [SMALL_STATE(2454)] = 76229, - [SMALL_STATE(2455)] = 76250, - [SMALL_STATE(2456)] = 76279, - [SMALL_STATE(2457)] = 76300, - [SMALL_STATE(2458)] = 76329, - [SMALL_STATE(2459)] = 76358, - [SMALL_STATE(2460)] = 76383, - [SMALL_STATE(2461)] = 76412, - [SMALL_STATE(2462)] = 76431, - [SMALL_STATE(2463)] = 76460, - [SMALL_STATE(2464)] = 76489, - [SMALL_STATE(2465)] = 76510, - [SMALL_STATE(2466)] = 76531, - [SMALL_STATE(2467)] = 76552, - [SMALL_STATE(2468)] = 76575, - [SMALL_STATE(2469)] = 76596, - [SMALL_STATE(2470)] = 76625, - [SMALL_STATE(2471)] = 76654, - [SMALL_STATE(2472)] = 76677, - [SMALL_STATE(2473)] = 76704, - [SMALL_STATE(2474)] = 76733, - [SMALL_STATE(2475)] = 76762, - [SMALL_STATE(2476)] = 76783, - [SMALL_STATE(2477)] = 76812, - [SMALL_STATE(2478)] = 76835, - [SMALL_STATE(2479)] = 76864, - [SMALL_STATE(2480)] = 76893, - [SMALL_STATE(2481)] = 76922, - [SMALL_STATE(2482)] = 76941, - [SMALL_STATE(2483)] = 76964, - [SMALL_STATE(2484)] = 76987, - [SMALL_STATE(2485)] = 77016, - [SMALL_STATE(2486)] = 77045, - [SMALL_STATE(2487)] = 77068, - [SMALL_STATE(2488)] = 77097, - [SMALL_STATE(2489)] = 77126, - [SMALL_STATE(2490)] = 77155, - [SMALL_STATE(2491)] = 77176, - [SMALL_STATE(2492)] = 77205, - [SMALL_STATE(2493)] = 77228, - [SMALL_STATE(2494)] = 77257, - [SMALL_STATE(2495)] = 77278, - [SMALL_STATE(2496)] = 77307, - [SMALL_STATE(2497)] = 77336, - [SMALL_STATE(2498)] = 77359, - [SMALL_STATE(2499)] = 77382, - [SMALL_STATE(2500)] = 77411, - [SMALL_STATE(2501)] = 77438, - [SMALL_STATE(2502)] = 77459, - [SMALL_STATE(2503)] = 77488, - [SMALL_STATE(2504)] = 77515, - [SMALL_STATE(2505)] = 77544, - [SMALL_STATE(2506)] = 77573, - [SMALL_STATE(2507)] = 77596, - [SMALL_STATE(2508)] = 77625, - [SMALL_STATE(2509)] = 77651, - [SMALL_STATE(2510)] = 77669, - [SMALL_STATE(2511)] = 77695, - [SMALL_STATE(2512)] = 77721, - [SMALL_STATE(2513)] = 77747, - [SMALL_STATE(2514)] = 77771, - [SMALL_STATE(2515)] = 77797, - [SMALL_STATE(2516)] = 77821, - [SMALL_STATE(2517)] = 77847, - [SMALL_STATE(2518)] = 77873, - [SMALL_STATE(2519)] = 77891, - [SMALL_STATE(2520)] = 77917, - [SMALL_STATE(2521)] = 77943, - [SMALL_STATE(2522)] = 77969, - [SMALL_STATE(2523)] = 77987, - [SMALL_STATE(2524)] = 78013, - [SMALL_STATE(2525)] = 78039, - [SMALL_STATE(2526)] = 78065, - [SMALL_STATE(2527)] = 78089, - [SMALL_STATE(2528)] = 78111, - [SMALL_STATE(2529)] = 78133, - [SMALL_STATE(2530)] = 78151, - [SMALL_STATE(2531)] = 78177, - [SMALL_STATE(2532)] = 78201, - [SMALL_STATE(2533)] = 78227, - [SMALL_STATE(2534)] = 78245, - [SMALL_STATE(2535)] = 78271, - [SMALL_STATE(2536)] = 78289, - [SMALL_STATE(2537)] = 78313, - [SMALL_STATE(2538)] = 78339, - [SMALL_STATE(2539)] = 78365, - [SMALL_STATE(2540)] = 78389, - [SMALL_STATE(2541)] = 78409, - [SMALL_STATE(2542)] = 78427, - [SMALL_STATE(2543)] = 78453, - [SMALL_STATE(2544)] = 78475, - [SMALL_STATE(2545)] = 78495, - [SMALL_STATE(2546)] = 78521, - [SMALL_STATE(2547)] = 78547, - [SMALL_STATE(2548)] = 78565, - [SMALL_STATE(2549)] = 78591, - [SMALL_STATE(2550)] = 78617, - [SMALL_STATE(2551)] = 78635, - [SMALL_STATE(2552)] = 78653, - [SMALL_STATE(2553)] = 78679, - [SMALL_STATE(2554)] = 78697, - [SMALL_STATE(2555)] = 78721, - [SMALL_STATE(2556)] = 78739, - [SMALL_STATE(2557)] = 78765, - [SMALL_STATE(2558)] = 78791, - [SMALL_STATE(2559)] = 78817, - [SMALL_STATE(2560)] = 78835, - [SMALL_STATE(2561)] = 78859, - [SMALL_STATE(2562)] = 78877, - [SMALL_STATE(2563)] = 78899, - [SMALL_STATE(2564)] = 78917, - [SMALL_STATE(2565)] = 78937, - [SMALL_STATE(2566)] = 78963, - [SMALL_STATE(2567)] = 78987, - [SMALL_STATE(2568)] = 79013, - [SMALL_STATE(2569)] = 79037, - [SMALL_STATE(2570)] = 79063, - [SMALL_STATE(2571)] = 79089, - [SMALL_STATE(2572)] = 79115, - [SMALL_STATE(2573)] = 79137, - [SMALL_STATE(2574)] = 79163, - [SMALL_STATE(2575)] = 79181, - [SMALL_STATE(2576)] = 79199, - [SMALL_STATE(2577)] = 79225, - [SMALL_STATE(2578)] = 79249, - [SMALL_STATE(2579)] = 79275, - [SMALL_STATE(2580)] = 79299, - [SMALL_STATE(2581)] = 79325, - [SMALL_STATE(2582)] = 79347, - [SMALL_STATE(2583)] = 79373, - [SMALL_STATE(2584)] = 79399, - [SMALL_STATE(2585)] = 79417, - [SMALL_STATE(2586)] = 79435, - [SMALL_STATE(2587)] = 79461, - [SMALL_STATE(2588)] = 79479, - [SMALL_STATE(2589)] = 79501, - [SMALL_STATE(2590)] = 79527, - [SMALL_STATE(2591)] = 79553, - [SMALL_STATE(2592)] = 79577, - [SMALL_STATE(2593)] = 79595, - [SMALL_STATE(2594)] = 79621, - [SMALL_STATE(2595)] = 79639, - [SMALL_STATE(2596)] = 79665, - [SMALL_STATE(2597)] = 79691, - [SMALL_STATE(2598)] = 79715, - [SMALL_STATE(2599)] = 79733, - [SMALL_STATE(2600)] = 79759, - [SMALL_STATE(2601)] = 79785, - [SMALL_STATE(2602)] = 79803, - [SMALL_STATE(2603)] = 79829, - [SMALL_STATE(2604)] = 79855, - [SMALL_STATE(2605)] = 79881, - [SMALL_STATE(2606)] = 79901, - [SMALL_STATE(2607)] = 79927, - [SMALL_STATE(2608)] = 79949, - [SMALL_STATE(2609)] = 79975, - [SMALL_STATE(2610)] = 80001, - [SMALL_STATE(2611)] = 80027, - [SMALL_STATE(2612)] = 80051, - [SMALL_STATE(2613)] = 80075, - [SMALL_STATE(2614)] = 80093, - [SMALL_STATE(2615)] = 80111, - [SMALL_STATE(2616)] = 80137, - [SMALL_STATE(2617)] = 80160, - [SMALL_STATE(2618)] = 80183, - [SMALL_STATE(2619)] = 80206, - [SMALL_STATE(2620)] = 80229, - [SMALL_STATE(2621)] = 80252, - [SMALL_STATE(2622)] = 80275, - [SMALL_STATE(2623)] = 80298, - [SMALL_STATE(2624)] = 80321, - [SMALL_STATE(2625)] = 80344, - [SMALL_STATE(2626)] = 80367, - [SMALL_STATE(2627)] = 80390, - [SMALL_STATE(2628)] = 80413, - [SMALL_STATE(2629)] = 80434, - [SMALL_STATE(2630)] = 80457, - [SMALL_STATE(2631)] = 80480, - [SMALL_STATE(2632)] = 80503, - [SMALL_STATE(2633)] = 80526, - [SMALL_STATE(2634)] = 80549, - [SMALL_STATE(2635)] = 80572, - [SMALL_STATE(2636)] = 80591, - [SMALL_STATE(2637)] = 80614, - [SMALL_STATE(2638)] = 80637, - [SMALL_STATE(2639)] = 80660, - [SMALL_STATE(2640)] = 80683, - [SMALL_STATE(2641)] = 80706, - [SMALL_STATE(2642)] = 80729, - [SMALL_STATE(2643)] = 80750, - [SMALL_STATE(2644)] = 80773, - [SMALL_STATE(2645)] = 80796, - [SMALL_STATE(2646)] = 80819, - [SMALL_STATE(2647)] = 80842, - [SMALL_STATE(2648)] = 80863, - [SMALL_STATE(2649)] = 80886, - [SMALL_STATE(2650)] = 80905, - [SMALL_STATE(2651)] = 80926, - [SMALL_STATE(2652)] = 80949, - [SMALL_STATE(2653)] = 80972, - [SMALL_STATE(2654)] = 80995, - [SMALL_STATE(2655)] = 81018, - [SMALL_STATE(2656)] = 81041, - [SMALL_STATE(2657)] = 81060, - [SMALL_STATE(2658)] = 81083, - [SMALL_STATE(2659)] = 81104, - [SMALL_STATE(2660)] = 81127, - [SMALL_STATE(2661)] = 81146, - [SMALL_STATE(2662)] = 81169, - [SMALL_STATE(2663)] = 81192, - [SMALL_STATE(2664)] = 81215, - [SMALL_STATE(2665)] = 81238, - [SMALL_STATE(2666)] = 81261, - [SMALL_STATE(2667)] = 81284, - [SMALL_STATE(2668)] = 81307, - [SMALL_STATE(2669)] = 81330, - [SMALL_STATE(2670)] = 81351, - [SMALL_STATE(2671)] = 81374, - [SMALL_STATE(2672)] = 81397, - [SMALL_STATE(2673)] = 81420, - [SMALL_STATE(2674)] = 81441, - [SMALL_STATE(2675)] = 81460, - [SMALL_STATE(2676)] = 81483, - [SMALL_STATE(2677)] = 81504, - [SMALL_STATE(2678)] = 81527, - [SMALL_STATE(2679)] = 81550, - [SMALL_STATE(2680)] = 81573, - [SMALL_STATE(2681)] = 81596, - [SMALL_STATE(2682)] = 81619, - [SMALL_STATE(2683)] = 81642, - [SMALL_STATE(2684)] = 81665, - [SMALL_STATE(2685)] = 81688, - [SMALL_STATE(2686)] = 81711, - [SMALL_STATE(2687)] = 81734, - [SMALL_STATE(2688)] = 81757, - [SMALL_STATE(2689)] = 81780, - [SMALL_STATE(2690)] = 81803, - [SMALL_STATE(2691)] = 81822, - [SMALL_STATE(2692)] = 81845, - [SMALL_STATE(2693)] = 81868, - [SMALL_STATE(2694)] = 81891, - [SMALL_STATE(2695)] = 81914, - [SMALL_STATE(2696)] = 81937, - [SMALL_STATE(2697)] = 81960, - [SMALL_STATE(2698)] = 81983, - [SMALL_STATE(2699)] = 82006, - [SMALL_STATE(2700)] = 82029, - [SMALL_STATE(2701)] = 82050, - [SMALL_STATE(2702)] = 82071, - [SMALL_STATE(2703)] = 82094, - [SMALL_STATE(2704)] = 82117, - [SMALL_STATE(2705)] = 82138, - [SMALL_STATE(2706)] = 82161, - [SMALL_STATE(2707)] = 82184, - [SMALL_STATE(2708)] = 82207, - [SMALL_STATE(2709)] = 82230, - [SMALL_STATE(2710)] = 82253, - [SMALL_STATE(2711)] = 82276, - [SMALL_STATE(2712)] = 82299, - [SMALL_STATE(2713)] = 82318, - [SMALL_STATE(2714)] = 82341, - [SMALL_STATE(2715)] = 82362, - [SMALL_STATE(2716)] = 82385, - [SMALL_STATE(2717)] = 82408, - [SMALL_STATE(2718)] = 82431, - [SMALL_STATE(2719)] = 82454, - [SMALL_STATE(2720)] = 82477, - [SMALL_STATE(2721)] = 82498, - [SMALL_STATE(2722)] = 82521, - [SMALL_STATE(2723)] = 82544, - [SMALL_STATE(2724)] = 82567, - [SMALL_STATE(2725)] = 82588, - [SMALL_STATE(2726)] = 82609, - [SMALL_STATE(2727)] = 82632, - [SMALL_STATE(2728)] = 82651, - [SMALL_STATE(2729)] = 82672, - [SMALL_STATE(2730)] = 82695, - [SMALL_STATE(2731)] = 82718, - [SMALL_STATE(2732)] = 82741, - [SMALL_STATE(2733)] = 82764, - [SMALL_STATE(2734)] = 82783, - [SMALL_STATE(2735)] = 82802, - [SMALL_STATE(2736)] = 82825, - [SMALL_STATE(2737)] = 82848, - [SMALL_STATE(2738)] = 82871, - [SMALL_STATE(2739)] = 82888, - [SMALL_STATE(2740)] = 82911, - [SMALL_STATE(2741)] = 82934, - [SMALL_STATE(2742)] = 82957, - [SMALL_STATE(2743)] = 82976, - [SMALL_STATE(2744)] = 82999, - [SMALL_STATE(2745)] = 83022, - [SMALL_STATE(2746)] = 83041, - [SMALL_STATE(2747)] = 83058, - [SMALL_STATE(2748)] = 83081, - [SMALL_STATE(2749)] = 83098, - [SMALL_STATE(2750)] = 83121, - [SMALL_STATE(2751)] = 83144, - [SMALL_STATE(2752)] = 83163, - [SMALL_STATE(2753)] = 83182, - [SMALL_STATE(2754)] = 83205, - [SMALL_STATE(2755)] = 83228, - [SMALL_STATE(2756)] = 83247, - [SMALL_STATE(2757)] = 83268, - [SMALL_STATE(2758)] = 83287, - [SMALL_STATE(2759)] = 83310, - [SMALL_STATE(2760)] = 83329, - [SMALL_STATE(2761)] = 83352, - [SMALL_STATE(2762)] = 83375, - [SMALL_STATE(2763)] = 83398, - [SMALL_STATE(2764)] = 83421, - [SMALL_STATE(2765)] = 83442, - [SMALL_STATE(2766)] = 83463, - [SMALL_STATE(2767)] = 83486, - [SMALL_STATE(2768)] = 83509, - [SMALL_STATE(2769)] = 83532, - [SMALL_STATE(2770)] = 83551, - [SMALL_STATE(2771)] = 83574, - [SMALL_STATE(2772)] = 83597, - [SMALL_STATE(2773)] = 83618, - [SMALL_STATE(2774)] = 83637, - [SMALL_STATE(2775)] = 83660, - [SMALL_STATE(2776)] = 83683, - [SMALL_STATE(2777)] = 83706, - [SMALL_STATE(2778)] = 83729, - [SMALL_STATE(2779)] = 83752, - [SMALL_STATE(2780)] = 83775, - [SMALL_STATE(2781)] = 83798, - [SMALL_STATE(2782)] = 83821, - [SMALL_STATE(2783)] = 83844, - [SMALL_STATE(2784)] = 83863, - [SMALL_STATE(2785)] = 83886, - [SMALL_STATE(2786)] = 83905, - [SMALL_STATE(2787)] = 83928, - [SMALL_STATE(2788)] = 83951, - [SMALL_STATE(2789)] = 83974, - [SMALL_STATE(2790)] = 83997, - [SMALL_STATE(2791)] = 84016, - [SMALL_STATE(2792)] = 84039, - [SMALL_STATE(2793)] = 84062, - [SMALL_STATE(2794)] = 84085, - [SMALL_STATE(2795)] = 84104, - [SMALL_STATE(2796)] = 84127, - [SMALL_STATE(2797)] = 84150, - [SMALL_STATE(2798)] = 84173, - [SMALL_STATE(2799)] = 84196, - [SMALL_STATE(2800)] = 84219, - [SMALL_STATE(2801)] = 84242, - [SMALL_STATE(2802)] = 84265, - [SMALL_STATE(2803)] = 84288, - [SMALL_STATE(2804)] = 84311, - [SMALL_STATE(2805)] = 84334, - [SMALL_STATE(2806)] = 84357, - [SMALL_STATE(2807)] = 84378, - [SMALL_STATE(2808)] = 84401, - [SMALL_STATE(2809)] = 84420, - [SMALL_STATE(2810)] = 84443, - [SMALL_STATE(2811)] = 84466, - [SMALL_STATE(2812)] = 84485, - [SMALL_STATE(2813)] = 84504, - [SMALL_STATE(2814)] = 84523, - [SMALL_STATE(2815)] = 84546, - [SMALL_STATE(2816)] = 84569, - [SMALL_STATE(2817)] = 84588, - [SMALL_STATE(2818)] = 84609, - [SMALL_STATE(2819)] = 84632, - [SMALL_STATE(2820)] = 84655, - [SMALL_STATE(2821)] = 84678, - [SMALL_STATE(2822)] = 84701, - [SMALL_STATE(2823)] = 84724, - [SMALL_STATE(2824)] = 84747, - [SMALL_STATE(2825)] = 84770, - [SMALL_STATE(2826)] = 84793, - [SMALL_STATE(2827)] = 84812, - [SMALL_STATE(2828)] = 84831, - [SMALL_STATE(2829)] = 84854, - [SMALL_STATE(2830)] = 84875, - [SMALL_STATE(2831)] = 84894, - [SMALL_STATE(2832)] = 84917, - [SMALL_STATE(2833)] = 84940, - [SMALL_STATE(2834)] = 84963, - [SMALL_STATE(2835)] = 84986, - [SMALL_STATE(2836)] = 85009, - [SMALL_STATE(2837)] = 85028, - [SMALL_STATE(2838)] = 85051, - [SMALL_STATE(2839)] = 85074, - [SMALL_STATE(2840)] = 85097, - [SMALL_STATE(2841)] = 85120, - [SMALL_STATE(2842)] = 85143, - [SMALL_STATE(2843)] = 85166, - [SMALL_STATE(2844)] = 85189, - [SMALL_STATE(2845)] = 85212, - [SMALL_STATE(2846)] = 85235, - [SMALL_STATE(2847)] = 85258, - [SMALL_STATE(2848)] = 85281, - [SMALL_STATE(2849)] = 85304, - [SMALL_STATE(2850)] = 85327, - [SMALL_STATE(2851)] = 85350, - [SMALL_STATE(2852)] = 85373, - [SMALL_STATE(2853)] = 85396, - [SMALL_STATE(2854)] = 85419, - [SMALL_STATE(2855)] = 85442, - [SMALL_STATE(2856)] = 85465, - [SMALL_STATE(2857)] = 85488, - [SMALL_STATE(2858)] = 85511, - [SMALL_STATE(2859)] = 85534, - [SMALL_STATE(2860)] = 85557, - [SMALL_STATE(2861)] = 85574, - [SMALL_STATE(2862)] = 85597, - [SMALL_STATE(2863)] = 85620, - [SMALL_STATE(2864)] = 85643, - [SMALL_STATE(2865)] = 85666, - [SMALL_STATE(2866)] = 85687, - [SMALL_STATE(2867)] = 85710, - [SMALL_STATE(2868)] = 85733, - [SMALL_STATE(2869)] = 85756, - [SMALL_STATE(2870)] = 85779, - [SMALL_STATE(2871)] = 85802, - [SMALL_STATE(2872)] = 85823, - [SMALL_STATE(2873)] = 85846, - [SMALL_STATE(2874)] = 85869, - [SMALL_STATE(2875)] = 85892, - [SMALL_STATE(2876)] = 85909, - [SMALL_STATE(2877)] = 85930, - [SMALL_STATE(2878)] = 85953, - [SMALL_STATE(2879)] = 85973, - [SMALL_STATE(2880)] = 85993, - [SMALL_STATE(2881)] = 86013, - [SMALL_STATE(2882)] = 86031, - [SMALL_STATE(2883)] = 86051, - [SMALL_STATE(2884)] = 86067, - [SMALL_STATE(2885)] = 86087, - [SMALL_STATE(2886)] = 86107, - [SMALL_STATE(2887)] = 86127, - [SMALL_STATE(2888)] = 86147, - [SMALL_STATE(2889)] = 86167, - [SMALL_STATE(2890)] = 86187, - [SMALL_STATE(2891)] = 86207, - [SMALL_STATE(2892)] = 86227, - [SMALL_STATE(2893)] = 86243, - [SMALL_STATE(2894)] = 86263, - [SMALL_STATE(2895)] = 86283, - [SMALL_STATE(2896)] = 86303, - [SMALL_STATE(2897)] = 86323, - [SMALL_STATE(2898)] = 86343, - [SMALL_STATE(2899)] = 86363, - [SMALL_STATE(2900)] = 86383, - [SMALL_STATE(2901)] = 86403, - [SMALL_STATE(2902)] = 86423, - [SMALL_STATE(2903)] = 86443, - [SMALL_STATE(2904)] = 86463, - [SMALL_STATE(2905)] = 86483, - [SMALL_STATE(2906)] = 86503, - [SMALL_STATE(2907)] = 86521, - [SMALL_STATE(2908)] = 86541, - [SMALL_STATE(2909)] = 86561, - [SMALL_STATE(2910)] = 86581, - [SMALL_STATE(2911)] = 86599, - [SMALL_STATE(2912)] = 86619, - [SMALL_STATE(2913)] = 86639, - [SMALL_STATE(2914)] = 86659, - [SMALL_STATE(2915)] = 86679, - [SMALL_STATE(2916)] = 86699, - [SMALL_STATE(2917)] = 86719, - [SMALL_STATE(2918)] = 86739, - [SMALL_STATE(2919)] = 86759, - [SMALL_STATE(2920)] = 86779, - [SMALL_STATE(2921)] = 86799, - [SMALL_STATE(2922)] = 86819, - [SMALL_STATE(2923)] = 86839, - [SMALL_STATE(2924)] = 86859, - [SMALL_STATE(2925)] = 86879, - [SMALL_STATE(2926)] = 86899, - [SMALL_STATE(2927)] = 86919, - [SMALL_STATE(2928)] = 86935, - [SMALL_STATE(2929)] = 86955, - [SMALL_STATE(2930)] = 86975, - [SMALL_STATE(2931)] = 86991, - [SMALL_STATE(2932)] = 87011, - [SMALL_STATE(2933)] = 87029, - [SMALL_STATE(2934)] = 87045, - [SMALL_STATE(2935)] = 87065, - [SMALL_STATE(2936)] = 87081, - [SMALL_STATE(2937)] = 87101, - [SMALL_STATE(2938)] = 87121, - [SMALL_STATE(2939)] = 87137, - [SMALL_STATE(2940)] = 87153, - [SMALL_STATE(2941)] = 87173, - [SMALL_STATE(2942)] = 87193, - [SMALL_STATE(2943)] = 87213, - [SMALL_STATE(2944)] = 87233, - [SMALL_STATE(2945)] = 87253, - [SMALL_STATE(2946)] = 87273, - [SMALL_STATE(2947)] = 87293, - [SMALL_STATE(2948)] = 87313, - [SMALL_STATE(2949)] = 87333, - [SMALL_STATE(2950)] = 87353, - [SMALL_STATE(2951)] = 87369, - [SMALL_STATE(2952)] = 87389, - [SMALL_STATE(2953)] = 87407, - [SMALL_STATE(2954)] = 87427, - [SMALL_STATE(2955)] = 87447, - [SMALL_STATE(2956)] = 87467, - [SMALL_STATE(2957)] = 87485, - [SMALL_STATE(2958)] = 87505, - [SMALL_STATE(2959)] = 87525, - [SMALL_STATE(2960)] = 87545, - [SMALL_STATE(2961)] = 87565, - [SMALL_STATE(2962)] = 87583, - [SMALL_STATE(2963)] = 87603, - [SMALL_STATE(2964)] = 87623, - [SMALL_STATE(2965)] = 87643, - [SMALL_STATE(2966)] = 87663, - [SMALL_STATE(2967)] = 87683, - [SMALL_STATE(2968)] = 87703, - [SMALL_STATE(2969)] = 87723, - [SMALL_STATE(2970)] = 87743, - [SMALL_STATE(2971)] = 87761, - [SMALL_STATE(2972)] = 87781, - [SMALL_STATE(2973)] = 87797, - [SMALL_STATE(2974)] = 87813, - [SMALL_STATE(2975)] = 87833, - [SMALL_STATE(2976)] = 87853, - [SMALL_STATE(2977)] = 87873, - [SMALL_STATE(2978)] = 87893, - [SMALL_STATE(2979)] = 87913, - [SMALL_STATE(2980)] = 87933, - [SMALL_STATE(2981)] = 87953, - [SMALL_STATE(2982)] = 87973, - [SMALL_STATE(2983)] = 87989, - [SMALL_STATE(2984)] = 88009, - [SMALL_STATE(2985)] = 88029, - [SMALL_STATE(2986)] = 88049, - [SMALL_STATE(2987)] = 88069, - [SMALL_STATE(2988)] = 88085, - [SMALL_STATE(2989)] = 88105, - [SMALL_STATE(2990)] = 88123, - [SMALL_STATE(2991)] = 88141, - [SMALL_STATE(2992)] = 88157, - [SMALL_STATE(2993)] = 88177, - [SMALL_STATE(2994)] = 88197, - [SMALL_STATE(2995)] = 88217, - [SMALL_STATE(2996)] = 88233, - [SMALL_STATE(2997)] = 88249, - [SMALL_STATE(2998)] = 88265, - [SMALL_STATE(2999)] = 88281, - [SMALL_STATE(3000)] = 88297, - [SMALL_STATE(3001)] = 88313, - [SMALL_STATE(3002)] = 88333, - [SMALL_STATE(3003)] = 88353, - [SMALL_STATE(3004)] = 88373, - [SMALL_STATE(3005)] = 88393, - [SMALL_STATE(3006)] = 88413, - [SMALL_STATE(3007)] = 88429, - [SMALL_STATE(3008)] = 88445, - [SMALL_STATE(3009)] = 88465, - [SMALL_STATE(3010)] = 88485, - [SMALL_STATE(3011)] = 88501, - [SMALL_STATE(3012)] = 88521, - [SMALL_STATE(3013)] = 88541, - [SMALL_STATE(3014)] = 88557, - [SMALL_STATE(3015)] = 88573, - [SMALL_STATE(3016)] = 88589, - [SMALL_STATE(3017)] = 88605, - [SMALL_STATE(3018)] = 88621, - [SMALL_STATE(3019)] = 88641, - [SMALL_STATE(3020)] = 88657, - [SMALL_STATE(3021)] = 88677, - [SMALL_STATE(3022)] = 88697, - [SMALL_STATE(3023)] = 88717, - [SMALL_STATE(3024)] = 88737, - [SMALL_STATE(3025)] = 88757, - [SMALL_STATE(3026)] = 88777, - [SMALL_STATE(3027)] = 88795, - [SMALL_STATE(3028)] = 88815, - [SMALL_STATE(3029)] = 88831, - [SMALL_STATE(3030)] = 88851, - [SMALL_STATE(3031)] = 88871, - [SMALL_STATE(3032)] = 88891, - [SMALL_STATE(3033)] = 88911, - [SMALL_STATE(3034)] = 88929, - [SMALL_STATE(3035)] = 88949, - [SMALL_STATE(3036)] = 88969, - [SMALL_STATE(3037)] = 88989, - [SMALL_STATE(3038)] = 89007, - [SMALL_STATE(3039)] = 89027, - [SMALL_STATE(3040)] = 89043, - [SMALL_STATE(3041)] = 89063, - [SMALL_STATE(3042)] = 89083, - [SMALL_STATE(3043)] = 89101, - [SMALL_STATE(3044)] = 89121, - [SMALL_STATE(3045)] = 89141, - [SMALL_STATE(3046)] = 89161, - [SMALL_STATE(3047)] = 89179, - [SMALL_STATE(3048)] = 89199, - [SMALL_STATE(3049)] = 89219, - [SMALL_STATE(3050)] = 89239, - [SMALL_STATE(3051)] = 89259, - [SMALL_STATE(3052)] = 89279, - [SMALL_STATE(3053)] = 89299, - [SMALL_STATE(3054)] = 89317, - [SMALL_STATE(3055)] = 89333, - [SMALL_STATE(3056)] = 89353, - [SMALL_STATE(3057)] = 89371, - [SMALL_STATE(3058)] = 89391, - [SMALL_STATE(3059)] = 89407, - [SMALL_STATE(3060)] = 89427, - [SMALL_STATE(3061)] = 89447, - [SMALL_STATE(3062)] = 89467, - [SMALL_STATE(3063)] = 89487, - [SMALL_STATE(3064)] = 89505, - [SMALL_STATE(3065)] = 89525, - [SMALL_STATE(3066)] = 89543, - [SMALL_STATE(3067)] = 89563, - [SMALL_STATE(3068)] = 89579, - [SMALL_STATE(3069)] = 89595, - [SMALL_STATE(3070)] = 89615, - [SMALL_STATE(3071)] = 89633, - [SMALL_STATE(3072)] = 89651, - [SMALL_STATE(3073)] = 89667, - [SMALL_STATE(3074)] = 89685, - [SMALL_STATE(3075)] = 89703, - [SMALL_STATE(3076)] = 89723, - [SMALL_STATE(3077)] = 89743, - [SMALL_STATE(3078)] = 89763, - [SMALL_STATE(3079)] = 89781, - [SMALL_STATE(3080)] = 89801, - [SMALL_STATE(3081)] = 89821, - [SMALL_STATE(3082)] = 89837, - [SMALL_STATE(3083)] = 89855, - [SMALL_STATE(3084)] = 89875, - [SMALL_STATE(3085)] = 89895, - [SMALL_STATE(3086)] = 89915, - [SMALL_STATE(3087)] = 89935, - [SMALL_STATE(3088)] = 89953, - [SMALL_STATE(3089)] = 89969, - [SMALL_STATE(3090)] = 89989, - [SMALL_STATE(3091)] = 90005, - [SMALL_STATE(3092)] = 90023, - [SMALL_STATE(3093)] = 90041, - [SMALL_STATE(3094)] = 90061, - [SMALL_STATE(3095)] = 90081, - [SMALL_STATE(3096)] = 90101, - [SMALL_STATE(3097)] = 90117, - [SMALL_STATE(3098)] = 90135, - [SMALL_STATE(3099)] = 90153, - [SMALL_STATE(3100)] = 90173, - [SMALL_STATE(3101)] = 90193, - [SMALL_STATE(3102)] = 90211, - [SMALL_STATE(3103)] = 90227, - [SMALL_STATE(3104)] = 90245, - [SMALL_STATE(3105)] = 90265, - [SMALL_STATE(3106)] = 90285, - [SMALL_STATE(3107)] = 90305, - [SMALL_STATE(3108)] = 90325, - [SMALL_STATE(3109)] = 90345, - [SMALL_STATE(3110)] = 90365, - [SMALL_STATE(3111)] = 90385, - [SMALL_STATE(3112)] = 90405, - [SMALL_STATE(3113)] = 90425, - [SMALL_STATE(3114)] = 90445, - [SMALL_STATE(3115)] = 90465, - [SMALL_STATE(3116)] = 90485, - [SMALL_STATE(3117)] = 90503, - [SMALL_STATE(3118)] = 90523, - [SMALL_STATE(3119)] = 90539, - [SMALL_STATE(3120)] = 90559, - [SMALL_STATE(3121)] = 90579, - [SMALL_STATE(3122)] = 90599, - [SMALL_STATE(3123)] = 90619, - [SMALL_STATE(3124)] = 90635, - [SMALL_STATE(3125)] = 90655, - [SMALL_STATE(3126)] = 90675, - [SMALL_STATE(3127)] = 90695, - [SMALL_STATE(3128)] = 90711, - [SMALL_STATE(3129)] = 90727, - [SMALL_STATE(3130)] = 90743, - [SMALL_STATE(3131)] = 90759, - [SMALL_STATE(3132)] = 90775, - [SMALL_STATE(3133)] = 90791, - [SMALL_STATE(3134)] = 90807, - [SMALL_STATE(3135)] = 90823, - [SMALL_STATE(3136)] = 90841, - [SMALL_STATE(3137)] = 90861, - [SMALL_STATE(3138)] = 90877, - [SMALL_STATE(3139)] = 90895, - [SMALL_STATE(3140)] = 90911, - [SMALL_STATE(3141)] = 90929, - [SMALL_STATE(3142)] = 90947, - [SMALL_STATE(3143)] = 90963, - [SMALL_STATE(3144)] = 90983, - [SMALL_STATE(3145)] = 91001, - [SMALL_STATE(3146)] = 91021, - [SMALL_STATE(3147)] = 91041, - [SMALL_STATE(3148)] = 91061, - [SMALL_STATE(3149)] = 91081, - [SMALL_STATE(3150)] = 91101, - [SMALL_STATE(3151)] = 91121, - [SMALL_STATE(3152)] = 91141, - [SMALL_STATE(3153)] = 91161, - [SMALL_STATE(3154)] = 91179, - [SMALL_STATE(3155)] = 91199, - [SMALL_STATE(3156)] = 91219, - [SMALL_STATE(3157)] = 91239, - [SMALL_STATE(3158)] = 91259, - [SMALL_STATE(3159)] = 91279, - [SMALL_STATE(3160)] = 91299, - [SMALL_STATE(3161)] = 91319, - [SMALL_STATE(3162)] = 91339, - [SMALL_STATE(3163)] = 91359, - [SMALL_STATE(3164)] = 91379, - [SMALL_STATE(3165)] = 91399, - [SMALL_STATE(3166)] = 91419, - [SMALL_STATE(3167)] = 91439, - [SMALL_STATE(3168)] = 91459, - [SMALL_STATE(3169)] = 91479, - [SMALL_STATE(3170)] = 91499, - [SMALL_STATE(3171)] = 91519, - [SMALL_STATE(3172)] = 91539, - [SMALL_STATE(3173)] = 91559, - [SMALL_STATE(3174)] = 91575, - [SMALL_STATE(3175)] = 91595, - [SMALL_STATE(3176)] = 91613, - [SMALL_STATE(3177)] = 91633, - [SMALL_STATE(3178)] = 91651, - [SMALL_STATE(3179)] = 91671, - [SMALL_STATE(3180)] = 91691, - [SMALL_STATE(3181)] = 91711, - [SMALL_STATE(3182)] = 91731, - [SMALL_STATE(3183)] = 91751, - [SMALL_STATE(3184)] = 91767, - [SMALL_STATE(3185)] = 91787, - [SMALL_STATE(3186)] = 91807, - [SMALL_STATE(3187)] = 91827, - [SMALL_STATE(3188)] = 91847, - [SMALL_STATE(3189)] = 91867, - [SMALL_STATE(3190)] = 91884, - [SMALL_STATE(3191)] = 91901, - [SMALL_STATE(3192)] = 91918, - [SMALL_STATE(3193)] = 91935, - [SMALL_STATE(3194)] = 91952, - [SMALL_STATE(3195)] = 91967, - [SMALL_STATE(3196)] = 91984, - [SMALL_STATE(3197)] = 92001, - [SMALL_STATE(3198)] = 92018, - [SMALL_STATE(3199)] = 92035, - [SMALL_STATE(3200)] = 92050, - [SMALL_STATE(3201)] = 92067, - [SMALL_STATE(3202)] = 92084, - [SMALL_STATE(3203)] = 92101, - [SMALL_STATE(3204)] = 92118, - [SMALL_STATE(3205)] = 92135, - [SMALL_STATE(3206)] = 92152, - [SMALL_STATE(3207)] = 92169, - [SMALL_STATE(3208)] = 92186, - [SMALL_STATE(3209)] = 92203, - [SMALL_STATE(3210)] = 92220, - [SMALL_STATE(3211)] = 92237, - [SMALL_STATE(3212)] = 92254, - [SMALL_STATE(3213)] = 92269, - [SMALL_STATE(3214)] = 92284, - [SMALL_STATE(3215)] = 92301, - [SMALL_STATE(3216)] = 92318, - [SMALL_STATE(3217)] = 92333, - [SMALL_STATE(3218)] = 92348, - [SMALL_STATE(3219)] = 92365, - [SMALL_STATE(3220)] = 92382, - [SMALL_STATE(3221)] = 92397, - [SMALL_STATE(3222)] = 92414, - [SMALL_STATE(3223)] = 92431, - [SMALL_STATE(3224)] = 92448, - [SMALL_STATE(3225)] = 92465, - [SMALL_STATE(3226)] = 92480, - [SMALL_STATE(3227)] = 92497, - [SMALL_STATE(3228)] = 92514, - [SMALL_STATE(3229)] = 92531, - [SMALL_STATE(3230)] = 92548, - [SMALL_STATE(3231)] = 92565, - [SMALL_STATE(3232)] = 92582, - [SMALL_STATE(3233)] = 92599, - [SMALL_STATE(3234)] = 92616, - [SMALL_STATE(3235)] = 92633, - [SMALL_STATE(3236)] = 92650, - [SMALL_STATE(3237)] = 92667, - [SMALL_STATE(3238)] = 92682, - [SMALL_STATE(3239)] = 92699, - [SMALL_STATE(3240)] = 92716, - [SMALL_STATE(3241)] = 92733, - [SMALL_STATE(3242)] = 92750, - [SMALL_STATE(3243)] = 92767, - [SMALL_STATE(3244)] = 92782, - [SMALL_STATE(3245)] = 92799, - [SMALL_STATE(3246)] = 92816, - [SMALL_STATE(3247)] = 92833, - [SMALL_STATE(3248)] = 92850, - [SMALL_STATE(3249)] = 92867, - [SMALL_STATE(3250)] = 92882, - [SMALL_STATE(3251)] = 92899, - [SMALL_STATE(3252)] = 92916, - [SMALL_STATE(3253)] = 92931, - [SMALL_STATE(3254)] = 92948, - [SMALL_STATE(3255)] = 92965, - [SMALL_STATE(3256)] = 92982, - [SMALL_STATE(3257)] = 92999, - [SMALL_STATE(3258)] = 93016, - [SMALL_STATE(3259)] = 93033, - [SMALL_STATE(3260)] = 93050, - [SMALL_STATE(3261)] = 93067, - [SMALL_STATE(3262)] = 93084, - [SMALL_STATE(3263)] = 93101, - [SMALL_STATE(3264)] = 93118, - [SMALL_STATE(3265)] = 93133, - [SMALL_STATE(3266)] = 93148, - [SMALL_STATE(3267)] = 93163, - [SMALL_STATE(3268)] = 93180, - [SMALL_STATE(3269)] = 93197, - [SMALL_STATE(3270)] = 93214, - [SMALL_STATE(3271)] = 93229, - [SMALL_STATE(3272)] = 93246, - [SMALL_STATE(3273)] = 93263, - [SMALL_STATE(3274)] = 93278, - [SMALL_STATE(3275)] = 93295, - [SMALL_STATE(3276)] = 93312, - [SMALL_STATE(3277)] = 93329, - [SMALL_STATE(3278)] = 93346, - [SMALL_STATE(3279)] = 93363, - [SMALL_STATE(3280)] = 93378, - [SMALL_STATE(3281)] = 93395, - [SMALL_STATE(3282)] = 93412, - [SMALL_STATE(3283)] = 93429, - [SMALL_STATE(3284)] = 93446, - [SMALL_STATE(3285)] = 93463, - [SMALL_STATE(3286)] = 93480, - [SMALL_STATE(3287)] = 93497, - [SMALL_STATE(3288)] = 93514, - [SMALL_STATE(3289)] = 93531, - [SMALL_STATE(3290)] = 93548, - [SMALL_STATE(3291)] = 93565, - [SMALL_STATE(3292)] = 93582, - [SMALL_STATE(3293)] = 93599, - [SMALL_STATE(3294)] = 93616, - [SMALL_STATE(3295)] = 93633, - [SMALL_STATE(3296)] = 93650, - [SMALL_STATE(3297)] = 93665, - [SMALL_STATE(3298)] = 93682, - [SMALL_STATE(3299)] = 93699, - [SMALL_STATE(3300)] = 93714, - [SMALL_STATE(3301)] = 93731, - [SMALL_STATE(3302)] = 93748, - [SMALL_STATE(3303)] = 93765, - [SMALL_STATE(3304)] = 93782, - [SMALL_STATE(3305)] = 93799, - [SMALL_STATE(3306)] = 93816, - [SMALL_STATE(3307)] = 93833, - [SMALL_STATE(3308)] = 93850, - [SMALL_STATE(3309)] = 93867, - [SMALL_STATE(3310)] = 93884, - [SMALL_STATE(3311)] = 93901, - [SMALL_STATE(3312)] = 93918, - [SMALL_STATE(3313)] = 93935, - [SMALL_STATE(3314)] = 93952, - [SMALL_STATE(3315)] = 93969, - [SMALL_STATE(3316)] = 93986, - [SMALL_STATE(3317)] = 94003, - [SMALL_STATE(3318)] = 94020, - [SMALL_STATE(3319)] = 94037, - [SMALL_STATE(3320)] = 94054, - [SMALL_STATE(3321)] = 94071, - [SMALL_STATE(3322)] = 94088, - [SMALL_STATE(3323)] = 94105, - [SMALL_STATE(3324)] = 94122, - [SMALL_STATE(3325)] = 94137, - [SMALL_STATE(3326)] = 94154, - [SMALL_STATE(3327)] = 94171, - [SMALL_STATE(3328)] = 94188, - [SMALL_STATE(3329)] = 94205, - [SMALL_STATE(3330)] = 94222, - [SMALL_STATE(3331)] = 94239, - [SMALL_STATE(3332)] = 94256, - [SMALL_STATE(3333)] = 94273, - [SMALL_STATE(3334)] = 94290, - [SMALL_STATE(3335)] = 94307, - [SMALL_STATE(3336)] = 94322, - [SMALL_STATE(3337)] = 94339, - [SMALL_STATE(3338)] = 94356, - [SMALL_STATE(3339)] = 94373, - [SMALL_STATE(3340)] = 94390, - [SMALL_STATE(3341)] = 94407, - [SMALL_STATE(3342)] = 94424, - [SMALL_STATE(3343)] = 94439, - [SMALL_STATE(3344)] = 94456, - [SMALL_STATE(3345)] = 94473, - [SMALL_STATE(3346)] = 94488, - [SMALL_STATE(3347)] = 94505, - [SMALL_STATE(3348)] = 94520, - [SMALL_STATE(3349)] = 94537, - [SMALL_STATE(3350)] = 94552, - [SMALL_STATE(3351)] = 94567, - [SMALL_STATE(3352)] = 94582, - [SMALL_STATE(3353)] = 94599, - [SMALL_STATE(3354)] = 94616, - [SMALL_STATE(3355)] = 94633, - [SMALL_STATE(3356)] = 94650, - [SMALL_STATE(3357)] = 94667, - [SMALL_STATE(3358)] = 94682, - [SMALL_STATE(3359)] = 94699, - [SMALL_STATE(3360)] = 94716, - [SMALL_STATE(3361)] = 94733, - [SMALL_STATE(3362)] = 94750, - [SMALL_STATE(3363)] = 94767, - [SMALL_STATE(3364)] = 94784, - [SMALL_STATE(3365)] = 94801, - [SMALL_STATE(3366)] = 94816, - [SMALL_STATE(3367)] = 94833, - [SMALL_STATE(3368)] = 94850, - [SMALL_STATE(3369)] = 94867, - [SMALL_STATE(3370)] = 94882, - [SMALL_STATE(3371)] = 94899, - [SMALL_STATE(3372)] = 94916, - [SMALL_STATE(3373)] = 94933, - [SMALL_STATE(3374)] = 94948, - [SMALL_STATE(3375)] = 94965, - [SMALL_STATE(3376)] = 94982, - [SMALL_STATE(3377)] = 94997, - [SMALL_STATE(3378)] = 95014, - [SMALL_STATE(3379)] = 95029, - [SMALL_STATE(3380)] = 95046, - [SMALL_STATE(3381)] = 95061, - [SMALL_STATE(3382)] = 95078, - [SMALL_STATE(3383)] = 95095, - [SMALL_STATE(3384)] = 95110, - [SMALL_STATE(3385)] = 95125, - [SMALL_STATE(3386)] = 95142, - [SMALL_STATE(3387)] = 95159, - [SMALL_STATE(3388)] = 95176, - [SMALL_STATE(3389)] = 95193, - [SMALL_STATE(3390)] = 95210, - [SMALL_STATE(3391)] = 95227, - [SMALL_STATE(3392)] = 95244, - [SMALL_STATE(3393)] = 95259, - [SMALL_STATE(3394)] = 95276, - [SMALL_STATE(3395)] = 95291, - [SMALL_STATE(3396)] = 95308, - [SMALL_STATE(3397)] = 95325, - [SMALL_STATE(3398)] = 95342, - [SMALL_STATE(3399)] = 95357, - [SMALL_STATE(3400)] = 95372, - [SMALL_STATE(3401)] = 95389, - [SMALL_STATE(3402)] = 95406, - [SMALL_STATE(3403)] = 95421, - [SMALL_STATE(3404)] = 95438, - [SMALL_STATE(3405)] = 95455, - [SMALL_STATE(3406)] = 95472, - [SMALL_STATE(3407)] = 95489, - [SMALL_STATE(3408)] = 95504, - [SMALL_STATE(3409)] = 95519, - [SMALL_STATE(3410)] = 95536, - [SMALL_STATE(3411)] = 95553, - [SMALL_STATE(3412)] = 95570, - [SMALL_STATE(3413)] = 95587, - [SMALL_STATE(3414)] = 95604, - [SMALL_STATE(3415)] = 95621, - [SMALL_STATE(3416)] = 95638, - [SMALL_STATE(3417)] = 95655, - [SMALL_STATE(3418)] = 95670, - [SMALL_STATE(3419)] = 95687, - [SMALL_STATE(3420)] = 95704, - [SMALL_STATE(3421)] = 95721, - [SMALL_STATE(3422)] = 95738, - [SMALL_STATE(3423)] = 95755, - [SMALL_STATE(3424)] = 95772, - [SMALL_STATE(3425)] = 95789, - [SMALL_STATE(3426)] = 95804, - [SMALL_STATE(3427)] = 95819, - [SMALL_STATE(3428)] = 95836, - [SMALL_STATE(3429)] = 95853, - [SMALL_STATE(3430)] = 95870, - [SMALL_STATE(3431)] = 95887, - [SMALL_STATE(3432)] = 95904, - [SMALL_STATE(3433)] = 95921, - [SMALL_STATE(3434)] = 95938, - [SMALL_STATE(3435)] = 95955, - [SMALL_STATE(3436)] = 95972, - [SMALL_STATE(3437)] = 95989, - [SMALL_STATE(3438)] = 96006, - [SMALL_STATE(3439)] = 96023, - [SMALL_STATE(3440)] = 96040, - [SMALL_STATE(3441)] = 96057, - [SMALL_STATE(3442)] = 96074, - [SMALL_STATE(3443)] = 96091, - [SMALL_STATE(3444)] = 96108, - [SMALL_STATE(3445)] = 96123, - [SMALL_STATE(3446)] = 96140, - [SMALL_STATE(3447)] = 96155, - [SMALL_STATE(3448)] = 96172, - [SMALL_STATE(3449)] = 96189, - [SMALL_STATE(3450)] = 96206, - [SMALL_STATE(3451)] = 96223, - [SMALL_STATE(3452)] = 96238, - [SMALL_STATE(3453)] = 96255, - [SMALL_STATE(3454)] = 96272, - [SMALL_STATE(3455)] = 96289, - [SMALL_STATE(3456)] = 96306, - [SMALL_STATE(3457)] = 96323, - [SMALL_STATE(3458)] = 96338, - [SMALL_STATE(3459)] = 96355, - [SMALL_STATE(3460)] = 96370, - [SMALL_STATE(3461)] = 96387, - [SMALL_STATE(3462)] = 96404, - [SMALL_STATE(3463)] = 96419, - [SMALL_STATE(3464)] = 96436, - [SMALL_STATE(3465)] = 96453, - [SMALL_STATE(3466)] = 96468, - [SMALL_STATE(3467)] = 96485, - [SMALL_STATE(3468)] = 96502, - [SMALL_STATE(3469)] = 96517, - [SMALL_STATE(3470)] = 96534, - [SMALL_STATE(3471)] = 96549, - [SMALL_STATE(3472)] = 96566, - [SMALL_STATE(3473)] = 96583, - [SMALL_STATE(3474)] = 96600, - [SMALL_STATE(3475)] = 96617, - [SMALL_STATE(3476)] = 96634, - [SMALL_STATE(3477)] = 96651, - [SMALL_STATE(3478)] = 96668, - [SMALL_STATE(3479)] = 96685, - [SMALL_STATE(3480)] = 96702, - [SMALL_STATE(3481)] = 96719, - [SMALL_STATE(3482)] = 96736, - [SMALL_STATE(3483)] = 96751, - [SMALL_STATE(3484)] = 96768, - [SMALL_STATE(3485)] = 96785, - [SMALL_STATE(3486)] = 96802, - [SMALL_STATE(3487)] = 96819, - [SMALL_STATE(3488)] = 96836, - [SMALL_STATE(3489)] = 96853, - [SMALL_STATE(3490)] = 96870, - [SMALL_STATE(3491)] = 96887, - [SMALL_STATE(3492)] = 96904, - [SMALL_STATE(3493)] = 96921, - [SMALL_STATE(3494)] = 96938, - [SMALL_STATE(3495)] = 96955, - [SMALL_STATE(3496)] = 96972, - [SMALL_STATE(3497)] = 96987, - [SMALL_STATE(3498)] = 97001, - [SMALL_STATE(3499)] = 97015, - [SMALL_STATE(3500)] = 97029, - [SMALL_STATE(3501)] = 97043, - [SMALL_STATE(3502)] = 97057, - [SMALL_STATE(3503)] = 97071, - [SMALL_STATE(3504)] = 97085, - [SMALL_STATE(3505)] = 97099, - [SMALL_STATE(3506)] = 97113, - [SMALL_STATE(3507)] = 97127, - [SMALL_STATE(3508)] = 97141, - [SMALL_STATE(3509)] = 97155, - [SMALL_STATE(3510)] = 97169, - [SMALL_STATE(3511)] = 97183, - [SMALL_STATE(3512)] = 97197, - [SMALL_STATE(3513)] = 97211, - [SMALL_STATE(3514)] = 97225, - [SMALL_STATE(3515)] = 97239, - [SMALL_STATE(3516)] = 97253, - [SMALL_STATE(3517)] = 97267, - [SMALL_STATE(3518)] = 97281, - [SMALL_STATE(3519)] = 97295, - [SMALL_STATE(3520)] = 97309, - [SMALL_STATE(3521)] = 97323, - [SMALL_STATE(3522)] = 97337, - [SMALL_STATE(3523)] = 97351, - [SMALL_STATE(3524)] = 97365, - [SMALL_STATE(3525)] = 97379, - [SMALL_STATE(3526)] = 97393, - [SMALL_STATE(3527)] = 97407, - [SMALL_STATE(3528)] = 97421, - [SMALL_STATE(3529)] = 97435, - [SMALL_STATE(3530)] = 97449, - [SMALL_STATE(3531)] = 97463, - [SMALL_STATE(3532)] = 97477, - [SMALL_STATE(3533)] = 97491, - [SMALL_STATE(3534)] = 97505, - [SMALL_STATE(3535)] = 97519, - [SMALL_STATE(3536)] = 97533, - [SMALL_STATE(3537)] = 97547, - [SMALL_STATE(3538)] = 97561, - [SMALL_STATE(3539)] = 97575, - [SMALL_STATE(3540)] = 97589, - [SMALL_STATE(3541)] = 97603, - [SMALL_STATE(3542)] = 97617, - [SMALL_STATE(3543)] = 97631, - [SMALL_STATE(3544)] = 97645, - [SMALL_STATE(3545)] = 97659, - [SMALL_STATE(3546)] = 97673, - [SMALL_STATE(3547)] = 97687, - [SMALL_STATE(3548)] = 97701, - [SMALL_STATE(3549)] = 97715, - [SMALL_STATE(3550)] = 97729, - [SMALL_STATE(3551)] = 97743, - [SMALL_STATE(3552)] = 97757, - [SMALL_STATE(3553)] = 97771, - [SMALL_STATE(3554)] = 97785, - [SMALL_STATE(3555)] = 97799, - [SMALL_STATE(3556)] = 97813, - [SMALL_STATE(3557)] = 97827, - [SMALL_STATE(3558)] = 97841, - [SMALL_STATE(3559)] = 97855, - [SMALL_STATE(3560)] = 97869, - [SMALL_STATE(3561)] = 97883, - [SMALL_STATE(3562)] = 97897, - [SMALL_STATE(3563)] = 97911, - [SMALL_STATE(3564)] = 97925, - [SMALL_STATE(3565)] = 97939, - [SMALL_STATE(3566)] = 97953, - [SMALL_STATE(3567)] = 97967, - [SMALL_STATE(3568)] = 97981, - [SMALL_STATE(3569)] = 97995, - [SMALL_STATE(3570)] = 98009, - [SMALL_STATE(3571)] = 98023, - [SMALL_STATE(3572)] = 98037, - [SMALL_STATE(3573)] = 98051, - [SMALL_STATE(3574)] = 98065, - [SMALL_STATE(3575)] = 98079, - [SMALL_STATE(3576)] = 98093, - [SMALL_STATE(3577)] = 98107, - [SMALL_STATE(3578)] = 98121, - [SMALL_STATE(3579)] = 98135, - [SMALL_STATE(3580)] = 98149, - [SMALL_STATE(3581)] = 98163, - [SMALL_STATE(3582)] = 98177, - [SMALL_STATE(3583)] = 98191, - [SMALL_STATE(3584)] = 98205, - [SMALL_STATE(3585)] = 98219, - [SMALL_STATE(3586)] = 98233, - [SMALL_STATE(3587)] = 98247, - [SMALL_STATE(3588)] = 98261, - [SMALL_STATE(3589)] = 98275, - [SMALL_STATE(3590)] = 98289, - [SMALL_STATE(3591)] = 98303, - [SMALL_STATE(3592)] = 98317, - [SMALL_STATE(3593)] = 98331, - [SMALL_STATE(3594)] = 98345, - [SMALL_STATE(3595)] = 98359, - [SMALL_STATE(3596)] = 98373, - [SMALL_STATE(3597)] = 98387, - [SMALL_STATE(3598)] = 98401, - [SMALL_STATE(3599)] = 98415, - [SMALL_STATE(3600)] = 98429, - [SMALL_STATE(3601)] = 98443, - [SMALL_STATE(3602)] = 98457, - [SMALL_STATE(3603)] = 98471, - [SMALL_STATE(3604)] = 98485, - [SMALL_STATE(3605)] = 98499, - [SMALL_STATE(3606)] = 98513, - [SMALL_STATE(3607)] = 98527, - [SMALL_STATE(3608)] = 98541, - [SMALL_STATE(3609)] = 98555, - [SMALL_STATE(3610)] = 98569, - [SMALL_STATE(3611)] = 98583, - [SMALL_STATE(3612)] = 98597, - [SMALL_STATE(3613)] = 98611, - [SMALL_STATE(3614)] = 98625, - [SMALL_STATE(3615)] = 98639, - [SMALL_STATE(3616)] = 98653, - [SMALL_STATE(3617)] = 98667, - [SMALL_STATE(3618)] = 98681, - [SMALL_STATE(3619)] = 98695, - [SMALL_STATE(3620)] = 98709, - [SMALL_STATE(3621)] = 98723, - [SMALL_STATE(3622)] = 98737, - [SMALL_STATE(3623)] = 98751, - [SMALL_STATE(3624)] = 98765, - [SMALL_STATE(3625)] = 98779, - [SMALL_STATE(3626)] = 98793, - [SMALL_STATE(3627)] = 98807, - [SMALL_STATE(3628)] = 98821, - [SMALL_STATE(3629)] = 98835, - [SMALL_STATE(3630)] = 98849, - [SMALL_STATE(3631)] = 98863, - [SMALL_STATE(3632)] = 98877, - [SMALL_STATE(3633)] = 98891, - [SMALL_STATE(3634)] = 98905, - [SMALL_STATE(3635)] = 98919, - [SMALL_STATE(3636)] = 98933, - [SMALL_STATE(3637)] = 98947, - [SMALL_STATE(3638)] = 98961, - [SMALL_STATE(3639)] = 98975, - [SMALL_STATE(3640)] = 98989, - [SMALL_STATE(3641)] = 99003, - [SMALL_STATE(3642)] = 99017, - [SMALL_STATE(3643)] = 99031, - [SMALL_STATE(3644)] = 99045, - [SMALL_STATE(3645)] = 99059, - [SMALL_STATE(3646)] = 99073, - [SMALL_STATE(3647)] = 99087, - [SMALL_STATE(3648)] = 99101, - [SMALL_STATE(3649)] = 99115, - [SMALL_STATE(3650)] = 99129, - [SMALL_STATE(3651)] = 99143, - [SMALL_STATE(3652)] = 99157, - [SMALL_STATE(3653)] = 99171, - [SMALL_STATE(3654)] = 99185, - [SMALL_STATE(3655)] = 99199, - [SMALL_STATE(3656)] = 99213, - [SMALL_STATE(3657)] = 99227, - [SMALL_STATE(3658)] = 99241, - [SMALL_STATE(3659)] = 99255, - [SMALL_STATE(3660)] = 99269, - [SMALL_STATE(3661)] = 99283, - [SMALL_STATE(3662)] = 99297, - [SMALL_STATE(3663)] = 99311, - [SMALL_STATE(3664)] = 99325, - [SMALL_STATE(3665)] = 99339, - [SMALL_STATE(3666)] = 99353, - [SMALL_STATE(3667)] = 99367, - [SMALL_STATE(3668)] = 99381, - [SMALL_STATE(3669)] = 99395, - [SMALL_STATE(3670)] = 99409, - [SMALL_STATE(3671)] = 99423, - [SMALL_STATE(3672)] = 99437, - [SMALL_STATE(3673)] = 99451, - [SMALL_STATE(3674)] = 99465, - [SMALL_STATE(3675)] = 99479, - [SMALL_STATE(3676)] = 99493, - [SMALL_STATE(3677)] = 99507, - [SMALL_STATE(3678)] = 99521, - [SMALL_STATE(3679)] = 99535, - [SMALL_STATE(3680)] = 99549, - [SMALL_STATE(3681)] = 99563, - [SMALL_STATE(3682)] = 99577, - [SMALL_STATE(3683)] = 99591, - [SMALL_STATE(3684)] = 99605, - [SMALL_STATE(3685)] = 99619, - [SMALL_STATE(3686)] = 99633, - [SMALL_STATE(3687)] = 99647, - [SMALL_STATE(3688)] = 99661, - [SMALL_STATE(3689)] = 99675, - [SMALL_STATE(3690)] = 99689, - [SMALL_STATE(3691)] = 99703, - [SMALL_STATE(3692)] = 99717, - [SMALL_STATE(3693)] = 99731, - [SMALL_STATE(3694)] = 99745, - [SMALL_STATE(3695)] = 99759, - [SMALL_STATE(3696)] = 99773, - [SMALL_STATE(3697)] = 99787, - [SMALL_STATE(3698)] = 99801, - [SMALL_STATE(3699)] = 99815, - [SMALL_STATE(3700)] = 99829, - [SMALL_STATE(3701)] = 99843, - [SMALL_STATE(3702)] = 99857, - [SMALL_STATE(3703)] = 99871, - [SMALL_STATE(3704)] = 99885, - [SMALL_STATE(3705)] = 99899, - [SMALL_STATE(3706)] = 99913, - [SMALL_STATE(3707)] = 99927, - [SMALL_STATE(3708)] = 99941, - [SMALL_STATE(3709)] = 99955, - [SMALL_STATE(3710)] = 99969, - [SMALL_STATE(3711)] = 99983, - [SMALL_STATE(3712)] = 99997, - [SMALL_STATE(3713)] = 100011, - [SMALL_STATE(3714)] = 100025, - [SMALL_STATE(3715)] = 100039, - [SMALL_STATE(3716)] = 100053, - [SMALL_STATE(3717)] = 100067, - [SMALL_STATE(3718)] = 100081, - [SMALL_STATE(3719)] = 100095, - [SMALL_STATE(3720)] = 100109, - [SMALL_STATE(3721)] = 100123, - [SMALL_STATE(3722)] = 100137, - [SMALL_STATE(3723)] = 100151, - [SMALL_STATE(3724)] = 100165, - [SMALL_STATE(3725)] = 100179, - [SMALL_STATE(3726)] = 100193, - [SMALL_STATE(3727)] = 100207, - [SMALL_STATE(3728)] = 100221, - [SMALL_STATE(3729)] = 100235, - [SMALL_STATE(3730)] = 100249, - [SMALL_STATE(3731)] = 100263, - [SMALL_STATE(3732)] = 100277, - [SMALL_STATE(3733)] = 100291, - [SMALL_STATE(3734)] = 100305, - [SMALL_STATE(3735)] = 100319, - [SMALL_STATE(3736)] = 100333, - [SMALL_STATE(3737)] = 100347, - [SMALL_STATE(3738)] = 100361, - [SMALL_STATE(3739)] = 100375, - [SMALL_STATE(3740)] = 100389, - [SMALL_STATE(3741)] = 100403, - [SMALL_STATE(3742)] = 100417, - [SMALL_STATE(3743)] = 100431, - [SMALL_STATE(3744)] = 100445, - [SMALL_STATE(3745)] = 100459, - [SMALL_STATE(3746)] = 100473, - [SMALL_STATE(3747)] = 100487, - [SMALL_STATE(3748)] = 100501, - [SMALL_STATE(3749)] = 100515, - [SMALL_STATE(3750)] = 100529, - [SMALL_STATE(3751)] = 100543, - [SMALL_STATE(3752)] = 100557, - [SMALL_STATE(3753)] = 100571, - [SMALL_STATE(3754)] = 100585, - [SMALL_STATE(3755)] = 100599, - [SMALL_STATE(3756)] = 100613, - [SMALL_STATE(3757)] = 100627, - [SMALL_STATE(3758)] = 100641, - [SMALL_STATE(3759)] = 100655, - [SMALL_STATE(3760)] = 100669, - [SMALL_STATE(3761)] = 100683, - [SMALL_STATE(3762)] = 100697, - [SMALL_STATE(3763)] = 100711, - [SMALL_STATE(3764)] = 100725, - [SMALL_STATE(3765)] = 100739, - [SMALL_STATE(3766)] = 100753, - [SMALL_STATE(3767)] = 100767, - [SMALL_STATE(3768)] = 100781, - [SMALL_STATE(3769)] = 100795, - [SMALL_STATE(3770)] = 100809, - [SMALL_STATE(3771)] = 100823, - [SMALL_STATE(3772)] = 100837, - [SMALL_STATE(3773)] = 100851, - [SMALL_STATE(3774)] = 100865, - [SMALL_STATE(3775)] = 100879, - [SMALL_STATE(3776)] = 100893, - [SMALL_STATE(3777)] = 100907, - [SMALL_STATE(3778)] = 100921, - [SMALL_STATE(3779)] = 100935, - [SMALL_STATE(3780)] = 100949, - [SMALL_STATE(3781)] = 100963, - [SMALL_STATE(3782)] = 100977, - [SMALL_STATE(3783)] = 100991, - [SMALL_STATE(3784)] = 101005, - [SMALL_STATE(3785)] = 101019, - [SMALL_STATE(3786)] = 101033, - [SMALL_STATE(3787)] = 101047, - [SMALL_STATE(3788)] = 101061, - [SMALL_STATE(3789)] = 101075, - [SMALL_STATE(3790)] = 101089, - [SMALL_STATE(3791)] = 101103, - [SMALL_STATE(3792)] = 101117, - [SMALL_STATE(3793)] = 101131, - [SMALL_STATE(3794)] = 101145, - [SMALL_STATE(3795)] = 101159, - [SMALL_STATE(3796)] = 101173, - [SMALL_STATE(3797)] = 101187, - [SMALL_STATE(3798)] = 101201, - [SMALL_STATE(3799)] = 101215, - [SMALL_STATE(3800)] = 101229, - [SMALL_STATE(3801)] = 101243, - [SMALL_STATE(3802)] = 101257, - [SMALL_STATE(3803)] = 101271, - [SMALL_STATE(3804)] = 101285, - [SMALL_STATE(3805)] = 101299, - [SMALL_STATE(3806)] = 101313, - [SMALL_STATE(3807)] = 101327, - [SMALL_STATE(3808)] = 101341, - [SMALL_STATE(3809)] = 101355, - [SMALL_STATE(3810)] = 101369, - [SMALL_STATE(3811)] = 101383, - [SMALL_STATE(3812)] = 101397, - [SMALL_STATE(3813)] = 101411, - [SMALL_STATE(3814)] = 101425, - [SMALL_STATE(3815)] = 101439, - [SMALL_STATE(3816)] = 101453, - [SMALL_STATE(3817)] = 101457, - [SMALL_STATE(3818)] = 101461, - [SMALL_STATE(3819)] = 101465, - [SMALL_STATE(3820)] = 101469, - [SMALL_STATE(3821)] = 101473, - [SMALL_STATE(3822)] = 101477, + [SMALL_STATE(1071)] = 0, + [SMALL_STATE(1072)] = 75, + [SMALL_STATE(1073)] = 149, + [SMALL_STATE(1074)] = 221, + [SMALL_STATE(1075)] = 321, + [SMALL_STATE(1076)] = 421, + [SMALL_STATE(1077)] = 521, + [SMALL_STATE(1078)] = 586, + [SMALL_STATE(1079)] = 663, + [SMALL_STATE(1080)] = 728, + [SMALL_STATE(1081)] = 793, + [SMALL_STATE(1082)] = 858, + [SMALL_STATE(1083)] = 923, + [SMALL_STATE(1084)] = 988, + [SMALL_STATE(1085)] = 1053, + [SMALL_STATE(1086)] = 1118, + [SMALL_STATE(1087)] = 1197, + [SMALL_STATE(1088)] = 1274, + [SMALL_STATE(1089)] = 1339, + [SMALL_STATE(1090)] = 1416, + [SMALL_STATE(1091)] = 1490, + [SMALL_STATE(1092)] = 1554, + [SMALL_STATE(1093)] = 1618, + [SMALL_STATE(1094)] = 1682, + [SMALL_STATE(1095)] = 1746, + [SMALL_STATE(1096)] = 1810, + [SMALL_STATE(1097)] = 1878, + [SMALL_STATE(1098)] = 1946, + [SMALL_STATE(1099)] = 2017, + [SMALL_STATE(1100)] = 2084, + [SMALL_STATE(1101)] = 2151, + [SMALL_STATE(1102)] = 2218, + [SMALL_STATE(1103)] = 2281, + [SMALL_STATE(1104)] = 2382, + [SMALL_STATE(1105)] = 2483, + [SMALL_STATE(1106)] = 2546, + [SMALL_STATE(1107)] = 2617, + [SMALL_STATE(1108)] = 2688, + [SMALL_STATE(1109)] = 2757, + [SMALL_STATE(1110)] = 2820, + [SMALL_STATE(1111)] = 2887, + [SMALL_STATE(1112)] = 2950, + [SMALL_STATE(1113)] = 3051, + [SMALL_STATE(1114)] = 3122, + [SMALL_STATE(1115)] = 3184, + [SMALL_STATE(1116)] = 3246, + [SMALL_STATE(1117)] = 3308, + [SMALL_STATE(1118)] = 3370, + [SMALL_STATE(1119)] = 3432, + [SMALL_STATE(1120)] = 3494, + [SMALL_STATE(1121)] = 3556, + [SMALL_STATE(1122)] = 3618, + [SMALL_STATE(1123)] = 3680, + [SMALL_STATE(1124)] = 3742, + [SMALL_STATE(1125)] = 3804, + [SMALL_STATE(1126)] = 3866, + [SMALL_STATE(1127)] = 3928, + [SMALL_STATE(1128)] = 3990, + [SMALL_STATE(1129)] = 4052, + [SMALL_STATE(1130)] = 4114, + [SMALL_STATE(1131)] = 4176, + [SMALL_STATE(1132)] = 4238, + [SMALL_STATE(1133)] = 4300, + [SMALL_STATE(1134)] = 4362, + [SMALL_STATE(1135)] = 4424, + [SMALL_STATE(1136)] = 4486, + [SMALL_STATE(1137)] = 4548, + [SMALL_STATE(1138)] = 4610, + [SMALL_STATE(1139)] = 4672, + [SMALL_STATE(1140)] = 4734, + [SMALL_STATE(1141)] = 4796, + [SMALL_STATE(1142)] = 4858, + [SMALL_STATE(1143)] = 4920, + [SMALL_STATE(1144)] = 4982, + [SMALL_STATE(1145)] = 5044, + [SMALL_STATE(1146)] = 5106, + [SMALL_STATE(1147)] = 5168, + [SMALL_STATE(1148)] = 5230, + [SMALL_STATE(1149)] = 5292, + [SMALL_STATE(1150)] = 5354, + [SMALL_STATE(1151)] = 5416, + [SMALL_STATE(1152)] = 5478, + [SMALL_STATE(1153)] = 5540, + [SMALL_STATE(1154)] = 5602, + [SMALL_STATE(1155)] = 5664, + [SMALL_STATE(1156)] = 5726, + [SMALL_STATE(1157)] = 5788, + [SMALL_STATE(1158)] = 5850, + [SMALL_STATE(1159)] = 5912, + [SMALL_STATE(1160)] = 5974, + [SMALL_STATE(1161)] = 6036, + [SMALL_STATE(1162)] = 6098, + [SMALL_STATE(1163)] = 6160, + [SMALL_STATE(1164)] = 6222, + [SMALL_STATE(1165)] = 6284, + [SMALL_STATE(1166)] = 6346, + [SMALL_STATE(1167)] = 6408, + [SMALL_STATE(1168)] = 6470, + [SMALL_STATE(1169)] = 6532, + [SMALL_STATE(1170)] = 6594, + [SMALL_STATE(1171)] = 6656, + [SMALL_STATE(1172)] = 6718, + [SMALL_STATE(1173)] = 6780, + [SMALL_STATE(1174)] = 6842, + [SMALL_STATE(1175)] = 6904, + [SMALL_STATE(1176)] = 6966, + [SMALL_STATE(1177)] = 7028, + [SMALL_STATE(1178)] = 7090, + [SMALL_STATE(1179)] = 7152, + [SMALL_STATE(1180)] = 7214, + [SMALL_STATE(1181)] = 7276, + [SMALL_STATE(1182)] = 7338, + [SMALL_STATE(1183)] = 7400, + [SMALL_STATE(1184)] = 7462, + [SMALL_STATE(1185)] = 7524, + [SMALL_STATE(1186)] = 7586, + [SMALL_STATE(1187)] = 7648, + [SMALL_STATE(1188)] = 7710, + [SMALL_STATE(1189)] = 7772, + [SMALL_STATE(1190)] = 7834, + [SMALL_STATE(1191)] = 7896, + [SMALL_STATE(1192)] = 7958, + [SMALL_STATE(1193)] = 8020, + [SMALL_STATE(1194)] = 8082, + [SMALL_STATE(1195)] = 8144, + [SMALL_STATE(1196)] = 8206, + [SMALL_STATE(1197)] = 8268, + [SMALL_STATE(1198)] = 8330, + [SMALL_STATE(1199)] = 8392, + [SMALL_STATE(1200)] = 8454, + [SMALL_STATE(1201)] = 8516, + [SMALL_STATE(1202)] = 8578, + [SMALL_STATE(1203)] = 8640, + [SMALL_STATE(1204)] = 8702, + [SMALL_STATE(1205)] = 8764, + [SMALL_STATE(1206)] = 8826, + [SMALL_STATE(1207)] = 8888, + [SMALL_STATE(1208)] = 8950, + [SMALL_STATE(1209)] = 9012, + [SMALL_STATE(1210)] = 9074, + [SMALL_STATE(1211)] = 9136, + [SMALL_STATE(1212)] = 9198, + [SMALL_STATE(1213)] = 9260, + [SMALL_STATE(1214)] = 9322, + [SMALL_STATE(1215)] = 9384, + [SMALL_STATE(1216)] = 9446, + [SMALL_STATE(1217)] = 9508, + [SMALL_STATE(1218)] = 9570, + [SMALL_STATE(1219)] = 9632, + [SMALL_STATE(1220)] = 9694, + [SMALL_STATE(1221)] = 9756, + [SMALL_STATE(1222)] = 9818, + [SMALL_STATE(1223)] = 9880, + [SMALL_STATE(1224)] = 9942, + [SMALL_STATE(1225)] = 10004, + [SMALL_STATE(1226)] = 10066, + [SMALL_STATE(1227)] = 10128, + [SMALL_STATE(1228)] = 10190, + [SMALL_STATE(1229)] = 10252, + [SMALL_STATE(1230)] = 10314, + [SMALL_STATE(1231)] = 10376, + [SMALL_STATE(1232)] = 10438, + [SMALL_STATE(1233)] = 10500, + [SMALL_STATE(1234)] = 10562, + [SMALL_STATE(1235)] = 10624, + [SMALL_STATE(1236)] = 10686, + [SMALL_STATE(1237)] = 10748, + [SMALL_STATE(1238)] = 10810, + [SMALL_STATE(1239)] = 10872, + [SMALL_STATE(1240)] = 10934, + [SMALL_STATE(1241)] = 10996, + [SMALL_STATE(1242)] = 11058, + [SMALL_STATE(1243)] = 11120, + [SMALL_STATE(1244)] = 11182, + [SMALL_STATE(1245)] = 11244, + [SMALL_STATE(1246)] = 11306, + [SMALL_STATE(1247)] = 11368, + [SMALL_STATE(1248)] = 11430, + [SMALL_STATE(1249)] = 11492, + [SMALL_STATE(1250)] = 11554, + [SMALL_STATE(1251)] = 11616, + [SMALL_STATE(1252)] = 11678, + [SMALL_STATE(1253)] = 11740, + [SMALL_STATE(1254)] = 11802, + [SMALL_STATE(1255)] = 11864, + [SMALL_STATE(1256)] = 11926, + [SMALL_STATE(1257)] = 11988, + [SMALL_STATE(1258)] = 12050, + [SMALL_STATE(1259)] = 12112, + [SMALL_STATE(1260)] = 12174, + [SMALL_STATE(1261)] = 12236, + [SMALL_STATE(1262)] = 12298, + [SMALL_STATE(1263)] = 12360, + [SMALL_STATE(1264)] = 12422, + [SMALL_STATE(1265)] = 12484, + [SMALL_STATE(1266)] = 12546, + [SMALL_STATE(1267)] = 12608, + [SMALL_STATE(1268)] = 12670, + [SMALL_STATE(1269)] = 12732, + [SMALL_STATE(1270)] = 12794, + [SMALL_STATE(1271)] = 12856, + [SMALL_STATE(1272)] = 12918, + [SMALL_STATE(1273)] = 12980, + [SMALL_STATE(1274)] = 13042, + [SMALL_STATE(1275)] = 13104, + [SMALL_STATE(1276)] = 13166, + [SMALL_STATE(1277)] = 13228, + [SMALL_STATE(1278)] = 13290, + [SMALL_STATE(1279)] = 13352, + [SMALL_STATE(1280)] = 13414, + [SMALL_STATE(1281)] = 13476, + [SMALL_STATE(1282)] = 13538, + [SMALL_STATE(1283)] = 13600, + [SMALL_STATE(1284)] = 13662, + [SMALL_STATE(1285)] = 13724, + [SMALL_STATE(1286)] = 13786, + [SMALL_STATE(1287)] = 13848, + [SMALL_STATE(1288)] = 13910, + [SMALL_STATE(1289)] = 13972, + [SMALL_STATE(1290)] = 14034, + [SMALL_STATE(1291)] = 14096, + [SMALL_STATE(1292)] = 14158, + [SMALL_STATE(1293)] = 14220, + [SMALL_STATE(1294)] = 14282, + [SMALL_STATE(1295)] = 14344, + [SMALL_STATE(1296)] = 14406, + [SMALL_STATE(1297)] = 14468, + [SMALL_STATE(1298)] = 14530, + [SMALL_STATE(1299)] = 14592, + [SMALL_STATE(1300)] = 14654, + [SMALL_STATE(1301)] = 14716, + [SMALL_STATE(1302)] = 14778, + [SMALL_STATE(1303)] = 14840, + [SMALL_STATE(1304)] = 14902, + [SMALL_STATE(1305)] = 14964, + [SMALL_STATE(1306)] = 15026, + [SMALL_STATE(1307)] = 15088, + [SMALL_STATE(1308)] = 15150, + [SMALL_STATE(1309)] = 15212, + [SMALL_STATE(1310)] = 15274, + [SMALL_STATE(1311)] = 15336, + [SMALL_STATE(1312)] = 15400, + [SMALL_STATE(1313)] = 15462, + [SMALL_STATE(1314)] = 15524, + [SMALL_STATE(1315)] = 15586, + [SMALL_STATE(1316)] = 15648, + [SMALL_STATE(1317)] = 15710, + [SMALL_STATE(1318)] = 15772, + [SMALL_STATE(1319)] = 15834, + [SMALL_STATE(1320)] = 15896, + [SMALL_STATE(1321)] = 15958, + [SMALL_STATE(1322)] = 16020, + [SMALL_STATE(1323)] = 16124, + [SMALL_STATE(1324)] = 16186, + [SMALL_STATE(1325)] = 16248, + [SMALL_STATE(1326)] = 16310, + [SMALL_STATE(1327)] = 16372, + [SMALL_STATE(1328)] = 16434, + [SMALL_STATE(1329)] = 16496, + [SMALL_STATE(1330)] = 16558, + [SMALL_STATE(1331)] = 16620, + [SMALL_STATE(1332)] = 16682, + [SMALL_STATE(1333)] = 16744, + [SMALL_STATE(1334)] = 16848, + [SMALL_STATE(1335)] = 16910, + [SMALL_STATE(1336)] = 16972, + [SMALL_STATE(1337)] = 17034, + [SMALL_STATE(1338)] = 17096, + [SMALL_STATE(1339)] = 17158, + [SMALL_STATE(1340)] = 17220, + [SMALL_STATE(1341)] = 17282, + [SMALL_STATE(1342)] = 17344, + [SMALL_STATE(1343)] = 17406, + [SMALL_STATE(1344)] = 17468, + [SMALL_STATE(1345)] = 17530, + [SMALL_STATE(1346)] = 17592, + [SMALL_STATE(1347)] = 17662, + [SMALL_STATE(1348)] = 17724, + [SMALL_STATE(1349)] = 17786, + [SMALL_STATE(1350)] = 17848, + [SMALL_STATE(1351)] = 17912, + [SMALL_STATE(1352)] = 17974, + [SMALL_STATE(1353)] = 18036, + [SMALL_STATE(1354)] = 18098, + [SMALL_STATE(1355)] = 18160, + [SMALL_STATE(1356)] = 18222, + [SMALL_STATE(1357)] = 18284, + [SMALL_STATE(1358)] = 18346, + [SMALL_STATE(1359)] = 18408, + [SMALL_STATE(1360)] = 18470, + [SMALL_STATE(1361)] = 18532, + [SMALL_STATE(1362)] = 18594, + [SMALL_STATE(1363)] = 18656, + [SMALL_STATE(1364)] = 18718, + [SMALL_STATE(1365)] = 18780, + [SMALL_STATE(1366)] = 18842, + [SMALL_STATE(1367)] = 18904, + [SMALL_STATE(1368)] = 18966, + [SMALL_STATE(1369)] = 19028, + [SMALL_STATE(1370)] = 19090, + [SMALL_STATE(1371)] = 19152, + [SMALL_STATE(1372)] = 19214, + [SMALL_STATE(1373)] = 19276, + [SMALL_STATE(1374)] = 19338, + [SMALL_STATE(1375)] = 19400, + [SMALL_STATE(1376)] = 19462, + [SMALL_STATE(1377)] = 19524, + [SMALL_STATE(1378)] = 19586, + [SMALL_STATE(1379)] = 19648, + [SMALL_STATE(1380)] = 19710, + [SMALL_STATE(1381)] = 19772, + [SMALL_STATE(1382)] = 19834, + [SMALL_STATE(1383)] = 19896, + [SMALL_STATE(1384)] = 19958, + [SMALL_STATE(1385)] = 20020, + [SMALL_STATE(1386)] = 20082, + [SMALL_STATE(1387)] = 20144, + [SMALL_STATE(1388)] = 20206, + [SMALL_STATE(1389)] = 20268, + [SMALL_STATE(1390)] = 20330, + [SMALL_STATE(1391)] = 20434, + [SMALL_STATE(1392)] = 20496, + [SMALL_STATE(1393)] = 20558, + [SMALL_STATE(1394)] = 20620, + [SMALL_STATE(1395)] = 20724, + [SMALL_STATE(1396)] = 20786, + [SMALL_STATE(1397)] = 20847, + [SMALL_STATE(1398)] = 20908, + [SMALL_STATE(1399)] = 20969, + [SMALL_STATE(1400)] = 21034, + [SMALL_STATE(1401)] = 21095, + [SMALL_STATE(1402)] = 21160, + [SMALL_STATE(1403)] = 21221, + [SMALL_STATE(1404)] = 21282, + [SMALL_STATE(1405)] = 21345, + [SMALL_STATE(1406)] = 21406, + [SMALL_STATE(1407)] = 21467, + [SMALL_STATE(1408)] = 21528, + [SMALL_STATE(1409)] = 21621, + [SMALL_STATE(1410)] = 21682, + [SMALL_STATE(1411)] = 21745, + [SMALL_STATE(1412)] = 21820, + [SMALL_STATE(1413)] = 21883, + [SMALL_STATE(1414)] = 21946, + [SMALL_STATE(1415)] = 22009, + [SMALL_STATE(1416)] = 22072, + [SMALL_STATE(1417)] = 22135, + [SMALL_STATE(1418)] = 22196, + [SMALL_STATE(1419)] = 22259, + [SMALL_STATE(1420)] = 22320, + [SMALL_STATE(1421)] = 22383, + [SMALL_STATE(1422)] = 22444, + [SMALL_STATE(1423)] = 22507, + [SMALL_STATE(1424)] = 22568, + [SMALL_STATE(1425)] = 22629, + [SMALL_STATE(1426)] = 22704, + [SMALL_STATE(1427)] = 22797, + [SMALL_STATE(1428)] = 22858, + [SMALL_STATE(1429)] = 22921, + [SMALL_STATE(1430)] = 23014, + [SMALL_STATE(1431)] = 23075, + [SMALL_STATE(1432)] = 23136, + [SMALL_STATE(1433)] = 23197, + [SMALL_STATE(1434)] = 23258, + [SMALL_STATE(1435)] = 23321, + [SMALL_STATE(1436)] = 23382, + [SMALL_STATE(1437)] = 23443, + [SMALL_STATE(1438)] = 23506, + [SMALL_STATE(1439)] = 23569, + [SMALL_STATE(1440)] = 23632, + [SMALL_STATE(1441)] = 23695, + [SMALL_STATE(1442)] = 23760, + [SMALL_STATE(1443)] = 23821, + [SMALL_STATE(1444)] = 23884, + [SMALL_STATE(1445)] = 23947, + [SMALL_STATE(1446)] = 24008, + [SMALL_STATE(1447)] = 24069, + [SMALL_STATE(1448)] = 24129, + [SMALL_STATE(1449)] = 24189, + [SMALL_STATE(1450)] = 24249, + [SMALL_STATE(1451)] = 24309, + [SMALL_STATE(1452)] = 24369, + [SMALL_STATE(1453)] = 24429, + [SMALL_STATE(1454)] = 24489, + [SMALL_STATE(1455)] = 24553, + [SMALL_STATE(1456)] = 24613, + [SMALL_STATE(1457)] = 24673, + [SMALL_STATE(1458)] = 24733, + [SMALL_STATE(1459)] = 24793, + [SMALL_STATE(1460)] = 24853, + [SMALL_STATE(1461)] = 24913, + [SMALL_STATE(1462)] = 24973, + [SMALL_STATE(1463)] = 25033, + [SMALL_STATE(1464)] = 25093, + [SMALL_STATE(1465)] = 25153, + [SMALL_STATE(1466)] = 25213, + [SMALL_STATE(1467)] = 25273, + [SMALL_STATE(1468)] = 25333, + [SMALL_STATE(1469)] = 25393, + [SMALL_STATE(1470)] = 25453, + [SMALL_STATE(1471)] = 25513, + [SMALL_STATE(1472)] = 25573, + [SMALL_STATE(1473)] = 25633, + [SMALL_STATE(1474)] = 25693, + [SMALL_STATE(1475)] = 25753, + [SMALL_STATE(1476)] = 25813, + [SMALL_STATE(1477)] = 25873, + [SMALL_STATE(1478)] = 25939, + [SMALL_STATE(1479)] = 26005, + [SMALL_STATE(1480)] = 26101, + [SMALL_STATE(1481)] = 26161, + [SMALL_STATE(1482)] = 26221, + [SMALL_STATE(1483)] = 26281, + [SMALL_STATE(1484)] = 26341, + [SMALL_STATE(1485)] = 26401, + [SMALL_STATE(1486)] = 26461, + [SMALL_STATE(1487)] = 26521, + [SMALL_STATE(1488)] = 26581, + [SMALL_STATE(1489)] = 26647, + [SMALL_STATE(1490)] = 26709, + [SMALL_STATE(1491)] = 26769, + [SMALL_STATE(1492)] = 26833, + [SMALL_STATE(1493)] = 26893, + [SMALL_STATE(1494)] = 26953, + [SMALL_STATE(1495)] = 27013, + [SMALL_STATE(1496)] = 27073, + [SMALL_STATE(1497)] = 27133, + [SMALL_STATE(1498)] = 27193, + [SMALL_STATE(1499)] = 27253, + [SMALL_STATE(1500)] = 27313, + [SMALL_STATE(1501)] = 27373, + [SMALL_STATE(1502)] = 27433, + [SMALL_STATE(1503)] = 27493, + [SMALL_STATE(1504)] = 27553, + [SMALL_STATE(1505)] = 27613, + [SMALL_STATE(1506)] = 27673, + [SMALL_STATE(1507)] = 27733, + [SMALL_STATE(1508)] = 27793, + [SMALL_STATE(1509)] = 27853, + [SMALL_STATE(1510)] = 27913, + [SMALL_STATE(1511)] = 27973, + [SMALL_STATE(1512)] = 28033, + [SMALL_STATE(1513)] = 28093, + [SMALL_STATE(1514)] = 28153, + [SMALL_STATE(1515)] = 28213, + [SMALL_STATE(1516)] = 28273, + [SMALL_STATE(1517)] = 28333, + [SMALL_STATE(1518)] = 28393, + [SMALL_STATE(1519)] = 28453, + [SMALL_STATE(1520)] = 28513, + [SMALL_STATE(1521)] = 28573, + [SMALL_STATE(1522)] = 28641, + [SMALL_STATE(1523)] = 28701, + [SMALL_STATE(1524)] = 28761, + [SMALL_STATE(1525)] = 28821, + [SMALL_STATE(1526)] = 28881, + [SMALL_STATE(1527)] = 28941, + [SMALL_STATE(1528)] = 29001, + [SMALL_STATE(1529)] = 29061, + [SMALL_STATE(1530)] = 29121, + [SMALL_STATE(1531)] = 29181, + [SMALL_STATE(1532)] = 29241, + [SMALL_STATE(1533)] = 29301, + [SMALL_STATE(1534)] = 29361, + [SMALL_STATE(1535)] = 29421, + [SMALL_STATE(1536)] = 29481, + [SMALL_STATE(1537)] = 29541, + [SMALL_STATE(1538)] = 29601, + [SMALL_STATE(1539)] = 29661, + [SMALL_STATE(1540)] = 29721, + [SMALL_STATE(1541)] = 29781, + [SMALL_STATE(1542)] = 29841, + [SMALL_STATE(1543)] = 29901, + [SMALL_STATE(1544)] = 29961, + [SMALL_STATE(1545)] = 30021, + [SMALL_STATE(1546)] = 30081, + [SMALL_STATE(1547)] = 30141, + [SMALL_STATE(1548)] = 30201, + [SMALL_STATE(1549)] = 30261, + [SMALL_STATE(1550)] = 30335, + [SMALL_STATE(1551)] = 30395, + [SMALL_STATE(1552)] = 30455, + [SMALL_STATE(1553)] = 30515, + [SMALL_STATE(1554)] = 30575, + [SMALL_STATE(1555)] = 30635, + [SMALL_STATE(1556)] = 30695, + [SMALL_STATE(1557)] = 30755, + [SMALL_STATE(1558)] = 30815, + [SMALL_STATE(1559)] = 30877, + [SMALL_STATE(1560)] = 30937, + [SMALL_STATE(1561)] = 30997, + [SMALL_STATE(1562)] = 31057, + [SMALL_STATE(1563)] = 31117, + [SMALL_STATE(1564)] = 31177, + [SMALL_STATE(1565)] = 31237, + [SMALL_STATE(1566)] = 31297, + [SMALL_STATE(1567)] = 31363, + [SMALL_STATE(1568)] = 31423, + [SMALL_STATE(1569)] = 31484, + [SMALL_STATE(1570)] = 31555, + [SMALL_STATE(1571)] = 31616, + [SMALL_STATE(1572)] = 31677, + [SMALL_STATE(1573)] = 31736, + [SMALL_STATE(1574)] = 31795, + [SMALL_STATE(1575)] = 31854, + [SMALL_STATE(1576)] = 31923, + [SMALL_STATE(1577)] = 31984, + [SMALL_STATE(1578)] = 32070, + [SMALL_STATE(1579)] = 32156, + [SMALL_STATE(1580)] = 32224, + [SMALL_STATE(1581)] = 32298, + [SMALL_STATE(1582)] = 32368, + [SMALL_STATE(1583)] = 32440, + [SMALL_STATE(1584)] = 32516, + [SMALL_STATE(1585)] = 32598, + [SMALL_STATE(1586)] = 32682, + [SMALL_STATE(1587)] = 32752, + [SMALL_STATE(1588)] = 32842, + [SMALL_STATE(1589)] = 32932, + [SMALL_STATE(1590)] = 33010, + [SMALL_STATE(1591)] = 33096, + [SMALL_STATE(1592)] = 33162, + [SMALL_STATE(1593)] = 33252, + [SMALL_STATE(1594)] = 33338, + [SMALL_STATE(1595)] = 33428, + [SMALL_STATE(1596)] = 33514, + [SMALL_STATE(1597)] = 33600, + [SMALL_STATE(1598)] = 33692, + [SMALL_STATE(1599)] = 33778, + [SMALL_STATE(1600)] = 33868, + [SMALL_STATE(1601)] = 33960, + [SMALL_STATE(1602)] = 34052, + [SMALL_STATE(1603)] = 34138, + [SMALL_STATE(1604)] = 34230, + [SMALL_STATE(1605)] = 34320, + [SMALL_STATE(1606)] = 34390, + [SMALL_STATE(1607)] = 34460, + [SMALL_STATE(1608)] = 34527, + [SMALL_STATE(1609)] = 34592, + [SMALL_STATE(1610)] = 34655, + [SMALL_STATE(1611)] = 34718, + [SMALL_STATE(1612)] = 34782, + [SMALL_STATE(1613)] = 34842, + [SMALL_STATE(1614)] = 34902, + [SMALL_STATE(1615)] = 34962, + [SMALL_STATE(1616)] = 35022, + [SMALL_STATE(1617)] = 35080, + [SMALL_STATE(1618)] = 35144, + [SMALL_STATE(1619)] = 35234, + [SMALL_STATE(1620)] = 35298, + [SMALL_STATE(1621)] = 35354, + [SMALL_STATE(1622)] = 35410, + [SMALL_STATE(1623)] = 35470, + [SMALL_STATE(1624)] = 35560, + [SMALL_STATE(1625)] = 35650, + [SMALL_STATE(1626)] = 35714, + [SMALL_STATE(1627)] = 35772, + [SMALL_STATE(1628)] = 35828, + [SMALL_STATE(1629)] = 35886, + [SMALL_STATE(1630)] = 35942, + [SMALL_STATE(1631)] = 36002, + [SMALL_STATE(1632)] = 36062, + [SMALL_STATE(1633)] = 36152, + [SMALL_STATE(1634)] = 36210, + [SMALL_STATE(1635)] = 36305, + [SMALL_STATE(1636)] = 36400, + [SMALL_STATE(1637)] = 36457, + [SMALL_STATE(1638)] = 36552, + [SMALL_STATE(1639)] = 36647, + [SMALL_STATE(1640)] = 36742, + [SMALL_STATE(1641)] = 36797, + [SMALL_STATE(1642)] = 36892, + [SMALL_STATE(1643)] = 36949, + [SMALL_STATE(1644)] = 37044, + [SMALL_STATE(1645)] = 37101, + [SMALL_STATE(1646)] = 37158, + [SMALL_STATE(1647)] = 37215, + [SMALL_STATE(1648)] = 37270, + [SMALL_STATE(1649)] = 37325, + [SMALL_STATE(1650)] = 37382, + [SMALL_STATE(1651)] = 37441, + [SMALL_STATE(1652)] = 37498, + [SMALL_STATE(1653)] = 37557, + [SMALL_STATE(1654)] = 37652, + [SMALL_STATE(1655)] = 37711, + [SMALL_STATE(1656)] = 37766, + [SMALL_STATE(1657)] = 37821, + [SMALL_STATE(1658)] = 37876, + [SMALL_STATE(1659)] = 37935, + [SMALL_STATE(1660)] = 38030, + [SMALL_STATE(1661)] = 38085, + [SMALL_STATE(1662)] = 38180, + [SMALL_STATE(1663)] = 38235, + [SMALL_STATE(1664)] = 38330, + [SMALL_STATE(1665)] = 38425, + [SMALL_STATE(1666)] = 38479, + [SMALL_STATE(1667)] = 38535, + [SMALL_STATE(1668)] = 38589, + [SMALL_STATE(1669)] = 38645, + [SMALL_STATE(1670)] = 38733, + [SMALL_STATE(1671)] = 38821, + [SMALL_STATE(1672)] = 38875, + [SMALL_STATE(1673)] = 38967, + [SMALL_STATE(1674)] = 39021, + [SMALL_STATE(1675)] = 39075, + [SMALL_STATE(1676)] = 39129, + [SMALL_STATE(1677)] = 39183, + [SMALL_STATE(1678)] = 39237, + [SMALL_STATE(1679)] = 39329, + [SMALL_STATE(1680)] = 39411, + [SMALL_STATE(1681)] = 39497, + [SMALL_STATE(1682)] = 39583, + [SMALL_STATE(1683)] = 39669, + [SMALL_STATE(1684)] = 39723, + [SMALL_STATE(1685)] = 39815, + [SMALL_STATE(1686)] = 39907, + [SMALL_STATE(1687)] = 39963, + [SMALL_STATE(1688)] = 40055, + [SMALL_STATE(1689)] = 40111, + [SMALL_STATE(1690)] = 40167, + [SMALL_STATE(1691)] = 40223, + [SMALL_STATE(1692)] = 40311, + [SMALL_STATE(1693)] = 40397, + [SMALL_STATE(1694)] = 40453, + [SMALL_STATE(1695)] = 40511, + [SMALL_STATE(1696)] = 40567, + [SMALL_STATE(1697)] = 40623, + [SMALL_STATE(1698)] = 40711, + [SMALL_STATE(1699)] = 40803, + [SMALL_STATE(1700)] = 40891, + [SMALL_STATE(1701)] = 40945, + [SMALL_STATE(1702)] = 41001, + [SMALL_STATE(1703)] = 41065, + [SMALL_STATE(1704)] = 41121, + [SMALL_STATE(1705)] = 41191, + [SMALL_STATE(1706)] = 41259, + [SMALL_STATE(1707)] = 41331, + [SMALL_STATE(1708)] = 41409, + [SMALL_STATE(1709)] = 41489, + [SMALL_STATE(1710)] = 41545, + [SMALL_STATE(1711)] = 41611, + [SMALL_STATE(1712)] = 41697, + [SMALL_STATE(1713)] = 41783, + [SMALL_STATE(1714)] = 41857, + [SMALL_STATE(1715)] = 41911, + [SMALL_STATE(1716)] = 41993, + [SMALL_STATE(1717)] = 42073, + [SMALL_STATE(1718)] = 42129, + [SMALL_STATE(1719)] = 42183, + [SMALL_STATE(1720)] = 42239, + [SMALL_STATE(1721)] = 42295, + [SMALL_STATE(1722)] = 42349, + [SMALL_STATE(1723)] = 42437, + [SMALL_STATE(1724)] = 42491, + [SMALL_STATE(1725)] = 42545, + [SMALL_STATE(1726)] = 42599, + [SMALL_STATE(1727)] = 42655, + [SMALL_STATE(1728)] = 42736, + [SMALL_STATE(1729)] = 42789, + [SMALL_STATE(1730)] = 42876, + [SMALL_STATE(1731)] = 42929, + [SMALL_STATE(1732)] = 42982, + [SMALL_STATE(1733)] = 43035, + [SMALL_STATE(1734)] = 43088, + [SMALL_STATE(1735)] = 43141, + [SMALL_STATE(1736)] = 43194, + [SMALL_STATE(1737)] = 43247, + [SMALL_STATE(1738)] = 43316, + [SMALL_STATE(1739)] = 43403, + [SMALL_STATE(1740)] = 43456, + [SMALL_STATE(1741)] = 43543, + [SMALL_STATE(1742)] = 43596, + [SMALL_STATE(1743)] = 43649, + [SMALL_STATE(1744)] = 43702, + [SMALL_STATE(1745)] = 43787, + [SMALL_STATE(1746)] = 43874, + [SMALL_STATE(1747)] = 43961, + [SMALL_STATE(1748)] = 44014, + [SMALL_STATE(1749)] = 44067, + [SMALL_STATE(1750)] = 44154, + [SMALL_STATE(1751)] = 44239, + [SMALL_STATE(1752)] = 44306, + [SMALL_STATE(1753)] = 44359, + [SMALL_STATE(1754)] = 44412, + [SMALL_STATE(1755)] = 44465, + [SMALL_STATE(1756)] = 44518, + [SMALL_STATE(1757)] = 44571, + [SMALL_STATE(1758)] = 44624, + [SMALL_STATE(1759)] = 44709, + [SMALL_STATE(1760)] = 44782, + [SMALL_STATE(1761)] = 44863, + [SMALL_STATE(1762)] = 44948, + [SMALL_STATE(1763)] = 45033, + [SMALL_STATE(1764)] = 45086, + [SMALL_STATE(1765)] = 45139, + [SMALL_STATE(1766)] = 45192, + [SMALL_STATE(1767)] = 45245, + [SMALL_STATE(1768)] = 45298, + [SMALL_STATE(1769)] = 45351, + [SMALL_STATE(1770)] = 45438, + [SMALL_STATE(1771)] = 45491, + [SMALL_STATE(1772)] = 45580, + [SMALL_STATE(1773)] = 45669, + [SMALL_STATE(1774)] = 45758, + [SMALL_STATE(1775)] = 45811, + [SMALL_STATE(1776)] = 45900, + [SMALL_STATE(1777)] = 45953, + [SMALL_STATE(1778)] = 46006, + [SMALL_STATE(1779)] = 46095, + [SMALL_STATE(1780)] = 46184, + [SMALL_STATE(1781)] = 46237, + [SMALL_STATE(1782)] = 46326, + [SMALL_STATE(1783)] = 46415, + [SMALL_STATE(1784)] = 46468, + [SMALL_STATE(1785)] = 46531, + [SMALL_STATE(1786)] = 46620, + [SMALL_STATE(1787)] = 46709, + [SMALL_STATE(1788)] = 46762, + [SMALL_STATE(1789)] = 46851, + [SMALL_STATE(1790)] = 46922, + [SMALL_STATE(1791)] = 46975, + [SMALL_STATE(1792)] = 47064, + [SMALL_STATE(1793)] = 47117, + [SMALL_STATE(1794)] = 47206, + [SMALL_STATE(1795)] = 47295, + [SMALL_STATE(1796)] = 47348, + [SMALL_STATE(1797)] = 47437, + [SMALL_STATE(1798)] = 47490, + [SMALL_STATE(1799)] = 47543, + [SMALL_STATE(1800)] = 47632, + [SMALL_STATE(1801)] = 47721, + [SMALL_STATE(1802)] = 47810, + [SMALL_STATE(1803)] = 47897, + [SMALL_STATE(1804)] = 47986, + [SMALL_STATE(1805)] = 48039, + [SMALL_STATE(1806)] = 48126, + [SMALL_STATE(1807)] = 48213, + [SMALL_STATE(1808)] = 48300, + [SMALL_STATE(1809)] = 48389, + [SMALL_STATE(1810)] = 48442, + [SMALL_STATE(1811)] = 48495, + [SMALL_STATE(1812)] = 48548, + [SMALL_STATE(1813)] = 48601, + [SMALL_STATE(1814)] = 48654, + [SMALL_STATE(1815)] = 48743, + [SMALL_STATE(1816)] = 48796, + [SMALL_STATE(1817)] = 48885, + [SMALL_STATE(1818)] = 48938, + [SMALL_STATE(1819)] = 48991, + [SMALL_STATE(1820)] = 49078, + [SMALL_STATE(1821)] = 49131, + [SMALL_STATE(1822)] = 49184, + [SMALL_STATE(1823)] = 49269, + [SMALL_STATE(1824)] = 49358, + [SMALL_STATE(1825)] = 49443, + [SMALL_STATE(1826)] = 49528, + [SMALL_STATE(1827)] = 49617, + [SMALL_STATE(1828)] = 49704, + [SMALL_STATE(1829)] = 49757, + [SMALL_STATE(1830)] = 49810, + [SMALL_STATE(1831)] = 49863, + [SMALL_STATE(1832)] = 49948, + [SMALL_STATE(1833)] = 50001, + [SMALL_STATE(1834)] = 50054, + [SMALL_STATE(1835)] = 50107, + [SMALL_STATE(1836)] = 50160, + [SMALL_STATE(1837)] = 50213, + [SMALL_STATE(1838)] = 50266, + [SMALL_STATE(1839)] = 50355, + [SMALL_STATE(1840)] = 50432, + [SMALL_STATE(1841)] = 50485, + [SMALL_STATE(1842)] = 50538, + [SMALL_STATE(1843)] = 50597, + [SMALL_STATE(1844)] = 50686, + [SMALL_STATE(1845)] = 50739, + [SMALL_STATE(1846)] = 50798, + [SMALL_STATE(1847)] = 50887, + [SMALL_STATE(1848)] = 50940, + [SMALL_STATE(1849)] = 51029, + [SMALL_STATE(1850)] = 51118, + [SMALL_STATE(1851)] = 51207, + [SMALL_STATE(1852)] = 51260, + [SMALL_STATE(1853)] = 51349, + [SMALL_STATE(1854)] = 51402, + [SMALL_STATE(1855)] = 51455, + [SMALL_STATE(1856)] = 51544, + [SMALL_STATE(1857)] = 51633, + [SMALL_STATE(1858)] = 51718, + [SMALL_STATE(1859)] = 51807, + [SMALL_STATE(1860)] = 51860, + [SMALL_STATE(1861)] = 51949, + [SMALL_STATE(1862)] = 52002, + [SMALL_STATE(1863)] = 52089, + [SMALL_STATE(1864)] = 52178, + [SMALL_STATE(1865)] = 52265, + [SMALL_STATE(1866)] = 52354, + [SMALL_STATE(1867)] = 52439, + [SMALL_STATE(1868)] = 52528, + [SMALL_STATE(1869)] = 52581, + [SMALL_STATE(1870)] = 52670, + [SMALL_STATE(1871)] = 52723, + [SMALL_STATE(1872)] = 52776, + [SMALL_STATE(1873)] = 52865, + [SMALL_STATE(1874)] = 52954, + [SMALL_STATE(1875)] = 53043, + [SMALL_STATE(1876)] = 53132, + [SMALL_STATE(1877)] = 53221, + [SMALL_STATE(1878)] = 53310, + [SMALL_STATE(1879)] = 53371, + [SMALL_STATE(1880)] = 53460, + [SMALL_STATE(1881)] = 53539, + [SMALL_STATE(1882)] = 53592, + [SMALL_STATE(1883)] = 53655, + [SMALL_STATE(1884)] = 53724, + [SMALL_STATE(1885)] = 53791, + [SMALL_STATE(1886)] = 53880, + [SMALL_STATE(1887)] = 53951, + [SMALL_STATE(1888)] = 54004, + [SMALL_STATE(1889)] = 54093, + [SMALL_STATE(1890)] = 54170, + [SMALL_STATE(1891)] = 54249, + [SMALL_STATE(1892)] = 54338, + [SMALL_STATE(1893)] = 54403, + [SMALL_STATE(1894)] = 54488, + [SMALL_STATE(1895)] = 54573, + [SMALL_STATE(1896)] = 54646, + [SMALL_STATE(1897)] = 54699, + [SMALL_STATE(1898)] = 54788, + [SMALL_STATE(1899)] = 54869, + [SMALL_STATE(1900)] = 54946, + [SMALL_STATE(1901)] = 54999, + [SMALL_STATE(1902)] = 55052, + [SMALL_STATE(1903)] = 55105, + [SMALL_STATE(1904)] = 55158, + [SMALL_STATE(1905)] = 55245, + [SMALL_STATE(1906)] = 55298, + [SMALL_STATE(1907)] = 55351, + [SMALL_STATE(1908)] = 55404, + [SMALL_STATE(1909)] = 55457, + [SMALL_STATE(1910)] = 55510, + [SMALL_STATE(1911)] = 55563, + [SMALL_STATE(1912)] = 55622, + [SMALL_STATE(1913)] = 55709, + [SMALL_STATE(1914)] = 55796, + [SMALL_STATE(1915)] = 55849, + [SMALL_STATE(1916)] = 55902, + [SMALL_STATE(1917)] = 55967, + [SMALL_STATE(1918)] = 56020, + [SMALL_STATE(1919)] = 56073, + [SMALL_STATE(1920)] = 56160, + [SMALL_STATE(1921)] = 56213, + [SMALL_STATE(1922)] = 56266, + [SMALL_STATE(1923)] = 56319, + [SMALL_STATE(1924)] = 56372, + [SMALL_STATE(1925)] = 56425, + [SMALL_STATE(1926)] = 56478, + [SMALL_STATE(1927)] = 56559, + [SMALL_STATE(1928)] = 56612, + [SMALL_STATE(1929)] = 56665, + [SMALL_STATE(1930)] = 56750, + [SMALL_STATE(1931)] = 56803, + [SMALL_STATE(1932)] = 56856, + [SMALL_STATE(1933)] = 56909, + [SMALL_STATE(1934)] = 56968, + [SMALL_STATE(1935)] = 57055, + [SMALL_STATE(1936)] = 57108, + [SMALL_STATE(1937)] = 57161, + [SMALL_STATE(1938)] = 57238, + [SMALL_STATE(1939)] = 57291, + [SMALL_STATE(1940)] = 57378, + [SMALL_STATE(1941)] = 57431, + [SMALL_STATE(1942)] = 57484, + [SMALL_STATE(1943)] = 57537, + [SMALL_STATE(1944)] = 57590, + [SMALL_STATE(1945)] = 57643, + [SMALL_STATE(1946)] = 57696, + [SMALL_STATE(1947)] = 57749, + [SMALL_STATE(1948)] = 57802, + [SMALL_STATE(1949)] = 57889, + [SMALL_STATE(1950)] = 57975, + [SMALL_STATE(1951)] = 58061, + [SMALL_STATE(1952)] = 58147, + [SMALL_STATE(1953)] = 58233, + [SMALL_STATE(1954)] = 58319, + [SMALL_STATE(1955)] = 58405, + [SMALL_STATE(1956)] = 58489, + [SMALL_STATE(1957)] = 58575, + [SMALL_STATE(1958)] = 58661, + [SMALL_STATE(1959)] = 58747, + [SMALL_STATE(1960)] = 58833, + [SMALL_STATE(1961)] = 58919, + [SMALL_STATE(1962)] = 59005, + [SMALL_STATE(1963)] = 59091, + [SMALL_STATE(1964)] = 59177, + [SMALL_STATE(1965)] = 59263, + [SMALL_STATE(1966)] = 59347, + [SMALL_STATE(1967)] = 59433, + [SMALL_STATE(1968)] = 59519, + [SMALL_STATE(1969)] = 59605, + [SMALL_STATE(1970)] = 59691, + [SMALL_STATE(1971)] = 59765, + [SMALL_STATE(1972)] = 59851, + [SMALL_STATE(1973)] = 59925, + [SMALL_STATE(1974)] = 60011, + [SMALL_STATE(1975)] = 60097, + [SMALL_STATE(1976)] = 60183, + [SMALL_STATE(1977)] = 60269, + [SMALL_STATE(1978)] = 60355, + [SMALL_STATE(1979)] = 60441, + [SMALL_STATE(1980)] = 60527, + [SMALL_STATE(1981)] = 60601, + [SMALL_STATE(1982)] = 60687, + [SMALL_STATE(1983)] = 60773, + [SMALL_STATE(1984)] = 60859, + [SMALL_STATE(1985)] = 60945, + [SMALL_STATE(1986)] = 61019, + [SMALL_STATE(1987)] = 61093, + [SMALL_STATE(1988)] = 61179, + [SMALL_STATE(1989)] = 61254, + [SMALL_STATE(1990)] = 61329, + [SMALL_STATE(1991)] = 61404, + [SMALL_STATE(1992)] = 61479, + [SMALL_STATE(1993)] = 61554, + [SMALL_STATE(1994)] = 61629, + [SMALL_STATE(1995)] = 61704, + [SMALL_STATE(1996)] = 61779, + [SMALL_STATE(1997)] = 61827, + [SMALL_STATE(1998)] = 61875, + [SMALL_STATE(1999)] = 61923, + [SMALL_STATE(2000)] = 61985, + [SMALL_STATE(2001)] = 62047, + [SMALL_STATE(2002)] = 62109, + [SMALL_STATE(2003)] = 62171, + [SMALL_STATE(2004)] = 62233, + [SMALL_STATE(2005)] = 62295, + [SMALL_STATE(2006)] = 62357, + [SMALL_STATE(2007)] = 62419, + [SMALL_STATE(2008)] = 62481, + [SMALL_STATE(2009)] = 62540, + [SMALL_STATE(2010)] = 62599, + [SMALL_STATE(2011)] = 62636, + [SMALL_STATE(2012)] = 62673, + [SMALL_STATE(2013)] = 62710, + [SMALL_STATE(2014)] = 62747, + [SMALL_STATE(2015)] = 62800, + [SMALL_STATE(2016)] = 62834, + [SMALL_STATE(2017)] = 62868, + [SMALL_STATE(2018)] = 62904, + [SMALL_STATE(2019)] = 62940, + [SMALL_STATE(2020)] = 62976, + [SMALL_STATE(2021)] = 63020, + [SMALL_STATE(2022)] = 63054, + [SMALL_STATE(2023)] = 63098, + [SMALL_STATE(2024)] = 63132, + [SMALL_STATE(2025)] = 63168, + [SMALL_STATE(2026)] = 63212, + [SMALL_STATE(2027)] = 63263, + [SMALL_STATE(2028)] = 63296, + [SMALL_STATE(2029)] = 63359, + [SMALL_STATE(2030)] = 63392, + [SMALL_STATE(2031)] = 63423, + [SMALL_STATE(2032)] = 63470, + [SMALL_STATE(2033)] = 63503, + [SMALL_STATE(2034)] = 63566, + [SMALL_STATE(2035)] = 63599, + [SMALL_STATE(2036)] = 63640, + [SMALL_STATE(2037)] = 63678, + [SMALL_STATE(2038)] = 63716, + [SMALL_STATE(2039)] = 63748, + [SMALL_STATE(2040)] = 63780, + [SMALL_STATE(2041)] = 63812, + [SMALL_STATE(2042)] = 63856, + [SMALL_STATE(2043)] = 63900, + [SMALL_STATE(2044)] = 63932, + [SMALL_STATE(2045)] = 63970, + [SMALL_STATE(2046)] = 64008, + [SMALL_STATE(2047)] = 64037, + [SMALL_STATE(2048)] = 64070, + [SMALL_STATE(2049)] = 64103, + [SMALL_STATE(2050)] = 64136, + [SMALL_STATE(2051)] = 64189, + [SMALL_STATE(2052)] = 64218, + [SMALL_STATE(2053)] = 64251, + [SMALL_STATE(2054)] = 64282, + [SMALL_STATE(2055)] = 64315, + [SMALL_STATE(2056)] = 64344, + [SMALL_STATE(2057)] = 64385, + [SMALL_STATE(2058)] = 64414, + [SMALL_STATE(2059)] = 64447, + [SMALL_STATE(2060)] = 64476, + [SMALL_STATE(2061)] = 64521, + [SMALL_STATE(2062)] = 64550, + [SMALL_STATE(2063)] = 64605, + [SMALL_STATE(2064)] = 64634, + [SMALL_STATE(2065)] = 64687, + [SMALL_STATE(2066)] = 64716, + [SMALL_STATE(2067)] = 64747, + [SMALL_STATE(2068)] = 64776, + [SMALL_STATE(2069)] = 64805, + [SMALL_STATE(2070)] = 64838, + [SMALL_STATE(2071)] = 64867, + [SMALL_STATE(2072)] = 64896, + [SMALL_STATE(2073)] = 64924, + [SMALL_STATE(2074)] = 64952, + [SMALL_STATE(2075)] = 64980, + [SMALL_STATE(2076)] = 65008, + [SMALL_STATE(2077)] = 65036, + [SMALL_STATE(2078)] = 65064, + [SMALL_STATE(2079)] = 65092, + [SMALL_STATE(2080)] = 65120, + [SMALL_STATE(2081)] = 65148, + [SMALL_STATE(2082)] = 65176, + [SMALL_STATE(2083)] = 65204, + [SMALL_STATE(2084)] = 65232, + [SMALL_STATE(2085)] = 65260, + [SMALL_STATE(2086)] = 65288, + [SMALL_STATE(2087)] = 65316, + [SMALL_STATE(2088)] = 65344, + [SMALL_STATE(2089)] = 65372, + [SMALL_STATE(2090)] = 65400, + [SMALL_STATE(2091)] = 65428, + [SMALL_STATE(2092)] = 65456, + [SMALL_STATE(2093)] = 65484, + [SMALL_STATE(2094)] = 65512, + [SMALL_STATE(2095)] = 65540, + [SMALL_STATE(2096)] = 65568, + [SMALL_STATE(2097)] = 65596, + [SMALL_STATE(2098)] = 65624, + [SMALL_STATE(2099)] = 65652, + [SMALL_STATE(2100)] = 65680, + [SMALL_STATE(2101)] = 65708, + [SMALL_STATE(2102)] = 65736, + [SMALL_STATE(2103)] = 65764, + [SMALL_STATE(2104)] = 65792, + [SMALL_STATE(2105)] = 65821, + [SMALL_STATE(2106)] = 65850, + [SMALL_STATE(2107)] = 65879, + [SMALL_STATE(2108)] = 65908, + [SMALL_STATE(2109)] = 65937, + [SMALL_STATE(2110)] = 65972, + [SMALL_STATE(2111)] = 66001, + [SMALL_STATE(2112)] = 66030, + [SMALL_STATE(2113)] = 66059, + [SMALL_STATE(2114)] = 66100, + [SMALL_STATE(2115)] = 66141, + [SMALL_STATE(2116)] = 66170, + [SMALL_STATE(2117)] = 66199, + [SMALL_STATE(2118)] = 66228, + [SMALL_STATE(2119)] = 66257, + [SMALL_STATE(2120)] = 66289, + [SMALL_STATE(2121)] = 66321, + [SMALL_STATE(2122)] = 66353, + [SMALL_STATE(2123)] = 66385, + [SMALL_STATE(2124)] = 66417, + [SMALL_STATE(2125)] = 66449, + [SMALL_STATE(2126)] = 66481, + [SMALL_STATE(2127)] = 66513, + [SMALL_STATE(2128)] = 66545, + [SMALL_STATE(2129)] = 66577, + [SMALL_STATE(2130)] = 66605, + [SMALL_STATE(2131)] = 66651, + [SMALL_STATE(2132)] = 66695, + [SMALL_STATE(2133)] = 66725, + [SMALL_STATE(2134)] = 66757, + [SMALL_STATE(2135)] = 66789, + [SMALL_STATE(2136)] = 66832, + [SMALL_STATE(2137)] = 66875, + [SMALL_STATE(2138)] = 66904, + [SMALL_STATE(2139)] = 66933, + [SMALL_STATE(2140)] = 66976, + [SMALL_STATE(2141)] = 67019, + [SMALL_STATE(2142)] = 67062, + [SMALL_STATE(2143)] = 67097, + [SMALL_STATE(2144)] = 67140, + [SMALL_STATE(2145)] = 67164, + [SMALL_STATE(2146)] = 67204, + [SMALL_STATE(2147)] = 67228, + [SMALL_STATE(2148)] = 67266, + [SMALL_STATE(2149)] = 67306, + [SMALL_STATE(2150)] = 67338, + [SMALL_STATE(2151)] = 67378, + [SMALL_STATE(2152)] = 67406, + [SMALL_STATE(2153)] = 67438, + [SMALL_STATE(2154)] = 67466, + [SMALL_STATE(2155)] = 67494, + [SMALL_STATE(2156)] = 67532, + [SMALL_STATE(2157)] = 67560, + [SMALL_STATE(2158)] = 67588, + [SMALL_STATE(2159)] = 67620, + [SMALL_STATE(2160)] = 67652, + [SMALL_STATE(2161)] = 67680, + [SMALL_STATE(2162)] = 67718, + [SMALL_STATE(2163)] = 67756, + [SMALL_STATE(2164)] = 67780, + [SMALL_STATE(2165)] = 67820, + [SMALL_STATE(2166)] = 67858, + [SMALL_STATE(2167)] = 67898, + [SMALL_STATE(2168)] = 67922, + [SMALL_STATE(2169)] = 67950, + [SMALL_STATE(2170)] = 67990, + [SMALL_STATE(2171)] = 68028, + [SMALL_STATE(2172)] = 68056, + [SMALL_STATE(2173)] = 68084, + [SMALL_STATE(2174)] = 68116, + [SMALL_STATE(2175)] = 68144, + [SMALL_STATE(2176)] = 68172, + [SMALL_STATE(2177)] = 68200, + [SMALL_STATE(2178)] = 68228, + [SMALL_STATE(2179)] = 68266, + [SMALL_STATE(2180)] = 68306, + [SMALL_STATE(2181)] = 68344, + [SMALL_STATE(2182)] = 68382, + [SMALL_STATE(2183)] = 68422, + [SMALL_STATE(2184)] = 68460, + [SMALL_STATE(2185)] = 68500, + [SMALL_STATE(2186)] = 68532, + [SMALL_STATE(2187)] = 68570, + [SMALL_STATE(2188)] = 68598, + [SMALL_STATE(2189)] = 68626, + [SMALL_STATE(2190)] = 68650, + [SMALL_STATE(2191)] = 68688, + [SMALL_STATE(2192)] = 68728, + [SMALL_STATE(2193)] = 68756, + [SMALL_STATE(2194)] = 68779, + [SMALL_STATE(2195)] = 68802, + [SMALL_STATE(2196)] = 68825, + [SMALL_STATE(2197)] = 68848, + [SMALL_STATE(2198)] = 68871, + [SMALL_STATE(2199)] = 68894, + [SMALL_STATE(2200)] = 68917, + [SMALL_STATE(2201)] = 68954, + [SMALL_STATE(2202)] = 68989, + [SMALL_STATE(2203)] = 69012, + [SMALL_STATE(2204)] = 69053, + [SMALL_STATE(2205)] = 69076, + [SMALL_STATE(2206)] = 69099, + [SMALL_STATE(2207)] = 69134, + [SMALL_STATE(2208)] = 69171, + [SMALL_STATE(2209)] = 69212, + [SMALL_STATE(2210)] = 69235, + [SMALL_STATE(2211)] = 69258, + [SMALL_STATE(2212)] = 69281, + [SMALL_STATE(2213)] = 69304, + [SMALL_STATE(2214)] = 69327, + [SMALL_STATE(2215)] = 69350, + [SMALL_STATE(2216)] = 69387, + [SMALL_STATE(2217)] = 69410, + [SMALL_STATE(2218)] = 69439, + [SMALL_STATE(2219)] = 69462, + [SMALL_STATE(2220)] = 69485, + [SMALL_STATE(2221)] = 69520, + [SMALL_STATE(2222)] = 69543, + [SMALL_STATE(2223)] = 69566, + [SMALL_STATE(2224)] = 69601, + [SMALL_STATE(2225)] = 69624, + [SMALL_STATE(2226)] = 69647, + [SMALL_STATE(2227)] = 69670, + [SMALL_STATE(2228)] = 69693, + [SMALL_STATE(2229)] = 69716, + [SMALL_STATE(2230)] = 69739, + [SMALL_STATE(2231)] = 69762, + [SMALL_STATE(2232)] = 69785, + [SMALL_STATE(2233)] = 69808, + [SMALL_STATE(2234)] = 69837, + [SMALL_STATE(2235)] = 69860, + [SMALL_STATE(2236)] = 69883, + [SMALL_STATE(2237)] = 69906, + [SMALL_STATE(2238)] = 69935, + [SMALL_STATE(2239)] = 69968, + [SMALL_STATE(2240)] = 70009, + [SMALL_STATE(2241)] = 70046, + [SMALL_STATE(2242)] = 70075, + [SMALL_STATE(2243)] = 70104, + [SMALL_STATE(2244)] = 70127, + [SMALL_STATE(2245)] = 70150, + [SMALL_STATE(2246)] = 70191, + [SMALL_STATE(2247)] = 70214, + [SMALL_STATE(2248)] = 70246, + [SMALL_STATE(2249)] = 70270, + [SMALL_STATE(2250)] = 70300, + [SMALL_STATE(2251)] = 70334, + [SMALL_STATE(2252)] = 70364, + [SMALL_STATE(2253)] = 70402, + [SMALL_STATE(2254)] = 70440, + [SMALL_STATE(2255)] = 70466, + [SMALL_STATE(2256)] = 70504, + [SMALL_STATE(2257)] = 70530, + [SMALL_STATE(2258)] = 70562, + [SMALL_STATE(2259)] = 70594, + [SMALL_STATE(2260)] = 70626, + [SMALL_STATE(2261)] = 70650, + [SMALL_STATE(2262)] = 70676, + [SMALL_STATE(2263)] = 70700, + [SMALL_STATE(2264)] = 70732, + [SMALL_STATE(2265)] = 70756, + [SMALL_STATE(2266)] = 70780, + [SMALL_STATE(2267)] = 70810, + [SMALL_STATE(2268)] = 70842, + [SMALL_STATE(2269)] = 70874, + [SMALL_STATE(2270)] = 70904, + [SMALL_STATE(2271)] = 70930, + [SMALL_STATE(2272)] = 70968, + [SMALL_STATE(2273)] = 71006, + [SMALL_STATE(2274)] = 71044, + [SMALL_STATE(2275)] = 71082, + [SMALL_STATE(2276)] = 71120, + [SMALL_STATE(2277)] = 71158, + [SMALL_STATE(2278)] = 71196, + [SMALL_STATE(2279)] = 71234, + [SMALL_STATE(2280)] = 71272, + [SMALL_STATE(2281)] = 71310, + [SMALL_STATE(2282)] = 71348, + [SMALL_STATE(2283)] = 71374, + [SMALL_STATE(2284)] = 71408, + [SMALL_STATE(2285)] = 71438, + [SMALL_STATE(2286)] = 71468, + [SMALL_STATE(2287)] = 71498, + [SMALL_STATE(2288)] = 71534, + [SMALL_STATE(2289)] = 71564, + [SMALL_STATE(2290)] = 71596, + [SMALL_STATE(2291)] = 71634, + [SMALL_STATE(2292)] = 71666, + [SMALL_STATE(2293)] = 71696, + [SMALL_STATE(2294)] = 71728, + [SMALL_STATE(2295)] = 71754, + [SMALL_STATE(2296)] = 71786, + [SMALL_STATE(2297)] = 71818, + [SMALL_STATE(2298)] = 71850, + [SMALL_STATE(2299)] = 71888, + [SMALL_STATE(2300)] = 71923, + [SMALL_STATE(2301)] = 71958, + [SMALL_STATE(2302)] = 71991, + [SMALL_STATE(2303)] = 72024, + [SMALL_STATE(2304)] = 72059, + [SMALL_STATE(2305)] = 72094, + [SMALL_STATE(2306)] = 72129, + [SMALL_STATE(2307)] = 72164, + [SMALL_STATE(2308)] = 72199, + [SMALL_STATE(2309)] = 72234, + [SMALL_STATE(2310)] = 72269, + [SMALL_STATE(2311)] = 72304, + [SMALL_STATE(2312)] = 72327, + [SMALL_STATE(2313)] = 72362, + [SMALL_STATE(2314)] = 72397, + [SMALL_STATE(2315)] = 72418, + [SMALL_STATE(2316)] = 72453, + [SMALL_STATE(2317)] = 72488, + [SMALL_STATE(2318)] = 72511, + [SMALL_STATE(2319)] = 72546, + [SMALL_STATE(2320)] = 72581, + [SMALL_STATE(2321)] = 72616, + [SMALL_STATE(2322)] = 72651, + [SMALL_STATE(2323)] = 72686, + [SMALL_STATE(2324)] = 72709, + [SMALL_STATE(2325)] = 72744, + [SMALL_STATE(2326)] = 72779, + [SMALL_STATE(2327)] = 72814, + [SMALL_STATE(2328)] = 72849, + [SMALL_STATE(2329)] = 72872, + [SMALL_STATE(2330)] = 72907, + [SMALL_STATE(2331)] = 72942, + [SMALL_STATE(2332)] = 72963, + [SMALL_STATE(2333)] = 72998, + [SMALL_STATE(2334)] = 73033, + [SMALL_STATE(2335)] = 73068, + [SMALL_STATE(2336)] = 73103, + [SMALL_STATE(2337)] = 73136, + [SMALL_STATE(2338)] = 73159, + [SMALL_STATE(2339)] = 73192, + [SMALL_STATE(2340)] = 73227, + [SMALL_STATE(2341)] = 73262, + [SMALL_STATE(2342)] = 73297, + [SMALL_STATE(2343)] = 73332, + [SMALL_STATE(2344)] = 73367, + [SMALL_STATE(2345)] = 73402, + [SMALL_STATE(2346)] = 73435, + [SMALL_STATE(2347)] = 73470, + [SMALL_STATE(2348)] = 73505, + [SMALL_STATE(2349)] = 73526, + [SMALL_STATE(2350)] = 73549, + [SMALL_STATE(2351)] = 73584, + [SMALL_STATE(2352)] = 73607, + [SMALL_STATE(2353)] = 73642, + [SMALL_STATE(2354)] = 73665, + [SMALL_STATE(2355)] = 73688, + [SMALL_STATE(2356)] = 73723, + [SMALL_STATE(2357)] = 73755, + [SMALL_STATE(2358)] = 73783, + [SMALL_STATE(2359)] = 73809, + [SMALL_STATE(2360)] = 73839, + [SMALL_STATE(2361)] = 73869, + [SMALL_STATE(2362)] = 73899, + [SMALL_STATE(2363)] = 73929, + [SMALL_STATE(2364)] = 73957, + [SMALL_STATE(2365)] = 73989, + [SMALL_STATE(2366)] = 74017, + [SMALL_STATE(2367)] = 74049, + [SMALL_STATE(2368)] = 74081, + [SMALL_STATE(2369)] = 74113, + [SMALL_STATE(2370)] = 74145, + [SMALL_STATE(2371)] = 74177, + [SMALL_STATE(2372)] = 74197, + [SMALL_STATE(2373)] = 74229, + [SMALL_STATE(2374)] = 74261, + [SMALL_STATE(2375)] = 74293, + [SMALL_STATE(2376)] = 74325, + [SMALL_STATE(2377)] = 74357, + [SMALL_STATE(2378)] = 74387, + [SMALL_STATE(2379)] = 74417, + [SMALL_STATE(2380)] = 74449, + [SMALL_STATE(2381)] = 74479, + [SMALL_STATE(2382)] = 74509, + [SMALL_STATE(2383)] = 74541, + [SMALL_STATE(2384)] = 74573, + [SMALL_STATE(2385)] = 74605, + [SMALL_STATE(2386)] = 74637, + [SMALL_STATE(2387)] = 74669, + [SMALL_STATE(2388)] = 74701, + [SMALL_STATE(2389)] = 74733, + [SMALL_STATE(2390)] = 74765, + [SMALL_STATE(2391)] = 74797, + [SMALL_STATE(2392)] = 74829, + [SMALL_STATE(2393)] = 74861, + [SMALL_STATE(2394)] = 74893, + [SMALL_STATE(2395)] = 74925, + [SMALL_STATE(2396)] = 74957, + [SMALL_STATE(2397)] = 74989, + [SMALL_STATE(2398)] = 75021, + [SMALL_STATE(2399)] = 75051, + [SMALL_STATE(2400)] = 75083, + [SMALL_STATE(2401)] = 75115, + [SMALL_STATE(2402)] = 75147, + [SMALL_STATE(2403)] = 75179, + [SMALL_STATE(2404)] = 75209, + [SMALL_STATE(2405)] = 75237, + [SMALL_STATE(2406)] = 75263, + [SMALL_STATE(2407)] = 75295, + [SMALL_STATE(2408)] = 75327, + [SMALL_STATE(2409)] = 75355, + [SMALL_STATE(2410)] = 75381, + [SMALL_STATE(2411)] = 75413, + [SMALL_STATE(2412)] = 75439, + [SMALL_STATE(2413)] = 75471, + [SMALL_STATE(2414)] = 75503, + [SMALL_STATE(2415)] = 75535, + [SMALL_STATE(2416)] = 75564, + [SMALL_STATE(2417)] = 75593, + [SMALL_STATE(2418)] = 75622, + [SMALL_STATE(2419)] = 75651, + [SMALL_STATE(2420)] = 75680, + [SMALL_STATE(2421)] = 75709, + [SMALL_STATE(2422)] = 75730, + [SMALL_STATE(2423)] = 75759, + [SMALL_STATE(2424)] = 75788, + [SMALL_STATE(2425)] = 75817, + [SMALL_STATE(2426)] = 75846, + [SMALL_STATE(2427)] = 75869, + [SMALL_STATE(2428)] = 75898, + [SMALL_STATE(2429)] = 75923, + [SMALL_STATE(2430)] = 75952, + [SMALL_STATE(2431)] = 75981, + [SMALL_STATE(2432)] = 76010, + [SMALL_STATE(2433)] = 76039, + [SMALL_STATE(2434)] = 76066, + [SMALL_STATE(2435)] = 76095, + [SMALL_STATE(2436)] = 76124, + [SMALL_STATE(2437)] = 76153, + [SMALL_STATE(2438)] = 76182, + [SMALL_STATE(2439)] = 76211, + [SMALL_STATE(2440)] = 76234, + [SMALL_STATE(2441)] = 76263, + [SMALL_STATE(2442)] = 76292, + [SMALL_STATE(2443)] = 76321, + [SMALL_STATE(2444)] = 76350, + [SMALL_STATE(2445)] = 76379, + [SMALL_STATE(2446)] = 76408, + [SMALL_STATE(2447)] = 76437, + [SMALL_STATE(2448)] = 76466, + [SMALL_STATE(2449)] = 76495, + [SMALL_STATE(2450)] = 76524, + [SMALL_STATE(2451)] = 76547, + [SMALL_STATE(2452)] = 76568, + [SMALL_STATE(2453)] = 76597, + [SMALL_STATE(2454)] = 76624, + [SMALL_STATE(2455)] = 76653, + [SMALL_STATE(2456)] = 76682, + [SMALL_STATE(2457)] = 76711, + [SMALL_STATE(2458)] = 76740, + [SMALL_STATE(2459)] = 76769, + [SMALL_STATE(2460)] = 76798, + [SMALL_STATE(2461)] = 76827, + [SMALL_STATE(2462)] = 76856, + [SMALL_STATE(2463)] = 76885, + [SMALL_STATE(2464)] = 76914, + [SMALL_STATE(2465)] = 76937, + [SMALL_STATE(2466)] = 76962, + [SMALL_STATE(2467)] = 76991, + [SMALL_STATE(2468)] = 77014, + [SMALL_STATE(2469)] = 77035, + [SMALL_STATE(2470)] = 77056, + [SMALL_STATE(2471)] = 77085, + [SMALL_STATE(2472)] = 77112, + [SMALL_STATE(2473)] = 77133, + [SMALL_STATE(2474)] = 77162, + [SMALL_STATE(2475)] = 77191, + [SMALL_STATE(2476)] = 77218, + [SMALL_STATE(2477)] = 77245, + [SMALL_STATE(2478)] = 77266, + [SMALL_STATE(2479)] = 77295, + [SMALL_STATE(2480)] = 77324, + [SMALL_STATE(2481)] = 77353, + [SMALL_STATE(2482)] = 77382, + [SMALL_STATE(2483)] = 77411, + [SMALL_STATE(2484)] = 77434, + [SMALL_STATE(2485)] = 77455, + [SMALL_STATE(2486)] = 77476, + [SMALL_STATE(2487)] = 77505, + [SMALL_STATE(2488)] = 77526, + [SMALL_STATE(2489)] = 77555, + [SMALL_STATE(2490)] = 77584, + [SMALL_STATE(2491)] = 77613, + [SMALL_STATE(2492)] = 77636, + [SMALL_STATE(2493)] = 77661, + [SMALL_STATE(2494)] = 77682, + [SMALL_STATE(2495)] = 77707, + [SMALL_STATE(2496)] = 77732, + [SMALL_STATE(2497)] = 77761, + [SMALL_STATE(2498)] = 77784, + [SMALL_STATE(2499)] = 77809, + [SMALL_STATE(2500)] = 77838, + [SMALL_STATE(2501)] = 77859, + [SMALL_STATE(2502)] = 77886, + [SMALL_STATE(2503)] = 77915, + [SMALL_STATE(2504)] = 77944, + [SMALL_STATE(2505)] = 77973, + [SMALL_STATE(2506)] = 77996, + [SMALL_STATE(2507)] = 78021, + [SMALL_STATE(2508)] = 78050, + [SMALL_STATE(2509)] = 78073, + [SMALL_STATE(2510)] = 78096, + [SMALL_STATE(2511)] = 78121, + [SMALL_STATE(2512)] = 78142, + [SMALL_STATE(2513)] = 78165, + [SMALL_STATE(2514)] = 78188, + [SMALL_STATE(2515)] = 78209, + [SMALL_STATE(2516)] = 78232, + [SMALL_STATE(2517)] = 78251, + [SMALL_STATE(2518)] = 78272, + [SMALL_STATE(2519)] = 78295, + [SMALL_STATE(2520)] = 78316, + [SMALL_STATE(2521)] = 78337, + [SMALL_STATE(2522)] = 78360, + [SMALL_STATE(2523)] = 78389, + [SMALL_STATE(2524)] = 78418, + [SMALL_STATE(2525)] = 78444, + [SMALL_STATE(2526)] = 78466, + [SMALL_STATE(2527)] = 78490, + [SMALL_STATE(2528)] = 78516, + [SMALL_STATE(2529)] = 78542, + [SMALL_STATE(2530)] = 78560, + [SMALL_STATE(2531)] = 78578, + [SMALL_STATE(2532)] = 78600, + [SMALL_STATE(2533)] = 78626, + [SMALL_STATE(2534)] = 78644, + [SMALL_STATE(2535)] = 78668, + [SMALL_STATE(2536)] = 78692, + [SMALL_STATE(2537)] = 78716, + [SMALL_STATE(2538)] = 78740, + [SMALL_STATE(2539)] = 78758, + [SMALL_STATE(2540)] = 78784, + [SMALL_STATE(2541)] = 78802, + [SMALL_STATE(2542)] = 78828, + [SMALL_STATE(2543)] = 78854, + [SMALL_STATE(2544)] = 78880, + [SMALL_STATE(2545)] = 78906, + [SMALL_STATE(2546)] = 78932, + [SMALL_STATE(2547)] = 78958, + [SMALL_STATE(2548)] = 78984, + [SMALL_STATE(2549)] = 79002, + [SMALL_STATE(2550)] = 79028, + [SMALL_STATE(2551)] = 79052, + [SMALL_STATE(2552)] = 79076, + [SMALL_STATE(2553)] = 79102, + [SMALL_STATE(2554)] = 79128, + [SMALL_STATE(2555)] = 79150, + [SMALL_STATE(2556)] = 79176, + [SMALL_STATE(2557)] = 79202, + [SMALL_STATE(2558)] = 79228, + [SMALL_STATE(2559)] = 79254, + [SMALL_STATE(2560)] = 79280, + [SMALL_STATE(2561)] = 79302, + [SMALL_STATE(2562)] = 79328, + [SMALL_STATE(2563)] = 79346, + [SMALL_STATE(2564)] = 79370, + [SMALL_STATE(2565)] = 79388, + [SMALL_STATE(2566)] = 79414, + [SMALL_STATE(2567)] = 79432, + [SMALL_STATE(2568)] = 79456, + [SMALL_STATE(2569)] = 79476, + [SMALL_STATE(2570)] = 79494, + [SMALL_STATE(2571)] = 79518, + [SMALL_STATE(2572)] = 79544, + [SMALL_STATE(2573)] = 79570, + [SMALL_STATE(2574)] = 79596, + [SMALL_STATE(2575)] = 79622, + [SMALL_STATE(2576)] = 79648, + [SMALL_STATE(2577)] = 79674, + [SMALL_STATE(2578)] = 79696, + [SMALL_STATE(2579)] = 79718, + [SMALL_STATE(2580)] = 79736, + [SMALL_STATE(2581)] = 79760, + [SMALL_STATE(2582)] = 79786, + [SMALL_STATE(2583)] = 79812, + [SMALL_STATE(2584)] = 79830, + [SMALL_STATE(2585)] = 79856, + [SMALL_STATE(2586)] = 79878, + [SMALL_STATE(2587)] = 79896, + [SMALL_STATE(2588)] = 79920, + [SMALL_STATE(2589)] = 79946, + [SMALL_STATE(2590)] = 79970, + [SMALL_STATE(2591)] = 79996, + [SMALL_STATE(2592)] = 80014, + [SMALL_STATE(2593)] = 80040, + [SMALL_STATE(2594)] = 80062, + [SMALL_STATE(2595)] = 80088, + [SMALL_STATE(2596)] = 80114, + [SMALL_STATE(2597)] = 80132, + [SMALL_STATE(2598)] = 80150, + [SMALL_STATE(2599)] = 80176, + [SMALL_STATE(2600)] = 80194, + [SMALL_STATE(2601)] = 80212, + [SMALL_STATE(2602)] = 80232, + [SMALL_STATE(2603)] = 80258, + [SMALL_STATE(2604)] = 80284, + [SMALL_STATE(2605)] = 80308, + [SMALL_STATE(2606)] = 80326, + [SMALL_STATE(2607)] = 80352, + [SMALL_STATE(2608)] = 80378, + [SMALL_STATE(2609)] = 80400, + [SMALL_STATE(2610)] = 80426, + [SMALL_STATE(2611)] = 80452, + [SMALL_STATE(2612)] = 80478, + [SMALL_STATE(2613)] = 80504, + [SMALL_STATE(2614)] = 80522, + [SMALL_STATE(2615)] = 80548, + [SMALL_STATE(2616)] = 80574, + [SMALL_STATE(2617)] = 80600, + [SMALL_STATE(2618)] = 80626, + [SMALL_STATE(2619)] = 80646, + [SMALL_STATE(2620)] = 80672, + [SMALL_STATE(2621)] = 80690, + [SMALL_STATE(2622)] = 80710, + [SMALL_STATE(2623)] = 80736, + [SMALL_STATE(2624)] = 80762, + [SMALL_STATE(2625)] = 80780, + [SMALL_STATE(2626)] = 80804, + [SMALL_STATE(2627)] = 80822, + [SMALL_STATE(2628)] = 80840, + [SMALL_STATE(2629)] = 80866, + [SMALL_STATE(2630)] = 80884, + [SMALL_STATE(2631)] = 80908, + [SMALL_STATE(2632)] = 80926, + [SMALL_STATE(2633)] = 80952, + [SMALL_STATE(2634)] = 80975, + [SMALL_STATE(2635)] = 80996, + [SMALL_STATE(2636)] = 81015, + [SMALL_STATE(2637)] = 81034, + [SMALL_STATE(2638)] = 81055, + [SMALL_STATE(2639)] = 81078, + [SMALL_STATE(2640)] = 81101, + [SMALL_STATE(2641)] = 81124, + [SMALL_STATE(2642)] = 81147, + [SMALL_STATE(2643)] = 81170, + [SMALL_STATE(2644)] = 81193, + [SMALL_STATE(2645)] = 81216, + [SMALL_STATE(2646)] = 81237, + [SMALL_STATE(2647)] = 81260, + [SMALL_STATE(2648)] = 81283, + [SMALL_STATE(2649)] = 81306, + [SMALL_STATE(2650)] = 81329, + [SMALL_STATE(2651)] = 81352, + [SMALL_STATE(2652)] = 81371, + [SMALL_STATE(2653)] = 81390, + [SMALL_STATE(2654)] = 81411, + [SMALL_STATE(2655)] = 81430, + [SMALL_STATE(2656)] = 81449, + [SMALL_STATE(2657)] = 81472, + [SMALL_STATE(2658)] = 81495, + [SMALL_STATE(2659)] = 81518, + [SMALL_STATE(2660)] = 81541, + [SMALL_STATE(2661)] = 81564, + [SMALL_STATE(2662)] = 81587, + [SMALL_STATE(2663)] = 81608, + [SMALL_STATE(2664)] = 81631, + [SMALL_STATE(2665)] = 81654, + [SMALL_STATE(2666)] = 81677, + [SMALL_STATE(2667)] = 81700, + [SMALL_STATE(2668)] = 81723, + [SMALL_STATE(2669)] = 81746, + [SMALL_STATE(2670)] = 81769, + [SMALL_STATE(2671)] = 81792, + [SMALL_STATE(2672)] = 81815, + [SMALL_STATE(2673)] = 81838, + [SMALL_STATE(2674)] = 81861, + [SMALL_STATE(2675)] = 81884, + [SMALL_STATE(2676)] = 81907, + [SMALL_STATE(2677)] = 81930, + [SMALL_STATE(2678)] = 81953, + [SMALL_STATE(2679)] = 81976, + [SMALL_STATE(2680)] = 81999, + [SMALL_STATE(2681)] = 82022, + [SMALL_STATE(2682)] = 82045, + [SMALL_STATE(2683)] = 82068, + [SMALL_STATE(2684)] = 82091, + [SMALL_STATE(2685)] = 82114, + [SMALL_STATE(2686)] = 82137, + [SMALL_STATE(2687)] = 82160, + [SMALL_STATE(2688)] = 82183, + [SMALL_STATE(2689)] = 82206, + [SMALL_STATE(2690)] = 82229, + [SMALL_STATE(2691)] = 82250, + [SMALL_STATE(2692)] = 82271, + [SMALL_STATE(2693)] = 82294, + [SMALL_STATE(2694)] = 82317, + [SMALL_STATE(2695)] = 82340, + [SMALL_STATE(2696)] = 82363, + [SMALL_STATE(2697)] = 82386, + [SMALL_STATE(2698)] = 82409, + [SMALL_STATE(2699)] = 82432, + [SMALL_STATE(2700)] = 82455, + [SMALL_STATE(2701)] = 82478, + [SMALL_STATE(2702)] = 82501, + [SMALL_STATE(2703)] = 82524, + [SMALL_STATE(2704)] = 82547, + [SMALL_STATE(2705)] = 82570, + [SMALL_STATE(2706)] = 82593, + [SMALL_STATE(2707)] = 82616, + [SMALL_STATE(2708)] = 82639, + [SMALL_STATE(2709)] = 82662, + [SMALL_STATE(2710)] = 82685, + [SMALL_STATE(2711)] = 82708, + [SMALL_STATE(2712)] = 82731, + [SMALL_STATE(2713)] = 82750, + [SMALL_STATE(2714)] = 82773, + [SMALL_STATE(2715)] = 82796, + [SMALL_STATE(2716)] = 82819, + [SMALL_STATE(2717)] = 82842, + [SMALL_STATE(2718)] = 82859, + [SMALL_STATE(2719)] = 82882, + [SMALL_STATE(2720)] = 82905, + [SMALL_STATE(2721)] = 82928, + [SMALL_STATE(2722)] = 82951, + [SMALL_STATE(2723)] = 82974, + [SMALL_STATE(2724)] = 82997, + [SMALL_STATE(2725)] = 83020, + [SMALL_STATE(2726)] = 83039, + [SMALL_STATE(2727)] = 83058, + [SMALL_STATE(2728)] = 83077, + [SMALL_STATE(2729)] = 83094, + [SMALL_STATE(2730)] = 83113, + [SMALL_STATE(2731)] = 83132, + [SMALL_STATE(2732)] = 83155, + [SMALL_STATE(2733)] = 83178, + [SMALL_STATE(2734)] = 83197, + [SMALL_STATE(2735)] = 83220, + [SMALL_STATE(2736)] = 83243, + [SMALL_STATE(2737)] = 83266, + [SMALL_STATE(2738)] = 83289, + [SMALL_STATE(2739)] = 83310, + [SMALL_STATE(2740)] = 83331, + [SMALL_STATE(2741)] = 83350, + [SMALL_STATE(2742)] = 83371, + [SMALL_STATE(2743)] = 83394, + [SMALL_STATE(2744)] = 83413, + [SMALL_STATE(2745)] = 83432, + [SMALL_STATE(2746)] = 83455, + [SMALL_STATE(2747)] = 83472, + [SMALL_STATE(2748)] = 83491, + [SMALL_STATE(2749)] = 83514, + [SMALL_STATE(2750)] = 83537, + [SMALL_STATE(2751)] = 83560, + [SMALL_STATE(2752)] = 83583, + [SMALL_STATE(2753)] = 83604, + [SMALL_STATE(2754)] = 83627, + [SMALL_STATE(2755)] = 83650, + [SMALL_STATE(2756)] = 83673, + [SMALL_STATE(2757)] = 83696, + [SMALL_STATE(2758)] = 83719, + [SMALL_STATE(2759)] = 83742, + [SMALL_STATE(2760)] = 83765, + [SMALL_STATE(2761)] = 83788, + [SMALL_STATE(2762)] = 83811, + [SMALL_STATE(2763)] = 83834, + [SMALL_STATE(2764)] = 83857, + [SMALL_STATE(2765)] = 83880, + [SMALL_STATE(2766)] = 83901, + [SMALL_STATE(2767)] = 83924, + [SMALL_STATE(2768)] = 83947, + [SMALL_STATE(2769)] = 83970, + [SMALL_STATE(2770)] = 83993, + [SMALL_STATE(2771)] = 84016, + [SMALL_STATE(2772)] = 84039, + [SMALL_STATE(2773)] = 84062, + [SMALL_STATE(2774)] = 84085, + [SMALL_STATE(2775)] = 84108, + [SMALL_STATE(2776)] = 84131, + [SMALL_STATE(2777)] = 84154, + [SMALL_STATE(2778)] = 84177, + [SMALL_STATE(2779)] = 84200, + [SMALL_STATE(2780)] = 84223, + [SMALL_STATE(2781)] = 84242, + [SMALL_STATE(2782)] = 84265, + [SMALL_STATE(2783)] = 84288, + [SMALL_STATE(2784)] = 84311, + [SMALL_STATE(2785)] = 84334, + [SMALL_STATE(2786)] = 84357, + [SMALL_STATE(2787)] = 84380, + [SMALL_STATE(2788)] = 84403, + [SMALL_STATE(2789)] = 84426, + [SMALL_STATE(2790)] = 84447, + [SMALL_STATE(2791)] = 84470, + [SMALL_STATE(2792)] = 84493, + [SMALL_STATE(2793)] = 84516, + [SMALL_STATE(2794)] = 84539, + [SMALL_STATE(2795)] = 84562, + [SMALL_STATE(2796)] = 84585, + [SMALL_STATE(2797)] = 84608, + [SMALL_STATE(2798)] = 84629, + [SMALL_STATE(2799)] = 84652, + [SMALL_STATE(2800)] = 84675, + [SMALL_STATE(2801)] = 84698, + [SMALL_STATE(2802)] = 84721, + [SMALL_STATE(2803)] = 84744, + [SMALL_STATE(2804)] = 84763, + [SMALL_STATE(2805)] = 84786, + [SMALL_STATE(2806)] = 84809, + [SMALL_STATE(2807)] = 84832, + [SMALL_STATE(2808)] = 84855, + [SMALL_STATE(2809)] = 84878, + [SMALL_STATE(2810)] = 84899, + [SMALL_STATE(2811)] = 84922, + [SMALL_STATE(2812)] = 84945, + [SMALL_STATE(2813)] = 84968, + [SMALL_STATE(2814)] = 84991, + [SMALL_STATE(2815)] = 85014, + [SMALL_STATE(2816)] = 85035, + [SMALL_STATE(2817)] = 85058, + [SMALL_STATE(2818)] = 85081, + [SMALL_STATE(2819)] = 85104, + [SMALL_STATE(2820)] = 85127, + [SMALL_STATE(2821)] = 85150, + [SMALL_STATE(2822)] = 85173, + [SMALL_STATE(2823)] = 85196, + [SMALL_STATE(2824)] = 85219, + [SMALL_STATE(2825)] = 85240, + [SMALL_STATE(2826)] = 85261, + [SMALL_STATE(2827)] = 85284, + [SMALL_STATE(2828)] = 85307, + [SMALL_STATE(2829)] = 85330, + [SMALL_STATE(2830)] = 85353, + [SMALL_STATE(2831)] = 85374, + [SMALL_STATE(2832)] = 85397, + [SMALL_STATE(2833)] = 85420, + [SMALL_STATE(2834)] = 85441, + [SMALL_STATE(2835)] = 85462, + [SMALL_STATE(2836)] = 85485, + [SMALL_STATE(2837)] = 85508, + [SMALL_STATE(2838)] = 85525, + [SMALL_STATE(2839)] = 85544, + [SMALL_STATE(2840)] = 85565, + [SMALL_STATE(2841)] = 85588, + [SMALL_STATE(2842)] = 85607, + [SMALL_STATE(2843)] = 85630, + [SMALL_STATE(2844)] = 85649, + [SMALL_STATE(2845)] = 85672, + [SMALL_STATE(2846)] = 85695, + [SMALL_STATE(2847)] = 85714, + [SMALL_STATE(2848)] = 85737, + [SMALL_STATE(2849)] = 85758, + [SMALL_STATE(2850)] = 85777, + [SMALL_STATE(2851)] = 85800, + [SMALL_STATE(2852)] = 85823, + [SMALL_STATE(2853)] = 85846, + [SMALL_STATE(2854)] = 85865, + [SMALL_STATE(2855)] = 85888, + [SMALL_STATE(2856)] = 85911, + [SMALL_STATE(2857)] = 85930, + [SMALL_STATE(2858)] = 85953, + [SMALL_STATE(2859)] = 85972, + [SMALL_STATE(2860)] = 85995, + [SMALL_STATE(2861)] = 86018, + [SMALL_STATE(2862)] = 86041, + [SMALL_STATE(2863)] = 86064, + [SMALL_STATE(2864)] = 86087, + [SMALL_STATE(2865)] = 86110, + [SMALL_STATE(2866)] = 86133, + [SMALL_STATE(2867)] = 86156, + [SMALL_STATE(2868)] = 86179, + [SMALL_STATE(2869)] = 86202, + [SMALL_STATE(2870)] = 86221, + [SMALL_STATE(2871)] = 86244, + [SMALL_STATE(2872)] = 86267, + [SMALL_STATE(2873)] = 86290, + [SMALL_STATE(2874)] = 86313, + [SMALL_STATE(2875)] = 86336, + [SMALL_STATE(2876)] = 86359, + [SMALL_STATE(2877)] = 86380, + [SMALL_STATE(2878)] = 86403, + [SMALL_STATE(2879)] = 86424, + [SMALL_STATE(2880)] = 86447, + [SMALL_STATE(2881)] = 86470, + [SMALL_STATE(2882)] = 86493, + [SMALL_STATE(2883)] = 86514, + [SMALL_STATE(2884)] = 86537, + [SMALL_STATE(2885)] = 86556, + [SMALL_STATE(2886)] = 86579, + [SMALL_STATE(2887)] = 86602, + [SMALL_STATE(2888)] = 86625, + [SMALL_STATE(2889)] = 86648, + [SMALL_STATE(2890)] = 86671, + [SMALL_STATE(2891)] = 86690, + [SMALL_STATE(2892)] = 86713, + [SMALL_STATE(2893)] = 86736, + [SMALL_STATE(2894)] = 86759, + [SMALL_STATE(2895)] = 86778, + [SMALL_STATE(2896)] = 86795, + [SMALL_STATE(2897)] = 86818, + [SMALL_STATE(2898)] = 86841, + [SMALL_STATE(2899)] = 86864, + [SMALL_STATE(2900)] = 86887, + [SMALL_STATE(2901)] = 86906, + [SMALL_STATE(2902)] = 86929, + [SMALL_STATE(2903)] = 86952, + [SMALL_STATE(2904)] = 86972, + [SMALL_STATE(2905)] = 86988, + [SMALL_STATE(2906)] = 87008, + [SMALL_STATE(2907)] = 87028, + [SMALL_STATE(2908)] = 87048, + [SMALL_STATE(2909)] = 87068, + [SMALL_STATE(2910)] = 87088, + [SMALL_STATE(2911)] = 87108, + [SMALL_STATE(2912)] = 87128, + [SMALL_STATE(2913)] = 87148, + [SMALL_STATE(2914)] = 87168, + [SMALL_STATE(2915)] = 87188, + [SMALL_STATE(2916)] = 87208, + [SMALL_STATE(2917)] = 87228, + [SMALL_STATE(2918)] = 87248, + [SMALL_STATE(2919)] = 87268, + [SMALL_STATE(2920)] = 87288, + [SMALL_STATE(2921)] = 87308, + [SMALL_STATE(2922)] = 87328, + [SMALL_STATE(2923)] = 87348, + [SMALL_STATE(2924)] = 87368, + [SMALL_STATE(2925)] = 87388, + [SMALL_STATE(2926)] = 87408, + [SMALL_STATE(2927)] = 87428, + [SMALL_STATE(2928)] = 87448, + [SMALL_STATE(2929)] = 87468, + [SMALL_STATE(2930)] = 87486, + [SMALL_STATE(2931)] = 87506, + [SMALL_STATE(2932)] = 87526, + [SMALL_STATE(2933)] = 87546, + [SMALL_STATE(2934)] = 87566, + [SMALL_STATE(2935)] = 87586, + [SMALL_STATE(2936)] = 87606, + [SMALL_STATE(2937)] = 87622, + [SMALL_STATE(2938)] = 87642, + [SMALL_STATE(2939)] = 87662, + [SMALL_STATE(2940)] = 87682, + [SMALL_STATE(2941)] = 87702, + [SMALL_STATE(2942)] = 87722, + [SMALL_STATE(2943)] = 87742, + [SMALL_STATE(2944)] = 87762, + [SMALL_STATE(2945)] = 87778, + [SMALL_STATE(2946)] = 87798, + [SMALL_STATE(2947)] = 87818, + [SMALL_STATE(2948)] = 87838, + [SMALL_STATE(2949)] = 87858, + [SMALL_STATE(2950)] = 87874, + [SMALL_STATE(2951)] = 87894, + [SMALL_STATE(2952)] = 87914, + [SMALL_STATE(2953)] = 87934, + [SMALL_STATE(2954)] = 87954, + [SMALL_STATE(2955)] = 87974, + [SMALL_STATE(2956)] = 87994, + [SMALL_STATE(2957)] = 88014, + [SMALL_STATE(2958)] = 88034, + [SMALL_STATE(2959)] = 88054, + [SMALL_STATE(2960)] = 88074, + [SMALL_STATE(2961)] = 88094, + [SMALL_STATE(2962)] = 88114, + [SMALL_STATE(2963)] = 88134, + [SMALL_STATE(2964)] = 88154, + [SMALL_STATE(2965)] = 88174, + [SMALL_STATE(2966)] = 88194, + [SMALL_STATE(2967)] = 88214, + [SMALL_STATE(2968)] = 88234, + [SMALL_STATE(2969)] = 88254, + [SMALL_STATE(2970)] = 88274, + [SMALL_STATE(2971)] = 88290, + [SMALL_STATE(2972)] = 88310, + [SMALL_STATE(2973)] = 88330, + [SMALL_STATE(2974)] = 88350, + [SMALL_STATE(2975)] = 88366, + [SMALL_STATE(2976)] = 88386, + [SMALL_STATE(2977)] = 88402, + [SMALL_STATE(2978)] = 88422, + [SMALL_STATE(2979)] = 88438, + [SMALL_STATE(2980)] = 88458, + [SMALL_STATE(2981)] = 88478, + [SMALL_STATE(2982)] = 88498, + [SMALL_STATE(2983)] = 88514, + [SMALL_STATE(2984)] = 88530, + [SMALL_STATE(2985)] = 88546, + [SMALL_STATE(2986)] = 88566, + [SMALL_STATE(2987)] = 88584, + [SMALL_STATE(2988)] = 88604, + [SMALL_STATE(2989)] = 88624, + [SMALL_STATE(2990)] = 88640, + [SMALL_STATE(2991)] = 88660, + [SMALL_STATE(2992)] = 88676, + [SMALL_STATE(2993)] = 88696, + [SMALL_STATE(2994)] = 88716, + [SMALL_STATE(2995)] = 88732, + [SMALL_STATE(2996)] = 88752, + [SMALL_STATE(2997)] = 88768, + [SMALL_STATE(2998)] = 88784, + [SMALL_STATE(2999)] = 88804, + [SMALL_STATE(3000)] = 88820, + [SMALL_STATE(3001)] = 88836, + [SMALL_STATE(3002)] = 88852, + [SMALL_STATE(3003)] = 88868, + [SMALL_STATE(3004)] = 88884, + [SMALL_STATE(3005)] = 88900, + [SMALL_STATE(3006)] = 88916, + [SMALL_STATE(3007)] = 88936, + [SMALL_STATE(3008)] = 88956, + [SMALL_STATE(3009)] = 88976, + [SMALL_STATE(3010)] = 88994, + [SMALL_STATE(3011)] = 89014, + [SMALL_STATE(3012)] = 89034, + [SMALL_STATE(3013)] = 89050, + [SMALL_STATE(3014)] = 89070, + [SMALL_STATE(3015)] = 89090, + [SMALL_STATE(3016)] = 89110, + [SMALL_STATE(3017)] = 89130, + [SMALL_STATE(3018)] = 89150, + [SMALL_STATE(3019)] = 89166, + [SMALL_STATE(3020)] = 89186, + [SMALL_STATE(3021)] = 89206, + [SMALL_STATE(3022)] = 89224, + [SMALL_STATE(3023)] = 89244, + [SMALL_STATE(3024)] = 89262, + [SMALL_STATE(3025)] = 89278, + [SMALL_STATE(3026)] = 89294, + [SMALL_STATE(3027)] = 89312, + [SMALL_STATE(3028)] = 89332, + [SMALL_STATE(3029)] = 89348, + [SMALL_STATE(3030)] = 89364, + [SMALL_STATE(3031)] = 89384, + [SMALL_STATE(3032)] = 89404, + [SMALL_STATE(3033)] = 89420, + [SMALL_STATE(3034)] = 89440, + [SMALL_STATE(3035)] = 89460, + [SMALL_STATE(3036)] = 89478, + [SMALL_STATE(3037)] = 89498, + [SMALL_STATE(3038)] = 89516, + [SMALL_STATE(3039)] = 89536, + [SMALL_STATE(3040)] = 89556, + [SMALL_STATE(3041)] = 89576, + [SMALL_STATE(3042)] = 89596, + [SMALL_STATE(3043)] = 89612, + [SMALL_STATE(3044)] = 89632, + [SMALL_STATE(3045)] = 89652, + [SMALL_STATE(3046)] = 89672, + [SMALL_STATE(3047)] = 89692, + [SMALL_STATE(3048)] = 89712, + [SMALL_STATE(3049)] = 89732, + [SMALL_STATE(3050)] = 89752, + [SMALL_STATE(3051)] = 89772, + [SMALL_STATE(3052)] = 89792, + [SMALL_STATE(3053)] = 89812, + [SMALL_STATE(3054)] = 89832, + [SMALL_STATE(3055)] = 89852, + [SMALL_STATE(3056)] = 89872, + [SMALL_STATE(3057)] = 89892, + [SMALL_STATE(3058)] = 89912, + [SMALL_STATE(3059)] = 89932, + [SMALL_STATE(3060)] = 89952, + [SMALL_STATE(3061)] = 89972, + [SMALL_STATE(3062)] = 89992, + [SMALL_STATE(3063)] = 90012, + [SMALL_STATE(3064)] = 90032, + [SMALL_STATE(3065)] = 90052, + [SMALL_STATE(3066)] = 90068, + [SMALL_STATE(3067)] = 90088, + [SMALL_STATE(3068)] = 90108, + [SMALL_STATE(3069)] = 90128, + [SMALL_STATE(3070)] = 90146, + [SMALL_STATE(3071)] = 90166, + [SMALL_STATE(3072)] = 90186, + [SMALL_STATE(3073)] = 90206, + [SMALL_STATE(3074)] = 90226, + [SMALL_STATE(3075)] = 90246, + [SMALL_STATE(3076)] = 90266, + [SMALL_STATE(3077)] = 90286, + [SMALL_STATE(3078)] = 90304, + [SMALL_STATE(3079)] = 90324, + [SMALL_STATE(3080)] = 90344, + [SMALL_STATE(3081)] = 90362, + [SMALL_STATE(3082)] = 90382, + [SMALL_STATE(3083)] = 90402, + [SMALL_STATE(3084)] = 90422, + [SMALL_STATE(3085)] = 90442, + [SMALL_STATE(3086)] = 90462, + [SMALL_STATE(3087)] = 90482, + [SMALL_STATE(3088)] = 90502, + [SMALL_STATE(3089)] = 90518, + [SMALL_STATE(3090)] = 90538, + [SMALL_STATE(3091)] = 90554, + [SMALL_STATE(3092)] = 90574, + [SMALL_STATE(3093)] = 90590, + [SMALL_STATE(3094)] = 90610, + [SMALL_STATE(3095)] = 90630, + [SMALL_STATE(3096)] = 90650, + [SMALL_STATE(3097)] = 90670, + [SMALL_STATE(3098)] = 90690, + [SMALL_STATE(3099)] = 90710, + [SMALL_STATE(3100)] = 90730, + [SMALL_STATE(3101)] = 90750, + [SMALL_STATE(3102)] = 90766, + [SMALL_STATE(3103)] = 90782, + [SMALL_STATE(3104)] = 90798, + [SMALL_STATE(3105)] = 90814, + [SMALL_STATE(3106)] = 90830, + [SMALL_STATE(3107)] = 90846, + [SMALL_STATE(3108)] = 90866, + [SMALL_STATE(3109)] = 90886, + [SMALL_STATE(3110)] = 90906, + [SMALL_STATE(3111)] = 90924, + [SMALL_STATE(3112)] = 90944, + [SMALL_STATE(3113)] = 90962, + [SMALL_STATE(3114)] = 90978, + [SMALL_STATE(3115)] = 90998, + [SMALL_STATE(3116)] = 91018, + [SMALL_STATE(3117)] = 91038, + [SMALL_STATE(3118)] = 91056, + [SMALL_STATE(3119)] = 91076, + [SMALL_STATE(3120)] = 91096, + [SMALL_STATE(3121)] = 91114, + [SMALL_STATE(3122)] = 91134, + [SMALL_STATE(3123)] = 91152, + [SMALL_STATE(3124)] = 91172, + [SMALL_STATE(3125)] = 91192, + [SMALL_STATE(3126)] = 91212, + [SMALL_STATE(3127)] = 91230, + [SMALL_STATE(3128)] = 91248, + [SMALL_STATE(3129)] = 91266, + [SMALL_STATE(3130)] = 91284, + [SMALL_STATE(3131)] = 91302, + [SMALL_STATE(3132)] = 91322, + [SMALL_STATE(3133)] = 91340, + [SMALL_STATE(3134)] = 91360, + [SMALL_STATE(3135)] = 91380, + [SMALL_STATE(3136)] = 91398, + [SMALL_STATE(3137)] = 91416, + [SMALL_STATE(3138)] = 91436, + [SMALL_STATE(3139)] = 91454, + [SMALL_STATE(3140)] = 91472, + [SMALL_STATE(3141)] = 91492, + [SMALL_STATE(3142)] = 91512, + [SMALL_STATE(3143)] = 91532, + [SMALL_STATE(3144)] = 91548, + [SMALL_STATE(3145)] = 91568, + [SMALL_STATE(3146)] = 91586, + [SMALL_STATE(3147)] = 91604, + [SMALL_STATE(3148)] = 91624, + [SMALL_STATE(3149)] = 91640, + [SMALL_STATE(3150)] = 91656, + [SMALL_STATE(3151)] = 91674, + [SMALL_STATE(3152)] = 91690, + [SMALL_STATE(3153)] = 91706, + [SMALL_STATE(3154)] = 91722, + [SMALL_STATE(3155)] = 91740, + [SMALL_STATE(3156)] = 91756, + [SMALL_STATE(3157)] = 91776, + [SMALL_STATE(3158)] = 91796, + [SMALL_STATE(3159)] = 91816, + [SMALL_STATE(3160)] = 91834, + [SMALL_STATE(3161)] = 91854, + [SMALL_STATE(3162)] = 91872, + [SMALL_STATE(3163)] = 91892, + [SMALL_STATE(3164)] = 91912, + [SMALL_STATE(3165)] = 91932, + [SMALL_STATE(3166)] = 91950, + [SMALL_STATE(3167)] = 91966, + [SMALL_STATE(3168)] = 91986, + [SMALL_STATE(3169)] = 92006, + [SMALL_STATE(3170)] = 92026, + [SMALL_STATE(3171)] = 92046, + [SMALL_STATE(3172)] = 92064, + [SMALL_STATE(3173)] = 92080, + [SMALL_STATE(3174)] = 92100, + [SMALL_STATE(3175)] = 92116, + [SMALL_STATE(3176)] = 92134, + [SMALL_STATE(3177)] = 92154, + [SMALL_STATE(3178)] = 92174, + [SMALL_STATE(3179)] = 92194, + [SMALL_STATE(3180)] = 92214, + [SMALL_STATE(3181)] = 92234, + [SMALL_STATE(3182)] = 92254, + [SMALL_STATE(3183)] = 92274, + [SMALL_STATE(3184)] = 92294, + [SMALL_STATE(3185)] = 92314, + [SMALL_STATE(3186)] = 92334, + [SMALL_STATE(3187)] = 92354, + [SMALL_STATE(3188)] = 92374, + [SMALL_STATE(3189)] = 92392, + [SMALL_STATE(3190)] = 92410, + [SMALL_STATE(3191)] = 92430, + [SMALL_STATE(3192)] = 92450, + [SMALL_STATE(3193)] = 92470, + [SMALL_STATE(3194)] = 92490, + [SMALL_STATE(3195)] = 92510, + [SMALL_STATE(3196)] = 92530, + [SMALL_STATE(3197)] = 92550, + [SMALL_STATE(3198)] = 92570, + [SMALL_STATE(3199)] = 92590, + [SMALL_STATE(3200)] = 92610, + [SMALL_STATE(3201)] = 92628, + [SMALL_STATE(3202)] = 92648, + [SMALL_STATE(3203)] = 92668, + [SMALL_STATE(3204)] = 92688, + [SMALL_STATE(3205)] = 92708, + [SMALL_STATE(3206)] = 92726, + [SMALL_STATE(3207)] = 92742, + [SMALL_STATE(3208)] = 92762, + [SMALL_STATE(3209)] = 92782, + [SMALL_STATE(3210)] = 92798, + [SMALL_STATE(3211)] = 92814, + [SMALL_STATE(3212)] = 92834, + [SMALL_STATE(3213)] = 92850, + [SMALL_STATE(3214)] = 92870, + [SMALL_STATE(3215)] = 92890, + [SMALL_STATE(3216)] = 92908, + [SMALL_STATE(3217)] = 92924, + [SMALL_STATE(3218)] = 92942, + [SMALL_STATE(3219)] = 92962, + [SMALL_STATE(3220)] = 92979, + [SMALL_STATE(3221)] = 92996, + [SMALL_STATE(3222)] = 93013, + [SMALL_STATE(3223)] = 93028, + [SMALL_STATE(3224)] = 93045, + [SMALL_STATE(3225)] = 93062, + [SMALL_STATE(3226)] = 93079, + [SMALL_STATE(3227)] = 93096, + [SMALL_STATE(3228)] = 93113, + [SMALL_STATE(3229)] = 93130, + [SMALL_STATE(3230)] = 93147, + [SMALL_STATE(3231)] = 93164, + [SMALL_STATE(3232)] = 93181, + [SMALL_STATE(3233)] = 93198, + [SMALL_STATE(3234)] = 93215, + [SMALL_STATE(3235)] = 93232, + [SMALL_STATE(3236)] = 93249, + [SMALL_STATE(3237)] = 93266, + [SMALL_STATE(3238)] = 93283, + [SMALL_STATE(3239)] = 93300, + [SMALL_STATE(3240)] = 93317, + [SMALL_STATE(3241)] = 93334, + [SMALL_STATE(3242)] = 93349, + [SMALL_STATE(3243)] = 93366, + [SMALL_STATE(3244)] = 93381, + [SMALL_STATE(3245)] = 93398, + [SMALL_STATE(3246)] = 93415, + [SMALL_STATE(3247)] = 93432, + [SMALL_STATE(3248)] = 93449, + [SMALL_STATE(3249)] = 93466, + [SMALL_STATE(3250)] = 93483, + [SMALL_STATE(3251)] = 93500, + [SMALL_STATE(3252)] = 93517, + [SMALL_STATE(3253)] = 93534, + [SMALL_STATE(3254)] = 93551, + [SMALL_STATE(3255)] = 93568, + [SMALL_STATE(3256)] = 93585, + [SMALL_STATE(3257)] = 93602, + [SMALL_STATE(3258)] = 93617, + [SMALL_STATE(3259)] = 93634, + [SMALL_STATE(3260)] = 93651, + [SMALL_STATE(3261)] = 93668, + [SMALL_STATE(3262)] = 93685, + [SMALL_STATE(3263)] = 93702, + [SMALL_STATE(3264)] = 93719, + [SMALL_STATE(3265)] = 93736, + [SMALL_STATE(3266)] = 93753, + [SMALL_STATE(3267)] = 93770, + [SMALL_STATE(3268)] = 93787, + [SMALL_STATE(3269)] = 93804, + [SMALL_STATE(3270)] = 93821, + [SMALL_STATE(3271)] = 93838, + [SMALL_STATE(3272)] = 93855, + [SMALL_STATE(3273)] = 93872, + [SMALL_STATE(3274)] = 93889, + [SMALL_STATE(3275)] = 93904, + [SMALL_STATE(3276)] = 93921, + [SMALL_STATE(3277)] = 93936, + [SMALL_STATE(3278)] = 93953, + [SMALL_STATE(3279)] = 93970, + [SMALL_STATE(3280)] = 93985, + [SMALL_STATE(3281)] = 94002, + [SMALL_STATE(3282)] = 94019, + [SMALL_STATE(3283)] = 94036, + [SMALL_STATE(3284)] = 94053, + [SMALL_STATE(3285)] = 94070, + [SMALL_STATE(3286)] = 94085, + [SMALL_STATE(3287)] = 94102, + [SMALL_STATE(3288)] = 94119, + [SMALL_STATE(3289)] = 94134, + [SMALL_STATE(3290)] = 94151, + [SMALL_STATE(3291)] = 94168, + [SMALL_STATE(3292)] = 94185, + [SMALL_STATE(3293)] = 94202, + [SMALL_STATE(3294)] = 94219, + [SMALL_STATE(3295)] = 94236, + [SMALL_STATE(3296)] = 94253, + [SMALL_STATE(3297)] = 94270, + [SMALL_STATE(3298)] = 94287, + [SMALL_STATE(3299)] = 94304, + [SMALL_STATE(3300)] = 94321, + [SMALL_STATE(3301)] = 94338, + [SMALL_STATE(3302)] = 94355, + [SMALL_STATE(3303)] = 94372, + [SMALL_STATE(3304)] = 94389, + [SMALL_STATE(3305)] = 94406, + [SMALL_STATE(3306)] = 94423, + [SMALL_STATE(3307)] = 94440, + [SMALL_STATE(3308)] = 94457, + [SMALL_STATE(3309)] = 94474, + [SMALL_STATE(3310)] = 94491, + [SMALL_STATE(3311)] = 94506, + [SMALL_STATE(3312)] = 94523, + [SMALL_STATE(3313)] = 94540, + [SMALL_STATE(3314)] = 94557, + [SMALL_STATE(3315)] = 94572, + [SMALL_STATE(3316)] = 94589, + [SMALL_STATE(3317)] = 94606, + [SMALL_STATE(3318)] = 94623, + [SMALL_STATE(3319)] = 94638, + [SMALL_STATE(3320)] = 94655, + [SMALL_STATE(3321)] = 94672, + [SMALL_STATE(3322)] = 94689, + [SMALL_STATE(3323)] = 94706, + [SMALL_STATE(3324)] = 94723, + [SMALL_STATE(3325)] = 94740, + [SMALL_STATE(3326)] = 94757, + [SMALL_STATE(3327)] = 94774, + [SMALL_STATE(3328)] = 94789, + [SMALL_STATE(3329)] = 94806, + [SMALL_STATE(3330)] = 94821, + [SMALL_STATE(3331)] = 94838, + [SMALL_STATE(3332)] = 94855, + [SMALL_STATE(3333)] = 94872, + [SMALL_STATE(3334)] = 94887, + [SMALL_STATE(3335)] = 94904, + [SMALL_STATE(3336)] = 94921, + [SMALL_STATE(3337)] = 94938, + [SMALL_STATE(3338)] = 94953, + [SMALL_STATE(3339)] = 94970, + [SMALL_STATE(3340)] = 94987, + [SMALL_STATE(3341)] = 95002, + [SMALL_STATE(3342)] = 95019, + [SMALL_STATE(3343)] = 95036, + [SMALL_STATE(3344)] = 95053, + [SMALL_STATE(3345)] = 95070, + [SMALL_STATE(3346)] = 95085, + [SMALL_STATE(3347)] = 95100, + [SMALL_STATE(3348)] = 95117, + [SMALL_STATE(3349)] = 95134, + [SMALL_STATE(3350)] = 95151, + [SMALL_STATE(3351)] = 95168, + [SMALL_STATE(3352)] = 95185, + [SMALL_STATE(3353)] = 95202, + [SMALL_STATE(3354)] = 95219, + [SMALL_STATE(3355)] = 95236, + [SMALL_STATE(3356)] = 95253, + [SMALL_STATE(3357)] = 95270, + [SMALL_STATE(3358)] = 95287, + [SMALL_STATE(3359)] = 95304, + [SMALL_STATE(3360)] = 95321, + [SMALL_STATE(3361)] = 95338, + [SMALL_STATE(3362)] = 95355, + [SMALL_STATE(3363)] = 95370, + [SMALL_STATE(3364)] = 95387, + [SMALL_STATE(3365)] = 95404, + [SMALL_STATE(3366)] = 95421, + [SMALL_STATE(3367)] = 95438, + [SMALL_STATE(3368)] = 95453, + [SMALL_STATE(3369)] = 95468, + [SMALL_STATE(3370)] = 95485, + [SMALL_STATE(3371)] = 95500, + [SMALL_STATE(3372)] = 95515, + [SMALL_STATE(3373)] = 95532, + [SMALL_STATE(3374)] = 95549, + [SMALL_STATE(3375)] = 95564, + [SMALL_STATE(3376)] = 95581, + [SMALL_STATE(3377)] = 95598, + [SMALL_STATE(3378)] = 95615, + [SMALL_STATE(3379)] = 95632, + [SMALL_STATE(3380)] = 95649, + [SMALL_STATE(3381)] = 95666, + [SMALL_STATE(3382)] = 95683, + [SMALL_STATE(3383)] = 95700, + [SMALL_STATE(3384)] = 95715, + [SMALL_STATE(3385)] = 95730, + [SMALL_STATE(3386)] = 95747, + [SMALL_STATE(3387)] = 95762, + [SMALL_STATE(3388)] = 95779, + [SMALL_STATE(3389)] = 95794, + [SMALL_STATE(3390)] = 95811, + [SMALL_STATE(3391)] = 95828, + [SMALL_STATE(3392)] = 95845, + [SMALL_STATE(3393)] = 95860, + [SMALL_STATE(3394)] = 95877, + [SMALL_STATE(3395)] = 95894, + [SMALL_STATE(3396)] = 95911, + [SMALL_STATE(3397)] = 95928, + [SMALL_STATE(3398)] = 95945, + [SMALL_STATE(3399)] = 95962, + [SMALL_STATE(3400)] = 95979, + [SMALL_STATE(3401)] = 95996, + [SMALL_STATE(3402)] = 96013, + [SMALL_STATE(3403)] = 96028, + [SMALL_STATE(3404)] = 96045, + [SMALL_STATE(3405)] = 96062, + [SMALL_STATE(3406)] = 96077, + [SMALL_STATE(3407)] = 96094, + [SMALL_STATE(3408)] = 96111, + [SMALL_STATE(3409)] = 96128, + [SMALL_STATE(3410)] = 96145, + [SMALL_STATE(3411)] = 96160, + [SMALL_STATE(3412)] = 96175, + [SMALL_STATE(3413)] = 96192, + [SMALL_STATE(3414)] = 96207, + [SMALL_STATE(3415)] = 96224, + [SMALL_STATE(3416)] = 96241, + [SMALL_STATE(3417)] = 96258, + [SMALL_STATE(3418)] = 96275, + [SMALL_STATE(3419)] = 96292, + [SMALL_STATE(3420)] = 96309, + [SMALL_STATE(3421)] = 96326, + [SMALL_STATE(3422)] = 96343, + [SMALL_STATE(3423)] = 96360, + [SMALL_STATE(3424)] = 96377, + [SMALL_STATE(3425)] = 96392, + [SMALL_STATE(3426)] = 96409, + [SMALL_STATE(3427)] = 96426, + [SMALL_STATE(3428)] = 96443, + [SMALL_STATE(3429)] = 96460, + [SMALL_STATE(3430)] = 96477, + [SMALL_STATE(3431)] = 96494, + [SMALL_STATE(3432)] = 96509, + [SMALL_STATE(3433)] = 96526, + [SMALL_STATE(3434)] = 96543, + [SMALL_STATE(3435)] = 96560, + [SMALL_STATE(3436)] = 96575, + [SMALL_STATE(3437)] = 96592, + [SMALL_STATE(3438)] = 96609, + [SMALL_STATE(3439)] = 96626, + [SMALL_STATE(3440)] = 96643, + [SMALL_STATE(3441)] = 96660, + [SMALL_STATE(3442)] = 96677, + [SMALL_STATE(3443)] = 96692, + [SMALL_STATE(3444)] = 96709, + [SMALL_STATE(3445)] = 96726, + [SMALL_STATE(3446)] = 96743, + [SMALL_STATE(3447)] = 96760, + [SMALL_STATE(3448)] = 96775, + [SMALL_STATE(3449)] = 96790, + [SMALL_STATE(3450)] = 96807, + [SMALL_STATE(3451)] = 96822, + [SMALL_STATE(3452)] = 96839, + [SMALL_STATE(3453)] = 96856, + [SMALL_STATE(3454)] = 96873, + [SMALL_STATE(3455)] = 96890, + [SMALL_STATE(3456)] = 96907, + [SMALL_STATE(3457)] = 96924, + [SMALL_STATE(3458)] = 96941, + [SMALL_STATE(3459)] = 96956, + [SMALL_STATE(3460)] = 96973, + [SMALL_STATE(3461)] = 96990, + [SMALL_STATE(3462)] = 97005, + [SMALL_STATE(3463)] = 97022, + [SMALL_STATE(3464)] = 97039, + [SMALL_STATE(3465)] = 97056, + [SMALL_STATE(3466)] = 97071, + [SMALL_STATE(3467)] = 97088, + [SMALL_STATE(3468)] = 97105, + [SMALL_STATE(3469)] = 97122, + [SMALL_STATE(3470)] = 97139, + [SMALL_STATE(3471)] = 97156, + [SMALL_STATE(3472)] = 97173, + [SMALL_STATE(3473)] = 97188, + [SMALL_STATE(3474)] = 97203, + [SMALL_STATE(3475)] = 97220, + [SMALL_STATE(3476)] = 97235, + [SMALL_STATE(3477)] = 97252, + [SMALL_STATE(3478)] = 97267, + [SMALL_STATE(3479)] = 97282, + [SMALL_STATE(3480)] = 97299, + [SMALL_STATE(3481)] = 97316, + [SMALL_STATE(3482)] = 97333, + [SMALL_STATE(3483)] = 97350, + [SMALL_STATE(3484)] = 97367, + [SMALL_STATE(3485)] = 97384, + [SMALL_STATE(3486)] = 97401, + [SMALL_STATE(3487)] = 97418, + [SMALL_STATE(3488)] = 97435, + [SMALL_STATE(3489)] = 97450, + [SMALL_STATE(3490)] = 97467, + [SMALL_STATE(3491)] = 97484, + [SMALL_STATE(3492)] = 97501, + [SMALL_STATE(3493)] = 97518, + [SMALL_STATE(3494)] = 97533, + [SMALL_STATE(3495)] = 97550, + [SMALL_STATE(3496)] = 97567, + [SMALL_STATE(3497)] = 97584, + [SMALL_STATE(3498)] = 97601, + [SMALL_STATE(3499)] = 97618, + [SMALL_STATE(3500)] = 97635, + [SMALL_STATE(3501)] = 97652, + [SMALL_STATE(3502)] = 97669, + [SMALL_STATE(3503)] = 97684, + [SMALL_STATE(3504)] = 97701, + [SMALL_STATE(3505)] = 97718, + [SMALL_STATE(3506)] = 97735, + [SMALL_STATE(3507)] = 97752, + [SMALL_STATE(3508)] = 97767, + [SMALL_STATE(3509)] = 97784, + [SMALL_STATE(3510)] = 97801, + [SMALL_STATE(3511)] = 97818, + [SMALL_STATE(3512)] = 97835, + [SMALL_STATE(3513)] = 97852, + [SMALL_STATE(3514)] = 97869, + [SMALL_STATE(3515)] = 97886, + [SMALL_STATE(3516)] = 97901, + [SMALL_STATE(3517)] = 97918, + [SMALL_STATE(3518)] = 97933, + [SMALL_STATE(3519)] = 97950, + [SMALL_STATE(3520)] = 97967, + [SMALL_STATE(3521)] = 97984, + [SMALL_STATE(3522)] = 98001, + [SMALL_STATE(3523)] = 98016, + [SMALL_STATE(3524)] = 98033, + [SMALL_STATE(3525)] = 98048, + [SMALL_STATE(3526)] = 98065, + [SMALL_STATE(3527)] = 98082, + [SMALL_STATE(3528)] = 98099, + [SMALL_STATE(3529)] = 98116, + [SMALL_STATE(3530)] = 98130, + [SMALL_STATE(3531)] = 98144, + [SMALL_STATE(3532)] = 98158, + [SMALL_STATE(3533)] = 98172, + [SMALL_STATE(3534)] = 98186, + [SMALL_STATE(3535)] = 98200, + [SMALL_STATE(3536)] = 98214, + [SMALL_STATE(3537)] = 98228, + [SMALL_STATE(3538)] = 98242, + [SMALL_STATE(3539)] = 98256, + [SMALL_STATE(3540)] = 98270, + [SMALL_STATE(3541)] = 98284, + [SMALL_STATE(3542)] = 98298, + [SMALL_STATE(3543)] = 98312, + [SMALL_STATE(3544)] = 98326, + [SMALL_STATE(3545)] = 98340, + [SMALL_STATE(3546)] = 98354, + [SMALL_STATE(3547)] = 98368, + [SMALL_STATE(3548)] = 98382, + [SMALL_STATE(3549)] = 98396, + [SMALL_STATE(3550)] = 98410, + [SMALL_STATE(3551)] = 98424, + [SMALL_STATE(3552)] = 98438, + [SMALL_STATE(3553)] = 98452, + [SMALL_STATE(3554)] = 98466, + [SMALL_STATE(3555)] = 98480, + [SMALL_STATE(3556)] = 98494, + [SMALL_STATE(3557)] = 98508, + [SMALL_STATE(3558)] = 98522, + [SMALL_STATE(3559)] = 98536, + [SMALL_STATE(3560)] = 98550, + [SMALL_STATE(3561)] = 98564, + [SMALL_STATE(3562)] = 98578, + [SMALL_STATE(3563)] = 98592, + [SMALL_STATE(3564)] = 98606, + [SMALL_STATE(3565)] = 98620, + [SMALL_STATE(3566)] = 98634, + [SMALL_STATE(3567)] = 98648, + [SMALL_STATE(3568)] = 98662, + [SMALL_STATE(3569)] = 98676, + [SMALL_STATE(3570)] = 98690, + [SMALL_STATE(3571)] = 98704, + [SMALL_STATE(3572)] = 98718, + [SMALL_STATE(3573)] = 98732, + [SMALL_STATE(3574)] = 98746, + [SMALL_STATE(3575)] = 98760, + [SMALL_STATE(3576)] = 98774, + [SMALL_STATE(3577)] = 98788, + [SMALL_STATE(3578)] = 98802, + [SMALL_STATE(3579)] = 98816, + [SMALL_STATE(3580)] = 98830, + [SMALL_STATE(3581)] = 98844, + [SMALL_STATE(3582)] = 98858, + [SMALL_STATE(3583)] = 98872, + [SMALL_STATE(3584)] = 98886, + [SMALL_STATE(3585)] = 98900, + [SMALL_STATE(3586)] = 98914, + [SMALL_STATE(3587)] = 98928, + [SMALL_STATE(3588)] = 98942, + [SMALL_STATE(3589)] = 98956, + [SMALL_STATE(3590)] = 98970, + [SMALL_STATE(3591)] = 98984, + [SMALL_STATE(3592)] = 98998, + [SMALL_STATE(3593)] = 99012, + [SMALL_STATE(3594)] = 99026, + [SMALL_STATE(3595)] = 99040, + [SMALL_STATE(3596)] = 99054, + [SMALL_STATE(3597)] = 99068, + [SMALL_STATE(3598)] = 99082, + [SMALL_STATE(3599)] = 99096, + [SMALL_STATE(3600)] = 99110, + [SMALL_STATE(3601)] = 99124, + [SMALL_STATE(3602)] = 99138, + [SMALL_STATE(3603)] = 99152, + [SMALL_STATE(3604)] = 99166, + [SMALL_STATE(3605)] = 99180, + [SMALL_STATE(3606)] = 99194, + [SMALL_STATE(3607)] = 99208, + [SMALL_STATE(3608)] = 99222, + [SMALL_STATE(3609)] = 99236, + [SMALL_STATE(3610)] = 99250, + [SMALL_STATE(3611)] = 99264, + [SMALL_STATE(3612)] = 99278, + [SMALL_STATE(3613)] = 99292, + [SMALL_STATE(3614)] = 99306, + [SMALL_STATE(3615)] = 99320, + [SMALL_STATE(3616)] = 99334, + [SMALL_STATE(3617)] = 99348, + [SMALL_STATE(3618)] = 99362, + [SMALL_STATE(3619)] = 99376, + [SMALL_STATE(3620)] = 99390, + [SMALL_STATE(3621)] = 99404, + [SMALL_STATE(3622)] = 99418, + [SMALL_STATE(3623)] = 99432, + [SMALL_STATE(3624)] = 99446, + [SMALL_STATE(3625)] = 99460, + [SMALL_STATE(3626)] = 99474, + [SMALL_STATE(3627)] = 99488, + [SMALL_STATE(3628)] = 99502, + [SMALL_STATE(3629)] = 99516, + [SMALL_STATE(3630)] = 99530, + [SMALL_STATE(3631)] = 99544, + [SMALL_STATE(3632)] = 99558, + [SMALL_STATE(3633)] = 99572, + [SMALL_STATE(3634)] = 99586, + [SMALL_STATE(3635)] = 99600, + [SMALL_STATE(3636)] = 99614, + [SMALL_STATE(3637)] = 99628, + [SMALL_STATE(3638)] = 99642, + [SMALL_STATE(3639)] = 99656, + [SMALL_STATE(3640)] = 99670, + [SMALL_STATE(3641)] = 99684, + [SMALL_STATE(3642)] = 99698, + [SMALL_STATE(3643)] = 99712, + [SMALL_STATE(3644)] = 99726, + [SMALL_STATE(3645)] = 99740, + [SMALL_STATE(3646)] = 99754, + [SMALL_STATE(3647)] = 99768, + [SMALL_STATE(3648)] = 99782, + [SMALL_STATE(3649)] = 99796, + [SMALL_STATE(3650)] = 99810, + [SMALL_STATE(3651)] = 99824, + [SMALL_STATE(3652)] = 99838, + [SMALL_STATE(3653)] = 99852, + [SMALL_STATE(3654)] = 99866, + [SMALL_STATE(3655)] = 99880, + [SMALL_STATE(3656)] = 99894, + [SMALL_STATE(3657)] = 99908, + [SMALL_STATE(3658)] = 99922, + [SMALL_STATE(3659)] = 99936, + [SMALL_STATE(3660)] = 99950, + [SMALL_STATE(3661)] = 99964, + [SMALL_STATE(3662)] = 99978, + [SMALL_STATE(3663)] = 99992, + [SMALL_STATE(3664)] = 100006, + [SMALL_STATE(3665)] = 100020, + [SMALL_STATE(3666)] = 100034, + [SMALL_STATE(3667)] = 100048, + [SMALL_STATE(3668)] = 100062, + [SMALL_STATE(3669)] = 100076, + [SMALL_STATE(3670)] = 100090, + [SMALL_STATE(3671)] = 100104, + [SMALL_STATE(3672)] = 100118, + [SMALL_STATE(3673)] = 100132, + [SMALL_STATE(3674)] = 100146, + [SMALL_STATE(3675)] = 100160, + [SMALL_STATE(3676)] = 100174, + [SMALL_STATE(3677)] = 100188, + [SMALL_STATE(3678)] = 100202, + [SMALL_STATE(3679)] = 100216, + [SMALL_STATE(3680)] = 100230, + [SMALL_STATE(3681)] = 100244, + [SMALL_STATE(3682)] = 100258, + [SMALL_STATE(3683)] = 100272, + [SMALL_STATE(3684)] = 100286, + [SMALL_STATE(3685)] = 100300, + [SMALL_STATE(3686)] = 100314, + [SMALL_STATE(3687)] = 100328, + [SMALL_STATE(3688)] = 100342, + [SMALL_STATE(3689)] = 100356, + [SMALL_STATE(3690)] = 100370, + [SMALL_STATE(3691)] = 100384, + [SMALL_STATE(3692)] = 100398, + [SMALL_STATE(3693)] = 100412, + [SMALL_STATE(3694)] = 100426, + [SMALL_STATE(3695)] = 100440, + [SMALL_STATE(3696)] = 100454, + [SMALL_STATE(3697)] = 100468, + [SMALL_STATE(3698)] = 100482, + [SMALL_STATE(3699)] = 100496, + [SMALL_STATE(3700)] = 100510, + [SMALL_STATE(3701)] = 100524, + [SMALL_STATE(3702)] = 100538, + [SMALL_STATE(3703)] = 100552, + [SMALL_STATE(3704)] = 100566, + [SMALL_STATE(3705)] = 100580, + [SMALL_STATE(3706)] = 100594, + [SMALL_STATE(3707)] = 100608, + [SMALL_STATE(3708)] = 100622, + [SMALL_STATE(3709)] = 100636, + [SMALL_STATE(3710)] = 100650, + [SMALL_STATE(3711)] = 100664, + [SMALL_STATE(3712)] = 100678, + [SMALL_STATE(3713)] = 100692, + [SMALL_STATE(3714)] = 100706, + [SMALL_STATE(3715)] = 100720, + [SMALL_STATE(3716)] = 100734, + [SMALL_STATE(3717)] = 100748, + [SMALL_STATE(3718)] = 100762, + [SMALL_STATE(3719)] = 100776, + [SMALL_STATE(3720)] = 100790, + [SMALL_STATE(3721)] = 100804, + [SMALL_STATE(3722)] = 100818, + [SMALL_STATE(3723)] = 100832, + [SMALL_STATE(3724)] = 100846, + [SMALL_STATE(3725)] = 100860, + [SMALL_STATE(3726)] = 100874, + [SMALL_STATE(3727)] = 100888, + [SMALL_STATE(3728)] = 100902, + [SMALL_STATE(3729)] = 100916, + [SMALL_STATE(3730)] = 100930, + [SMALL_STATE(3731)] = 100944, + [SMALL_STATE(3732)] = 100958, + [SMALL_STATE(3733)] = 100972, + [SMALL_STATE(3734)] = 100986, + [SMALL_STATE(3735)] = 101000, + [SMALL_STATE(3736)] = 101014, + [SMALL_STATE(3737)] = 101028, + [SMALL_STATE(3738)] = 101042, + [SMALL_STATE(3739)] = 101056, + [SMALL_STATE(3740)] = 101070, + [SMALL_STATE(3741)] = 101084, + [SMALL_STATE(3742)] = 101098, + [SMALL_STATE(3743)] = 101112, + [SMALL_STATE(3744)] = 101126, + [SMALL_STATE(3745)] = 101140, + [SMALL_STATE(3746)] = 101154, + [SMALL_STATE(3747)] = 101168, + [SMALL_STATE(3748)] = 101182, + [SMALL_STATE(3749)] = 101196, + [SMALL_STATE(3750)] = 101210, + [SMALL_STATE(3751)] = 101224, + [SMALL_STATE(3752)] = 101238, + [SMALL_STATE(3753)] = 101252, + [SMALL_STATE(3754)] = 101266, + [SMALL_STATE(3755)] = 101280, + [SMALL_STATE(3756)] = 101294, + [SMALL_STATE(3757)] = 101308, + [SMALL_STATE(3758)] = 101322, + [SMALL_STATE(3759)] = 101336, + [SMALL_STATE(3760)] = 101350, + [SMALL_STATE(3761)] = 101364, + [SMALL_STATE(3762)] = 101378, + [SMALL_STATE(3763)] = 101392, + [SMALL_STATE(3764)] = 101406, + [SMALL_STATE(3765)] = 101420, + [SMALL_STATE(3766)] = 101434, + [SMALL_STATE(3767)] = 101448, + [SMALL_STATE(3768)] = 101462, + [SMALL_STATE(3769)] = 101476, + [SMALL_STATE(3770)] = 101490, + [SMALL_STATE(3771)] = 101504, + [SMALL_STATE(3772)] = 101518, + [SMALL_STATE(3773)] = 101532, + [SMALL_STATE(3774)] = 101546, + [SMALL_STATE(3775)] = 101560, + [SMALL_STATE(3776)] = 101574, + [SMALL_STATE(3777)] = 101588, + [SMALL_STATE(3778)] = 101602, + [SMALL_STATE(3779)] = 101616, + [SMALL_STATE(3780)] = 101630, + [SMALL_STATE(3781)] = 101644, + [SMALL_STATE(3782)] = 101658, + [SMALL_STATE(3783)] = 101672, + [SMALL_STATE(3784)] = 101686, + [SMALL_STATE(3785)] = 101700, + [SMALL_STATE(3786)] = 101714, + [SMALL_STATE(3787)] = 101728, + [SMALL_STATE(3788)] = 101742, + [SMALL_STATE(3789)] = 101756, + [SMALL_STATE(3790)] = 101770, + [SMALL_STATE(3791)] = 101784, + [SMALL_STATE(3792)] = 101798, + [SMALL_STATE(3793)] = 101812, + [SMALL_STATE(3794)] = 101826, + [SMALL_STATE(3795)] = 101840, + [SMALL_STATE(3796)] = 101854, + [SMALL_STATE(3797)] = 101868, + [SMALL_STATE(3798)] = 101882, + [SMALL_STATE(3799)] = 101896, + [SMALL_STATE(3800)] = 101910, + [SMALL_STATE(3801)] = 101924, + [SMALL_STATE(3802)] = 101938, + [SMALL_STATE(3803)] = 101952, + [SMALL_STATE(3804)] = 101966, + [SMALL_STATE(3805)] = 101980, + [SMALL_STATE(3806)] = 101994, + [SMALL_STATE(3807)] = 102008, + [SMALL_STATE(3808)] = 102022, + [SMALL_STATE(3809)] = 102036, + [SMALL_STATE(3810)] = 102050, + [SMALL_STATE(3811)] = 102064, + [SMALL_STATE(3812)] = 102078, + [SMALL_STATE(3813)] = 102092, + [SMALL_STATE(3814)] = 102106, + [SMALL_STATE(3815)] = 102120, + [SMALL_STATE(3816)] = 102134, + [SMALL_STATE(3817)] = 102148, + [SMALL_STATE(3818)] = 102162, + [SMALL_STATE(3819)] = 102176, + [SMALL_STATE(3820)] = 102190, + [SMALL_STATE(3821)] = 102204, + [SMALL_STATE(3822)] = 102218, + [SMALL_STATE(3823)] = 102232, + [SMALL_STATE(3824)] = 102246, + [SMALL_STATE(3825)] = 102260, + [SMALL_STATE(3826)] = 102274, + [SMALL_STATE(3827)] = 102288, + [SMALL_STATE(3828)] = 102302, + [SMALL_STATE(3829)] = 102316, + [SMALL_STATE(3830)] = 102330, + [SMALL_STATE(3831)] = 102344, + [SMALL_STATE(3832)] = 102358, + [SMALL_STATE(3833)] = 102372, + [SMALL_STATE(3834)] = 102386, + [SMALL_STATE(3835)] = 102400, + [SMALL_STATE(3836)] = 102414, + [SMALL_STATE(3837)] = 102428, + [SMALL_STATE(3838)] = 102442, + [SMALL_STATE(3839)] = 102456, + [SMALL_STATE(3840)] = 102470, + [SMALL_STATE(3841)] = 102484, + [SMALL_STATE(3842)] = 102498, + [SMALL_STATE(3843)] = 102512, + [SMALL_STATE(3844)] = 102526, + [SMALL_STATE(3845)] = 102540, + [SMALL_STATE(3846)] = 102554, + [SMALL_STATE(3847)] = 102568, + [SMALL_STATE(3848)] = 102582, + [SMALL_STATE(3849)] = 102596, + [SMALL_STATE(3850)] = 102610, + [SMALL_STATE(3851)] = 102624, + [SMALL_STATE(3852)] = 102638, + [SMALL_STATE(3853)] = 102652, + [SMALL_STATE(3854)] = 102666, + [SMALL_STATE(3855)] = 102670, + [SMALL_STATE(3856)] = 102674, + [SMALL_STATE(3857)] = 102678, + [SMALL_STATE(3858)] = 102682, + [SMALL_STATE(3859)] = 102686, + [SMALL_STATE(3860)] = 102690, }; 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(2376), - [5] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2599), + [3] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2392), + [5] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2623), [7] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 0, 0, 0), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1569), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2727), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1557), - [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3259), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3262), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3500), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2117), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1591), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2843), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1570), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3528), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3445), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3675), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2113), [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(36), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2174), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1251), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1104), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3600), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3457), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(824), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1148), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(885), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(823), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2822), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(358), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3542), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2034), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(40), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2349), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3497), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3795), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3499), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1596), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2125), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1961), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2171), - [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(37), - [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3223), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2641), - [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), - [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2728), - [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1500), - [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2376), - [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2599), - [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1556), - [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3802), - [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2089), - [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), - [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3737), - [119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1, 0, 0), - [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3262), - [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 2, 0, 0), - [129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), - [131] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1569), - [134] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(523), - [137] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2727), - [140] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(184), - [143] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(134), - [146] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(5), - [149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(301), - [152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1557), - [155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(225), - [158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(818), - [161] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(870), - [164] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(38), - [167] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3259), - [170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3262), - [173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3500), - [176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2117), - [179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(36), - [182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2174), - [185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1251), - [188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1104), - [191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3600), - [194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3457), - [197] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(824), - [200] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1148), - [203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(178), - [206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(885), - [209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(823), - [212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2822), - [215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(358), - [218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3542), - [221] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2034), - [224] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(40), - [227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2349), - [230] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3497), - [233] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3795), - [236] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3499), - [239] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1596), - [242] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2125), - [245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1961), - [248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(152), - [251] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2171), - [254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(37), - [257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3223), - [260] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2641), - [263] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1545), - [266] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2728), - [269] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1500), - [272] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1556), - [275] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3802), - [278] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2089), - [281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1556), - [284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3737), - [287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), - [293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), - [295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), - [297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), - [299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), - [301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), - [303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), - [305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), - [307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), - [317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), - [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), - [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), - [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), - [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), - [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), - [337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), - [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1108), - [341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 2, 0, 0), - [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2715), - [347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 2, 0, 0), - [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), - [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2398), - [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2784), - [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1501), - [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(849), - [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1070), - [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), - [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2763), - [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(361), - [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2643), - [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2693), - [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), - [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2768), - [375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 1, 0, 0), - [377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 1, 0, 0), - [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3644), - [381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 1, 0, 0), - [383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 1, 0, 0), - [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(225), - [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(818), - [389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(870), - [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(41), - [393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 1, 0, 0), - [395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 1, 0, 0), - [397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 2, 0, 0), - [399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 2, 0, 0), - [401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 1, 0, 0), - [403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 1, 0, 0), - [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1597), - [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2820), - [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1677), - [413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), - [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3432), - [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2360), - [419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(44), - [421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2652), - [423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1651), - [425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1622), - [427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(822), - [429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1487), - [431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), - [433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2873), - [435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(388), - [437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(46), - [439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2653), - [441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2654), - [443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), - [445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(47), - [447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3271), - [449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2874), - [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), - [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2673), - [455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1853), - [457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1704), - [459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3628), - [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), - [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3690), - [465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3676), - [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), - [473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(49), - [475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1595), - [477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1645), - [479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), - [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3301), - [483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2401), - [485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60), - [487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1638), - [489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1605), - [491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1559), - [493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(61), - [495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2805), - [497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(62), - [499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3307), - [501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1646), - [503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3729), - [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), - [507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), - [509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2388), - [511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(63), - [513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1558), - [515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(65), - [517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2646), - [519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66), - [521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3447), - [523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), - [525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(55), - [527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(227), - [529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(56), - [531] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(154), - [534] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(197), - [537] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(72), - [540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), - [542] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(73), - [545] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(74), - [548] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(197), - [551] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(3581), - [554] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(183), - [557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(2650), - [560] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(169), - [563] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(155), - [566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(3684), - [569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(187), - [572] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(197), - [575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(99), - [578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), - [580] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(100), - [583] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(101), - [586] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(197), - [589] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(3543), - [592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(183), - [595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(2650), - [598] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(169), - [601] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(187), - [604] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(3684), - [607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), - [609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2733), - [615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), - [621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3581), - [623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2650), - [627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), - [629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3684), - [633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3784), - [635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2734), - [637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3703), - [643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(210), - [646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(198), - [649] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(111), - [652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), - [654] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(112), - [657] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(113), - [660] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(198), - [663] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(210), - [666] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(202), - [669] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(2642), - [672] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(203), - [675] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(3625), - [678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), - [680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), - [688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(198), - [692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2642), - [698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), - [700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3625), - [702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), - [704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2773), - [708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3543), - [714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2757), - [718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), - [724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), - [726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), - [732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2746), - [734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), - [736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2738), - [742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), - [746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), - [748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), - [750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3550), - [752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3574), - [754] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1108), - [757] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(184), - [760] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(134), - [763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), - [765] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(10), - [768] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(301), - [771] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1557), - [774] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(225), - [777] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(818), - [780] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(870), - [783] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(38), - [786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3259), - [789] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3574), - [792] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3500), - [795] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2398), - [798] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(36), - [801] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2784), - [804] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1251), - [807] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1501), - [810] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(849), - [813] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1070), - [816] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(188), - [819] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2763), - [822] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(361), - [825] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(40), - [828] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2643), - [831] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2693), - [834] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(189), - [837] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(37), - [840] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3223), - [843] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2768), - [846] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1545), - [849] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2728), - [852] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1500), - [855] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1556), - [858] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3802), - [861] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1556), - [864] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3737), - [867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), - [869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3759), - [871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), - [873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3586), - [875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), - [877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3745), - [879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), - [881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3545), - [883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__token_pattern, 1, 0, 0), - [885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__token_pattern, 1, 0, 0), - [887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), - [889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3717), - [891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), - [893] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(197), - [896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), - [898] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(197), - [901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 1, 0, 0), - [903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 1, 0, 0), - [905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), - [907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(826), - [915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__non_delim_token, 1, 0, 0), - [917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__non_delim_token, 1, 0, 0), - [919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 4, 0, 0), - [921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 4, 0, 0), - [923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 6, 0, 0), - [925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 6, 0, 0), - [927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 4, 0, 0), - [929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 4, 0, 0), - [931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), - [933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), - [935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2039), - [937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 1, 0, 0), - [939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 1, 0, 0), - [941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), - [943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 5, 0, 0), - [945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 5, 0, 0), - [947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 6, 0, 0), - [949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 6, 0, 0), - [951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2, 0, 0), - [953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2, 0, 0), - [955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_string_literal, 3, 0, 0), - [957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_string_literal, 3, 0, 0), - [959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), - [961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 5, 0, 0), - [963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 5, 0, 0), - [965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), - [967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), - [969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), - [971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), - [973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), - [975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_literal, 1, 0, 0), - [977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_literal, 1, 0, 0), - [979] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(198), - [982] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(198), - [985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 2, 0, 0), - [987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 2, 0, 0), - [989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(827), - [997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), - [999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 3, 0, 0), - [1001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 3, 0, 0), - [1003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 2, 0, 0), - [1005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 2, 0, 0), - [1007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 3, 0, 0), - [1009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 3, 0, 0), - [1011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), - [1013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3, 0, 0), - [1015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3, 0, 0), - [1017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), - [1019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), - [1021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal, 1, 0, 0), - [1023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal, 1, 0, 0), - [1025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), - [1027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fragment_specifier, 1, 0, 0), - [1029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fragment_specifier, 1, 0, 0), - [1031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_binding_pattern, 3, 0, 209), - [1033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_binding_pattern, 3, 0, 209), - [1035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), - [1037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 1, 0, 0), - [1039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 1, 0, 0), - [1041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__delim_tokens, 1, 0, 0), - [1043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__delim_tokens, 1, 0, 0), - [1045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delim_token_tree, 3, 0, 0), - [1047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delim_token_tree, 3, 0, 0), - [1049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 1, 0, 0), - [1051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 1, 0, 0), - [1053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delim_token_tree, 2, 0, 0), - [1055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delim_token_tree, 2, 0, 0), - [1057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [1059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [1061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1474), - [1063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [1065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [1067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [1069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274), - [1071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3243), - [1073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1483), - [1075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [1077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1533), - [1079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [1081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [1083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1784), - [1085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [1087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), - [1089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), - [1091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3342), - [1093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [1095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(335), - [1097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3279), - [1099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), - [1101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3470), - [1103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2051), - [1105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [1107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), - [1109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [1111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3446), - [1113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), - [1115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2259), - [1117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3426), - [1119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2073), - [1121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [1123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [1125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2526), - [1127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1068), - [1129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3264), - [1131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), - [1133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3783), - [1135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3312), - [1137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3768), - [1139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3554), - [1141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2461), - [1143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2228), - [1145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2025), - [1147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3481), - [1149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3616), - [1151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2140), - [1153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1056), - [1155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3632), - [1157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2296), - [1159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(839), - [1161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1428), - [1163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(814), - [1165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), - [1167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2772), - [1169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2094), - [1171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2357), - [1173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2806), - [1175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), - [1177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3693), - [1179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), - [1181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2037), - [1183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [1185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), - [1187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2274), - [1189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [1191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2536), - [1193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3630), - [1195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3287), - [1197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2054), - [1199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2268), - [1201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2356), - [1203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2704), - [1205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2359), - [1207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), - [1209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3546), - [1211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1492), - [1213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [1215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), - [1217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2597), - [1219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3771), - [1221] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1108), - [1224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(184), - [1227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), - [1229] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(134), - [1232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(10), - [1235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(301), - [1238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1557), - [1241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(225), - [1244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(818), - [1247] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(870), - [1250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(38), - [1253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3259), - [1256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3500), - [1259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2398), - [1262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(36), - [1265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2784), - [1268] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1251), - [1271] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1501), - [1274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(849), - [1277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1070), - [1280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(188), - [1283] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2763), - [1286] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(361), - [1289] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(40), - [1292] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2643), - [1295] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2693), - [1298] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(189), - [1301] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(37), - [1304] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3223), - [1307] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2768), - [1310] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1545), - [1313] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2728), - [1316] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1500), - [1319] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1556), - [1322] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3802), - [1325] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1556), - [1328] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3737), - [1331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), - [1333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), - [1335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2566), - [1337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3579), - [1339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1719), - [1341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), - [1343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1758), - [1345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), - [1347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), - [1349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), - [1351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), - [1353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3683), - [1355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), - [1357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1920), - [1359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [1361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), - [1363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2745), - [1365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), - [1367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), - [1369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), - [1371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), - [1373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), - [1375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), - [1377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), - [1379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), - [1381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [1383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [1385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2347), - [1387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2618), - [1389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(851), - [1391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1283), - [1393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), - [1395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2630), - [1397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(380), - [1399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2809), - [1401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), - [1403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2639), - [1405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 3, 0, 35), - [1407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 3, 0, 35), - [1409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2500), - [1411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2572), - [1413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [1415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [1417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2221), - [1419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3617), - [1421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2243), - [1423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2619), - [1425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(831), - [1427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3240), - [1429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2544), - [1431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2588), - [1433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 5, 0, 0), - [1435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 5, 0, 0), - [1437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), - [1439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), - [1441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 6, 0, 0), - [1443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 6, 0, 0), - [1445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), - [1447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3, 0, 0), - [1449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 4, 0, 0), - [1451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 4, 0, 0), - [1453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1, 0, 0), - [1455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1, 0, 0), - [1457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_except_range, 1, 0, 0), - [1459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_except_range, 1, 0, 0), - [1461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2560), - [1463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 5, 0, 126), - [1465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 5, 0, 126), - [1467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, 0, 45), - [1469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, 0, 45), - [1471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 3, 0, 40), - [1473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 3, 0, 40), - [1475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2, 0, 0), - [1477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, 0, 0), - [1479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2769), - [1481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 4, 0, 0), - [1483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 4, 0, 0), - [1485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 4, 0, 84), - [1487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 4, 0, 84), - [1489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 2, 0, 0), - [1491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 2, 0, 0), - [1493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async_block, 2, 0, 0), - [1495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async_block, 2, 0, 0), - [1497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 4, 0, 105), - [1499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 4, 0, 105), - [1501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_block, 2, 0, 8), - [1503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_block, 2, 0, 8), - [1505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async_block, 3, 0, 0), - [1507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async_block, 3, 0, 0), - [1509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gen_block, 2, 0, 0), - [1511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gen_block, 2, 0, 0), - [1513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 2, 0, 8), - [1515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 2, 0, 8), - [1517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 3, 0, 0), - [1519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 3, 0, 0), - [1521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unsafe_block, 2, 0, 0), - [1523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unsafe_block, 2, 0, 0), - [1525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2591), - [1527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gen_block, 3, 0, 0), - [1529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gen_block, 3, 0, 0), - [1531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, 0, 33), - [1533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, 0, 33), - [1535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), - [1537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), - [1539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 7, 0, 256), - [1541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 7, 0, 256), - [1543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 3, 0, 44), - [1545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 3, 0, 44), - [1547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_block, 2, 0, 0), - [1549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_block, 2, 0, 0), - [1551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 5, 0, 154), - [1553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 5, 0, 154), - [1555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2539), - [1557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2043), - [1559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [1561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), - [1563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2271), - [1565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [1567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3597), - [1569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3315), - [1571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2036), - [1573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2226), - [1575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2817), - [1577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2377), - [1579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(433), - [1581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2453), - [1583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [1585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), - [1587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2459), - [1589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2452), - [1591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(435), - [1593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434), - [1595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2451), - [1597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), - [1599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_label, 2, 0, 0), - [1601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label, 2, 0, 0), - [1603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 3, 0, 0), - [1605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 3, 0, 0), - [1607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 2, 0, 0), - [1609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 2, 0, 0), - [1611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2133), - [1613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [1615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [1617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [1619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3265), - [1621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [1623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2053), - [1625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [1627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), - [1629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3348), - [1631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3515), - [1633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2206), - [1635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3406), - [1637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2789), - [1639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(934), - [1641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1212), - [1643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3039), - [1645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3752), - [1647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), - [1649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), - [1651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), - [1653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), - [1655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), - [1657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2601), - [1659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), - [1661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), - [1663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2598), - [1665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2584), - [1667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), - [1669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), - [1671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2116), - [1673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [1675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [1677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [1679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2343), - [1681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3347), - [1683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [1685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [1687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2883), - [1689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1257), - [1691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), - [1693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3300), - [1695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3475), - [1697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2644), - [1699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2199), - [1701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(848), - [1703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(835), - [1705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), - [1707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2876), - [1709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2464), - [1711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2829), - [1713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2829), - [1715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3663), - [1717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), - [1719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2448), - [1721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), - [1723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [1725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2000), - [1727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [1729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3054), - [1731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [1733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2095), - [1735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [1737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3589), - [1739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3241), - [1741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2896), - [1743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2781), - [1745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2022), - [1747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2647), - [1749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2647), - [1751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2225), - [1753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 127), - [1755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 127), - [1757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 0, 184), - [1759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 0, 184), - [1761] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2116), - [1764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(475), - [1767] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(804), - [1770] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2343), - [1773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3347), - [1776] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(832), - [1779] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(833), - [1782] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(870), - [1785] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2883), - [1788] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1257), - [1791] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1562), - [1794] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3300), - [1797] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3475), - [1800] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2644), - [1803] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2199), - [1806] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(848), - [1809] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(835), - [1812] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2408), - [1815] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2876), - [1818] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2464), - [1821] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2829), - [1824] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2829), - [1827] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3663), - [1830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2927), - [1832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), - [1834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), - [1836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), - [1838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 275), - [1840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 275), - [1842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 8, 0, 279), - [1844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 8, 0, 279), - [1846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 8, 0, 280), - [1848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 8, 0, 280), - [1850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 253), - [1852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 253), - [1854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 281), - [1856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 281), - [1858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 282), - [1860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 282), - [1862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 283), - [1864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 283), - [1866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 95), - [1868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 95), - [1870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 4, 0, 100), - [1872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 4, 0, 100), - [1874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 9, 0, 284), - [1876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 9, 0, 284), - [1878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 9, 0, 285), - [1880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 9, 0, 285), - [1882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 269), - [1884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 269), - [1886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 286), - [1888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 286), - [1890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 271), - [1892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 271), - [1894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 287), - [1896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 287), - [1898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, 0, 275), - [1900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, 0, 275), - [1902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, 0, 288), - [1904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, 0, 288), - [1906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 9, 0, 279), - [1908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 9, 0, 279), - [1910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, 0, 289), - [1912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, 0, 289), - [1914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, 0, 290), - [1916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, 0, 290), - [1918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1, 0, 0), - [1920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1, 0, 0), - [1922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, 0, 291), - [1924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, 0, 291), - [1926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, 0, 34), - [1928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, 0, 34), - [1930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 10, 0, 292), - [1932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 10, 0, 292), - [1934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 10, 0, 293), - [1936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 10, 0, 293), - [1938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 10, 0, 289), - [1940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 10, 0, 289), - [1942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 10, 0, 294), - [1944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 10, 0, 294), - [1946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3, 0, 0), - [1948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3, 0, 0), - [1950] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3325), - [1953] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1247), - [1956] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2826), - [1959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), - [1961] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3609), - [1964] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(870), - [1967] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3220), - [1970] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3443), - [1973] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2461), - [1976] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2373), - [1979] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2284), - [1982] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3705), - [1985] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3444), - [1988] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3298), - [1991] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(884), - [1994] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(825), - [1997] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3716), - [2000] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2034), - [2003] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3099), - [2006] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3719), - [2009] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3721), - [2012] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3723), - [2015] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3100), - [2018] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2310), - [2021] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1949), - [2024] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2176), - [2027] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3732), - [2030] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2070), - [2033] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3732), - [2036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, 0, 95), - [2038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, 0, 95), - [2040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, 0, 100), - [2042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, 0, 100), - [2044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, 0, 101), - [2046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, 0, 101), - [2048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 102), - [2050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 102), - [2052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 95), - [2054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 95), - [2056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, 0, 95), - [2058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, 0, 95), - [2060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 4, 0, 103), - [2062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 4, 0, 103), - [2064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 3, 0, 34), - [2066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 3, 0, 34), - [2068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 3, 0, 7), - [2070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 3, 0, 7), - [2072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 3, 0, 34), - [2074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 3, 0, 34), - [2076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 3, 0, 43), - [2078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 3, 0, 43), - [2080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 5, 0, 60), - [2082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 5, 0, 60), - [2084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2, 0, 0), - [2086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2, 0, 0), - [2088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3325), - [2090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), - [2092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2826), - [2094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [2096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3609), - [2098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3220), - [2100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3443), - [2102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2373), - [2104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2284), - [2106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3705), - [2108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3444), - [2110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3298), - [2112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(884), - [2114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), - [2116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3716), - [2118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3099), - [2120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3719), - [2122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3721), - [2124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3723), - [2126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3100), - [2128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2310), - [2130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1949), - [2132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2176), - [2134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3732), - [2136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2070), - [2138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3732), - [2140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 5, 0, 6), - [2142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 5, 0, 6), - [2144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3, 0, 0), - [2146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3, 0, 0), - [2148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3, 0, 50), - [2150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3, 0, 50), - [2152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2, 0, 0), - [2154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2, 0, 0), - [2156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [2158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2, 0, 8), - [2160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2, 0, 8), - [2162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 4, 0, 60), - [2164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 4, 0, 60), - [2166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inner_attribute_item, 5, 0, 0), - [2168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inner_attribute_item, 5, 0, 0), - [2170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 5, 0, 119), - [2172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 5, 0, 119), - [2174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 4, 0, 6), - [2176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 4, 0, 6), - [2178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 3, 0, 0), - [2180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 3, 0, 0), - [2182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, 0, 122), - [2184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, 0, 122), - [2186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, 0, 123), - [2188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, 0, 123), - [2190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, 0, 124), - [2192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, 0, 124), - [2194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, 0, 82), - [2196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, 0, 82), - [2198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, 0, 125), - [2200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, 0, 125), - [2202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), - [2204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), - [2206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 129), - [2208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 129), - [2210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 130), - [2212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 130), - [2214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 87), - [2216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 87), - [2218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 131), - [2220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 131), - [2222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 132), - [2224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 132), - [2226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 133), - [2228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 133), - [2230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, 0, 107), - [2232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, 0, 107), - [2234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, 0, 127), - [2236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, 0, 127), - [2238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, 0, 134), - [2240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, 0, 134), - [2242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 5, 0, 119), - [2244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 5, 0, 119), - [2246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1, 0, 0), - [2248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1, 0, 0), - [2250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3, 0, 0), - [2252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3, 0, 0), - [2254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 34), - [2256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 34), - [2258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 81), - [2260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 81), - [2262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 122), - [2264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 122), - [2266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 137), - [2268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 137), - [2270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 122), - [2272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 122), - [2274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 138), - [2276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 138), - [2278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 5, 0, 139), - [2280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 5, 0, 139), - [2282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 5, 0, 93), - [2284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 5, 0, 93), - [2286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 5, 0, 91), - [2288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 5, 0, 91), - [2290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 5, 0, 140), - [2292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 5, 0, 140), - [2294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, 0, 122), - [2296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, 0, 122), - [2298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 141), - [2300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 141), - [2302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 142), - [2304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 142), - [2306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 72), - [2308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 72), - [2310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 143), - [2312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 143), - [2314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 144), - [2316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 144), - [2318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 145), - [2320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 145), - [2322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 146), - [2324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 146), - [2326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, 0, 149), - [2328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, 0, 149), - [2330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, 0, 150), - [2332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, 0, 150), - [2334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, 0, 144), - [2336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, 0, 144), - [2338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, 0, 146), - [2340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, 0, 146), - [2342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 95), - [2344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 95), - [2346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 144), - [2348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 144), - [2350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 151), - [2352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 151), - [2354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 146), - [2356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 146), - [2358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, 0, 144), - [2360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, 0, 144), - [2362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, 0, 146), - [2364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, 0, 146), - [2366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 152), - [2368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 152), - [2370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 5, 0, 153), - [2372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 5, 0, 153), - [2374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 3, 0, 34), - [2376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 3, 0, 34), - [2378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_item, 4, 0, 0), - [2380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_item, 4, 0, 0), - [2382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 6, 0, 60), - [2384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 6, 0, 60), - [2386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 6, 0, 6), - [2388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 6, 0, 6), - [2390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, 0, 26), - [2392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, 0, 26), - [2394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, 0, 38), - [2396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, 0, 38), - [2398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 3, 0, 39), - [2400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 3, 0, 39), - [2402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 2, 0, 0), - [2404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 2, 0, 0), - [2406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, 0, 80), - [2408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, 0, 80), - [2410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 4, 0, 0), - [2412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 4, 0, 0), - [2414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, 0, 81), - [2416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, 0, 81), - [2418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 123), - [2420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 123), - [2422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 167), - [2424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 167), - [2426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 168), - [2428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 168), - [2430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 169), - [2432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 169), - [2434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 170), - [2436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 170), - [2438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 171), - [2440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 171), - [2442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 172), - [2444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 172), - [2446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 173), - [2448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 173), - [2450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 129), - [2452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 129), - [2454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 175), - [2456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 175), - [2458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 176), - [2460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 176), - [2462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 177), - [2464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 177), - [2466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 178), - [2468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 178), - [2470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 179), - [2472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 179), - [2474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 132), - [2476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 132), - [2478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 180), - [2480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 180), - [2482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, 0, 181), - [2484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, 0, 181), - [2486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 4, 0, 82), - [2488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 4, 0, 82), - [2490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, 0, 182), - [2492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, 0, 182), - [2494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, 0, 183), - [2496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, 0, 183), - [2498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 4, 0, 83), - [2500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 4, 0, 83), - [2502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [2504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 6, 0, 186), - [2506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 6, 0, 186), - [2508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 87), - [2510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 87), - [2512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 4, 0, 0), - [2514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 4, 0, 0), - [2516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, 0, 81), - [2518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, 0, 81), - [2520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 190), - [2522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 190), - [2524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), - [2526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, 0, 139), - [2528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, 0, 139), - [2530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, 0, 191), - [2532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, 0, 191), - [2534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, 0, 192), - [2536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, 0, 192), - [2538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 6, 0, 140), - [2540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 6, 0, 140), - [2542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 141), - [2544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 141), - [2546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 193), - [2548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 193), - [2550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 194), - [2552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 194), - [2554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 195), - [2556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 195), - [2558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 196), - [2560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 196), - [2562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 6, 0, 197), - [2564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 6, 0, 197), - [2566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 200), - [2568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 200), - [2570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 201), - [2572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 201), - [2574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 149), - [2576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 149), - [2578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 202), - [2580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 202), - [2582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 6, 0, 186), - [2584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 6, 0, 186), - [2586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 88), - [2588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 88), - [2590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 6, 0, 195), - [2592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 6, 0, 195), - [2594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, 0, 95), - [2596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, 0, 95), - [2598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, 0, 146), - [2600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, 0, 146), - [2602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, 0, 195), - [2604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, 0, 195), - [2606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, 0, 203), - [2608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, 0, 203), - [2610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 6, 0, 195), - [2612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 6, 0, 195), - [2614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 204), - [2616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 204), - [2618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 205), - [2620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 205), - [2622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 206), - [2624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 206), - [2626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 207), - [2628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 207), - [2630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 208), - [2632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 208), - [2634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 26), - [2636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 26), - [2638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 89), - [2640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 89), - [2642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 4, 0, 90), - [2644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 4, 0, 90), - [2646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, 0, 6), - [2648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, 0, 6), - [2650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, 0, 41), - [2652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, 0, 41), - [2654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, 0, 7), - [2656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, 0, 7), - [2658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2, 0, 0), - [2660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2, 0, 0), - [2662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 7, 0, 60), - [2664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 7, 0, 60), - [2666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 7, 0, 6), - [2668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 7, 0, 6), - [2670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 34), - [2672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 34), - [2674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 80), - [2676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 80), - [2678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 91), - [2680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 91), - [2682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 81), - [2684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 81), - [2686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 7, 0, 213), - [2688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 7, 0, 213), - [2690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 5, 0, 0), - [2692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 5, 0, 0), - [2694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 80), - [2696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 80), - [2698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 216), - [2700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 216), - [2702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 217), - [2704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 217), - [2706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 168), - [2708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 168), - [2710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 218), - [2712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 218), - [2714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 170), - [2716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 170), - [2718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 219), - [2720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 219), - [2722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 172), - [2724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 172), - [2726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 220), - [2728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 220), - [2730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 221), - [2732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 221), - [2734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 222), - [2736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 222), - [2738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 223), - [2740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 223), - [2742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 224), - [2744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 224), - [2746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 176), - [2748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 176), - [2750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 225), - [2752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 225), - [2754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 178), - [2756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 178), - [2758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 226), - [2760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 226), - [2762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, 0, 227), - [2764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, 0, 227), - [2766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, 0, 228), - [2768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, 0, 228), - [2770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, 0, 229), - [2772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, 0, 229), - [2774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 92), - [2776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 92), - [2778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 81), - [2780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 81), - [2782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, 0, 231), - [2784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, 0, 231), - [2786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, 0, 7), - [2788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, 0, 7), - [2790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, 0, 213), - [2792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, 0, 213), - [2794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 5, 0, 0), - [2796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 5, 0, 0), - [2798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 191), - [2800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 191), - [2802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 192), - [2804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 192), - [2806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 234), - [2808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 234), - [2810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 235), - [2812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 235), - [2814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 236), - [2816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 236), - [2818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 237), - [2820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 237), - [2822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 238), - [2824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 238), - [2826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 239), - [2828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 239), - [2830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 240), - [2832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 240), - [2834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 241), - [2836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 241), - [2838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 242), - [2840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 242), - [2842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, 0, 243), - [2844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, 0, 243), - [2846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 200), - [2848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 200), - [2850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 244), - [2852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 244), - [2854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 245), - [2856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 245), - [2858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 246), - [2860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 246), - [2862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 7, 0, 146), - [2864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 7, 0, 146), - [2866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 203), - [2868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 203), - [2870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 247), - [2872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 247), - [2874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 248), - [2876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 248), - [2878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, 0, 249), - [2880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, 0, 249), - [2882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, 0, 250), - [2884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, 0, 250), - [2886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, 0, 251), - [2888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, 0, 251), - [2890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 7, 0, 252), - [2892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 7, 0, 252), - [2894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 253), - [2896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 253), - [2898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 254), - [2900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 254), - [2902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 207), - [2904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 207), - [2906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 255), - [2908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 255), - [2910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, 0, 93), - [2912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, 0, 93), - [2914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, 0, 91), - [2916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, 0, 91), - [2918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, 0, 80), - [2920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, 0, 80), - [2922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, 0, 81), - [2924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, 0, 81), - [2926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 6, 0, 0), - [2928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 6, 0, 0), - [2930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 216), - [2932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 216), - [2934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 259), - [2936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 259), - [2938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 221), - [2940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 221), - [2942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 260), - [2944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 260), - [2946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 223), - [2948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 223), - [2950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 261), - [2952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 261), - [2954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, 0, 262), - [2956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, 0, 262), - [2958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, 0, 263), - [2960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, 0, 263), - [2962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, 0, 264), - [2964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, 0, 264), - [2966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 72), - [2968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 72), - [2970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, 0, 265), - [2972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, 0, 265), - [2974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 6, 0, 0), - [2976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 6, 0, 0), - [2978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 8, 0, 234), - [2980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 8, 0, 234), - [2982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 235), - [2984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 235), - [2986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 267), - [2988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 267), - [2990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 237), - [2992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 237), - [2994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 268), - [2996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 268), - [2998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 269), - [3000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 269), - [3002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 270), - [3004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 270), - [3006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 271), - [3008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 271), - [3010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 272), - [3012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 272), - [3014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 239), - [3016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 239), - [3018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 273), - [3020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 273), - [3022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 241), - [3024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 241), - [3026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 274), - [3028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 274), - [3030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 276), - [3032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 276), - [3034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 245), - [3036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 245), - [3038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 277), - [3040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 277), - [3042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 8, 0, 265), - [3044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 8, 0, 265), - [3046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, 0, 278), - [3048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, 0, 278), - [3050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 94), - [3052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 94), - [3054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 8, 0, 247), - [3056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 8, 0, 247), - [3058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 8, 0, 248), - [3060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 8, 0, 248), - [3062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, 0, 282), - [3064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, 0, 282), - [3066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2119), - [3068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3707), - [3070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3507), - [3072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2391), - [3074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2503), - [3076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2012), - [3078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), - [3080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [3082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3730), - [3084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3554), - [3086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1575), - [3088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1566), - [3090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2613), - [3092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2592), - [3094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2561), - [3096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2563), - [3098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2533), - [3100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2594), - [3102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3010), - [3104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3590), - [3106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2996), - [3108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3640), - [3110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), - [3112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3758), - [3114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), - [3116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3627), - [3118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3058), - [3120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3594), - [3122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2930), - [3124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), - [3126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2933), - [3128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2938), - [3130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), - [3132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(834), - [3134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2515), - [3136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3015), - [3138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3017), - [3140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), - [3142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3369), - [3144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2389), - [3146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [3148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), - [3150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), - [3152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), - [3154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3128), - [3156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), - [3158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(828), - [3160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(841), - [3162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2577), - [3164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(840), - [3166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [3168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(928), - [3170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3092), - [3172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1071), - [3174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [3176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), - [3178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [3180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3350), - [3182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [3184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1262), - [3186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), - [3188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [3190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3275), - [3192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2196), - [3194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3353), - [3196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2842), - [3198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(955), - [3200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1237), - [3202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(993), - [3204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3685), - [3206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), - [3208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2165), - [3210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [3212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(968), - [3214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1576), - [3216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [3218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [3220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [3222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3482), - [3224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [3226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1681), - [3228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), - [3230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [3232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3318), - [3234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2208), - [3236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3488), - [3238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2683), - [3240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(984), - [3242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1285), - [3244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(913), - [3246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3701), - [3248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), - [3250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1013), - [3252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(940), - [3254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), - [3256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), - [3258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(988), - [3260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3349), - [3262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2157), - [3264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), - [3266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [3268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), - [3270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), - [3272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3455), - [3274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), - [3276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), - [3278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), - [3280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3394), - [3282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), - [3284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2162), - [3286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), - [3288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), - [3290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(960), - [3292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(908), - [3294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1003), - [3296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(933), - [3298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2151), - [3300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), - [3302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2142), - [3304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), - [3306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2158), - [3308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), - [3310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3635), - [3312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3639), - [3314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3138), - [3316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2155), - [3318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3276), - [3320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2173), - [3322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1069), - [3324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [3326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3336), - [3328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2222), - [3330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3354), - [3332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2801), - [3334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3337), - [3336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2160), - [3338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), - [3340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1072), - [3342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1579), - [3344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [3346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3418), - [3348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2223), - [3350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3422), - [3352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2803), - [3354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3419), - [3356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1580), - [3358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3790), - [3360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3766), - [3362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2156), - [3364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), - [3366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2161), - [3368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), - [3370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2003), - [3372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2011), - [3374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3454), - [3376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), - [3378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 1, 0, 0), - [3380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 1, 0, 0), - [3382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 4, 0, 0), - [3384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 4, 0, 0), - [3386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), - [3388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lifetime, 2, 0, 0), - [3390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lifetime, 2, 0, 0), - [3392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2145), - [3394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 2, 0, 23), - [3396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 2, 0, 23), - [3398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2139), - [3400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2150), - [3402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2150), - [3404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2167), - [3406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 2, 0, 19), - [3408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 2, 0, 19), - [3410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2147), - [3412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2153), - [3414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), - [3416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2134), - [3418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remaining_field_pattern, 1, 0, 0), - [3420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remaining_field_pattern, 1, 0, 0), - [3422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2136), - [3424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2168), - [3426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), - [3428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, 0, 28), - [3430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [3432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, 0, 28), - [3434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2721), - [3436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), - [3438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [3440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_except_range, 1, 0, 1), - [3442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_except_range, 1, 0, 1), - [3444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2847), - [3446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3235), - [3448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3500), - [3450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2852), - [3452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, 0, 5), - [3454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1, 0, 5), - [3456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2867), - [3458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 4, 0, 111), - [3460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 4, 0, 111), - [3462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), - [3464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), - [3466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), SHIFT_REPEAT(3475), - [3469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_type, 2, 0, 28), - [3471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_type, 2, 0, 28), - [3473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2663), - [3475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), - [3477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1, 0, 0), - [3479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2573), - [3481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 4, 0, 0), - [3483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [3485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3335), - [3487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3012), - [3489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [3491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3473), - [3493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3093), - [3495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3196), - [3497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3633), - [3499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3633), - [3501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, 0, 47), - [3503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, 0, 47), - [3505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, 0, 46), - [3507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 46), - [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 = true}}, REDUCE(sym_abstract_type, 2, 0, 29), - [3515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, 0, 29), - [3517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_type, 2, 0, 29), - [3519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_type, 2, 0, 29), - [3521] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3707), - [3524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 3, 0, 0), - [3526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, 0, 17), - [3528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, 0, 17), - [3530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, 0, 16), - [3532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 16), - [3534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 2, 0, 7), - [3536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 2, 0, 7), - [3538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 2, 0, 6), - [3540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, 0, 6), - [3542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, 0, 52), - [3544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, 0, 52), - [3546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, 0, 51), - [3548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 51), - [3550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 1, 0, 0), - [3552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 184), - [3554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 184), - [3556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, 0, 184), - [3558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 5, 0, 127), - [3560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 5, 0, 127), - [3562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 5, 0, 127), - [3564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2786), - [3566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 1, 0, 0), - [3568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3, 0, 0), - [3570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, 0, 0), - [3572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, 0, 0), - [3574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, 0, 0), - [3576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), - [3578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2818), - [3580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5, 0, 0), - [3582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, 0, 0), - [3584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 6, 0, 0), - [3586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 6, 0, 0), - [3588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_arm_repeat1, 1, 0, 0), - [3590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 1, 0, 0), - [3592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 1, 0, 0), - [3594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 1, 0, 0), - [3596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2665), - [3598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3606), - [3600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3242), - [3602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, 0, 17), - [3604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, 0, 47), - [3606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 1, 0, 0), - [3608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 1, 0, 0), - [3610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3, 0, 0), - [3612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 3, 0, 0), - [3614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, 0, 52), - [3616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, 0, 55), - [3618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 55), - [3620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, 0, 56), - [3622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 56), - [3624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4, 0, 0), - [3626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4, 0, 0), - [3628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 4, 0, 0), - [3630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 4, 0, 0), - [3632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2197), - [3634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3564), - [3636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2236), - [3638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3288), - [3640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 2, 0, 7), - [3642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1079), - [3644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [3646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3512), - [3648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3308), - [3650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2242), - [3652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3411), - [3654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3022), - [3656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3698), - [3658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3698), - [3660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 1, 0, 0), - [3662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 1, 0, 0), - [3664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2811), - [3666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2808), - [3668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3398), - [3670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2812), - [3672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2812), - [3674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3201), - [3676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3280), - [3678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), - [3680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [3682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), - [3684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5, 0, 0), - [3686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5, 0, 0), - [3688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 5, 0, 0), - [3690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 5, 0, 0), - [3692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2790), - [3694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2690), - [3696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2836), - [3698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2836), - [3700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2702), - [3702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 22), - [3704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 22), - [3706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1598), - [3708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [3710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3650), - [3712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3321), - [3714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2260), - [3716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3205), - [3718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3069), - [3720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3702), - [3722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3702), - [3724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2785), - [3726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2783), - [3728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2816), - [3730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2816), - [3732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 24), - [3734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 24), - [3736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 25), - [3738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 25), - [3740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, 0, 27), - [3742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, 0, 27), - [3744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [3746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, 0, 30), - [3748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, 0, 30), - [3750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [3752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, 0, 31), - [3754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, 0, 31), - [3756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [3758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2422), - [3760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2, 0, 0), - [3762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 2, 0, 0), - [3764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 73), - [3766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 73), - [3768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [3770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 75), - [3772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 75), - [3774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [3776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 76), - [3778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 76), - [3780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [3782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 6, 0, 0), - [3784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 6, 0, 0), - [3786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 6, 0, 0), - [3788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 6, 0, 0), - [3790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 115), - [3792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 115), - [3794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [3796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2017), - [3798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3, 0, 0), - [3800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3, 0, 0), - [3802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3, 0, 0), - [3804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3, 0, 0), - [3806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3, 0, 71), - [3808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3, 0, 71), - [3810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type, 3, 0, 72), - [3812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type, 3, 0, 72), - [3814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 3, 0, 72), - [3816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 3, 0, 72), - [3818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 5, 0, 0), - [3820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 5, 0, 0), - [3822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_bounds, 3, 0, 0), - [3824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_bounds, 3, 0, 0), - [3826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2, 0, 0), - [3828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2, 0, 0), - [3830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_expression, 2, 0, 0), - [3832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_expression, 2, 0, 0), - [3834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2735), - [3836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5, 0, 106), - [3838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5, 0, 106), - [3840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5, 0, 0), - [3842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5, 0, 0), - [3844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5, 0, 0), - [3846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 5, 0, 0), - [3848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 4, 0, 61), - [3850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [3852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 4, 0, 61), - [3854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), - [3856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2904), - [3858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bounded_type, 3, 0, 0), - [3860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bounded_type, 3, 0, 0), - [3862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 5, 0, 159), - [3864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 5, 0, 159), - [3866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_never_type, 1, 0, 0), - [3868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_never_type, 1, 0, 0), - [3870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_bounds, 4, 0, 0), - [3872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_bounds, 4, 0, 0), - [3874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 53), - [3876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 53), - [3878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [3880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 110), - [3882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 110), - [3884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_bounds, 5, 0, 113), - [3886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_bounds, 5, 0, 113), - [3888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_bounds, 5, 0, 0), - [3890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_bounds, 5, 0, 0), - [3892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, 0, 162), - [3894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, 0, 162), - [3896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, 0, 163), - [3898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, 0, 163), - [3900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_bounds, 4, 0, 113), - [3902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_bounds, 4, 0, 113), - [3904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 0), - [3906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 0), - [3908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, 0, 164), - [3910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, 0, 164), - [3912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 3, 0, 32), - [3914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 3, 0, 32), - [3916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 3, 0, 0), - [3918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 3, 0, 0), - [3920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 2, 0, 4), - [3922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 2, 0, 4), - [3924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 5, 0, 0), - [3926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 5, 0, 0), - [3928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 2, 0, 0), - [3930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 2, 0, 0), - [3932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, 0, 10), - [3934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, 0, 10), - [3936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 2, 0, 13), - [3938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 2, 0, 13), - [3940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [3942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [3944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_cast_expression, 3, 0, 57), - [3946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_cast_expression, 3, 0, 57), - [3948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2657), - [3950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3469), - [3952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2624), - [3954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 6, 0, 0), - [3956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 6, 0, 0), - [3958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6, 0, 155), - [3960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6, 0, 155), - [3962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 6, 0, 0), - [3964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 6, 0, 0), - [3966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 5, 0, 136), - [3968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 5, 0, 136), - [3970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6, 0, 0), - [3972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6, 0, 0), - [3974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 2, 0, 0), - [3976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 2, 0, 0), - [3978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_bounds, 6, 0, 0), - [3980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_bounds, 6, 0, 0), - [3982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_function, 3, 0, 48), - [3984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, 0, 58), - [3986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_function, 3, 0, 48), - [3988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 6, 0, 212), - [3990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 6, 0, 212), - [3992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 3, 0, 18), - [3994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 3, 0, 18), - [3996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_type, 2, 0, 0), - [3998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_type, 2, 0, 0), - [4000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3, 0, 0), - [4002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3, 0, 0), - [4004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_removed_trait_bound, 2, 0, 0), - [4006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_removed_trait_bound, 2, 0, 0), - [4008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 116), - [4010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 116), - [4012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 4, 0, 0), - [4014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 4, 0, 0), - [4016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 2, 0, 26), - [4018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 2, 0, 26), - [4020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 5, 0, 118), - [4022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 5, 0, 118), - [4024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 4, 0, 104), - [4026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 4, 0, 104), - [4028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, 0, 49), - [4030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_expression, 2, 0, 0), - [4032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_expression, 2, 0, 0), - [4034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 7, 0, 230), - [4036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 7, 0, 230), - [4038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 114), - [4040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 114), - [4042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4, 0, 0), - [4044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4, 0, 0), - [4046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 7, 0, 0), - [4048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 7, 0, 0), - [4050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 7, 0, 0), - [4052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 7, 0, 0), - [4054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 6, 0, 165), - [4056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 6, 0, 165), - [4058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 4, 0, 79), - [4060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 4, 0, 79), - [4062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 3, 0, 0), - [4064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 3, 0, 0), - [4066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, 0, 11), - [4068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, 0, 11), - [4070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 3, 0, 0), - [4072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 3, 0, 0), - [4074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_higher_ranked_trait_bound, 3, 0, 87), - [4076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_higher_ranked_trait_bound, 3, 0, 87), - [4078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 5, 0, 0), - [4080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 5, 0, 0), - [4082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 4, 0, 0), - [4084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 4, 0, 0), - [4086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 4, 0, 0), - [4088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 4, 0, 0), - [4090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 4, 0, 0), - [4092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 4, 0, 0), - [4094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 2, 0, 0), - [4096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 2, 0, 0), - [4098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, 0, 12), - [4100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, 0, 12), - [4102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4, 0, 0), - [4104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4, 0, 0), - [4106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 4, 0, 109), - [4108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 4, 0, 109), - [4110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_bounds, 6, 0, 113), - [4112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_bounds, 6, 0, 113), - [4114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3412), - [4116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3341), - [4118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2, 0, 0), - [4120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), - [4122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), - [4124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(312), - [4126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(313), - [4128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(314), - [4130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [4132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [4134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), - [4136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 2, 0, 0), - [4138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [4140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), - [4142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(42), - [4144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [4146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 2, 0, 0), - [4148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 2, 0, 0), - [4150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [4152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(332), - [4154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 1, 0, 0), - [4156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 1, 0, 0), - [4158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_visibility_modifier, 1, 0, 0), SHIFT(3403), - [4161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 4, 0, 0), - [4163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 4, 0, 0), - [4165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2762), - [4167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5, 0, 135), - [4169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5, 0, 135), - [4171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5, 0, 0), - [4173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5, 0, 0), - [4175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_visibility_modifier, 1, 0, 0), SHIFT(2712), - [4178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [4180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2659), - [4182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2678), - [4184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [4186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 3, 0, 0), - [4188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 3, 0, 0), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2142), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1401), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1108), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3624), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3314), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(846), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1425), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(870), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(851), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2844), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3539), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2040), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(42), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2410), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3606), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3610), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3661), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1609), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2114), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1980), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2498), + [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2323), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(38), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3365), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2806), + [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), + [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2834), + [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1565), + [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), + [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2623), + [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1576), + [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3581), + [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2053), + [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), + [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3536), + [121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1, 0, 0), + [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3445), + [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), + [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [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(1591), + [136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(630), + [139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2843), + [142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(181), + [145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(142), + [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(338), + [154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1570), + [157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(257), + [160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(822), + [163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(876), + [166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(40), + [169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3528), + [172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3445), + [175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3675), + [178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2113), + [181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(36), + [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(1401), + [190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1108), + [193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3624), + [196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3314), + [199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(846), + [202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1425), + [205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(172), + [208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(870), + [211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(851), + [214] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2844), + [217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(340), + [220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3539), + [223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2040), + [226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(42), + [229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2410), + [232] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3606), + [235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3610), + [238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3661), + [241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1609), + [244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2114), + [247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1980), + [250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(151), + [253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2498), + [256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2323), + [259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(38), + [262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3365), + [265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2806), + [268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1447), + [271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2834), + [274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1565), + [277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1576), + [280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3581), + [283] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2053), + [286] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1576), + [289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3536), + [292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), + [298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), + [300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), + [302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), + [304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), + [306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), + [308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), + [310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), + [312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), + [326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), + [328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), + [338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), + [340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), + [342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1346), + [346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 2, 0, 0), + [348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2845), + [352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 2, 0, 0), + [354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(338), + [356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2391), + [358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2823), + [360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1454), + [362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(860), + [364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1086), + [366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), + [368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2643), + [370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), + [372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2835), + [374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2842), + [376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), + [378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2644), + [380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 1, 0, 0), + [382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 1, 0, 0), + [384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3767), + [386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 2, 0, 0), + [388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 2, 0, 0), + [390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 1, 0, 0), + [392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 1, 0, 0), + [394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(257), + [396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(822), + [398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(876), + [400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(41), + [402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 1, 0, 0), + [404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 1, 0, 0), + [406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 1, 0, 0), + [408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 1, 0, 0), + [410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1608), + [412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2883), + [416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1686), + [418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(299), + [420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3245), + [422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2390), + [424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(46), + [426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2810), + [428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1650), + [430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1658), + [432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(864), + [434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1549), + [436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), + [438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2787), + [440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(394), + [442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(47), + [444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2811), + [446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2756), + [448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), + [450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(45), + [452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3234), + [454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2788), + [456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), + [458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2824), + [460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1734), + [462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1726), + [464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3663), + [466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), + [468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3725), + [470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1610), + [472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1644), + [474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), + [476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3325), + [478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2382), + [480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(57), + [482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1622), + [484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1569), + [486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(65), + [488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2755), + [490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66), + [492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3250), + [494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1645), + [496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3786), + [498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), + [500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(241), + [506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(50), + [508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3818), + [510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(348), + [512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2364), + [514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(63), + [516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1646), + [518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1575), + [520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60), + [522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2648), + [524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(53), + [526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3407), + [528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(232), + [530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(59), + [532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(247), + [534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(54), + [536] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(153), + [539] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(185), + [542] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(68), + [545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), + [547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(69), + [550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(76), + [553] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(185), + [556] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(3568), + [559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(184), + [562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(2809), + [565] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(152), + [568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(156), + [571] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(3718), + [574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), + [576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), + [588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3568), + [590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2809), + [594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), + [596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3718), + [600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3561), + [602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3768), + [606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2725), + [608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2726), + [610] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(163), + [613] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(185), + [616] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(101), + [619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), + [621] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(102), + [624] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(103), + [627] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(185), + [630] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(3764), + [633] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(184), + [636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(2809), + [639] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(152), + [642] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(163), + [645] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(3718), + [648] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(201), + [651] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(199), + [654] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(114), + [657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), + [659] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(115), + [662] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(116), + [665] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(199), + [668] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(201), + [671] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(219), + [674] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(2752), + [677] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(214), + [680] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(3659), + [683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), + [685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), + [693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), + [697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2752), + [703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(214), + [705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3659), + [707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), + [713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), + [715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2746), + [719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3764), + [725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), + [729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), + [735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), + [737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2728), + [739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2838), + [745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), + [749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2869), + [751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), + [753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), + [755] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(185), + [758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), + [760] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(185), + [763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__token_pattern, 1, 0, 0), + [765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__token_pattern, 1, 0, 0), + [767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), + [769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3550), + [771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3641), + [773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), + [775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3665), + [777] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1346), + [780] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(181), + [783] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(142), + [786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), + [788] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(10), + [791] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(338), + [794] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1570), + [797] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(257), + [800] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(822), + [803] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(876), + [806] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(40), + [809] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3528), + [812] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3641), + [815] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3675), + [818] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2391), + [821] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(36), + [824] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2823), + [827] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1401), + [830] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1454), + [833] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(860), + [836] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1086), + [839] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(187), + [842] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2643), + [845] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(363), + [848] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(42), + [851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2835), + [854] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2842), + [857] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(188), + [860] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(38), + [863] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3365), + [866] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2644), + [869] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1447), + [872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2834), + [875] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1565), + [878] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1576), + [881] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3581), + [884] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1576), + [887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3536), + [890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), + [892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3817), + [894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 1, 0, 0), + [896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 1, 0, 0), + [898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), + [900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3586), + [902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), + [904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3774), + [906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), + [908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3716), + [910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(831), + [918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), + [920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), + [922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), + [924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), + [926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), + [928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_literal, 1, 0, 0), + [930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_literal, 1, 0, 0), + [932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), + [934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), + [936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2069), + [938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2, 0, 0), + [940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2, 0, 0), + [942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 1, 0, 0), + [944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 1, 0, 0), + [946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fragment_specifier, 1, 0, 0), + [948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fragment_specifier, 1, 0, 0), + [950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_binding_pattern, 3, 0, 209), + [952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_binding_pattern, 3, 0, 209), + [954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_string_literal, 3, 0, 0), + [956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_string_literal, 3, 0, 0), + [958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3, 0, 0), + [960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3, 0, 0), + [962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), + [964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 2, 0, 0), + [966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 2, 0, 0), + [968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 3, 0, 0), + [970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 3, 0, 0), + [972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), + [974] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(199), + [977] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(199), + [980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), + [982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 4, 0, 0), + [984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 4, 0, 0), + [986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(829), + [994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), + [996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), + [998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 5, 0, 0), + [1000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 5, 0, 0), + [1002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__non_delim_token, 1, 0, 0), + [1004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__non_delim_token, 1, 0, 0), + [1006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 6, 0, 0), + [1008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 6, 0, 0), + [1010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 4, 0, 0), + [1012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 4, 0, 0), + [1014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 2, 0, 0), + [1016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 2, 0, 0), + [1018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 5, 0, 0), + [1020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 5, 0, 0), + [1022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), + [1024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), + [1026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 6, 0, 0), + [1028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 6, 0, 0), + [1030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal, 1, 0, 0), + [1032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal, 1, 0, 0), + [1034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 1, 0, 0), + [1036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 1, 0, 0), + [1038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 3, 0, 0), + [1040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 3, 0, 0), + [1042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), + [1044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), + [1046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delim_token_tree, 2, 0, 0), + [1048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delim_token_tree, 2, 0, 0), + [1050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2062), + [1052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [1054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2483), + [1056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [1058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3461), + [1060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), + [1062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2283), + [1064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3522), + [1066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), + [1068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [1070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [1072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2580), + [1074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1075), + [1076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3410), + [1078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), + [1080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3780), + [1082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3293), + [1084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3803), + [1086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3783), + [1088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2371), + [1090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2185), + [1092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2031), + [1094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3500), + [1096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3740), + [1098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2161), + [1100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1063), + [1102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3562), + [1104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2531), + [1106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(838), + [1108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1394), + [1110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(812), + [1112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), + [1114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2645), + [1116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2115), + [1118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2404), + [1120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2876), + [1122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2405), + [1124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3763), + [1126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__delim_tokens, 1, 0, 0), + [1128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__delim_tokens, 1, 0, 0), + [1130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2064), + [1132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [1134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), + [1136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2289), + [1138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [1140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2587), + [1142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3653), + [1144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3263), + [1146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2060), + [1148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2287), + [1150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2408), + [1152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2839), + [1154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2409), + [1156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), + [1158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2534), + [1160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3680), + [1162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), + [1164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2551), + [1166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3555), + [1168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 1, 0, 0), + [1170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 1, 0, 0), + [1172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2493), + [1174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3594), + [1176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delim_token_tree, 3, 0, 0), + [1178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delim_token_tree, 3, 0, 0), + [1180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), + [1182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3833), + [1184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1448), + [1186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [1188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1481), + [1190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [1192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1461), + [1194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [1196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1531), + [1198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [1200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), + [1202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1757), + [1204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [1206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [1208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1804), + [1210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [1212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), + [1214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2856), + [1216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1940), + [1218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [1220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1835), + [1222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [1224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [1226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), + [1228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3431), + [1230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), + [1232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), + [1234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), + [1236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [1238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), + [1240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), + [1242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), + [1244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(295), + [1246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3488), + [1248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [1250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [1252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [1254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), + [1256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), + [1258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(349), + [1260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3274), + [1262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), + [1264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), + [1266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), + [1268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), + [1270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3288), + [1272] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1346), + [1275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(181), + [1278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), + [1280] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(142), + [1283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(10), + [1286] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(338), + [1289] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1570), + [1292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(257), + [1295] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(822), + [1298] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(876), + [1301] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(40), + [1304] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3528), + [1307] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3675), + [1310] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2391), + [1313] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(36), + [1316] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2823), + [1319] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1401), + [1322] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1454), + [1325] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(860), + [1328] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1086), + [1331] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(187), + [1334] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2643), + [1337] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(363), + [1340] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(42), + [1343] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2835), + [1346] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2842), + [1349] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(188), + [1352] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(38), + [1355] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3365), + [1358] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2644), + [1361] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1447), + [1364] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2834), + [1367] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1565), + [1370] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1576), + [1373] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3581), + [1376] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1576), + [1379] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3536), + [1382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), + [1384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2068), + [1386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2568), + [1388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [1390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [1392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2197), + [1394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3599), + [1396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2237), + [1398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2791), + [1400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(841), + [1402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3476), + [1404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2608), + [1406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2554), + [1408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 3, 0, 35), + [1410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 3, 0, 35), + [1412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2475), + [1414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [1416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2389), + [1418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2790), + [1420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(862), + [1422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1411), + [1424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), + [1426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2750), + [1428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(387), + [1430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2649), + [1432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), + [1434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2751), + [1436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [1438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), + [1440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), + [1442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 5, 0, 0), + [1444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 5, 0, 0), + [1446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), + [1448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3, 0, 0), + [1450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 6, 0, 0), + [1452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 6, 0, 0), + [1454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 4, 0, 0), + [1456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 4, 0, 0), + [1458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_block, 2, 0, 0), + [1460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_block, 2, 0, 0), + [1462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2537), + [1464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 7, 0, 256), + [1466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 7, 0, 256), + [1468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gen_block, 2, 0, 0), + [1470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gen_block, 2, 0, 0), + [1472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2535), + [1474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1, 0, 0), + [1476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1, 0, 0), + [1478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_except_range, 1, 0, 0), + [1480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_except_range, 1, 0, 0), + [1482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async_block, 2, 0, 0), + [1484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async_block, 2, 0, 0), + [1486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), + [1488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), + [1490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_block, 2, 0, 8), + [1492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_block, 2, 0, 8), + [1494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 2, 0, 0), + [1496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 2, 0, 0), + [1498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 4, 0, 84), + [1500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 4, 0, 84), + [1502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 4, 0, 104), + [1504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 4, 0, 104), + [1506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async_block, 3, 0, 0), + [1508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async_block, 3, 0, 0), + [1510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 2, 0, 8), + [1512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 2, 0, 8), + [1514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unsafe_block, 2, 0, 0), + [1516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unsafe_block, 2, 0, 0), + [1518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, 0, 33), + [1520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, 0, 33), + [1522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gen_block, 3, 0, 0), + [1524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gen_block, 3, 0, 0), + [1526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 5, 0, 126), + [1528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 5, 0, 126), + [1530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2, 0, 0), + [1532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, 0, 0), + [1534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 3, 0, 0), + [1536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 3, 0, 0), + [1538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 3, 0, 40), + [1540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 3, 0, 40), + [1542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 5, 0, 154), + [1544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 5, 0, 154), + [1546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 3, 0, 44), + [1548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 3, 0, 44), + [1550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2858), + [1552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, 0, 45), + [1554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, 0, 45), + [1556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 4, 0, 0), + [1558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 4, 0, 0), + [1560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2536), + [1562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2050), + [1564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [1566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2232), + [1568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2258), + [1570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [1572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3646), + [1574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3296), + [1576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2041), + [1578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2201), + [1580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2882), + [1582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2411), + [1584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(441), + [1586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(440), + [1588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [1590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2492), + [1592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434), + [1594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2465), + [1596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), + [1598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2494), + [1600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(438), + [1602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2495), + [1604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_label, 2, 0, 0), + [1606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label, 2, 0, 0), + [1608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 2, 0, 0), + [1610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 2, 0, 0), + [1612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 3, 0, 0), + [1614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 3, 0, 0), + [1616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2191), + [1618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [1620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [1622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [1624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3257), + [1626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [1628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2052), + [1630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [1632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), + [1634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3482), + [1636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3720), + [1638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2152), + [1640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3269), + [1642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2696), + [1644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1052), + [1646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1390), + [1648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3174), + [1650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3806), + [1652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), + [1654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), + [1656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), + [1658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), + [1660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2613), + [1662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), + [1664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), + [1666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), + [1668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2540), + [1670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), + [1672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), + [1674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2586), + [1676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2471), + [1678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2131), + [1680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [1682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [1684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [1686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2358), + [1688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3448), + [1690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [1692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [1694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3092), + [1696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1408), + [1698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), + [1700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3281), + [1702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3494), + [1704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2754), + [1706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2206), + [1708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(836), + [1710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(840), + [1712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2421), + [1714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2789), + [1716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2468), + [1718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2653), + [1720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2653), + [1722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3698), + [1724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), + [1726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [1728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), + [1730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2014), + [1732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [1734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2936), + [1736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [1738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2109), + [1740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [1742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3559), + [1744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3264), + [1746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3084), + [1748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2647), + [1750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2042), + [1752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2637), + [1754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2637), + [1756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 127), + [1758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 127), + [1760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 0, 184), + [1762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 0, 184), + [1764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), + [1766] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2131), + [1769] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(478), + [1772] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(808), + [1775] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2358), + [1778] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3448), + [1781] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(835), + [1784] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(854), + [1787] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(876), + [1790] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3092), + [1793] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1408), + [1796] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1602), + [1799] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3281), + [1802] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3494), + [1805] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2754), + [1808] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2206), + [1811] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(836), + [1814] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(840), + [1817] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2421), + [1820] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2789), + [1823] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2468), + [1826] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2653), + [1829] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2653), + [1832] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3698), + [1835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 8, 0, 265), + [1837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 8, 0, 265), + [1839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 8, 0, 247), + [1841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 8, 0, 247), + [1843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 8, 0, 248), + [1845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 8, 0, 248), + [1847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 8, 0, 279), + [1849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 8, 0, 279), + [1851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 8, 0, 280), + [1853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 8, 0, 280), + [1855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 253), + [1857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 253), + [1859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 281), + [1861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 281), + [1863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 282), + [1865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 282), + [1867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 283), + [1869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 283), + [1871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 9, 0, 284), + [1873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 9, 0, 284), + [1875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 9, 0, 285), + [1877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 9, 0, 285), + [1879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 269), + [1881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 269), + [1883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 286), + [1885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 286), + [1887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 271), + [1889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 271), + [1891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 287), + [1893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 287), + [1895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, 0, 276), + [1897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, 0, 276), + [1899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, 0, 288), + [1901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, 0, 288), + [1903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 9, 0, 279), + [1905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 9, 0, 279), + [1907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 9, 0, 289), + [1909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 9, 0, 289), + [1911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 216), + [1913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 216), + [1915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, 0, 290), + [1917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, 0, 290), + [1919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 278), + [1921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 278), + [1923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, 0, 282), + [1925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, 0, 282), + [1927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, 0, 292), + [1929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, 0, 292), + [1931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 217), + [1933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 217), + [1935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_item, 4, 0, 0), + [1937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_item, 4, 0, 0), + [1939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 10, 0, 293), + [1941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 10, 0, 293), + [1943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 10, 0, 294), + [1945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 10, 0, 294), + [1947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 10, 0, 290), + [1949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 10, 0, 290), + [1951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 10, 0, 295), + [1953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 10, 0, 295), + [1955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 168), + [1957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 168), + [1959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 11, 0, 296), + [1961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 11, 0, 296), + [1963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 218), + [1965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 218), + [1967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 170), + [1969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 170), + [1971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 219), + [1973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 219), + [1975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 172), + [1977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 172), + [1979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 2, 0, 0), + [1981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 2, 0, 0), + [1983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 220), + [1985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 220), + [1987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, 0, 80), + [1989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, 0, 80), + [1991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, 0, 81), + [1993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, 0, 81), + [1995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 4, 0, 82), + [1997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 4, 0, 82), + [1999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 4, 0, 83), + [2001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 4, 0, 83), + [2003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 221), + [2005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 221), + [2007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 222), + [2009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 222), + [2011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 87), + [2013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 87), + [2015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 88), + [2017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 88), + [2019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 26), + [2021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 26), + [2023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 89), + [2025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 89), + [2027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 4, 0, 90), + [2029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 4, 0, 90), + [2031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 223), + [2033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 223), + [2035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 224), + [2037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 224), + [2039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2, 0, 0), + [2041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2, 0, 0), + [2043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 34), + [2045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 34), + [2047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 176), + [2049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 176), + [2051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 80), + [2053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 80), + [2055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 91), + [2057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 91), + [2059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 81), + [2061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 81), + [2063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 80), + [2065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 80), + [2067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 225), + [2069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 225), + [2071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 178), + [2073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 178), + [2075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 92), + [2077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 92), + [2079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 81), + [2081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 81), + [2083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 226), + [2085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 226), + [2087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, 0, 7), + [2089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, 0, 7), + [2091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, 0, 93), + [2093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, 0, 93), + [2095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, 0, 91), + [2097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, 0, 91), + [2099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, 0, 80), + [2101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, 0, 80), + [2103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, 0, 81), + [2105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, 0, 81), + [2107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 72), + [2109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 72), + [2111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 94), + [2113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 94), + [2115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 95), + [2117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 95), + [2119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 4, 0, 100), + [2121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 4, 0, 100), + [2123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, 0, 227), + [2125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, 0, 227), + [2127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, 0, 228), + [2129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, 0, 228), + [2131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3, 0, 0), + [2133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3, 0, 0), + [2135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, 0, 229), + [2137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, 0, 229), + [2139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), + [2141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, 0, 231), + [2143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, 0, 231), + [2145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3247), + [2148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1310), + [2151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2884), + [2154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), + [2156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3669), + [2159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(876), + [2162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3327), + [2165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3457), + [2168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2371), + [2171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2349), + [2174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2270), + [2177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3765), + [2180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3458), + [2183] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3251), + [2186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(878), + [2189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(856), + [2192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3772), + [2195] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2040), + [2198] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2947), + [2201] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3775), + [2204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3776), + [2207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3778), + [2210] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2981), + [2213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2217), + [2216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1970), + [2219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2506), + [2222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2354), + [2225] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3790), + [2228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2066), + [2231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3790), + [2234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, 0, 95), + [2236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, 0, 95), + [2238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, 0, 100), + [2240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, 0, 100), + [2242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, 0, 101), + [2244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, 0, 101), + [2246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 102), + [2248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 102), + [2250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 95), + [2252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 95), + [2254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, 0, 95), + [2256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, 0, 95), + [2258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 4, 0, 103), + [2260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 4, 0, 103), + [2262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 4, 0, 0), + [2264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 4, 0, 0), + [2266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 4, 0, 104), + [2268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 4, 0, 104), + [2270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, 0, 213), + [2272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, 0, 213), + [2274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 5, 0, 0), + [2276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 5, 0, 0), + [2278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 191), + [2280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 191), + [2282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 192), + [2284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 192), + [2286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 234), + [2288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 234), + [2290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 235), + [2292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 235), + [2294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 236), + [2296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 236), + [2298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 5, 0, 60), + [2300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 5, 0, 60), + [2302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 237), + [2304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 237), + [2306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 238), + [2308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 238), + [2310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 239), + [2312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 239), + [2314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 240), + [2316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 240), + [2318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 241), + [2320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 241), + [2322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 242), + [2324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 242), + [2326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, 0, 243), + [2328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, 0, 243), + [2330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 200), + [2332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 200), + [2334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 244), + [2336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 244), + [2338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 5, 0, 6), + [2340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 5, 0, 6), + [2342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 3, 0, 34), + [2344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 3, 0, 34), + [2346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 245), + [2348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 245), + [2350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), + [2352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 246), + [2354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 246), + [2356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 7, 0, 146), + [2358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 7, 0, 146), + [2360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 203), + [2362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 203), + [2364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 247), + [2366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 247), + [2368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2, 0, 0), + [2370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2, 0, 0), + [2372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inner_attribute_item, 5, 0, 0), + [2374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inner_attribute_item, 5, 0, 0), + [2376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 5, 0, 119), + [2378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 5, 0, 119), + [2380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3247), + [2382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), + [2384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2884), + [2386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [2388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3669), + [2390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3327), + [2392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3457), + [2394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2349), + [2396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2270), + [2398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3765), + [2400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3458), + [2402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3251), + [2404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(878), + [2406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(856), + [2408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3772), + [2410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2947), + [2412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3775), + [2414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3776), + [2416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3778), + [2418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2981), + [2420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2217), + [2422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1970), + [2424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2506), + [2426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2354), + [2428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3790), + [2430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2066), + [2432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3790), + [2434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, 0, 26), + [2436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, 0, 26), + [2438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 248), + [2440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 248), + [2442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, 0, 38), + [2444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, 0, 38), + [2446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 3, 0, 0), + [2448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 3, 0, 0), + [2450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 3, 0, 39), + [2452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 3, 0, 39), + [2454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, 0, 122), + [2456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, 0, 122), + [2458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, 0, 123), + [2460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, 0, 123), + [2462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, 0, 124), + [2464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, 0, 124), + [2466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1, 0, 0), + [2468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1, 0, 0), + [2470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, 0, 82), + [2472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, 0, 82), + [2474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, 0, 125), + [2476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, 0, 125), + [2478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, 0, 249), + [2480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, 0, 249), + [2482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, 0, 250), + [2484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, 0, 250), + [2486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, 0, 251), + [2488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, 0, 251), + [2490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 129), + [2492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 129), + [2494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 7, 0, 252), + [2496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 7, 0, 252), + [2498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 130), + [2500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 130), + [2502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 253), + [2504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 253), + [2506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 87), + [2508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 87), + [2510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 254), + [2512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 254), + [2514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 207), + [2516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 207), + [2518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 131), + [2520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 131), + [2522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 132), + [2524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 132), + [2526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 133), + [2528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 133), + [2530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, 0, 107), + [2532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, 0, 107), + [2534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2, 0, 8), + [2536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2, 0, 8), + [2538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, 0, 127), + [2540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, 0, 127), + [2542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, 0, 134), + [2544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, 0, 134), + [2546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 255), + [2548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 255), + [2550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 5, 0, 119), + [2552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 5, 0, 119), + [2554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, 0, 6), + [2556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, 0, 6), + [2558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3, 0, 0), + [2560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3, 0, 0), + [2562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 34), + [2564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 34), + [2566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), + [2568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 81), + [2570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 81), + [2572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 122), + [2574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 122), + [2576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 137), + [2578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 137), + [2580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 122), + [2582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 122), + [2584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 138), + [2586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 138), + [2588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 5, 0, 139), + [2590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 5, 0, 139), + [2592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 6, 0, 0), + [2594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 6, 0, 0), + [2596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), + [2598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 5, 0, 93), + [2600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 5, 0, 93), + [2602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 5, 0, 91), + [2604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 5, 0, 91), + [2606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 5, 0, 140), + [2608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 5, 0, 140), + [2610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, 0, 122), + [2612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, 0, 122), + [2614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 141), + [2616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 141), + [2618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 142), + [2620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 142), + [2622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 72), + [2624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 72), + [2626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3101), + [2628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 143), + [2630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 143), + [2632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 144), + [2634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 144), + [2636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 145), + [2638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 145), + [2640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 146), + [2642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 146), + [2644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, 0, 41), + [2646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, 0, 41), + [2648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, 0, 7), + [2650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, 0, 7), + [2652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, 0, 149), + [2654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, 0, 149), + [2656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, 0, 150), + [2658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, 0, 150), + [2660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, 0, 144), + [2662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, 0, 144), + [2664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, 0, 146), + [2666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, 0, 146), + [2668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 95), + [2670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 95), + [2672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3148), + [2674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 216), + [2676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 216), + [2678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 259), + [2680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 259), + [2682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 144), + [2684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 144), + [2686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 151), + [2688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 151), + [2690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 146), + [2692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 146), + [2694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, 0, 144), + [2696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, 0, 144), + [2698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, 0, 146), + [2700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, 0, 146), + [2702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 152), + [2704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 152), + [2706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 5, 0, 153), + [2708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 5, 0, 153), + [2710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 221), + [2712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 221), + [2714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 260), + [2716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 260), + [2718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, 0, 34), + [2720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, 0, 34), + [2722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 223), + [2724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 223), + [2726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 3, 0, 34), + [2728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 3, 0, 34), + [2730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 261), + [2732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 261), + [2734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 3, 0, 7), + [2736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 3, 0, 7), + [2738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 6, 0, 60), + [2740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 6, 0, 60), + [2742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 3, 0, 34), + [2744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 3, 0, 34), + [2746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 3, 0, 43), + [2748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 3, 0, 43), + [2750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, 0, 262), + [2752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, 0, 262), + [2754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 6, 0, 6), + [2756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 6, 0, 6), + [2758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, 0, 263), + [2760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, 0, 263), + [2762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, 0, 264), + [2764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, 0, 264), + [2766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 7, 0, 213), + [2768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 7, 0, 213), + [2770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, 0, 265), + [2772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, 0, 265), + [2774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 6, 0, 0), + [2776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 6, 0, 0), + [2778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 8, 0, 234), + [2780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 8, 0, 234), + [2782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3, 0, 0), + [2784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3, 0, 0), + [2786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 235), + [2788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 235), + [2790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 4, 0, 0), + [2792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 4, 0, 0), + [2794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3, 0, 50), + [2796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3, 0, 50), + [2798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 123), + [2800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 123), + [2802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 167), + [2804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 167), + [2806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 168), + [2808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 168), + [2810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 169), + [2812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 169), + [2814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 267), + [2816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 267), + [2818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 170), + [2820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 170), + [2822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 171), + [2824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 171), + [2826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 172), + [2828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 172), + [2830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 173), + [2832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 173), + [2834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 129), + [2836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 129), + [2838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 237), + [2840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 237), + [2842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 268), + [2844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 268), + [2846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 269), + [2848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 269), + [2850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 175), + [2852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 175), + [2854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 176), + [2856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 176), + [2858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 177), + [2860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 177), + [2862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 178), + [2864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 178), + [2866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 179), + [2868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 179), + [2870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 132), + [2872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 132), + [2874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 180), + [2876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 180), + [2878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, 0, 181), + [2880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, 0, 181), + [2882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2, 0, 0), + [2884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2, 0, 0), + [2886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, 0, 182), + [2888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, 0, 182), + [2890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, 0, 183), + [2892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, 0, 183), + [2894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 270), + [2896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 270), + [2898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 271), + [2900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 271), + [2902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [2904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 6, 0, 186), + [2906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 6, 0, 186), + [2908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), + [2910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), + [2912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 4, 0, 0), + [2914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 4, 0, 0), + [2916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, 0, 81), + [2918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, 0, 81), + [2920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 190), + [2922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 190), + [2924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, 0, 139), + [2926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, 0, 139), + [2928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, 0, 191), + [2930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, 0, 191), + [2932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, 0, 192), + [2934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, 0, 192), + [2936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 6, 0, 140), + [2938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 6, 0, 140), + [2940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 141), + [2942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 141), + [2944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 193), + [2946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 193), + [2948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 194), + [2950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 194), + [2952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 272), + [2954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 272), + [2956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 195), + [2958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 195), + [2960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 196), + [2962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 196), + [2964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 6, 0, 197), + [2966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 6, 0, 197), + [2968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 200), + [2970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 200), + [2972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 201), + [2974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 201), + [2976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 149), + [2978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 149), + [2980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 202), + [2982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 202), + [2984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 239), + [2986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 239), + [2988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 6, 0, 186), + [2990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 6, 0, 186), + [2992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 273), + [2994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 273), + [2996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 6, 0, 195), + [2998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 6, 0, 195), + [3000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, 0, 95), + [3002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, 0, 95), + [3004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, 0, 146), + [3006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, 0, 146), + [3008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, 0, 195), + [3010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, 0, 195), + [3012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, 0, 203), + [3014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, 0, 203), + [3016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 6, 0, 195), + [3018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 6, 0, 195), + [3020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 204), + [3022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 204), + [3024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 205), + [3026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 205), + [3028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 206), + [3030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 206), + [3032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 207), + [3034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 207), + [3036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 208), + [3038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 208), + [3040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 241), + [3042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 241), + [3044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1, 0, 0), + [3046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1, 0, 0), + [3048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 274), + [3050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 274), + [3052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, 0, 275), + [3054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, 0, 275), + [3056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 4, 0, 60), + [3058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 4, 0, 60), + [3060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 4, 0, 6), + [3062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 4, 0, 6), + [3064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 5, 0, 0), + [3066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 5, 0, 0), + [3068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 276), + [3070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 276), + [3072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 277), + [3074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 277), + [3076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 7, 0, 60), + [3078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 7, 0, 60), + [3080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 7, 0, 6), + [3082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 7, 0, 6), + [3084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 245), + [3086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 245), + [3088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, 0, 291), + [3090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, 0, 291), + [3092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2130), + [3094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3743), + [3096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3853), + [3098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2351), + [3100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), + [3102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2025), + [3104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2564), + [3106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [3108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3558), + [3110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3783), + [3112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1571), + [3114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1568), + [3116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2620), + [3118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2579), + [3120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2596), + [3122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2605), + [3124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2631), + [3126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2626), + [3128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2222), + [3130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3566), + [3132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), + [3134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3781), + [3136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3003), + [3138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3690), + [3140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2944), + [3142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3571), + [3144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3024), + [3146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3697), + [3148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), + [3150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3515), + [3152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2363), + [3154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3149), + [3156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(842), + [3158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2630), + [3160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3151), + [3162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3153), + [3164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), + [3166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3206), + [3168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3210), + [3170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [3172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), + [3174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3102), + [3176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), + [3178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2226), + [3180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), + [3182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [3184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1010), + [3186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(832), + [3188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2570), + [3190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2170), + [3192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [3194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(969), + [3196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(964), + [3198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(954), + [3200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3136), + [3202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(847), + [3204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1089), + [3206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [3208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), + [3210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [3212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3493), + [3214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [3216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1410), + [3218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), + [3220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [3222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3238), + [3224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2173), + [3226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3225), + [3228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2656), + [3230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(957), + [3232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1322), + [3234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(916), + [3236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3719), + [3238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), + [3240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), + [3242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(857), + [3244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1605), + [3246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [3248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [3250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [3252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3276), + [3254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [3256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1717), + [3258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), + [3260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [3262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3299), + [3264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2149), + [3266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3286), + [3268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2758), + [3270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(980), + [3272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1333), + [3274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(940), + [3276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3736), + [3278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), + [3280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(926), + [3282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3468), + [3284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), + [3286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2186), + [3288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), + [3290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [3292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3371), + [3294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), + [3296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), + [3298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(938), + [3300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(911), + [3302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2178), + [3304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), + [3306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), + [3308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2181), + [3310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), + [3312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), + [3314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3424), + [3316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1000), + [3318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), + [3320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), + [3322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), + [3324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2190), + [3326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), + [3328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), + [3330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(960), + [3332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2183), + [3334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), + [3336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2155), + [3338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), + [3340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3560), + [3342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3819), + [3344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2165), + [3346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), + [3348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3530), + [3350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3674), + [3352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3135), + [3354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1078), + [3356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [3358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3319), + [3360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2158), + [3362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3335), + [3364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2872), + [3366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3320), + [3368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1087), + [3370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2162), + [3372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1606), + [3374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [3376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3426), + [3378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2159), + [3380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3432), + [3382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2874), + [3384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3427), + [3386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1581), + [3388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2180), + [3390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), + [3392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2020), + [3394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2147), + [3396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3486), + [3398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2022), + [3400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3467), + [3402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), + [3404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 1, 0, 0), + [3406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 1, 0, 0), + [3408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 4, 0, 0), + [3410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 4, 0, 0), + [3412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), + [3414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lifetime, 2, 0, 0), + [3416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lifetime, 2, 0, 0), + [3418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2157), + [3420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 2, 0, 19), + [3422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 2, 0, 19), + [3424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2153), + [3426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2192), + [3428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), + [3430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2187), + [3432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remaining_field_pattern, 1, 0, 0), + [3434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remaining_field_pattern, 1, 0, 0), + [3436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2177), + [3438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2188), + [3440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), + [3442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2154), + [3444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 2, 0, 23), + [3446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 2, 0, 23), + [3448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2151), + [3450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2156), + [3452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156), + [3454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, 0, 28), + [3456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [3458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, 0, 28), + [3460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2766), + [3462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2801), + [3464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [3466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_except_range, 1, 0, 1), + [3468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_except_range, 1, 0, 1), + [3470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2658), + [3472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3451), + [3474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3675), + [3476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2659), + [3478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 4, 0, 111), + [3480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 4, 0, 111), + [3482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, 0, 5), + [3484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1, 0, 5), + [3486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2663), + [3488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_type, 2, 0, 28), + [3490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_type, 2, 0, 28), + [3492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2819), + [3494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), + [3496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), + [3498] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), SHIFT_REPEAT(3494), + [3501] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3743), + [3504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_type, 2, 0, 29), + [3506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_type, 2, 0, 29), + [3508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, 0, 17), + [3510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, 0, 17), + [3512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, 0, 16), + [3514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 16), + [3516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, 0, 47), + [3518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, 0, 47), + [3520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, 0, 46), + [3522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 46), + [3524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, 0, 52), + [3526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, 0, 52), + [3528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, 0, 51), + [3530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 51), + [3532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3, 0, 0), + [3534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, 0, 0), + [3536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2573), + [3538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 3, 0, 0), + [3540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [3542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3318), + [3544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3096), + [3546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [3548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3275), + [3550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2955), + [3552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3439), + [3554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3668), + [3556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3668), + [3558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 1, 0, 0), + [3560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, 0, 0), + [3562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, 0, 0), + [3564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 4, 0, 112), + [3566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 4, 0, 112), + [3568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, 0, 29), + [3570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, 0, 29), + [3572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2847), + [3574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__item_modifiers, 1, 0, 0), + [3576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 6, 0, 0), + [3578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 6, 0, 0), + [3580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 2, 0, 7), + [3582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 2, 0, 7), + [3584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 2, 0, 6), + [3586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, 0, 6), + [3588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5, 0, 0), + [3590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, 0, 0), + [3592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 4, 0, 0), + [3594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), + [3596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1, 0, 0), + [3598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 1, 0, 0), + [3600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 1, 0, 0), + [3602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 5, 0, 127), + [3604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 5, 0, 127), + [3606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 5, 0, 127), + [3608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1090), + [3610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [3612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3543), + [3614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3289), + [3616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2233), + [3618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3265), + [3620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3041), + [3622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3733), + [3624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3733), + [3626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1607), + [3628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [3630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3685), + [3632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3302), + [3634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2242), + [3636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3359), + [3638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3074), + [3640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3737), + [3642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3737), + [3644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), + [3646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2757), + [3648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 184), + [3650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 184), + [3652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, 0, 184), + [3654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2220), + [3656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3747), + [3658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2241), + [3660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3313), + [3662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2035), + [3664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4, 0, 0), + [3666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4, 0, 0), + [3668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2433), + [3670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 4, 0, 0), + [3672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 4, 0, 0), + [3674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 1, 0, 0), + [3676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 1, 0, 0), + [3678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 6, 0, 0), + [3680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 6, 0, 0), + [3682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 6, 0, 0), + [3684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 6, 0, 0), + [3686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 2, 0, 7), + [3688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5, 0, 0), + [3690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5, 0, 0), + [3692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 5, 0, 0), + [3694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 5, 0, 0), + [3696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2652), + [3698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2651), + [3700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3222), + [3702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2654), + [3704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2654), + [3706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2, 0, 0), + [3708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 2, 0, 0), + [3710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3343), + [3712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2760), + [3714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3248), + [3716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 73), + [3718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 73), + [3720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [3722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 75), + [3724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 75), + [3726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [3728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 76), + [3730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 76), + [3732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [3734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3616), + [3736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, 0, 17), + [3738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, 0, 56), + [3740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 56), + [3742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, 0, 31), + [3744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, 0, 31), + [3746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [3748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, 0, 47), + [3750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_arm_repeat1, 1, 0, 0), + [3752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 1, 0, 0), + [3754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 1, 0, 0), + [3756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 1, 0, 0), + [3758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2861), + [3760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2729), + [3762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2727), + [3764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2730), + [3766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2730), + [3768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 22), + [3770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 22), + [3772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, 0, 52), + [3774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2743), + [3776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2740), + [3778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2744), + [3780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2744), + [3782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 24), + [3784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 24), + [3786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 25), + [3788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 25), + [3790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, 0, 27), + [3792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, 0, 27), + [3794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [3796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3, 0, 0), + [3798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3, 0, 0), + [3800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3, 0, 0), + [3802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 3, 0, 0), + [3804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3231), + [3806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 115), + [3808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 115), + [3810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [3812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), + [3814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [3816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), + [3818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, 0, 30), + [3820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, 0, 30), + [3822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [3824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, 0, 55), + [3826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 55), + [3828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 2, 0, 13), + [3830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 2, 0, 13), + [3832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_never_type, 1, 0, 0), + [3834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_never_type, 1, 0, 0), + [3836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_bounds, 3, 0, 0), + [3838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_bounds, 3, 0, 0), + [3840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 4, 0, 0), + [3842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 4, 0, 0), + [3844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 5, 0, 118), + [3846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 5, 0, 118), + [3848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bounded_type, 3, 0, 0), + [3850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bounded_type, 3, 0, 0), + [3852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 4, 0, 105), + [3854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 4, 0, 105), + [3856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6, 0, 155), + [3858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6, 0, 155), + [3860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 4, 0, 79), + [3862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 4, 0, 79), + [3864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 4, 0, 0), + [3866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 4, 0, 0), + [3868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 5, 0, 0), + [3870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 5, 0, 0), + [3872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [3874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [3876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_expression, 2, 0, 0), + [3878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_expression, 2, 0, 0), + [3880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 3, 0, 0), + [3882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 3, 0, 0), + [3884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 7, 0, 0), + [3886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 7, 0, 0), + [3888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 7, 0, 0), + [3890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 7, 0, 0), + [3892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_bounds, 5, 0, 113), + [3894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_bounds, 5, 0, 113), + [3896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 6, 0, 165), + [3898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 6, 0, 165), + [3900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 4, 0, 61), + [3902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [3904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 4, 0, 61), + [3906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), + [3908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3184), + [3910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 3, 0, 18), + [3912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 3, 0, 18), + [3914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 3, 0, 32), + [3916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 3, 0, 32), + [3918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 2, 0, 0), + [3920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 2, 0, 0), + [3922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_bounds, 5, 0, 0), + [3924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_bounds, 5, 0, 0), + [3926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6, 0, 0), + [3928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6, 0, 0), + [3930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 6, 0, 212), + [3932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 6, 0, 212), + [3934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5, 0, 106), + [3936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5, 0, 106), + [3938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 2, 0, 4), + [3940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 2, 0, 4), + [3942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_function, 3, 0, 48), + [3944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, 0, 49), + [3946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_function, 3, 0, 48), + [3948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, 0, 10), + [3950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, 0, 10), + [3952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2689), + [3954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 2, 0, 0), + [3956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 2, 0, 0), + [3958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3, 0, 0), + [3960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3, 0, 0), + [3962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_expression, 2, 0, 0), + [3964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_expression, 2, 0, 0), + [3966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5, 0, 0), + [3968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 5, 0, 0), + [3970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, 0, 162), + [3972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, 0, 162), + [3974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 7, 0, 230), + [3976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 7, 0, 230), + [3978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, 0, 164), + [3980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, 0, 164), + [3982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 2, 0, 0), + [3984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 2, 0, 0), + [3986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 4, 0, 0), + [3988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 4, 0, 0), + [3990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, 0, 163), + [3992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, 0, 163), + [3994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2, 0, 0), + [3996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2, 0, 0), + [3998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_type, 2, 0, 0), + [4000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_type, 2, 0, 0), + [4002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_removed_trait_bound, 2, 0, 0), + [4004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_removed_trait_bound, 2, 0, 0), + [4006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 2, 0, 26), + [4008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 2, 0, 26), + [4010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 6, 0, 0), + [4012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 6, 0, 0), + [4014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 4, 0, 0), + [4016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 4, 0, 0), + [4018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 53), + [4020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 53), + [4022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [4024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_higher_ranked_trait_bound, 3, 0, 87), + [4026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_higher_ranked_trait_bound, 3, 0, 87), + [4028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_bounds, 6, 0, 113), + [4030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_bounds, 6, 0, 113), + [4032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4, 0, 0), + [4034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4, 0, 0), + [4036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 4, 0, 109), + [4038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 4, 0, 109), + [4040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_bounds, 6, 0, 0), + [4042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_bounds, 6, 0, 0), + [4044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 110), + [4046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 110), + [4048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5, 0, 0), + [4050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5, 0, 0), + [4052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 5, 0, 136), + [4054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 5, 0, 136), + [4056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_bounds, 4, 0, 0), + [4058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_bounds, 4, 0, 0), + [4060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_bounds, 4, 0, 113), + [4062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_bounds, 4, 0, 113), + [4064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 114), + [4066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 114), + [4068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 5, 0, 159), + [4070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 5, 0, 159), + [4072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 116), + [4074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 116), + [4076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3, 0, 0), + [4078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3, 0, 0), + [4080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 5, 0, 0), + [4082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 5, 0, 0), + [4084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3, 0, 71), + [4086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3, 0, 71), + [4088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type, 3, 0, 72), + [4090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type, 3, 0, 72), + [4092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 3, 0, 72), + [4094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 3, 0, 72), + [4096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2814), + [4098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3272), + [4100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), + [4102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 3, 0, 0), + [4104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 3, 0, 0), + [4106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 5, 0, 0), + [4108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 5, 0, 0), + [4110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4, 0, 0), + [4112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4, 0, 0), + [4114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_cast_expression, 3, 0, 57), + [4116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_cast_expression, 3, 0, 57), + [4118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, 0, 58), + [4120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, 0, 11), + [4122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, 0, 11), + [4124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 3, 0, 0), + [4126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 3, 0, 0), + [4128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, 0, 12), + [4130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, 0, 12), + [4132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 6, 0, 0), + [4134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 6, 0, 0), + [4136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 0), + [4138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 0), + [4140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 1, 0, 0), + [4142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 1, 0, 0), + [4144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_visibility_modifier, 1, 0, 0), SHIFT(3237), + [4147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3430), + [4149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_visibility_modifier, 1, 0, 0), SHIFT(2841), + [4152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5, 0, 135), + [4154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5, 0, 135), + [4156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5, 0, 0), + [4158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5, 0, 0), + [4160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 4, 0, 0), + [4162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 4, 0, 0), + [4164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3380), + [4166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(284), + [4168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), + [4170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297), + [4172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(351), + [4174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [4176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2827), + [4178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [4180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(293), + [4182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), + [4184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [4186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(287), + [4188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), [4190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_assignment_expr, 3, 0, 53), - [4192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_assignment_expr, 3, 0, 53), - [4194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 54), - [4196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, 0, 54), - [4198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 3, 0, 0), - [4200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 3, 0, 0), - [4202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2621), - [4204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2488), - [4206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), - [4208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2723), - [4210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2691), - [4212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2739), - [4214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [4216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(39), - [4218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [4220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [4222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2532), - [4224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3208), - [4226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2538), - [4228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3328), - [4230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2472), - [4232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2726), - [4234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [4236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [4238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [4240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [4242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), - [4244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340), - [4246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), - [4248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(342), - [4250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(343), - [4252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [4254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [4256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(346), - [4258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [4260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(348), - [4262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [4264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(349), - [4266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(59), - [4268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [4270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3377), - [4272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2542), - [4274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3414), - [4276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [4278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [4280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3585), - [4282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2610), - [4284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3487), - [4286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(58), - [4288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [4290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3510), - [4292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [4294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [4296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2, 0, 0), - [4298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3309), - [4300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), - [4302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [4304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [4306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [4308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [4310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [4312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3385), - [4314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2607), - [4316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), - [4318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2950), - [4320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3102), - [4322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2543), - [4324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3662), - [4326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2554), - [4328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2527), - [4330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2527), - [4332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), - [4334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [4336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [4338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [4340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3198), - [4342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [4344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [4346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [4348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 3, 0, 0), - [4350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [4352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3319), - [4354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [4356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), - [4358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277), - [4360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), - [4362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283), - [4364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3136), - [4366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [4368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, 0, 127), - [4370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), - [4372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [4374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), - [4376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_condition, 4, 0, 127), - [4378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [4380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2858), - [4382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 5, 0, 258), - [4384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278), - [4386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), - [4388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(280), - [4390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [4392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [4394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [4396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(286), - [4398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(50), - [4400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [4402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), - [4404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(366), - [4406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), - [4408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(381), - [4410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(382), - [4412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [4414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [4416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(389), - [4418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [4420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), - [4422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [4424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), - [4426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(57), - [4428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [4430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3088), - [4432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, 0, 147), - [4434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, 0, 148), - [4436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__let_chain, 3, 0, 0), - [4438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), - [4440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [4442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [4444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2846), - [4446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [4448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), - [4450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [4452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), - [4454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), - [4456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [4458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [4460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(53), - [4462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [4464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, 0, 166), - [4466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), - [4468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2775), - [4470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), - [4472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2788), - [4474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), - [4476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), - [4478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), - [4480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2795), - [4482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [4484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2821), - [4486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 3, 0, 184), - [4488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), - [4490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), - [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2798), - [4494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [4496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), - [4498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [4500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [4502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__condition, 1, 0, 0), - [4504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [4506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [4508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 4, 0, 198), - [4510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 4, 0, 199), - [4512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [4514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), - [4516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3173), - [4518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, 0, 214), - [4520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, 0, 215), - [4522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [4524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_field_initializer, 2, 0, 0), - [4526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [4528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2684), - [4530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 18), - [4532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), - [4534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [4536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), - [4538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), - [4540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), - [4542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), - [4544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [4546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), - [4548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [4550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), - [4552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), - [4554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(45), - [4556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [4558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), - [4560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), - [4562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [4564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [4566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), - [4568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), - [4570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), - [4572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), - [4574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 117), - [4576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), - [4578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), - [4580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [4582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [4584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), - [4586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [4588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [4590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2814), - [4592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3620), - [4594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3244), - [4596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3154), - [4598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3670), - [4600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3670), - [4602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2857), - [4604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2677), - [4606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2697), - [4608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2845), - [4610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2838), - [4612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2849), - [4614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2616), - [4616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 5, 0, 0), - [4618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 5, 0, 0), - [4620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 4, 0, 0), - [4622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 4, 0, 0), - [4624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 6, 0, 0), - [4626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 6, 0, 0), - [4628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2387), - [4630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2351), - [4632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2400), - [4634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), - [4636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3191), - [4638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3190), - [4640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3270), - [4642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3195), - [4644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3195), - [4646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3286), - [4648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3435), - [4650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3293), - [4652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3293), - [4654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 0), - [4656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [4658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), - [4660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1, 0, 0), - [4662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2721), - [4664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [4666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1066), - [4668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), - [4670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2675), - [4672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [4674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [4676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2705), - [4678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2866), - [4680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3417), - [4682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), - [4684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), - [4686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3804), - [4688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3451), - [4690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3805), - [4692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3181), - [4694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3808), - [4696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3799), - [4698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3791), - [4700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3809), - [4702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), - [4704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), - [4706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), - [4708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 1), - [4710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1, 0, 1), - [4712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2696), - [4714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1067), - [4716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), - [4718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3269), - [4720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), - [4722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3797), - [4724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3465), - [4726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3811), - [4728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2958), - [4730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3505), - [4732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3815), - [4734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3537), - [4736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3622), - [4738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2372), - [4740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), - [4742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), - [4744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3290), - [4746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3555), - [4748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), - [4750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2777), - [4752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3302), - [4754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [4756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2688), - [4758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [4760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), - [4762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [4764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, 0, 5), REDUCE(sym__pattern, 1, 0, 0), - [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2661), - [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3403), - [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [4773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2631), - [4775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3397), - [4777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3254), - [4779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3378), - [4781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_negative_literal, 2, 0, 0), - [4783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_negative_literal, 2, 0, 0), - [4785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), - [4787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), - [4789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [4791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), - [4793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [4795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), - [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), - [4799] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, 0, 6), REDUCE(sym_scoped_type_identifier, 2, 0, 7), - [4802] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 51), REDUCE(sym_scoped_type_identifier, 3, 0, 52), - [4805] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 16), REDUCE(sym_scoped_type_identifier, 3, 0, 17), - [4808] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 46), REDUCE(sym_scoped_type_identifier, 3, 0, 47), - [4811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal_pattern, 1, 0, 0), - [4813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal_pattern, 1, 0, 0), - [4815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [4817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), - [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2629), - [4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [4823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1287), - [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), - [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2729), - [4829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2406), - [4831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(867), - [4833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [4835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 1, 0, 36), - [4837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2568), - [4839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2585), - [4841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3681), - [4843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3273), - [4845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_pattern, 3, 0, 68), - [4847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_pattern, 3, 0, 68), - [4849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), - [4851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), - [4853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), - [4855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [4857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2509), - [4859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2587), - [4861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, 0, 54), - [4863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, 0, 54), - [4865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2669), - [4867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3299), - [4869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [4871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 2, 0, 21), - [4873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 2, 0, 21), - [4875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2865), - [4877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3161), - [4879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 2, 0, 20), - [4881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 2, 0, 20), - [4883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3365), - [4885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2894), - [4887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3078), - [4889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), - [4891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [4893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3733), - [4895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3761), - [4897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, 0, 67), - [4899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, 0, 67), - [4901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [4903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 1, 0, 0), - [4905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3523), - [4907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, 0, 62), - [4909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, 0, 62), - [4911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), - [4913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3734), - [4915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), - [4917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3533), - [4919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, 0, 63), - [4921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, 0, 63), - [4923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), - [4925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [4927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [4929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [4931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), - [4933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [4935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2971), - [4937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3157), - [4939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3560), - [4941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3718), - [4943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_modifiers_repeat1, 1, 0, 0), - [4945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3803), - [4947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3762), - [4949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [4951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3747), - [4953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3722), - [4955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 4, 0, 0), - [4957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 4, 0, 0), - [4959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 4, 0, 64), - [4961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ref_pattern, 2, 0, 0), - [4963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, 0, 65), - [4965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 4, 0, 70), - [4967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, 0, 64), - [4969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), - [4971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 5, 0, 0), - [4973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 5, 0, 0), - [4975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 3, 0, 64), - [4977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 5, 0, 64), - [4979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, 0, 65), - [4981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, 0, 65), - [4983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 5, 0, 70), - [4985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_captured_pattern, 3, 0, 0), - [4987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, 0, 64), - [4989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2847), - [4991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3, 0, 0), - [4993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2623), - [4995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1282), - [4997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), - [4999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3278), - [5001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2339), - [5003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), - [5005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3568), - [5007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 3, 0, 0), - [5009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), - [5011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), - [5013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 3, 0, 0), - [5015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2657), - [5017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [5019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3587), - [5021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 3, 0, 70), - [5023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, 0, 64), - [5025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), - [5027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern, 3, 0, 0), - [5029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mut_pattern, 2, 0, 0), - [5031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), - [5033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 6, 0, 64), - [5035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, 0, 65), - [5037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 6, 0, 70), - [5039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, 0, 64), - [5041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2632), - [5043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 2, 0, 0), - [5045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 2, 0, 0), - [5047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 2, 0, 0), - [5049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern, 2, 0, 0), - [5051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), - [5053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3541), - [5055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [5057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), - [5059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [5061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3251), - [5063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), - [5065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [5067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), - [5069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), - [5071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), - [5073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), - [5075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2730), - [5077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3415), - [5079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3250), - [5081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [5083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), - [5085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [5087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 3, 0, 0), - [5089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [5091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [5093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [5095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), - [5097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), - [5099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [5101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), - [5103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [5105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), - [5107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), - [5109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), REDUCE(sym__pattern, 1, 0, 1), - [5112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3238), - [5114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [5116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2, 0, 0), - [5118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2, 0, 0), SHIFT_REPEAT(871), - [5121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 2, 0, 0), - [5123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [5125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [5127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [5129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [5131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), - [5133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [5135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [5137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [5139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2662), - [5141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [5143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [5145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), - [5147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(79), - [5150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2, 0, 0), - [5152] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(70), - [5155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(75), - [5158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [5160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [5162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [5164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [5166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), - [5168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), - [5170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [5172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), - [5174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), - [5176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), - [5178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), - [5180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), - [5182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), - [5184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [5186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [5188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), - [5190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), - [5192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2932), - [5194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), - [5196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3216), - [5198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3563), - [5200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3375), - [5202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3584), - [5204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(2461), - [5207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2, 0, 0), - [5209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(2296), - [5212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [5214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [5216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), - [5218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), - [5220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3013), - [5222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3631), - [5224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [5226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [5228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2750), - [5230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [5232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [5234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [5236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [5238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [5240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [5242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [5244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_modifiers, 1, 0, 0), - [5246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2296), - [5248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [5250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [5252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [5254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [5256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), - [5258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), - [5260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), - [5262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3504), - [5264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 2, 0, 0), - [5266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [5268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [5270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), - [5272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2997), - [5274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3525), - [5276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), - [5278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), - [5280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), - [5282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [5284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [5286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [5288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [5290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [5292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [5294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [5296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3760), - [5298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [5300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [5302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 1, 0, 37), - [5304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [5306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1107), - [5308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3137), - [5310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), - [5312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), - [5314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3786), - [5316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), - [5318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3019), - [5320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3657), - [5322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3156), - [5324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3413), - [5326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3637), - [5328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3424), - [5330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), - [5332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [5334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [5336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, 0, 1), - [5338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [5340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [5342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3709), - [5344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3796), - [5346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 1, 0, 0), - [5348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(929), - [5350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3291), - [5352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3313), - [5354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2493), - [5356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [5358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3648), - [5360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), - [5362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [5364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), - [5366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, 0, 6), - [5368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [5370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), - [5372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [5374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), - [5376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3516), - [5378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3715), - [5380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, 0, 0), - [5382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [5384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3016), - [5386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3605), - [5388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3820), - [5390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3671), - [5392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3503), - [5394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3316), - [5396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3535), - [5398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), - [5400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2935), - [5402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [5404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2939), - [5406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3532), - [5408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), - [5410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3740), - [5412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2469), - [5414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 2, 0, 0), - [5416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(939), - [5418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3224), - [5420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3712), - [5422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3548), - [5424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), - [5426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [5428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [5430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3561), - [5432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3739), - [5434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2420), - [5436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2441), - [5438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [5440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [5442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [5444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2, 0, 0), - [5446] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1433), - [5449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [5451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), - [5453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [5455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), - [5457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), - [5459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), - [5461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), - [5463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), - [5465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), - [5467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), - [5469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), - [5471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [5473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), - [5475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 2, 0, 0), - [5477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), - [5479] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 3, 0, 0), REDUCE(sym_tuple_struct_pattern, 4, 0, 64), - [5482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), - [5484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), - [5486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), - [5488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), - [5490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [5492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), - [5494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [5496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [5498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [5500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), - [5502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [5504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [5506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), - [5508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [5510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [5512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [5514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2575), - [5516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [5518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [5520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [5522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [5524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 3, 0, 0), - [5526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [5528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [5530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [5532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), - [5534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [5536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), - [5538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [5540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), - [5542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [5544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), - [5546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [5548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [5550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [5552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), - [5554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [5556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), - [5558] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 2, 0, 0), REDUCE(sym_tuple_struct_pattern, 3, 0, 64), - [5561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), - [5563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [5565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), - [5567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [5569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [5571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [5573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [5575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [5577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), - [5579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), - [5581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [5583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [5585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), - [5587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), - [5589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1103), - [5591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3123), - [5593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), - [5595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), - [5597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), - [5599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, 0, 109), - [5601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), - [5603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), - [5605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 2, 0, 0), - [5607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), - [5609] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 0), SHIFT(2045), - [5612] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 0), SHIFT(262), - [5615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1, 0, 0), - [5617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), - [5619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3806), - [5621] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), REDUCE(sym__pattern, 1, 0, 0), - [5624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, 0, 72), - [5626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3034), - [5628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), - [5630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3649), - [5632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, 0, 26), - [5634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, 0, 187), - [5636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), - [5638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [5640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2885), - [5642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), - [5644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3659), - [5646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [5648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3, 0, 0), - [5650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1, 0, 1), - [5652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2513), - [5654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3636), - [5656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [5658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [5660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), - [5662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), - [5664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [5666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2761), - [5668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, 0, 120), - [5670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, 0, 121), - [5672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3153), - [5674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3615), - [5676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1109), - [5678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2998), - [5680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3, 0, 26), - [5682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [5684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [5686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [5688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, 0, 232), - [5690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), - [5692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, 0, 109), - [5694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [5696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), - [5698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [5700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [5702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), - [5704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [5706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_unit_type, 2, 0, 0), REDUCE(sym_tuple_pattern, 2, 0, 0), - [5709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, 0, 266), - [5711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [5713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [5715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [5717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [5719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lifetime_parameter, 1, 0, 37), - [5721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3060), - [5723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2068), - [5725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3573), - [5727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [5729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [5731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [5733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [5735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), - [5737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [5739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [5741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2694), - [5743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [5745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [5747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, 0, 187), - [5749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 7, 0, 266), - [5751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), - [5753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), - [5755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [5757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [5759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), - [5761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [5763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3821), - [5765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3384), - [5767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3373), - [5769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3763), - [5771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), - [5773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), - [5775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [5777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [5779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [5781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2713), - [5783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [5785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), - [5787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), - [5789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [5791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [5793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2731), - [5795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), - [5797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 0), - [5799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, 0, 72), - [5801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, 0, 232), - [5803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2753), - [5805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), - [5807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2002), - [5809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3064), - [5811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1608), - [5813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [5815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [5817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [5819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [5821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), - [5823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [5825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2475), - [5827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2982), - [5829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2112), - [5831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2020), - [5833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1088), - [5835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), - [5837] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2982), - [5840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [5842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [5844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2797), - [5846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [5848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [5850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [5852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3156), - [5854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3424), - [5856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3011), - [5858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3193), - [5860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [5862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 107), - [5864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [5866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3084), - [5868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3277), - [5870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2972), - [5872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [5874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_slice_pattern_repeat1, 2, 0, 0), - [5876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [5878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [5880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [5882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [5884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 69), - [5886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2106), - [5888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [5890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2973), - [5892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [5894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), - [5896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [5898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2007), - [5900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), - [5902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [5904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1601), - [5906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), - [5908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [5910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), - [5912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [5914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3380), - [5916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), - [5918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2107), - [5920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3357), - [5922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [5924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [5926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [5928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [5930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2232), - [5932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [5934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3130), - [5936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [5938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3132), - [5940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [5942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [5944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), - [5946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3682), - [5948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), - [5950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [5952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [5954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2685), - [5956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [5958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), - [5960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [5962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [5964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2843), - [5966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [5968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1612), - [5970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1624), - [5972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), - [5974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3124), - [5976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3119), - [5978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), - [5980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2159), - [5982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [5984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), - [5986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [5988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2995), - [5990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), - [5992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2892), - [5994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), - [5996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1161), - [5998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), - [6000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [6002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2774), - [6004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), - [6006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_slice_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(838), - [6009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), - [6011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2, 0, 0), - [6013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_rule, 3, 0, 54), - [6015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [6017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2701), - [6019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 4, 0, 210), - [6021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), - [6023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_parameter, 4, 0, 119), - [6025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3028), - [6027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), - [6029] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2, 0, 0), SHIFT_REPEAT(209), - [6032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [6034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [6036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [6038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [6040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 3, 0, 0), - [6042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), - [6044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3006), - [6046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), - [6048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), - [6050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [6052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2700), - [6054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [6056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), - [6058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3754), - [6060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), - [6062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), - [6064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), - [6066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [6068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3126), - [6070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3370), - [6072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [6074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [6076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), - [6078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [6080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3199), - [6082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 3, 0, 156), - [6084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [6086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [6088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2853), - [6090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [6092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [6094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2637), - [6096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [6098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), - [6100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [6102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2787), - [6104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), - [6106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [6108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [6110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3107), - [6112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3106), - [6114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), - [6116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [6118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3303), - [6120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), - [6122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), - [6124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), - [6126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [6128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), - [6130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [6132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [6134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [6136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), - [6138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), - [6140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [6142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), - [6144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), - [6146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), - [6148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), - [6150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), - [6152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), - [6154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), - [6156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), - [6158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), - [6160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), - [6162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), - [6164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), - [6166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2864), - [6168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3131), - [6170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), - [6172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3133), - [6174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), - [6176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, 0, 233), - [6178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [6180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), - [6182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2799), - [6184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), - [6186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2800), - [6188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), - [6190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [6192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [6194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [6196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), - [6198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), - [6200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [6202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), - [6204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), - [6206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), - [6208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [6210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), - [6212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), - [6214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), - [6216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), - [6218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), - [6220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), - [6222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1190), - [6224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1476), - [6226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), - [6228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), - [6230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2, 0, 0), - [6232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2265), - [6235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [6237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1, 0, 0), - [6239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [6241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [6243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 4, 0, 174), - [6245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [6247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [6249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [6251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), - [6253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [6255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2348), - [6257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [6259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [6261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [6263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2859), - [6265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2861), - [6267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2253), - [6269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3750), - [6271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [6273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), - [6275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), - [6277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), - [6279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 1, 0, 66), - [6281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [6283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), - [6285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [6287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2254), - [6289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), - [6291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), - [6293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), - [6295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), - [6297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [6299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), - [6301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [6303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [6305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [6307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [6309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [6311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [6313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [6315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 2, 0, 0), - [6317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [6319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2, 0, 0), - [6321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3118), - [6323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), - [6325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [6327] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(611), - [6330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2256), - [6332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3569), - [6334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3343), - [6336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3565), - [6338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), - [6340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), - [6342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 4, 0, 109), - [6344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), - [6346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), - [6348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), - [6350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [6352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2257), - [6354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [6356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [6358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [6360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 2, 0, 108), - [6362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [6364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), - [6366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), - [6368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), - [6370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2574), - [6372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [6374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [6376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), - [6378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), - [6380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [6382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [6384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 1, 0, 0), - [6386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), - [6388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), - [6390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2350), - [6392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [6394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), - [6396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [6398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, 0, 0), - [6400] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, 0, 0), SHIFT_REPEAT(927), - [6403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), - [6405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), - [6407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [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, 42), - [6413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [6415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), - [6417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [6419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2272), - [6421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [6423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [6425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [6427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3687), - [6429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3194), - [6431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3211), - [6433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [6435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), - [6437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), - [6439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3115), - [6441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [6443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [6445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [6447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2614), - [6449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [6451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, 0, 26), - [6453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), - [6455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3020), - [6457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [6459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2744), - [6461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [6463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2682), - [6465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, 0, 188), - [6467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, 0, 188), SHIFT_REPEAT(800), - [6470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), - [6472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2850), - [6474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), - [6476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2851), - [6478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, 0, 189), - [6480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3332), - [6482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [6484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2, 0, 0), - [6486] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2287), - [6489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [6491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), - [6493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2, 0, 0), - [6495] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1953), - [6498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), - [6500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2863), - [6502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [6504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2266), - [6506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [6508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [6510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2, 0, 0), - [6512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, 0, 11), - [6514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [6516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), - [6518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), - [6520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2856), - [6522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [6524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [6526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 3, 0, 72), - [6528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3261), - [6530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 0), SHIFT_REPEAT(457), - [6533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [6535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), - [6537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, 0, 157), - [6539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [6541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, 0, 158), - [6543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 128), - [6545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2, 0, 0), - [6547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(2450), - [6550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [6552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [6554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 1, 0, 0), - [6556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [6558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [6560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), - [6562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), - [6564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), - [6566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(2146), - [6569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), - [6571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3283), - [6573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [6575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [6577] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(810), - [6580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 5, 0, 0), - [6582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [6584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [6586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [6588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [6590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(319), - [6593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3720), - [6595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3484), - [6597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3788), - [6599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2473), - [6601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 5, 0, 257), - [6603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 1, 0, 0), - [6605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__condition, 1, 0, 9), - [6607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3200), - [6609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3379), - [6611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), - [6613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), - [6615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), - [6617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), - [6619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), - [6621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2379), - [6623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [6625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [6627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [6629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2307), - [6631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [6633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [6635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [6637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), - [6639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [6641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), - [6643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2, 0, 0), - [6645] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2, 0, 0), SHIFT_REPEAT(3395), - [6648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), - [6650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), - [6652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 3, 0, 0), - [6654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), - [6656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), - [6658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), - [6660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), - [6662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2261), - [6664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3, 0, 1), - [6666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), - [6668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), - [6670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2394), - [6672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), - [6674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3441), - [6676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, 0, 96), - [6678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, 0, 97), - [6680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 4, 0, 211), - [6682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1674), - [6684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1870), - [6686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), - [6688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3, 0, 0), - [6690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 4, 0, 0), - [6692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, 0, 98), - [6694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_bounds_repeat1, 2, 0, 0), - [6696] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_bounds_repeat1, 2, 0, 0), SHIFT_REPEAT(3146), - [6699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, 0, 99), - [6701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [6703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, 0, 85), - [6705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), - [6707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), - [6709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [6711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), - [6713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [6715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [6717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 2, 0, 0), - [6719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [6721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3452), - [6723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [6725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3274), - [6727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [6729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [6731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [6733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2553), - [6735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), - [6737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), - [6739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), - [6741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [6743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [6745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), - [6747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), - [6749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), - [6751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [6753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), - [6755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), - [6757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 4, 0, 0), - [6759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), - [6761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2, 0, 0), - [6763] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2, 0, 0), SHIFT_REPEAT(2326), - [6766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), - [6768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, 0, 41), - [6770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [6772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), - [6774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), - [6776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [6778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3735), - [6780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3491), - [6782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3801), - [6784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [6786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [6788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [6790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [6792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2862), - [6794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), + [4192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [4194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_assignment_expr, 3, 0, 53), + [4196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(39), + [4198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [4200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 54), + [4202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, 0, 54), + [4204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 3, 0, 0), + [4206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 3, 0, 0), + [4208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2745), + [4210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 2, 0, 0), + [4212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 2, 0, 0), + [4214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [4216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), + [4218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 3, 0, 0), + [4220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 3, 0, 0), + [4222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2, 0, 0), + [4224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 2, 0, 0), + [4226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2816), + [4228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2831), + [4230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2150), + [4232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2767), + [4234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2442), + [4236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2664), + [4238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2544), + [4240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3271), + [4242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2576), + [4244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3270), + [4246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2628), + [4248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3511), + [4250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2667), + [4252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2528), + [4254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3363), + [4256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [4258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(37), + [4260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [4262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [4264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(313), + [4266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(314), + [4268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(315), + [4270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(316), + [4272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), + [4274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [4276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [4278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), + [4280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [4282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), + [4284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [4286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), + [4288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(62), + [4290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [4292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [4294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [4296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3433), + [4298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3813), + [4300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2476), + [4302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2768), + [4304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [4306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [4308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [4310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [4312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3621), + [4314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [4316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(58), + [4318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [4320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2, 0, 0), + [4322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [4324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [4326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), + [4328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [4330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [4332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [4334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [4336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [4338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [4340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [4342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3480), + [4344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [4346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 3, 0, 0), + [4348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), + [4350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [4352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [4354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [4356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2577), + [4358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), + [4360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3216), + [4362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3088), + [4364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2560), + [4366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3829), + [4368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2563), + [4370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2578), + [4372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2578), + [4374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3290), + [4376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3300), + [4378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3330), + [4380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(353), + [4382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(354), + [4384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(355), + [4386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(356), + [4388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(357), + [4390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [4392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [4394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), + [4396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [4398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(364), + [4400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [4402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(309), + [4404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(312), + [4406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), + [4408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), + [4410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326), + [4412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(400), + [4414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [4416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [4418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274), + [4420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [4422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278), + [4424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [4426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283), + [4428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3066), + [4430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(52), + [4432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [4434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [4436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(55), + [4438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [4440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__condition, 1, 0, 0), + [4442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [4444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_condition, 4, 0, 127), + [4446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, 0, 166), + [4448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), + [4450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [4452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [4454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2886), + [4456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [4458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), + [4460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [4462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [4464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [4466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(362), + [4468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(64), + [4470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [4472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [4474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), + [4476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [4478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2650), + [4480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 3, 0, 184), + [4482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), + [4484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), + [4486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2864), + [4488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), + [4490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), + [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2868), + [4494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), + [4496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), + [4498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 4, 0, 198), + [4500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 4, 0, 199), + [4502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 5, 0, 258), + [4504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), + [4506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2870), + [4508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), + [4510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2871), + [4512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [4514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), + [4516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [4518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [4520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, 0, 214), + [4522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, 0, 215), + [4524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), + [4526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__let_chain, 3, 0, 0), + [4528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [4530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), + [4532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [4534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [4536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2701), + [4538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [4540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2742), + [4542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, 0, 127), + [4544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), + [4546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3042), + [4548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, 0, 147), + [4550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, 0, 148), + [4552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3065), + [4554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_field_initializer, 2, 0, 0), + [4556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), + [4558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), + [4560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), + [4562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), + [4564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), + [4566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), + [4568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(49), + [4570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [4572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 117), + [4574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [4576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 18), + [4578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), + [4580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), + [4582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [4584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [4586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), + [4588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), + [4590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [4592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), + [4594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), + [4596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), + [4598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [4600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), + [4602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [4604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [4606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), + [4608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), + [4610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), + [4612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [4614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [4616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [4618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), + [4620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2777), + [4622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3654), + [4624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3489), + [4626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3100), + [4628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3705), + [4630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3705), + [4632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2829), + [4634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2705), + [4636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2889), + [4638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2896), + [4640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2709), + [4642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2892), + [4644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2893), + [4646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 6, 0, 0), + [4648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 6, 0, 0), + [4650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 4, 0, 0), + [4652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 4, 0, 0), + [4654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 5, 0, 0), + [4656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 5, 0, 0), + [4658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2407), + [4660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2406), + [4662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2412), + [4664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2412), + [4666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3420), + [4668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3400), + [4670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3442), + [4672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3440), + [4674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3440), + [4676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3404), + [4678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3396), + [4680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3474), + [4682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3474), + [4684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 0), + [4686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [4688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), + [4690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1, 0, 0), + [4692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2766), + [4694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [4696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1076), + [4698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), + [4700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2857), + [4702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [4704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [4706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2681), + [4708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3411), + [4710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), + [4712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), + [4714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3842), + [4716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3465), + [4718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3844), + [4720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3204), + [4722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3846), + [4724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3838), + [4726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3824), + [4728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3847), + [4730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2294), + [4732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), + [4734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), + [4736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2311), + [4738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 1), + [4740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1, 0, 1), + [4742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2759), + [4744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1074), + [4746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), + [4748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3266), + [4750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2328), + [4752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3534), + [4754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3392), + [4756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3554), + [4758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2959), + [4760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3570), + [4762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3629), + [4764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3572), + [4766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3574), + [4768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2261), + [4770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), + [4772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2428), + [4774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2337), + [4776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2677), + [4778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2712), + [4780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3282), + [4782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3261), + [4784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3626), + [4786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [4788] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, 0, 5), REDUCE(sym__pattern, 1, 0, 0), + [4791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2817), + [4793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3526), + [4795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2873), + [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3237), + [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3506), + [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [4803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2799), + [4805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [4807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2671), + [4809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3450), + [4811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [4813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), + [4815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [4817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [4823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), + [4825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_negative_literal, 2, 0, 0), + [4827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_negative_literal, 2, 0, 0), + [4829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), + [4831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), + [4833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [4835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), + [4837] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 46), REDUCE(sym_scoped_type_identifier, 3, 0, 47), + [4840] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 16), REDUCE(sym_scoped_type_identifier, 3, 0, 17), + [4843] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, 0, 6), REDUCE(sym_scoped_type_identifier, 2, 0, 7), + [4846] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 51), REDUCE(sym_scoped_type_identifier, 3, 0, 52), + [4849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal_pattern, 1, 0, 0), + [4851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal_pattern, 1, 0, 0), + [4853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(867), + [4855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [4857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 1, 0, 36), + [4859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [4861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2301), + [4863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2798), + [4865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [4867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1429), + [4869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), + [4871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2769), + [4873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2625), + [4875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2597), + [4877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3784), + [4879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3402), + [4881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), + [4883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_pattern, 3, 0, 68), + [4885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_pattern, 3, 0, 68), + [4887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2583), + [4889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), + [4891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), + [4893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3535), + [4895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__item_modifiers, 1, 0, 0), + [4897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), + [4899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3435), + [4901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3200), + [4903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), + [4905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [4907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3613), + [4909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3619), + [4911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2814), + [4913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), + [4915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3637), + [4917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, 0, 67), + [4919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, 0, 67), + [4921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3279), + [4923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, 0, 62), + [4925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, 0, 62), + [4927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, 0, 54), + [4929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, 0, 54), + [4931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2830), + [4933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [4935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, 0, 63), + [4937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, 0, 63), + [4939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2833), + [4941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2966), + [4943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [4945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3123), + [4947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 2, 0, 21), + [4949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 2, 0, 21), + [4951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2921), + [4953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2658), + [4955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 2, 0, 20), + [4957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 2, 0, 20), + [4959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [4961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3078), + [4963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [4965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [4967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [4969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [4971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [4973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [4975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 3, 0, 0), + [4977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 4, 0, 0), + [4979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 3, 0, 64), + [4981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern, 3, 0, 0), + [4983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, 0, 64), + [4985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), + [4987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 4, 0, 64), + [4989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3625), + [4991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), + [4993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3691), + [4995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3699), + [4997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, 0, 65), + [4999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3, 0, 0), + [5001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2793), + [5003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1426), + [5005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), + [5007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3246), + [5009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), + [5011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2357), + [5013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [5015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3538), + [5017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, 0, 65), + [5019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 5, 0, 70), + [5021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 2, 0, 0), + [5023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, 0, 64), + [5025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), + [5027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, 0, 65), + [5029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [5031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 2, 0, 0), + [5033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mut_pattern, 2, 0, 0), + [5035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 5, 0, 0), + [5037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 3, 0, 70), + [5039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2800), + [5041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 4, 0, 0), + [5043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 6, 0, 64), + [5045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 5, 0, 64), + [5047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_captured_pattern, 3, 0, 0), + [5049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 3, 0, 0), + [5051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern, 2, 0, 0), + [5053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, 0, 65), + [5055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 2, 0, 0), + [5057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3240), + [5059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, 0, 64), + [5061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, 0, 64), + [5063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ref_pattern, 2, 0, 0), + [5065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3499), + [5067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), + [5069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [5071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3600), + [5073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), + [5075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3342), + [5077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3466), + [5079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 4, 0, 70), + [5081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 6, 0, 70), + [5083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), + [5085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3645), + [5087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 5, 0, 0), + [5089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [5091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2, 0, 0), + [5093] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2, 0, 0), SHIFT_REPEAT(882), + [5096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [5098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [5100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2239), + [5102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), + [5104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), + [5106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [5108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 2, 0, 0), + [5110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [5112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [5114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [5116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [5118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), REDUCE(sym__pattern, 1, 0, 1), + [5121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [5123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3099), + [5125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3666), + [5127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(70), + [5130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2, 0, 0), + [5132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(71), + [5135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(75), + [5138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_modifiers, 1, 0, 0), + [5140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), + [5142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [5144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2770), + [5146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [5148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [5150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [5152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), + [5154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), + [5156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), + [5158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [5160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [5162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), + [5164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [5166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), + [5168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), + [5170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 3, 0, 0), + [5172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [5174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2818), + [5176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [5178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3211), + [5180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3563), + [5182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [5184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [5186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [5188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), + [5190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [5192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [5194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [5196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3120), + [5198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3004), + [5200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3310), + [5202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3647), + [5204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3322), + [5206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3832), + [5208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3028), + [5210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3788), + [5212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [5214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [5216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [5218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), + [5220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [5222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [5224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [5226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [5228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), + [5230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [5232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [5234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [5236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [5238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [5240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [5242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [5244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), + [5246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), + [5248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), + [5250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), + [5252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), + [5254] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__item_modifiers, 2, 0, 0), SHIFT_REPEAT(2371), + [5257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__item_modifiers, 2, 0, 0), + [5259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [5261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), + [5263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [5265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), + [5267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), + [5269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [5271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), + [5273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), + [5275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), + [5277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [5279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3551), + [5281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [5283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [5285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [5287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [5289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [5291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [5293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [5295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [5297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2673), + [5299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), + [5301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3816), + [5303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [5305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2235), + [5307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3583), + [5309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [5311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3751), + [5313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [5315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3831), + [5317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3773), + [5319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), + [5321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [5323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3633), + [5325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [5327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [5329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 1, 0, 37), + [5331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [5333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), + [5335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2214), + [5337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1307), + [5339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3000), + [5341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 2, 0, 0), + [5343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(963), + [5345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3390), + [5347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), + [5349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, 0, 6), + [5351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [5353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), + [5355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), + [5357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), + [5359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), + [5361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), + [5363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), + [5365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3695), + [5367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [5369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3152), + [5371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3155), + [5373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [5375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3209), + [5377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3212), + [5379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2473), + [5381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3598), + [5383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [5385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [5387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, 0, 0), + [5389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [5391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [5393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [5395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3655), + [5397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [5399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2478), + [5401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), + [5403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2488), + [5405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3660), + [5407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3859), + [5409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3851), + [5411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3540), + [5413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [5415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3704), + [5417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3754), + [5419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), + [5421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3553), + [5423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3557), + [5425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), + [5427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 1, 0, 0), + [5429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1057), + [5431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3294), + [5433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, 0, 1), + [5435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [5437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3267), + [5439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3700), + [5441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3016), + [5443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3258), + [5445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3549), + [5447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3326), + [5449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3297), + [5451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [5453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [5455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), + [5457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [5459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [5461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), + [5463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), + [5465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), + [5467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), + [5469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2245), + [5471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 2, 0, 0), + [5473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [5475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 1, 0, 0), + [5477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3792), + [5479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [5481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [5483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), + [5485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [5487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [5489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [5491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), + [5493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), + [5495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), + [5497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [5499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [5501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [5503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), + [5505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [5507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), + [5509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), + [5511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), + [5513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), + [5515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [5517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [5519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [5521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [5523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), + [5525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), + [5527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), + [5529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), + [5531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), + [5533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), + [5535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), + [5537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), + [5539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), + [5541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [5543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2569), + [5545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [5547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [5549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), + [5551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [5553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [5555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [5557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), + [5559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [5561] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 2, 0, 0), REDUCE(sym_tuple_struct_pattern, 3, 0, 64), + [5564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [5566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [5568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [5570] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 3, 0, 0), REDUCE(sym_tuple_struct_pattern, 4, 0, 64), + [5573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 3, 0, 0), + [5575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [5577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3795), + [5579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2, 0, 0), + [5581] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1479), + [5584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [5586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [5588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [5590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3840), + [5592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [5594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3564), + [5596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [5598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), + [5600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [5602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [5604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [5606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [5608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [5610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [5612] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), REDUCE(sym__pattern, 1, 0, 0), + [5615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3049), + [5617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), + [5619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3692), + [5621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3, 0, 0), + [5623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3, 0, 26), + [5625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, 0, 266), + [5627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), + [5629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [5631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [5633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [5635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [5637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), + [5639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [5641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), + [5643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [5645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [5647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2859), + [5649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), + [5651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [5653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [5655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [5657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, 0, 109), + [5659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lifetime_parameter, 1, 0, 37), + [5661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), + [5663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [5665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3182), + [5667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), + [5669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3717), + [5671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3021), + [5673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3745), + [5675] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_unit_type, 2, 0, 0), REDUCE(sym_tuple_pattern, 2, 0, 0), + [5678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), + [5680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [5682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [5684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [5686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [5688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2898), + [5690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1, 0, 1), + [5692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2589), + [5694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3796), + [5696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), + [5698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, 0, 232), + [5700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1260), + [5702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2978), + [5704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 2, 0, 0), + [5706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 0), + [5708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2912), + [5710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), + [5712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3651), + [5714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [5716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), + [5718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [5720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [5722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [5724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [5726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2850), + [5728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1, 0, 0), + [5730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), + [5732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3793), + [5734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2526), + [5736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, 0, 109), + [5738] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 0), SHIFT(2065), + [5741] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 0), SHIFT(261), + [5744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), + [5746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [5748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [5750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [5752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), + [5754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), + [5756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [5758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1339), + [5760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2991), + [5762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), + [5764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [5766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [5768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [5770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, 0, 72), + [5772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), + [5774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, 0, 120), + [5776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, 0, 121), + [5778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [5780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), + [5782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 7, 0, 266), + [5784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), + [5786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [5788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [5790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), + [5792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), + [5794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [5796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [5798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [5800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2792), + [5802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), + [5804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), + [5806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [5808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, 0, 232), + [5810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3860), + [5812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3243), + [5814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3329), + [5816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3638), + [5818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, 0, 72), + [5820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, 0, 26), + [5822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, 0, 187), + [5824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, 0, 187), + [5826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [5828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [5830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), + [5832] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2949), + [5835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [5837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3383), + [5839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), + [5841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), + [5843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), + [5845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2949), + [5847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), + [5849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3036), + [5851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3341), + [5853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3524), + [5855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2690), + [5857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3283), + [5859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3337), + [5861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2691), + [5863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2530), + [5865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [5867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), + [5869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1620), + [5871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), + [5873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_modifiers, 2, 0, 0), + [5875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2974), + [5877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [5879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2976), + [5881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [5883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2119), + [5885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2029), + [5887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [5889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [5891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), + [5893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [5895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2012), + [5897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [5899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), + [5901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1422), + [5903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2264), + [5905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3103), + [5907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [5909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3105), + [5911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [5913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [5915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [5917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2885), + [5919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [5921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [5923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2711), + [5925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [5927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), + [5929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [5931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2863), + [5933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [5935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2773), + [5937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [5939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [5941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), + [5943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3809), + [5945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2624), + [5947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [5949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), + [5951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), + [5953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), + [5955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [5957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2867), + [5959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), + [5961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), + [5963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), + [5965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3113), + [5967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), + [5969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2970), + [5971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), + [5973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), + [5975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), + [5977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), + [5979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), + [5981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), + [5983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), + [5985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [5987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [5989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [5991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), + [5993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [5995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3033), + [5997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3323), + [5999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [6001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [6003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [6005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [6007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [6009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1626), + [6011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1660), + [6013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2175), + [6015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [6017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), + [6019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [6021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [6023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2018), + [6025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [6027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 4, 0, 210), + [6029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [6031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [6033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2699), + [6035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), + [6037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), + [6039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), + [6041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), + [6043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2469), + [6045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3071), + [6047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [6049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [6051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [6053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), + [6055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2125), + [6057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1100), + [6059] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2, 0, 0), SHIFT_REPEAT(208), + [6062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [6064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [6066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2903), + [6068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3242), + [6070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), + [6072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [6074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [6076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [6078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [6080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [6082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2124), + [6084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [6086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2229), + [6088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [6090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), + [6092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), + [6094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1614), + [6096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [6098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), + [6100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3016), + [6102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3326), + [6104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_rule, 3, 0, 54), + [6106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3143), + [6108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), + [6110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), + [6112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3546), + [6114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3073), + [6116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3068), + [6118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [6120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [6122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2688), + [6124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [6126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 3, 0, 156), + [6128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 69), + [6130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [6132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2243), + [6134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [6136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2, 0, 0), + [6138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 3, 0, 0), + [6140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), + [6142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), + [6144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [6146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [6148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [6150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3166), + [6152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), + [6154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [6156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [6158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2776), + [6160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [6162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), + [6164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_parameter, 4, 0, 119), + [6166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), + [6168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [6170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [6172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [6174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2804), + [6176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [6178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3116), + [6180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3115), + [6182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_slice_pattern_repeat1, 2, 0, 0), + [6184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [6186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [6188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [6190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_slice_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(848), + [6193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [6195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [6197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 107), + [6199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2548), + [6201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [6203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3255), + [6205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 2, 0, 0), + [6207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3104), + [6209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2377), + [6211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3106), + [6213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2378), + [6215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [6217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [6219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [6221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [6223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), + [6225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2715), + [6227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), + [6229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2716), + [6231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [6233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [6235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), + [6237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [6239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2862), + [6241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2984), + [6243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), + [6245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), + [6247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2275), + [6249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2865), + [6251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), + [6253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), + [6255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), + [6257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [6259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), + [6261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2276), + [6263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), + [6265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), + [6267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), + [6269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 2, 0, 108), + [6271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [6273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [6275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), + [6277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), + [6279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [6281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [6283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [6285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [6287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [6289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [6291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [6293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2380), + [6295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [6297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), + [6299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3755), + [6301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3505), + [6303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3821), + [6305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 1, 0, 0), + [6307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2731), + [6309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2732), + [6311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2278), + [6313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2629), + [6315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [6317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), + [6319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), + [6321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3533), + [6323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3504), + [6325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3532), + [6327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [6329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), + [6331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), + [6333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [6335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2279), + [6337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), + [6339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), + [6341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [6343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), + [6345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3338), + [6347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [6349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [6351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), + [6353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [6355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), + [6357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 2, 0, 0), + [6359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [6361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [6363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2499), + [6365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 3, 0, 0), + [6367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2280), + [6369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 5, 0, 257), + [6371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), + [6373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), + [6375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), + [6377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3, 0, 1), + [6379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), + [6381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), + [6383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, 0, 96), + [6385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), + [6387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [6389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, 0, 97), + [6391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2281), + [6393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 2, 0, 42), + [6395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3, 0, 0), + [6397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, 0, 98), + [6399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, 0, 99), + [6401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), + [6403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), + [6405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), + [6407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, 0, 0), + [6409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), + [6411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), + [6413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), + [6415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), + [6417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), + [6419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [6421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3331), + [6423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), + [6425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), + [6427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), + [6429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 2, 0, 0), + [6431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [6433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), + [6435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [6437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 4, 0, 109), + [6439] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, 0, 0), SHIFT_REPEAT(953), + [6442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1, 0, 0), + [6444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [6446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [6448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [6450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3287), + [6452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3382), + [6454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), + [6456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, 0, 11), + [6458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [6460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3336), + [6462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [6464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, 0, 85), + [6466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [6468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2277), + [6470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [6472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), + [6474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [6476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 5, 0, 0), + [6478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [6480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [6482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [6484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2290), + [6486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), + [6488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), + [6490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2782), + [6492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), + [6494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2783), + [6496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [6498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [6500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [6502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3552), + [6504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [6506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2784), + [6508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2785), + [6510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [6512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [6514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [6516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 4, 0, 0), + [6518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1665), + [6520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1896), + [6522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), + [6524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2373), + [6526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2374), + [6528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), + [6530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2, 0, 0), + [6532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1986), + [6535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3520), + [6537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), + [6539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2376), + [6541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2379), + [6543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), + [6545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), + [6547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2, 0, 0), + [6549] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2250), + [6552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [6554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 3, 0, 72), + [6556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [6558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [6560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [6562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [6564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [6566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 1, 0, 0), + [6568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [6570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [6572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [6574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [6576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [6578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), + [6580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [6582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [6584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2533), + [6586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [6588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3677), + [6590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3220), + [6592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3591), + [6594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3490), + [6596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [6598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [6600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 4, 0, 211), + [6602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2, 0, 0), + [6604] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2343), + [6607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [6609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3454), + [6611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2394), + [6613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2395), + [6615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), + [6617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2396), + [6619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), + [6621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), + [6623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 128), + [6625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), + [6627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [6629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 1, 0, 66), + [6631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [6633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2216), + [6635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2359), + [6637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, 0, 233), + [6639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2538), + [6641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), + [6643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), + [6645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [6647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 0), SHIFT_REPEAT(458), + [6650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2, 0, 0), + [6652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, 0, 157), + [6654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [6656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, 0, 158), + [6658] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(814), + [6661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), + [6663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2, 0, 0), + [6665] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(2501), + [6668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [6670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), + [6672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 4, 0, 0), + [6674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2234), + [6676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), + [6678] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(271), + [6681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), + [6683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [6685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [6687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [6689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), + [6691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2, 0, 0), + [6693] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2, 0, 0), SHIFT_REPEAT(3462), + [6696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_bounds_repeat1, 2, 0, 0), + [6698] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_bounds_repeat1, 2, 0, 0), SHIFT_REPEAT(3190), + [6701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), + [6703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [6705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), + [6707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2240), + [6709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [6711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [6713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2, 0, 0), + [6715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2, 0, 0), SHIFT_REPEAT(2330), + [6718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), + [6720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, 0, 41), + [6722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [6724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2253), + [6726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), + [6728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3144), + [6730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__condition, 1, 0, 9), + [6732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [6734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [6736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [6738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [6740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 4, 0, 174), + [6742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3711), + [6744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3345), + [6746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), + [6748] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(2182), + [6751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [6753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), + [6755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), + [6757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3163), + [6759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [6761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2272), + [6763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [6765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), + [6767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [6769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), + [6771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2639), + [6773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), + [6775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2640), + [6777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1419), + [6779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1553), + [6781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), + [6783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [6785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [6787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2, 0, 0), + [6789] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(794), + [6792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [6794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), [6796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), - [6798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), - [6800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3407), - [6802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), - [6804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2764), - [6806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3324), - [6808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2765), - [6810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1613), - [6812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1626), - [6814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1095), - [6816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2016), - [6818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1998), - [6820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1110), - [6822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), - [6824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2283), - [6826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2019), - [6828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [6830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3588), - [6832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [6834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3236), - [6836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1158), - [6838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2009), - [6840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2014), - [6842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 3, 0, 0), - [6844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1600), - [6846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2008), - [6848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [6850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3816), - [6852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3524), - [6854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1999), - [6856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [6858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [6860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2109), - [6862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1213), - [6864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [6866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), - [6868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3603), - [6870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 1, 0, 0), - [6872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [6874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), - [6876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3601), - [6878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2004), - [6880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1098), - [6882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2141), - [6884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2251), - [6886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [6888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1099), - [6890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [6892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [6894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), - [6896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2103), - [6898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2118), - [6900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2111), - [6902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2481), - [6904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3749), - [6906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 3, 0, 0), - [6908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2130), - [6910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2237), - [6912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1606), - [6914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2105), - [6916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2163), - [6918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2114), - [6920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2113), - [6922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2115), - [6924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2104), - [6926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1617), - [6928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1602), - [6930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1181), - [6932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3292), - [6934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), - [6936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), - [6938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2867), - [6940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2634), - [6942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1603), - [6944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [6946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3638), - [6948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3728), - [6950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), - [6952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2001), - [6954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 3, 0, 160), - [6956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [6958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), - [6960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [6962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 2, 0, 0), - [6964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [6966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_doc_comment_marker, 1, 0, 2), - [6968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2970), - [6970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3741), - [6972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 3, 0, 0), - [6974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1610), - [6976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_bounds_repeat1, 2, 0, 161), - [6978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3810), - [6980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_doc_comment_marker, 1, 0, 3), - [6982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3618), - [6984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3619), - [6986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 4, 0, 39), - [6988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_type, 3, 0, 74), - [6990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 3, 0, 0), - [6992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [6994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lifetime_parameter, 2, 0, 86), - [6996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [6998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3304), - [7000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_parameter, 6, 0, 213), - [7002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [7004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), - [7006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [7008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3314), - [7010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1616), - [7012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1621), - [7014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2659), - [7016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2679), - [7018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2067), - [7020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3317), - [7022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), - [7024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3713), - [7026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2709), - [7028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [7030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [7032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), - [7034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [7036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2736), - [7038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2804), - [7040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), - [7042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3570), - [7044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2689), - [7046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2767), - [7048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2672), - [7050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1599), - [7052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1623), - [7054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [7056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [7058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), - [7060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3769), - [7062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [7064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [7066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [7068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [7070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [7072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [7074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3748), - [7076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3807), - [7078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [7080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3527), - [7082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2782), - [7084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2276), - [7086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), - [7088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2316), - [7090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), - [7092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [7094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), - [7096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__outer_line_doc_comment_marker, 1, 0, 0), - [7098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), - [7100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3529), - [7102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2547), - [7104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [7106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3472), - [7108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), - [7110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [7112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2770), - [7114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3228), - [7116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2875), - [7118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), - [7120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [7122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [7124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [7126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [7128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3492), - [7130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3817), - [7132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 3, 0, 185), - [7134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3508), - [7136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [7138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [7140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [7142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), - [7144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3268), - [7146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, 0, 77), - [7148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), - [7150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2569), - [7152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [7154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [7156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), - [7158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3151), - [7160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [7162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), - [7164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), - [7166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [7168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [7170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [7172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), - [7174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), - [7176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), - [7178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), - [7180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), - [7182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), - [7184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), - [7186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3229), - [7188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2636), - [7190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3638), - [7192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [7194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__line_doc_comment_marker, 1, 0, 2), - [7196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [7198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3669), - [7200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [7202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [7204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), - [7206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [7208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), - [7210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [7212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), - [7214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [7216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [7218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), - [7220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3328), - [7222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2970), - [7224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), - [7226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3549), - [7228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), - [7230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), - [7232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, 0, 78), - [7234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), - [7236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), - [7238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), - [7240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2444), - [7242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3756), - [7244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), - [7246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), - [7248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2468), - [7250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3822), - [7252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), - [7254] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [7256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [7258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2617), - [7260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [7262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), - [7264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [7266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [7268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3272), - [7270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), - [7272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), - [7274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3611), - [7276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2424), - [7278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), - [7280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), - [7282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3731), - [7284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [7286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2580), - [7288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3203), - [7290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), - [7292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), - [7294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3134), - [7296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3569), - [7298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [7300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2530), - [7302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3208), - [7304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [7306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3256), - [7308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [7310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), - [7312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3212), - [7314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [7316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2664), - [7318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3221), - [7320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3213), - [7322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [7324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), - [7326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [7328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [7330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [7332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), - [7334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2839), - [7336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3604), - [7338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [7340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [7342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3252), - [7344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [7346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), - [7348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3255), - [7350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inner_line_doc_comment_marker, 1, 0, 0), - [7352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), - [7354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3281), - [7356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3496), - [7358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [7360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3818), - [7362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2692), - [7364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [7366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [7368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3548), - [7370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), - [7372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2426), - [7374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3511), - [7376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3311), - [7378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3345), - [7380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), - [7382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [7384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3576), - [7386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3320), - [7388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3727), - [7390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3323), - [7392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3310), - [7394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3322), - [7396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2421), - [7398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2715), - [7400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), - [7402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [7404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), - [7406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), - [7408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3517), - [7410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [7412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3125), - [7414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [7416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2238), - [7418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [7420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), - [7422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), - [7424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), - [7426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [7428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [7430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), - [7432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3656), - [7434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2541), - [7436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [7438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), - [7440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3404), - [7442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3787), - [7444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [7446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), - [7448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [7450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3070), - [7452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), - [7454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [7456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), - [7458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [7460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), - [7462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [7464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracketed_type, 3, 0, 0), - [7466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), - [7468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [7470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), - [7472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), - [7474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), - [7476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [7478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [7480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [7482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3819), - [7484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), - [7486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), - [7488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2537), - [7490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2810), - [7492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), - [7494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), - [7496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3654), - [7498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3414), - [7500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2820), - [7502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3679), - [7504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), - [7506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3689), - [7508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3694), - [7510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3697), - [7512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3204), - [7514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), - [7516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2454), - [7518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), - [7520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3735), - [7522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__line_doc_comment_marker, 1, 0, 3), - [7524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), - [7526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2602), - [7528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3462), - [7530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [7532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), - [7534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), - [7536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2416), - [7538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [7540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2297), - [7542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3459), - [7544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3748), - [7546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3460), - [7548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), - [7550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3171), - [7552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3142), - [7554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3764), - [7556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2245), - [7558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), - [7560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [7562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3112), - [7564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3487), - [7566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3493), - [7568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2285), - [7570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 3, 0, 15), - [7572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 4, 0, 59), - [7574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_comment, 3, 0, 14), - [7576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 3, 0, 0), - [7578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_comment, 2, 0, 0), - [7580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 2, 0, 0), - [7582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_comment, 3, 0, 0), + [6798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [6800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [6802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [6804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [6806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [6808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [6810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [6812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [6814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 1, 0, 0), + [6816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [6818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2255), + [6820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [6822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2562), + [6824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [6826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3769), + [6828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3516), + [6830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3834), + [6832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, 0, 26), + [6834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [6836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [6838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3782), + [6840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3521), + [6842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3841), + [6844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [6846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, 0, 188), + [6848] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, 0, 188), SHIFT_REPEAT(802), + [6851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 2, 0, 0), + [6853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, 0, 189), + [6855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [6857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3739), + [6859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3652), + [6861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2260), + [6863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [6865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3684), + [6867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3855), + [6869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3531), + [6871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [6873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [6875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2516), + [6877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1110), + [6879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2034), + [6881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2013), + [6883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2027), + [6885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1099), + [6887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_doc_comment_marker, 1, 0, 3), + [6889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1628), + [6891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1657), + [6893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2172), + [6895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2262), + [6897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1101), + [6899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [6901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2017), + [6903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2032), + [6905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2127), + [6907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2024), + [6909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), + [6911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2126), + [6913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2133), + [6915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1633), + [6917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1655), + [6919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [6921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2010), + [6923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [6925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2171), + [6927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2123), + [6929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2176), + [6931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2265), + [6933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 3, 0, 0), + [6935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1428), + [6937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1309), + [6939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [6941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1613), + [6943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2122), + [6945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2134), + [6947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2121), + [6949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2128), + [6951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1612), + [6953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1615), + [6955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [6957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2855), + [6959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [6961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3268), + [6963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [6965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2663), + [6967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2802), + [6969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2929), + [6971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3628), + [6973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1629), + [6975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [6977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_doc_comment_marker, 1, 0, 2), + [6979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2813), + [6981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [6983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1616), + [6985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1647), + [6987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2011), + [6989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [6991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [6993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [6995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), + [6997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [6999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 3, 0, 160), + [7001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3741), + [7003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3752), + [7005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_bounds_repeat1, 2, 0, 161), + [7007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [7009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), + [7011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3601), + [7013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2641), + [7015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), + [7017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3447), + [7019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), + [7021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3632), + [7023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), + [7025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2019), + [7027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), + [7029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2738), + [7031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3797), + [7033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 1, 0, 0), + [7035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_parameter, 6, 0, 213), + [7037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lifetime_parameter, 2, 0, 86), + [7039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [7041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3827), + [7043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), + [7045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), + [7047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [7049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3284), + [7051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 4, 0, 39), + [7053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), + [7055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [7057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1627), + [7059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [7061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 3, 0, 0), + [7063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [7065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3635), + [7067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3475), + [7069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3295), + [7071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), + [7073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3683), + [7075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2816), + [7077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2828), + [7079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487), + [7081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [7083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [7085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1418), + [7087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3298), + [7089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1621), + [7091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), + [7093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3749), + [7095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2840), + [7097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [7099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [7101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2852), + [7103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 3, 0, 0), + [7105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2860), + [7107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_type, 3, 0, 74), + [7109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [7111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2739), + [7113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [7115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), + [7117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3804), + [7119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [7121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [7123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [7125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [7127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2120), + [7129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 3, 0, 0), + [7131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3403), + [7133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 2, 0, 0), + [7135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3798), + [7137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3843), + [7139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), + [7141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2753), + [7143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1404), + [7145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), + [7147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), + [7149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3857), + [7151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3677), + [7153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [7155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2416), + [7157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [7159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3707), + [7161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [7163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2933), + [7165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__outer_line_doc_comment_marker, 1, 0, 0), + [7167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [7169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [7171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2775), + [7173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3503), + [7175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), + [7177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3533), + [7179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [7181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracketed_type, 3, 0, 0), + [7183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3079), + [7185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [7187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), + [7189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [7191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), + [7193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2310), + [7195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3399), + [7197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3367), + [7199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [7201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [7203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), + [7205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), + [7207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2558), + [7209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3239), + [7211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2417), + [7213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [7215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3271), + [7217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [7219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [7221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [7223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), + [7225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), + [7227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), + [7229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2697), + [7231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), + [7233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [7235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [7237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3739), + [7239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), + [7241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), + [7243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2514), + [7245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [7247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [7249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), + [7251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3634), + [7253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [7255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), + [7257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [7259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), + [7261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), + [7263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), + [7265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), + [7267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), + [7269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [7271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), + [7273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [7275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), + [7277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [7279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [7281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [7283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), + [7285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), + [7287] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [7289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), + [7291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [7293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), + [7295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [7297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3128), + [7299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), + [7301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), + [7303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3728), + [7305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3630), + [7307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), + [7309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3542), + [7311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), + [7313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3858), + [7315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [7317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), + [7319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), + [7321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), + [7323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), + [7325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), + [7327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [7329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [7331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), + [7333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3529), + [7335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), + [7337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), + [7339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [7341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3848), + [7343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3856), + [7345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), + [7347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [7349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2318), + [7351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3854), + [7353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3344), + [7355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [7357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), + [7359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), + [7361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [7363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2527), + [7365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), + [7367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3363), + [7369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [7371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3512), + [7373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), + [7375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3386), + [7377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__line_doc_comment_marker, 1, 0, 2), + [7379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), + [7381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3627), + [7383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2820), + [7385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3409), + [7387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), + [7389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [7391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), + [7393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [7395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), + [7397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3830), + [7399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [7401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [7403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3502), + [7405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), + [7407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3510), + [7409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [7411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), + [7413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3249), + [7415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [7417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [7419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3370), + [7421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2832), + [7423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [7425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), + [7427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3612), + [7429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2895), + [7431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3292), + [7433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [7435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), + [7437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [7439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3656), + [7441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3301), + [7443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [7445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3304), + [7447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3291), + [7449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3303), + [7451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [7453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3509), + [7455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), + [7457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2845), + [7459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), + [7461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [7463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), + [7465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), + [7467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3547), + [7469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [7471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), + [7473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3333), + [7475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [7477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), + [7479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), + [7481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [7483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), + [7485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [7487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [7489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3693), + [7491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [7493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2489), + [7495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2679), + [7497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [7499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [7501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 3, 0, 185), + [7503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3034), + [7505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [7507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), + [7509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), + [7511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [7513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), + [7515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__line_doc_comment_marker, 1, 0, 3), + [7517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), + [7519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [7521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), + [7523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3831), + [7525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3609), + [7527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), + [7529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [7531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3485), + [7533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3224), + [7535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3002), + [7537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3436), + [7539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2997), + [7541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [7543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), + [7545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), + [7547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), + [7549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2866), + [7551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2877), + [7553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), + [7555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), + [7557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3689), + [7559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2883), + [7561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3714), + [7563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), + [7565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3724), + [7567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3729), + [7569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3732), + [7571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), + [7573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [7575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2571), + [7577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [7579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3769), + [7581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3270), + [7583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2619), + [7585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3478), + [7587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, 0, 77), + [7589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [7591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3347), + [7593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2472), + [7595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [7597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2929), + [7599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), + [7601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3782), + [7603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [7605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [7607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2306), + [7609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3388), + [7611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3389), + [7613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3798), + [7615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2425), + [7617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3800), + [7619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3160), + [7621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, 0, 78), + [7623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2274), + [7625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2427), + [7627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [7629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3511), + [7631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [7633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inner_line_doc_comment_marker, 1, 0, 0), + [7635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3519), + [7637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2627), + [7639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_comment, 3, 0, 14), + [7641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 3, 0, 15), + [7643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_comment, 3, 0, 0), + [7645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 4, 0, 59), + [7647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 3, 0, 0), + [7649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_comment, 2, 0, 0), + [7651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 2, 0, 0), }; enum ts_external_scanner_symbol_identifiers { @@ -204253,13 +206741,13 @@ static const bool ts_external_scanner_states[10][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_float_literal] = true, }, [7] = { - [ts_external_token__line_doc_content] = true, + [ts_external_token_raw_string_literal_content] = true, }, [8] = { - [ts_external_token__raw_string_literal_end] = true, + [ts_external_token__line_doc_content] = true, }, [9] = { - [ts_external_token_raw_string_literal_content] = true, + [ts_external_token__raw_string_literal_end] = true, }, }; @@ -204326,8 +206814,8 @@ TS_PUBLIC const TSLanguage *tree_sitter_rust(void) { .max_reserved_word_set_size = 0, .metadata = { .major_version = 0, - .minor_version = 23, - .patch_version = 3, + .minor_version = 24, + .patch_version = 0, }, }; return &language; diff --git a/test/corpus/declarations.txt b/test/corpus/declarations.txt index 77195e86..cbceda1e 100644 --- a/test/corpus/declarations.txt +++ b/test/corpus/declarations.txt @@ -2613,3 +2613,65 @@ pub struct Loaf([T; N]); (array_type (type_identifier) (identifier))))) + +================================================================================ +Unsafe extern blocks +================================================================================ + +unsafe extern "C" { + pub safe fn sqrt(x: f64) -> f64; + pub unsafe fn strlen(p: *const std::ffi::c_char) -> usize; + pub fn free(p: *mut core::ffi::c_void); + pub safe static IMPORTANT_BYTES: [u8; 256]; +} + +-------------------------------------------------------------------------------- + +(source_file + (foreign_mod_item + (extern_modifier + (string_literal + (string_content))) + (declaration_list + (function_signature_item + (visibility_modifier) + (function_modifiers) + (identifier) + (parameters + (parameter + (identifier) + (primitive_type))) + (primitive_type)) + (function_signature_item + (visibility_modifier) + (function_modifiers) + (identifier) + (parameters + (parameter + (identifier) + (pointer_type + (scoped_type_identifier + (scoped_identifier + (identifier) + (identifier)) + (type_identifier))))) + (primitive_type)) + (function_signature_item + (visibility_modifier) + (identifier) + (parameters + (parameter + (identifier) + (pointer_type + (mutable_specifier) + (scoped_type_identifier + (scoped_identifier + (identifier) + (identifier)) + (type_identifier)))))) + (static_item + (visibility_modifier) + (identifier) + (array_type + (primitive_type) + (integer_literal))))))